/* ============================================================
   SupplyCrew — styles
   Warm, artisanal-but-professional B2B look.
   ============================================================ */

:root {
  --cream:       #FBF6ED;
  --cream-deep:  #F3EAD8;
  --white:       #FFFFFF;
  --ink:         #2B2115;
  --ink-soft:    #6E5F4B;
  --amber:       #C07A24;
  --amber-dark:  #995F17;
  --crust:       #E9CD97;
  --celeste:     #74AECB;
  --celeste-soft:#E3F0F6;
  --green:       #5E7D46;
  --radius:      18px;
  --shadow:      0 10px 30px rgba(60, 42, 15, 0.10);
  --shadow-soft: 0 4px 14px rgba(60, 42, 15, 0.07);
  --maxw:        1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* anchor targets stop below the sticky header */
[id] { scroll-margin-top: 92px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }

::selection { background: var(--crust); color: var(--ink); }

a { color: var(--amber-dark); }

/* ---- language toggle mechanics ---- */
html.lang-nl .en { display: none !important; }
html.lang-en .nl { display: none !important; }

/* ---- layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section .lead { color: var(--ink-soft); max-width: 640px; font-size: 18px; }

/* ============ header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 42, 15, 0.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.brand {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-dot {
  width: 12px; height: 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--amber);
  transform: rotate(-45deg);
}
.brand em { font-style: normal; color: var(--amber); }

.main-nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15.5px;
  opacity: 0.85;
}
.main-nav a:hover { opacity: 1; color: var(--amber-dark); }

.lang-toggle {
  display: flex;
  border: 1.5px solid rgba(60, 42, 15, 0.2);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 13px;
  cursor: pointer;
  color: var(--ink-soft);
}
.lang-toggle button.active { background: var(--ink); color: var(--cream); }

.nav-cta { flex-shrink: 0; }

/* mobile nav */
.nav-burger {
  display: none;
  border: 0; background: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--ink);
  margin-left: auto;
}

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15.5px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 18px rgba(192, 122, 36, 0.35);
}
.btn-primary:hover { background: var(--amber-dark); }
.btn-outline {
  border-color: rgba(60, 42, 15, 0.28);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-sm { padding: 9px 19px; font-size: 14.5px; }

/* ============ hero ============ */
.hero {
  padding: 64px 0 0;
  overflow: hidden;
  background: radial-gradient(900px 480px at 88% 0%, #F5E3BF 0%, rgba(245, 227, 191, 0) 65%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(36px, 5.2vw, 58px); margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber); font-style: italic; }
.hero .sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(60, 42, 15, 0.1);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.chip svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.4;
  position: relative;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 650;
  box-shadow: var(--shadow-soft);
}
.hero-badge span { display: block; font-weight: 450; color: var(--ink-soft); font-size: 13px; }

/* ============ crimped pastry divider ============ */
.crimp { display: block; width: 100%; height: 34px; margin-top: 60px; }
.crimp.flip { transform: scaleY(-1); margin-top: 0; }

/* ============ quick facts strip ============ */
.facts-strip { background: var(--ink); color: var(--cream); }
.facts-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.fact { text-align: center; }
.fact strong {
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 26px;
  color: var(--crust);
  margin-bottom: 4px;
}
.fact span { font-size: 14px; opacity: 0.82; }
.fact-icon {
  width: 30px;
  height: 30px;
  color: var(--crust);
  margin: 0 auto 12px;
  display: block;
}

/* ============ card grids ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(60, 42, 15, 0.06);
}
.card h3 { font-size: 20px; margin: 14px 0 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

.card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--celeste-soft);
  color: var(--celeste);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 23px; height: 23px; }
.card-icon.warm { background: #F7E8D2; color: var(--amber); }

/* numbered steps — golden circle badges */
.step-num {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--crust);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card .step-num { margin-bottom: 8px; }

/* ============ product teaser ============ */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 36px;
}
.teaser-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
  text-decoration: none;
  color: var(--ink);
}
.teaser-item img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform .3s ease; }
.teaser-item:hover img { transform: scale(1.04); }
.teaser-item figcaption { padding: 13px 16px; font-weight: 650; font-size: 15px; }
.teaser-item figcaption span { display: block; font-weight: 450; font-size: 13px; color: var(--ink-soft); }

/* ============ split section (story / making-of) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/4.6;
  transition: transform 0.45s ease;
}
.split-img:hover img { transform: scale(1.03); }

.make-list { list-style: none; display: grid; gap: 22px; margin-top: 30px; }
.make-list li { display: flex; gap: 18px; align-items: flex-start; }
.make-list .step-num { width: 42px; height: 42px; font-size: 18px; }
.make-list h3 { font-size: 18px; margin-bottom: 4px; }
.make-list p { color: var(--ink-soft); font-size: 15.5px; }

blockquote.story {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.55;
  font-weight: 450;
  color: var(--ink);
  border-left: 4px solid var(--crust);
  padding-left: 26px;
  margin-top: 54px;
  position: relative;
}
blockquote.story::before {
  content: "\201C";
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 92px;
  font-weight: 700;
  color: var(--crust);
  position: absolute;
  top: -58px;
  left: 20px;
  line-height: 1;
}

/* ============ markets ============ */
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.market {
  background: var(--white);
  border-radius: 15px;
  padding: 22px 24px;
  border: 1px solid rgba(60,42,15,0.07);
  box-shadow: var(--shadow-soft);
}
.market h3 { font-size: 17.5px; margin-bottom: 5px; }
.market p { font-size: 14.5px; color: var(--ink-soft); }
.market-note {
  margin-top: 26px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ============ FAQ ============ */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  align-items: start;
  margin-top: 40px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(60, 42, 15, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 22px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 18px; font-size: 15px; color: var(--ink-soft); }

/* ============ contact ============ */
.contact-band {
  background: linear-gradient(140deg, var(--ink) 0%, #40311D 100%);
  color: var(--cream);
  border-radius: 26px;
  padding: 60px 54px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow);
}
.contact-band h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 14px; }
.contact-band p { opacity: 0.85; max-width: 480px; }
.contact-band .reply-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
}
.contact-methods { display: grid; gap: 14px; }
.contact-methods a {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 17px 22px;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.15s ease;
}
.contact-methods a:hover { background: rgba(255,255,255,0.14); }
.contact-methods .cm-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-methods .cm-icon.wa { background: #25D366; }
.contact-methods .cm-icon svg { width: 21px; height: 21px; color: #fff; }
.contact-methods strong { display: block; font-size: 16px; }
.contact-methods span { font-size: 13.5px; opacity: 0.75; }

/* ============ footer ============ */
.footer-crimp { margin-top: 0; }
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 30px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
}
.site-footer .brand { color: var(--cream); }
.footer-brand p { margin-top: 14px; opacity: 0.72; max-width: 320px; font-size: 14.5px; }
.footer-col h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16.5px;
  color: var(--crust);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.78;
  padding: 4px 0;
}
.footer-col a:hover { opacity: 1; color: var(--crust); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  opacity: 0.65;
}
.footer-bottom .tagline { font-style: italic; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.page-hero { padding: 64px 0 20px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 16px; }
.page-hero .lead { color: var(--ink-soft); font-size: 18px; max-width: 640px; }

.jump-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.jump-pills a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(60, 42, 15, 0.18);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.jump-pills a:hover { border-color: var(--amber); color: var(--amber-dark); }

.cat-header { margin: 58px 0 8px; }
.cat-header h2 { font-size: clamp(25px, 3.4vw, 34px); }
.cat-header .cat-sub { color: var(--ink-soft); max-width: 680px; margin-top: 8px; }
.cat-badge {
  display: inline-block;
  background: var(--celeste-soft);
  color: #35799C;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.subcat {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 20px;
  margin: 36px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.subcat::after { content: ""; flex: 1; height: 1px; background: rgba(60,42,15,0.14); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(60,42,15,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card img {
  aspect-ratio: 1.15;
  object-fit: cover;
  width: 100%;
  background: #F6F1E7;
  transition: transform 0.35s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card .pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card h3 { font-size: 18.5px; }
.product-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.pc-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
}
.tag-veg   { background: #E8F0DF; color: var(--green); }
.tag-vegan { background: #DCEBD2; color: #48682F; }
.tag-spicy { background: #F9E3D9; color: #B14A21; }
.tag-nuts  { background: #F3E7D3; color: #8A6320; }
.tag-new   { background: var(--celeste-soft); color: #35799C; }

.pc-noimg {
  aspect-ratio: 1.15;
  background: repeating-linear-gradient(-45deg, #F6EFE1 0 14px, #F1E7D3 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-noimg span {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--amber);
  font-size: 40px;
}

.allergen-note {
  background: var(--cream-deep);
  border-left: 4px solid var(--crust);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 34px 0 10px;
}
.allergen-note strong { color: var(--ink); }

/* ============ product card: click-to-enlarge ============ */
.product-card { cursor: pointer; }
.product-card:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* zoom hint badge over the image */
.pc-media { position: relative; overflow: hidden; width: 100%; }
.pc-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(251, 246, 237, 0.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover .pc-zoom,
.product-card:focus-visible .pc-zoom { opacity: 1; transform: scale(1); }
.pc-zoom svg { width: 18px; height: 18px; color: var(--amber-dark); }

/* ============ product lightbox / modal ============ */
.pc-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pc-modal.open { display: flex; }
.pc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 33, 21, 0.62);
  backdrop-filter: blur(3px);
  animation: pcFade 0.2s ease;
}
.pc-modal-dialog {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  animation: pcRise 0.25s cubic-bezier(0.2, 0.8, 0.3, 1);
}
@keyframes pcFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pcRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.pc-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(251, 246, 237, 0.94);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.15s ease, transform 0.15s ease;
}
.pc-modal-close:hover { background: var(--white); transform: scale(1.06); }

.pc-modal-media {
  background: #F6F1E7;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.pc-modal-stage {
  flex: 1;
  min-height: 260px;
  display: flex;
}
.pc-modal-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.pc-modal-noimg {
  flex: 1;
  background: repeating-linear-gradient(-45deg, #F6EFE1 0 14px, #F1E7D3 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.pc-modal-noimg span { font-family: "Source Serif 4", Georgia, serif; color: var(--amber); font-size: 56px; }

.pc-modal-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: var(--cream-deep);
}
.pc-modal-thumbs:empty { display: none; }
.pc-modal-thumbs button {
  width: 60px; height: 60px;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #F6F1E7;
  transition: border-color 0.15s ease;
}
.pc-modal-thumbs button.active { border-color: var(--amber); }
.pc-modal-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pc-modal-info {
  padding: 30px 30px 26px;
  overflow-y: auto;
  min-height: 0;
}
.pc-modal-info h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.pc-modal-desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; }
.pc-modal-desc em { color: var(--ink-soft); }

.pc-modal-baking {
  border-top: 1px solid rgba(60, 42, 15, 0.14);
  padding-top: 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.pc-modal-baking h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  color: var(--ink);
  margin: 14px 0 6px;
  font-weight: 600;
}
.pc-modal-baking h4:first-child { margin-top: 0; }
.pc-modal-baking ul { margin: 0 0 4px; padding-left: 18px; }
.pc-modal-baking li { margin-bottom: 4px; }
.pc-modal-baking .pc-warn {
  display: block;
  background: #F9E3D9;
  color: #B14A21;
  border-radius: 10px;
  padding: 9px 13px;
  font-weight: 600;
  margin: 12px 0;
}
.pc-modal-baking .pc-note { margin-top: 12px; font-size: 13.5px; }
.pc-modal-baking .pc-doughs {
  margin-top: 14px;
  font-weight: 650;
  color: var(--amber-dark);
}

@media (max-width: 720px) {
  .pc-modal { padding: 0; }
  .pc-modal-dialog {
    grid-template-columns: 1fr;
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    grid-template-rows: auto 1fr;
  }
  .pc-modal-media { max-height: 42vh; }
  .pc-modal-img { aspect-ratio: auto; }
}

/* products CTA band */
.mini-cta {
  margin-top: 70px;
  background: var(--cream-deep);
  border-radius: 22px;
  padding: 44px 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
.mini-cta h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px; }
.mini-cta p { color: var(--ink-soft); }
.mini-cta .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* floating whatsapp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ responsive ============ */
@media (max-width: 960px) {
  .hero .wrap, .split, .faq-list, .contact-band { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .market-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .split.rev .split-img { order: -1; }
  .contact-band { padding: 44px 32px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(60,42,15,0.1);
    box-shadow: var(--shadow);
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .market-grid, .product-grid, .teaser-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding-top: 40px; }
  .mini-cta { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  body { font-size: 16px; }
}
