/** Shopify CDN: Minification failed

Line 750:0 Unexpected "}"

**/
/* =====================================================================
   WONDER, design system (mobile-first)
   Rebuilt from the A3 prototype into one coherent, responsive stylesheet.
   Colour tokens (--w-*) are injected from theme settings in theme.liquid;
   the values below are fallbacks so the file also works standalone.
   ===================================================================== */

/* ---------- brand fonts ---------- */
@font-face { font-family:'BN Bergen St'; src:url('BNBergenSt-Light.woff2') format('woff2');   font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'BN Bergen St'; src:url('BNBergenSt-Regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'BN Bergen St'; src:url('BNBergenSt-Medium.woff2') format('woff2');  font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'BN Bergen St'; src:url('BNBergenSt-Bold.woff2') format('woff2');    font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'BN Bergen St'; src:url('BNBergenSt-Black.woff2') format('woff2');   font-weight:900; font-style:normal; font-display:swap; }
@font-face { font-family:'BN Cringe Serif'; src:url('BNCringeSerif-Light.woff2') format('woff2');   font-weight:300; font-style:italic; font-display:swap; }
@font-face { font-family:'BN Cringe Serif'; src:url('BNCringeSerif-Regular.woff2') format('woff2'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'BN Cringe Serif'; src:url('BNCringeSerif-Medium.woff2') format('woff2');  font-weight:500; font-style:italic; font-display:swap; }

/* ---------- tokens ---------- */
:root{
  --w-pink:#F1B5B9; --w-pink-light:#F1B5B9;
  --w-purple:#A26FB5; --w-purple-deep:#A26FB5;
  --w-green:#BFDAA8; --w-green-light:#BFDAA8;
  --w-blue:#48B4D0; --w-teal:#48B4D0;
  --w-yellow:#F4E76D; --gold:#ECC25B;
  --w-ink:#141413; --w-cream:#F6EFE1; --w-paper:#FCF8EF; --sky:#CDE9F2;
  --sans:'BN Bergen St','Helvetica Neue',Arial,sans-serif;
  --serif:'BN Cringe Serif',Georgia,serif;
  --pad:clamp(20px,5vw,56px);          /* horizontal section padding */
  --maxw:1280px;
  --r-lg:32px; --r-md:22px;
  /* skill 3: 3-layer shadow-as-border (ring + lift + ambient) for cards on varied bgs */
  --shadow-border:0 0 0 1px rgba(0,0,0,.06), 0 1px 2px -1px rgba(0,0,0,.06), 0 2px 4px 0 rgba(0,0,0,.04);
  --shadow-border-hover:0 0 0 1px rgba(0,0,0,.08), 0 1px 2px -1px rgba(0,0,0,.08), 0 2px 4px 0 rgba(0,0,0,.06);
}

/* ---------- reset / base ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:no-preference){ html{ scroll-behavior:smooth; } }
body{ font-family:var(--sans); color:var(--w-ink); background:var(--w-cream);
  font-size:16px; line-height:1.5; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img,svg,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,p{ margin:0; text-wrap:pretty; }
button,input{ font-family:inherit; }
:focus-visible{ outline:3px solid var(--w-ink); outline-offset:3px; border-radius:4px; }
.visually-hidden{ position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* ---------- shared bits ---------- */
.wrap{ max-width:var(--maxw); margin-inline:auto; }
.btn{ display:inline-block; background:var(--w-ink); color:var(--w-cream); font-weight:700;
  font-size:clamp(15px,1.1vw,17px); padding:16px 32px; border-radius:999px; cursor:pointer;
  border:none; transition:transform .25s ease, background .2s ease; }
.btn:hover{ transform:translateY(-3px); }
.btn-yellow{ background:var(--w-yellow); color:var(--w-ink); }
.btn-cream{ background:var(--w-cream); color:var(--w-ink); }
.eyebrow{ font-weight:700; font-size:13px; letter-spacing:.22em; text-transform:uppercase; }

/* section heading scale (fluid) */
.h-xl{ font-weight:900; font-size:clamp(40px,7vw,84px); line-height:1.02; letter-spacing:-.02em; }
.h-lg{ font-weight:900; font-size:clamp(34px,5.5vw,64px); line-height:1.05; letter-spacing:-.015em; }
.serif-italic{ font-family:var(--serif); font-style:italic; font-weight:500; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:1; }
@media (prefers-reduced-motion:no-preference){
  /* skill 5: combine opacity + translateY(~tight) + blur, faster, interruptible */
  .js .reveal{ opacity:0; transform:translateY(18px); filter:blur(6px);
    transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), filter .7s ease; }
  .js .reveal.in{ opacity:1; transform:none; filter:blur(0); }
  /* progressive-enhancement: scroll-driven where supported */
  @supports (animation-timeline:view()){
    .js .reveal{ opacity:1; transform:none; filter:none; transition:none;
      animation:rise linear both; animation-timeline:view(); animation-range:entry 4% entry 44%; }
    @keyframes rise{ from{ opacity:0; transform:translateY(24px); filter:blur(6px); } to{ opacity:1; transform:none; filter:blur(0); } }
  }
}

/* sparkle */
.spark{ display:inline-block; width:24px; height:24px; flex:0 0 auto; background:var(--gold);
  clip-path:polygon(50% 0,61% 39%,100% 50%,61% 61%,50% 100%,39% 61%,0 50%,39% 39%); }
.spark.cream{ background:var(--w-cream); }
@media (prefers-reduced-motion:no-preference){
  .spark{ animation:twinkle var(--tw,3.2s) ease-in-out infinite; animation-delay:var(--twd,0s); }
  @keyframes twinkle{ 0%,100%{ transform:scale(.55) rotate(0); opacity:.5; } 50%{ transform:scale(1.15) rotate(45deg); opacity:1; } }
}
.h2row{ display:flex; align-items:center; justify-content:center; gap:clamp(12px,2vw,26px); }

/* scallop divider: --over bulges down into --under */
.sc{ height:30px; background-color:var(--sc-under,var(--w-cream));
  background-image:radial-gradient(circle 15px at 50% 0,var(--sc-over,var(--w-cream)) 0 14.5px,transparent 15.5px);
  background-size:50px 30px; background-repeat:repeat-x; background-position:center top; }

/* kernel decals (parallax background, alpha-masked PNG tinted by --tint) */
.kdecal{ position:absolute; z-index:0; pointer-events:none; width:var(--w,120px); height:var(--h,120px);
  background:var(--tint,rgba(20,20,19,.06));
  -webkit-mask:var(--k) no-repeat center/contain; mask:var(--k) no-repeat center/contain; will-change:transform; }
@media (max-width:700px){ .kdecal{ display:none; } }

/* =====================================================================
   1 · announcement bar
   ===================================================================== */
.announce{ background:var(--w-teal); color:var(--w-cream); text-align:center;
  padding:10px 16px; font-size:clamp(11px,1.6vw,13px); font-weight:700; letter-spacing:.12em; text-transform:uppercase; }

/* =====================================================================
   2 · header / nav
   ===================================================================== */
.nav{ display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px var(--pad); position:relative; z-index:30; background:var(--w-cream); }
.nav-logo{ height:clamp(30px,3.4vw,42px); width:auto; }
.nav-links{ display:flex; gap:clamp(18px,2.4vw,32px); font-weight:700; font-size:15px; align-items:center; }
.nav-links .nl-link:hover{ color:var(--w-teal); }
.nav-cart{ display:inline-flex; align-items:center; gap:6px; }
.nav-drawer-pop,.nav-drawer-foot,.nav-drawer-clouds{ display:none; }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--w-ink); margin:5px 0; transition:.3s; }
@media (max-width:760px){
  /* full-screen brand menu */
  .nav-links{ position:fixed; inset:0; width:100%; height:100vh; height:100dvh; flex-direction:column; align-items:flex-start; justify-content:flex-start;
    gap:clamp(2px,1vh,10px); background:var(--w-blue); padding:clamp(88px,13vh,132px) var(--pad) 0; transform:translateX(100%);
    visibility:hidden; transition:transform .42s cubic-bezier(.22,1,.36,1), visibility 0s .42s; overflow:hidden; z-index:35; }
  .nav[data-open="true"] .nav-links{ transform:none; visibility:visible; transition:transform .42s cubic-bezier(.22,1,.36,1), visibility 0s 0s; }
  .nav-logo{ height:clamp(28px,7.5vw,36px); }
  .nav-links .nl-link{ position:relative; z-index:2; color:#FFFDF6; font-weight:900; font-size:clamp(34px,9vw,54px); line-height:1.14; letter-spacing:-.015em;
    opacity:0; transform:translateY(18px); transition:opacity .5s ease, transform .55s cubic-bezier(.22,1,.36,1), color .2s; }
  .nav[data-open="true"] .nav-links .nl-link{ opacity:1; transform:none; }
  .nav[data-open="true"] .nl-link:nth-child(1){ transition-delay:.12s; }
  .nav[data-open="true"] .nl-link:nth-child(2){ transition-delay:.18s; }
  .nav[data-open="true"] .nl-link:nth-child(3){ transition-delay:.24s; }
  .nav[data-open="true"] .nl-link:nth-child(4){ transition-delay:.30s; }
  .nav[data-open="true"] .nl-link:nth-child(5){ transition-delay:.36s; }
  .nav-links .nav-cart.nl-link{ color:var(--w-yellow); }
  .nav-links .nav-cart.nl-link .nl-count{ opacity:.85; }
  .nav-toggle{ display:block; position:relative; z-index:40; }
  .nav[data-open="true"] .nav-toggle span{ background:#FFFDF6; }
  .nav[data-open="true"] .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav[data-open="true"] .nav-toggle span:nth-child(2){ opacity:0; }
  .nav[data-open="true"] .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .nav-drawer-pop{ display:block; position:absolute; right:clamp(20px,7vw,44px); top:clamp(88px,12vh,122px); width:clamp(58px,16vw,80px); height:auto; z-index:3;
    filter:drop-shadow(0 7px 14px rgba(20,20,19,.16)); }
  .nav-drawer-foot{ display:block; position:absolute; left:var(--pad); right:var(--pad); bottom:clamp(120px,18vh,178px); z-index:2; color:#FFFDF6; }
  .ndf-tag{ font-family:var(--serif); font-style:italic; font-weight:500; font-size:clamp(17px,2.4vh,22px); opacity:.94; }
  .ndf-social{ display:flex; flex-wrap:wrap; gap:16px; margin-top:14px; font-weight:700; font-size:13px; letter-spacing:.04em; }
  .ndf-social a{ opacity:.86; }
  .nav-drawer-clouds{ display:block; position:absolute; left:0; right:0; bottom:0; height:118px; overflow:hidden; z-index:1; pointer-events:none; }
  .nav-drawer-clouds span{ position:absolute; left:0; right:0; bottom:-1px; height:100%; background-repeat:repeat-x; background-position:left bottom; }
  .nav-drawer-clouds span:nth-child(1){ opacity:.55; background-size:760px auto; }
  .nav-drawer-clouds span:nth-child(2){ opacity:1; background-size:1200px auto; }
}
@media (max-width:760px) and (prefers-reduced-motion:no-preference){
  .nav-drawer-pop{ animation:ndpop 4.2s ease-in-out infinite; transform-origin:50% 70%; }
  @keyframes ndpop{ 0%,68%,100%{ transform:scale(1) rotate(0); } 76%{ transform:scale(1.16) translateY(-5px) rotate(-6deg); } 84%{ transform:scale(.95); } 92%{ transform:scale(1.05); } }
  .nav-drawer-clouds span:nth-child(1){ animation:fc-back 70s linear infinite; }
  .nav-drawer-clouds span:nth-child(2){ animation:fc-front 46s linear infinite; }
}

/* =====================================================================
   3 · hero (cinematic video)
   ===================================================================== */
.hero{ position:relative; height:clamp(560px,90vh,920px); background:var(--w-ink); overflow:hidden; display:block; }
.hero-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-shade{ position:absolute; inset:0;
  background:linear-gradient(to top,rgba(16,10,6,.62) 0%,rgba(16,10,6,.04) 56%); }
.hero-copy{ position:absolute; left:var(--pad); bottom:clamp(80px,12vw,84px); right:var(--pad); max-width:18ch; color:var(--w-cream); z-index:3; }
.hero-supra{ font-weight:700; font-size:clamp(12px,1.6vw,15px); letter-spacing:.28em; text-transform:uppercase; opacity:.92; }
.hero h1{ font-weight:900; font-size:clamp(46px,8vw,124px); line-height:.98; letter-spacing:-.02em; margin-top:18px; text-wrap:balance; }
.hero-cta{ position:absolute; right:var(--pad); bottom:clamp(24px,5vw,72px); z-index:3;
  background:var(--w-yellow); color:var(--w-ink); font-weight:700; font-size:clamp(16px,1.4vw,19px);
  padding:18px 36px; border-radius:999px; transition:transform .25s ease; }
.hero-cta:hover{ transform:translateY(-3px); }
@media (max-width:760px){
  .hero-copy{ max-width:none; bottom:auto; top:30%; }
  .hero-cta{ left:var(--pad); right:auto; }
}

/* =====================================================================
   4 · ticker
   ===================================================================== */
.ticker{ background:var(--w-yellow); padding:16px 0; overflow:hidden; }
.ticker-track{ display:flex; width:max-content; }
.ticker-track span{ font-weight:900; font-size:clamp(18px,2.4vw,26px); letter-spacing:.1em; text-transform:uppercase; white-space:nowrap; padding-right:.6em; }
@media (prefers-reduced-motion:no-preference){
  .ticker-track{ animation:tick var(--tick,28s) linear infinite; }
  @keyframes tick{ to{ transform:translateX(-50%); } }
}

/* =====================================================================
   5 · flavors
   ===================================================================== */
.flavors{ padding:clamp(64px,9vw,110px) var(--pad) clamp(72px,10vw,120px); text-align:center; position:relative; overflow:hidden; }
.flavors .h-lg{ margin-bottom:clamp(40px,6vw,64px); }
.flavor-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(18px,3vw,28px); max-width:var(--maxw); margin-inline:auto; }
.flavor{ position:relative; border-radius:var(--r-lg); overflow:hidden; background:var(--w-paper);
  box-shadow:0 18px 40px rgba(20,20,19,.08); display:flex; flex-direction:column; text-align:left; min-width:0; }
.flavor-shot{ background:#fff; display:flex; align-items:center; justify-content:center; padding:22px; aspect-ratio:1/1.02; overflow:hidden; }
.flavor-shot img{ width:auto; height:100%; max-width:86%; object-fit:contain;
  filter:drop-shadow(0 18px 26px rgba(20,20,19,.16)); transition:transform .5s cubic-bezier(.22,1,.36,1); }
.flavor:hover .flavor-shot img{ transform:rotate(-3deg) translateY(-8px); }
.sticker{ position:absolute; top:22px; right:22px; z-index:2; background:var(--w-yellow); color:var(--w-ink);
  font-weight:900; font-size:13px; letter-spacing:.06em; text-transform:uppercase; padding:10px 16px;
  border-radius:999px; transform:rotate(7deg); box-shadow:0 4px 10px rgba(20,20,19,.18); }
.flavor:hover .sticker{ animation:wiggle .5s ease; }
@keyframes wiggle{ 25%{ transform:rotate(11deg) scale(1.06); } 75%{ transform:rotate(3deg) scale(1.02); } }
.flavor-info{ padding:clamp(24px,3vw,36px); display:flex; flex-direction:column; align-items:flex-start; flex:1; }
.flavor-info h3{ font-weight:900; font-size:clamp(26px,3vw,40px); }
.flavor-info p{ font-family:var(--serif); font-style:italic; font-size:clamp(16px,1.4vw,19px); line-height:1.5; margin:10px 0 22px; }
.flavor-info .btn{ margin-top:auto; }
@media (max-width:620px){ .flavor-grid{ grid-template-columns:1fr; } }

/* scattered corn shapes */
.scatter{ position:absolute; pointer-events:none; opacity:.8; }
.kernel{ width:18px; height:22px; background:var(--gold); border-radius:50% 50% 48% 48%/64% 64% 36% 36%; display:inline-block; }
.popcorn{ position:relative; width:44px; height:40px; display:inline-block; }
.popcorn i{ position:absolute; background:#FFFDF6; border-radius:50%; box-shadow:0 1px 3px rgba(20,20,19,.18); }
.popcorn i:nth-child(1){ width:22px; height:22px; left:0; top:12px; }
.popcorn i:nth-child(2){ width:26px; height:26px; left:10px; top:0; }
.popcorn i:nth-child(3){ width:22px; height:22px; right:0; top:10px; }
.popcorn i:nth-child(4){ width:28px; height:22px; left:8px; bottom:0; }
@media (max-width:700px){ .scatter{ display:none; } }

/* =====================================================================
   6 · badges
   ===================================================================== */
.badges{ background:var(--w-cream); padding:clamp(32px,5vw,40px) var(--pad) clamp(72px,9vw,110px); text-align:center; }
.badge-row{ display:flex; justify-content:center; gap:clamp(16px,3vw,56px); flex-wrap:wrap; max-width:var(--maxw); margin-inline:auto; }
.badge{ display:flex; flex-direction:column; align-items:center; gap:12px; width:clamp(88px,12vw,104px); }
.badge img{ width:clamp(60px,8vw,82px); height:auto; }
.badge span{ font-weight:700; font-size:clamp(11px,1.4vw,13px); letter-spacing:.05em; text-transform:uppercase; line-height:1.3; }
.badge-note{ margin-top:clamp(32px,5vw,48px); font-size:14px; opacity:.72; }
@media (prefers-reduced-motion:no-preference){
  .badge:hover img{ animation:badge-pop .5s cubic-bezier(.34,1.56,.64,1); }
  @keyframes badge-pop{ 50%{ transform:scale(1.12) rotate(-4deg); } }
}

/* =====================================================================
   7 · manifesto (sticky word-scrub)
   ===================================================================== */
.manifesto{ background:var(--w-cream); color:var(--w-ink); position:relative; --mf-text:var(--w-ink); --mf-faded:rgba(20,20,19,.16); }
.manifesto[data-dark="true"]{ --mf-text:#FFFDF6; --mf-faded:rgba(255,253,246,.42); }
.manifesto.is-scrub{ min-height:230vh; }
.manifesto-sticky{ position:sticky; top:0; min-height:100vh; display:flex; align-items:center; padding:clamp(64px,10vw,96px) var(--pad); }
.manifesto.no-scrub .manifesto-sticky{ position:static; min-height:0; padding-block:clamp(80px,12vw,140px); }
.manifesto-inner{ max-width:980px; margin-inline:auto; }
.manifesto p{ font-weight:900; font-size:clamp(28px,4.4vw,54px); line-height:1.18; letter-spacing:-.015em; }
.manifesto p+p{ margin-top:clamp(28px,4vw,56px); }
.manifesto .w{ color:var(--mf-faded); transition:color .45s ease; }
.manifesto .w.lit{ color:var(--mf-text); }
.manifesto .w.acc-pink.lit{ color:var(--w-purple); }
.manifesto .w.acc-blue.lit{ color:var(--w-blue); }
.manifesto[data-dark="true"] .w.acc-blue.lit{ color:#BFDAA8; }
/* highlight geometry is ALWAYS present (constant width) so lighting it up on scroll can't reflow the line */
.manifesto .w.acc-yellow{ border-radius:.18em; -webkit-box-decoration-break:clone; box-decoration-break:clone; padding:.02em .16em; background:transparent; transition:background-color .35s ease, color .35s ease; }
.manifesto .w.acc-yellow.lit{ color:#141413 !important; background:var(--w-yellow); }
/* subtle gradient depth so solid color-block sections don't read flat */
.manifesto,.stockists,.funfact{ position:relative; isolation:isolate; }
.manifesto::before,.stockists::before,.funfact::before{ content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:radial-gradient(135% 95% at 50% -12%, rgba(255,255,255,.18), rgba(255,255,255,0) 56%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.06)); }
/* drifting clouds hanging into the top of the manifesto (flat-bottom band, flipped) */
.mf-clouds{ position:absolute; left:0; right:0; bottom:0; height:clamp(84px,11vw,150px); overflow:hidden; pointer-events:none; z-index:0; }
.mf-clouds .mfb{ position:absolute; left:0; right:0; bottom:-1px; height:100%; background-repeat:repeat-x; background-position:left bottom; }
.mf-clouds .mfb-back{  opacity:.4; background-size:760px auto;  animation:fc-back 80s linear infinite; }
.mf-clouds .mfb-mid{   opacity:.7; background-size:1080px auto; animation:fc-mid 58s linear infinite; }
.mf-clouds .mfb-front{ opacity:1;  background-size:1500px auto; animation:fc-front 40s linear infinite; }
.manifesto .manifesto-sticky{ z-index:1; }
@media (prefers-reduced-motion:reduce){ .mf-clouds .mfb{ animation:none; } }
@media (max-width:760px){ .manifesto.is-scrub{ min-height:180vh; } }
.manifesto .accent .w.lit{ color:var(--w-yellow); }
.manifesto .accent.a-pink .w.lit{ color:var(--w-purple); }
.manifesto .accent.a-green .w.lit{ color:var(--w-teal); }
.manifesto .accent.a-sky .w.lit{ color:var(--w-blue); }
.no-js .manifesto .w,.reduced .manifesto .w{ color:var(--mf-text); }

/* =====================================================================
   8 · story (Graza full-bleed + floating origin card)
   ===================================================================== */
.story{ position:relative; min-height:clamp(560px,90vh,860px); display:flex; align-items:flex-end; overflow:hidden; background:var(--w-ink); }
.story-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 38%; }
/* white fade at the top so cloud band from the section above merges into the image */
.story::after{ display:none; }
.story-veil{ position:absolute; inset:0;
  background:linear-gradient(to top,rgba(16,12,8,.62) 0%,rgba(16,12,8,.05) 48%),linear-gradient(to right,rgba(16,12,8,.34) 0%,transparent 54%); }
.story-headline{ position:relative; z-index:2; padding:0 var(--pad) clamp(56px,8vw,72px); max-width:64%; }
.story-eyebrow{ display:inline-block; font-weight:700; font-size:13px; letter-spacing:.24em; text-transform:uppercase; color:var(--w-cream); opacity:.85; }
.story-headline h2{ font-family:var(--serif); font-style:italic; font-weight:500; color:var(--w-cream);
  font-size:clamp(34px,5.4vw,86px); line-height:1.04; letter-spacing:-.01em; margin-top:16px; text-shadow:0 2px 40px rgba(0,0,0,.3); }
.story-pill{ display:inline-block; margin-top:28px; background:var(--w-cream); color:var(--w-ink);
  font-weight:700; font-size:14px; letter-spacing:.12em; text-transform:uppercase; padding:15px 30px; border-radius:999px; transition:transform .25s ease; }
.story-pill:hover{ transform:translateY(-3px); }
.origin-card{ position:absolute; z-index:3; top:clamp(24px,4vw,46px); right:clamp(20px,4vw,46px); width:min(268px,40vw);
  background:var(--w-paper); color:var(--w-ink);
  border:2.5px solid var(--w-ink); border-radius:28px; padding:20px 22px 24px; text-align:center;
  rotate:-2deg; }
/* calm paper ground so it sits on a busy photo; yellow is an accent on the kicker
   pill only, which is the same sticker language the flavour cards already use */
.oc-kicker{ display:inline-block; background:var(--w-yellow); border:2px solid var(--w-ink);
  border-radius:999px; padding:5px 13px 4px; font-weight:800; font-size:10.5px;
  letter-spacing:.13em; text-transform:uppercase; }
.oc-photo{ margin-top:15px; border-radius:999px; overflow:hidden; aspect-ratio:1; width:80%;
  margin-inline:auto; border:2.5px solid var(--w-ink); }
.oc-photo img{ width:100%; height:100%; object-fit:cover; }
.oc-place{ font-weight:900; font-size:clamp(21px,2.4vw,27px); line-height:1.02; margin-top:16px; letter-spacing:-.015em; }
/* three small kernels, not a ruled line: decorative, and nobody's ledger */
.oc-divider{ width:38px; height:6px; margin:12px auto 9px; opacity:.3;
  background:radial-gradient(circle, var(--w-ink) 42%, transparent 45%) left center / 12.7px 6px repeat-x; }
.oc-season{ font-family:var(--serif); font-style:italic; font-weight:500; font-size:14px; line-height:1.38; opacity:.7; }
@media (max-width:760px){
  .story{ display:block; }
  .story-headline{ max-width:none; padding-top:clamp(40px,8vw,64px); }
  .origin-card{ position:static; width:auto; margin:0 var(--pad) 28px; }
}

/* =====================================================================
   9 · stockists (rolling marquee)
   ===================================================================== */
/* fade in from the cloud band above instead of a hard colour edge */
.stockists{ background:var(--stk-bg,var(--w-cream));
  padding:clamp(44px,6vw,78px) var(--pad); }
/* rhythm: a wide band instead of another centred stack */
.stockists .stk-band{ max-width:var(--maxw); margin-inline:auto; display:flex; align-items:center;
  justify-content:space-between; gap:clamp(20px,4vw,56px); flex-wrap:wrap; text-align:left; }
.stockists .stk-copy{ flex:1 1 320px; }
.stockists h2{ margin:0; }
.stockists .stockist-note{ margin-top:10px; }
@media (max-width:760px){ .stockists .stk-band{ flex-direction:column; align-items:flex-start; } }
.stockists h2{ font-family:var(--serif); font-style:italic; font-weight:500; font-size:clamp(30px,4.6vw,52px); letter-spacing:-.01em; }
.stockist-marquee{ overflow:hidden; margin-top:clamp(36px,5vw,56px);
  -webkit-mask:linear-gradient(to right,transparent,#000 12%,#000 88%,transparent); mask:linear-gradient(to right,transparent,#000 12%,#000 88%,transparent); }
.stockist-track{ display:flex; white-space:nowrap; width:max-content; }
.stockist-track span{ font-weight:900; font-size:clamp(28px,5vw,44px); letter-spacing:.06em; opacity:.85; }
@media (prefers-reduced-motion:no-preference){
  .stockist-track{ animation:stockroll 120s linear infinite; }
  @keyframes stockroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
}
.stockist-note{ margin-top:clamp(28px,4vw,40px); font-size:15px; font-weight:500; letter-spacing:.06em; text-transform:uppercase; opacity:.72; }
.stockists .btn{ margin-top:clamp(32px,5vw,44px); }

/* =====================================================================
   10 · ingredients (illustration deck)
   ===================================================================== */
.ingredients{ background:var(--w-cream); padding:clamp(50px,6.5vw,88px) var(--pad) clamp(70px,9vw,118px); position:relative; overflow:hidden; }
.ing-inner{ position:relative; z-index:1; max-width:1240px; margin-inline:auto; }
.ingredients h2{ text-align:center; font-weight:900; font-size:clamp(40px,5.5vw,84px); line-height:1.04; letter-spacing:-.015em; }
.ingredients h2 em{ font-family:var(--serif); font-weight:500; font-style:italic; letter-spacing:0; }
.ing-deck{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,2.4vw,28px); margin:clamp(28px,4vw,46px) auto 0; }
.ing-card{ position:relative; border-radius:30px; padding:clamp(28px,3vw,36px) clamp(26px,3vw,34px) clamp(32px,4vw,40px);
  min-height:clamp(308px,30vw,372px); display:flex; flex-direction:column; align-items:flex-start; overflow:hidden;
  background:var(--card,#eee); transition:transform .4s cubic-bezier(.34,1.4,.64,1),box-shadow .4s ease; }
.ic-corn{ --card:var(--w-green-light); }
.ic-coco{ --card:var(--w-pink-light); }
.ic-salt{ --card:#48B4D0; }
.ing-card:hover{ transform:translateY(-10px); box-shadow:0 30px 52px rgba(20,20,19,.14); }
.ing-art{ width:100%; height:clamp(210px,26vw,318px); display:flex; align-items:center; justify-content:center; margin:calc(-1 * clamp(10px,1.4vw,18px)) 0 clamp(8px,1.2vw,14px); }
.ing-art img{ height:100%; width:auto; max-width:112%; object-fit:contain; }
.ing-idx{ font-family:ui-monospace,Menlo,monospace; font-size:12px; letter-spacing:.24em; opacity:.5; }
.ing-card h3{ font-weight:900; font-size:clamp(28px,2.7vw,40px); letter-spacing:-.01em; margin-top:4px; }
.ing-origin{ font-family:var(--serif); font-style:italic; font-size:clamp(17px,1.6vw,19px); opacity:.72; margin-top:2px; }
.ing-card p{ font-size:15.5px; line-height:1.6; margin-top:14px; }
@media (max-width:820px){ .ing-deck{ grid-template-columns:1fr; max-width:520px; } .ing-card{ min-height:0; } }

/* =====================================================================
   11 · fun fact (editorial line)
   ===================================================================== */
.funfact{ background:var(--w-cream); padding:clamp(80px,12vw,130px) var(--pad); text-align:center; position:relative; overflow:hidden; }
.funfact-inner{ position:relative; z-index:1; }
.funfact-kicker{ font-weight:700; font-size:13px; letter-spacing:.26em; text-transform:uppercase; opacity:.5; }
.funfact-text{ font-family:var(--serif); font-style:italic; font-size:clamp(28px,4.2vw,62px); line-height:1.16; letter-spacing:-.01em; max-width:20ch; margin:24px auto 0; text-wrap:balance; }
.funfact-text em{ color:#4f2a5c; }

/* =====================================================================
   12 · sky band
   ===================================================================== */
.skyband{ position:relative; height:clamp(200px,32vw,440px); overflow:hidden; background:#CFEBDC; }
.skyband img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
@media (prefers-reduced-motion:no-preference){
  .skyband img{ animation:skypan 32s ease-in-out infinite alternate; }
  @keyframes skypan{ from{ transform:scale(1.06) translateX(-1.5%); } to{ transform:scale(1.06) translateX(1.5%); } }
}

/* =====================================================================
   13 · lifestyle / "wild" band
   ===================================================================== */
.wild{ position:relative; height:clamp(440px,78vw,720px); overflow:hidden; }
.wild img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.wild-shade{ position:absolute; inset:0; background:linear-gradient(to top,rgba(16,10,6,.55) 0%,rgba(16,10,6,.02) 50%); }
.wild-copy{ position:absolute; left:var(--pad); bottom:clamp(36px,6vw,52px); right:var(--pad); color:var(--w-cream); z-index:2; }
.wild-copy h2{ font-weight:900; font-size:clamp(30px,5vw,64px); letter-spacing:-.015em; }
.wild-copy p{ font-family:var(--serif); font-style:italic; font-size:clamp(16px,1.7vw,21px); margin-top:10px; opacity:.92; }

/* =====================================================================
   14 · comparison table
   ===================================================================== */
.compare{ background:var(--w-cream); padding:clamp(72px,10vw,110px) var(--pad) clamp(84px,12vw,130px); text-align:center; overflow:hidden; }
/* rhythm: this one leads from the left so three centred sections do not stack up */
.compare .h2row{ justify-content:flex-start; max-width:var(--maxw); margin-inline:auto; text-align:left; }
@media (max-width:700px){ .compare .h2row{ justify-content:center; text-align:center; } }
.compare .h-lg{ margin-bottom:clamp(48px,7vw,80px); }
.compare-table{ position:relative; max-width:1080px; margin-inline:auto; text-align:center; }
.compare-band{ position:absolute; z-index:0; left:34.8%; width:21.7%; top:-40px; bottom:-30px; background:var(--w-pink); border-radius:26px; }
.c-row{ position:relative; z-index:1; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; align-items:center;
  padding:clamp(16px,2vw,26px) 6px; border-bottom:1.5px solid rgba(20,20,19,.16); font-size:clamp(13px,1.4vw,18px); }
.c-row:last-child{ border-bottom:none; }
.c-row>div{ padding:0 clamp(6px,1.4vw,18px); }
.c-head{ border-bottom:2px solid var(--w-ink); font-weight:900; font-size:clamp(12px,1.3vw,19px); letter-spacing:.05em; text-transform:uppercase; padding-bottom:22px; }
.c-head .c-wonder img{ height:clamp(20px,2.4vw,30px); width:auto; margin:0 auto; }
.c-label{ text-align:left; font-weight:900; font-size:clamp(11px,1.2vw,16px); letter-spacing:.08em; text-transform:uppercase; }
.c-wonder{ font-weight:700; }
.mark{ display:inline-flex; width:24px; height:24px; border-radius:50%; align-items:center; justify-content:center; font-weight:900; font-size:13px; margin-right:6px; vertical-align:middle; }
.mark.yes{ background:var(--w-yellow); color:var(--w-ink); }
.mark.no{ background:rgba(20,20,19,.1); color:rgba(20,20,19,.65); }
@media (max-width:640px){
  .compare-table{ font-size:12px; }
  .compare-band{ top:-24px; bottom:-20px; left:30.2%; width:23.3%; }
  .c-row{ grid-template-columns:1.3fr 1fr 1fr 1fr; }
  .c-row>div{ padding:0 4px; }
}

/* =====================================================================
   15 · newsletter (split with duo shot)
   ===================================================================== */
.newsletter{ position:relative; overflow:hidden;
  background:linear-gradient(180deg,var(--w-yellow) 0%,color-mix(in oklab,var(--w-yellow) 45%,var(--w-cream)) 100%); }
.newsletter-grid{ position:relative; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:clamp(28px,5vw,48px);
  max-width:1280px; margin-inline:auto; padding:clamp(64px,8vw,96px) var(--pad); }
.newsletter-copy h2{ font-weight:900; font-size:clamp(34px,5vw,64px); letter-spacing:-.015em; }
.newsletter-copy p{ font-family:var(--serif); font-style:italic; font-size:clamp(16px,1.5vw,21px); margin-top:14px; max-width:40ch; }
.mascot{ width:clamp(64px,9vw,92px); height:auto; margin-bottom:22px; }
@media (prefers-reduced-motion:no-preference){
  .mascot{ animation:mascot-bob 3.6s ease-in-out infinite alternate; }
  @keyframes mascot-bob{ from{ transform:translateY(0) rotate(-2deg); } to{ transform:translateY(-10px) rotate(2deg); } }
}
.newsletter-form{ display:flex; gap:12px; margin-top:clamp(28px,4vw,36px); flex-wrap:wrap; }
.newsletter-form input{ flex:1 1 240px; min-width:0; border:2px solid var(--w-ink); background:var(--w-cream); border-radius:999px;
  padding:16px 24px; font-size:16px; color:var(--w-ink); }
.newsletter-form input::placeholder{ color:rgba(20,20,19,.45); }
.newsletter-form button{ background:var(--w-ink); color:var(--w-cream); border:none; font-weight:700; font-size:16px; padding:16px 32px; border-radius:999px; cursor:pointer; }
.newsletter-photo img{ width:100%; height:auto; border-radius:var(--r-lg); box-shadow:0 24px 48px rgba(16,10,6,.18); transform:rotate(1.5deg); }
.newsletter-note{ margin-top:12px; font-size:13px; }
@media (max-width:760px){ .newsletter-grid{ grid-template-columns:1fr; } .newsletter-photo{ order:-1; } }

/* =====================================================================
   16 · footer (gradient band + flanking nav + scallop + deep)
   ===================================================================== */
.footer{ background:var(--w-ink); color:var(--w-cream); }
.footer-band{ position:relative; background:linear-gradient(180deg,color-mix(in oklab,var(--w-yellow) 45%,var(--w-cream)) 0%,var(--w-pink-light) 34%,var(--sky) 100%); padding:clamp(72px,10vw,120px) var(--pad) 0; }
.footer-band-grid{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:clamp(24px,5vw,80px);
  max-width:1380px; margin-inline:auto; padding-bottom:clamp(90px,12vw,150px); }
.footer-nav{ display:flex; flex-direction:column; gap:10px; }
.fn-left{ align-items:flex-end; }
.fn-right{ align-items:flex-start; }
.footer-nav a{ font-weight:700; font-size:clamp(13px,1.4vw,16px); letter-spacing:.1em; text-transform:uppercase; color:var(--w-ink); opacity:.85; white-space:nowrap; }
.footer-nav a:hover{ opacity:1; }
.footer-logo-hero{ width:min(32vw,440px); height:auto; }
/* footer-scallop removed */
.footer-deep{ background:var(--w-ink); padding:clamp(48px,6vw,64px) var(--pad) 44px; }
.footer-deep-row{ display:flex; justify-content:space-between; align-items:center; gap:20px; max-width:1380px; margin-inline:auto; flex-wrap:wrap; }
.footer-mail{ font-weight:700; font-size:clamp(16px,2vw,20px); border-bottom:2px solid rgba(246,239,225,.35); padding-bottom:3px; }
.footer-meta{ display:flex; gap:clamp(16px,3vw,36px); font-size:12px; letter-spacing:.1em; text-transform:uppercase; opacity:.55; flex-wrap:wrap; }
@media (max-width:680px){
  .footer-band-grid{ grid-template-columns:1fr; justify-items:center; text-align:center; gap:28px; }
  .fn-left,.fn-right{ align-items:center; }
  .footer-logo-hero{ width:min(70vw,360px); order:-1; }
}

/* =====================================================================
   product page (PDP)
   ===================================================================== */
.pdp{ padding:clamp(40px,6vw,72px) var(--pad) clamp(64px,9vw,110px); }
.pdp-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:clamp(28px,5vw,64px); max-width:var(--maxw); margin-inline:auto; align-items:start; }
.pp-photo{ background:#fff; display:flex; align-items:center; justify-content:center; padding:clamp(24px,4vw,40px); border-radius:var(--r-lg); overflow:hidden; position:sticky; top:24px; }
.pp-photo img{ width:auto; height:auto; max-height:560px; max-width:88%; object-fit:contain; filter:drop-shadow(0 22px 34px rgba(20,20,19,.18)); }
.pdp-info{ padding-top:8px; }
.pdp-eyebrow{ font-weight:700; font-size:13px; letter-spacing:.2em; text-transform:uppercase; opacity:.6; }
.pdp-info h1{ font-weight:900; font-size:clamp(36px,5vw,64px); line-height:1.02; letter-spacing:-.02em; margin-top:10px; }
.pdp-tagline{ font-family:var(--serif); font-style:italic; font-size:clamp(18px,2vw,24px); margin-top:14px; opacity:.85; }
.pdp-price{ font-weight:900; font-size:clamp(24px,3vw,32px); margin-top:24px; }
.pdp-desc{ font-size:16px; line-height:1.7; margin-top:18px; max-width:48ch; }
.pdp-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.pdp-chip{ background:var(--w-paper); border:1.5px solid rgba(20,20,19,.12); border-radius:999px; padding:8px 16px; font-weight:700; font-size:13px; letter-spacing:.04em; text-transform:uppercase; }
.pdp-qty{ display:flex; gap:10px; margin-top:28px; flex-wrap:wrap; }
.pdp-qty button{ border:2px solid var(--w-ink); background:transparent; border-radius:999px; padding:12px 22px; font-weight:700; cursor:pointer; transition:.2s; }
.pdp-qty button[aria-pressed="true"]{ background:var(--w-ink); color:var(--w-cream); }
.pdp-variant{ display:block; width:100%; margin-top:8px; padding:14px 18px; border:2px solid var(--w-ink); border-radius:14px; background:var(--w-cream); font-weight:700; font-size:16px; }
.pdp-add{ margin-top:24px; width:100%; }
.pdp-desc.rte p{ margin-bottom:1em; }
.pdp-stock{ margin-top:14px; font-size:14px; display:flex; align-items:center; gap:8px; opacity:.75; }
.pdp-stock::before{ content:""; width:9px; height:9px; border-radius:50%; background:var(--w-green); display:inline-block; }
@media (max-width:760px){ .pdp-grid{ grid-template-columns:1fr; } .pp-photo{ position:static; } }

/* generic page / cart / 404 / collection helpers */
.page-narrow{ max-width:760px; margin-inline:auto; padding:clamp(56px,8vw,96px) var(--pad); }
.page-narrow h1{ font-weight:900; font-size:clamp(34px,5vw,60px); letter-spacing:-.015em; }
.page-narrow .rte{ margin-top:24px; font-size:17px; line-height:1.75; }
.page-narrow .rte p{ margin-bottom:1em; }
.product-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:clamp(18px,3vw,28px); max-width:var(--maxw); margin:48px auto 0; padding-inline:var(--pad); }
.card{ background:var(--w-paper); border-radius:var(--r-md); overflow:hidden; box-shadow:0 12px 28px rgba(20,20,19,.07); }
.card .card-shot{ background:#fff; aspect-ratio:1/1.02; display:flex; align-items:center; justify-content:center; padding:18px; }
.card .card-shot img{ max-width:82%; max-height:100%; object-fit:contain; }
.card .card-body{ padding:18px 20px 22px; }
.card h3{ font-weight:900; font-size:20px; }
.card .card-price{ margin-top:6px; font-weight:700; opacity:.8; }
.empty-state{ text-align:center; padding:clamp(80px,12vw,140px) var(--pad); }
.empty-state h1{ font-weight:900; font-size:clamp(32px,5vw,56px); }
.empty-state p{ font-family:var(--serif); font-style:italic; font-size:20px; margin:16px 0 32px; }

/* account forms */
.acct{ max-width:480px; }
.acct label{ display:block; font-weight:700; font-size:13px; letter-spacing:.06em; text-transform:uppercase; margin:18px 0 6px; }
.acct input{ width:100%; border:2px solid var(--w-ink); background:var(--w-cream); border-radius:12px; padding:13px 16px; font-size:16px; }
.acct .btn{ margin-top:24px; }
.acct-alt{ margin-top:22px; font-size:15px; }
.acct-alt a,.rte a{ font-weight:700; border-bottom:2px solid var(--w-ink); }
.acct table{ width:100%; border-collapse:collapse; margin-top:24px; }
.acct th,.acct td{ text-align:left; padding:12px 8px; border-bottom:1.5px solid rgba(20,20,19,.12); font-size:15px; }

/* =====================================================================
   FAQ, "Frequently Wondered"
   ===================================================================== */
.faq{ padding:clamp(64px,9vw,110px) var(--pad); }
.faq-inner{ max-width:820px; margin-inline:auto; }
.faq-head{ text-align:center; margin-bottom:clamp(30px,5vw,52px); }
.faq-sub{ font-family:var(--serif); font-style:italic; font-size:clamp(17px,1.8vw,22px); margin-top:12px; opacity:.8; }
.faq-list{ border-top:1.5px solid rgba(20,20,19,.12); }
.faq-item{ border-bottom:1.5px solid rgba(20,20,19,.12); }
.faq-item summary{ list-style:none; cursor:pointer; padding:22px 0; font-weight:900; font-size:clamp(17px,2vw,22px); letter-spacing:-.01em; display:flex; justify-content:space-between; align-items:center; gap:20px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:'+'; font-weight:700; font-size:26px; line-height:1; opacity:.55; flex:0 0 auto; }
.faq-item[open] summary::after{ content:'\2013'; }
.faq-answer{ padding:0 0 24px; font-size:16px; line-height:1.7; max-width:64ch; }
.faq-answer p{ margin-bottom:.7em; }

/* =====================================================================
   PDP x10, gallery, packs, rating, trust, sticky add-to-cart
   ===================================================================== */
.pdp-gallery{ position:sticky; top:24px; }
.pp-photo{ position:relative; background:var(--w-paper); }
.pp-cloud{ position:absolute; top:16px; left:16px; width:62px; opacity:.92; --cloud:#fff; --cloud-ink:rgba(20,20,19,.82); z-index:2; }
.pp-main{ position:relative; z-index:1; }
.pp-thumbs{ display:flex; gap:10px; margin-top:14px; }
.pp-thumb{ width:64px; height:64px; border-radius:14px; overflow:hidden; border:2px solid rgba(20,20,19,.15); background:#fff; cursor:pointer; padding:5px; }
.pp-thumb.is-active{ border-color:var(--w-ink); }
.pp-thumb img{ width:100%; height:100%; object-fit:contain; }
.pdp-rating{ display:flex; align-items:center; gap:10px; margin-top:12px; font-size:14px; }
.pdp-rating .stars{ color:var(--w-yellow); -webkit-text-stroke:.8px var(--w-ink); font-size:18px; letter-spacing:1px; }
.pdp-rating span:last-child{ opacity:.7; font-weight:700; }
.pdp-pack-label{ font-weight:700; font-size:13px; letter-spacing:.06em; text-transform:uppercase; opacity:.6; margin-top:28px; margin-bottom:10px; }
.pdp-packs.pdp-qty{ margin-top:0; }
.pdp-pack{ display:flex; flex-direction:column; gap:1px; }
.pk-per{ font-size:12px; opacity:.6; }
.pk-note{ font-size:11px; letter-spacing:.03em; text-transform:uppercase; opacity:.55; margin-top:2px; }
.pdp-add{ margin-top:18px; width:100%; font-size:clamp(16px,1.5vw,19px); }
.pdp-trust{ list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:20px; font-size:14px; opacity:.85; }
.pdp-trust li{ display:flex; align-items:center; gap:10px; font-weight:500; }
.pdp-trust svg{ width:19px; height:19px; flex:0 0 auto; }
.pdp-sticky{ position:fixed; left:0; right:0; bottom:0; z-index:60; background:var(--w-cream); border-top:2px solid var(--w-ink); transform:translateY(110%); transition:transform .3s cubic-bezier(.22,1,.36,1); box-shadow:0 -10px 30px rgba(20,20,19,.1); }
.pdp-sticky.show{ transform:none; }
.pdp-sticky-inner{ display:flex; align-items:center; gap:16px; padding:12px var(--pad); }
.pss-title{ font-weight:900; font-size:16px; flex:1; min-width:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pss-price{ font-weight:700; white-space:nowrap; }
@media (max-width:760px){ .pdp-gallery{ position:static; } .pss-title{ display:none; } .pdp-sticky-inner .btn{ flex:1; } }

/* =====================================================================
   smile-cloud motif
   ===================================================================== */
.smile-cloud{ display:block; width:100%; height:auto; overflow:visible; filter:drop-shadow(0 8px 18px rgba(20,20,19,.08)); }
@media (prefers-reduced-motion:no-preference){
  .sc-eyes{ transform-box:fill-box; transform-origin:center; animation:sc-blink 6s ease-in-out infinite; }
  .fc2 .sc-eyes{ animation-delay:-3s; } .c2 .sc-eyes{ animation-delay:-2s; }
  @keyframes sc-blink{ 0%,90%,100%{ transform:scaleY(1); } 94%{ transform:scaleY(.1); } 97%{ transform:scaleY(1); } }
}

/* =====================================================================
   hero (light), airy, optimistic, "light as air"
   ===================================================================== */
.hero-light{ position:relative; overflow:hidden; background:linear-gradient(180deg,var(--top,#FCF8EF) 0%,var(--bottom,#CDE9F2) 100%); padding:clamp(36px,6vw,80px) var(--pad) 0; }
.hl-sky{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.hl-inner{ position:relative; z-index:2; max-width:var(--maxw); margin-inline:auto; display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:clamp(20px,4vw,56px); min-height:min(74vh,680px); }
.hl-eyebrow{ font-weight:700; font-size:clamp(12px,1.5vw,15px); letter-spacing:.26em; text-transform:uppercase; opacity:.7; }
.hl-title{ font-weight:900; font-size:clamp(44px,7vw,108px); line-height:.98; letter-spacing:-.02em; margin-top:16px; text-wrap:balance; }
.hl-sub{ font-family:var(--serif); font-style:italic; font-size:clamp(18px,2.2vw,28px); margin-top:18px; max-width:22ch; opacity:.9; }
.hl-cta{ margin-top:clamp(22px,3vw,34px); }
.hl-bag{ display:flex; justify-content:center; }
.hl-bag img{ width:auto; height:auto; max-height:min(58vh,540px); max-width:86%; object-fit:contain; filter:drop-shadow(0 30px 42px rgba(20,20,19,.18)); translate:var(--mx,0) var(--my,0); }
.hl-cloud{ position:absolute; width:clamp(78px,12vw,176px); --cloud:#fff; --cloud-ink:rgba(20,20,19,.82); translate:var(--mx,0) var(--my,0); }
.hl-cloud.c1{ left:47%; top:8%; opacity:.92; }
.hl-cloud.c2{ right:4%; top:9%; width:clamp(58px,8vw,118px); opacity:.72; }
.hl-cloud.c3{ right:33%; bottom:9%; width:clamp(66px,9vw,140px); opacity:.6; }
.hl-pop{ position:absolute; width:clamp(30px,4.5vw,66px); height:auto; filter:drop-shadow(0 6px 11px rgba(20,20,19,.16)); translate:var(--mx,0) var(--my,0); pointer-events:none; z-index:1; }
.hl-pop.flip,.fc-pop.flip{ scale:-1 1; }
/* clustered around the bag (right) + a couple at the far-left margin, never over the headline */
.hl-pop.p1{ right:7%;  bottom:11%; width:clamp(44px,5.8vw,88px); }
.hl-pop.p2{ right:1%;  top:40%;    width:clamp(30px,3.8vw,58px); }
.hl-pop.p3{ right:32%; bottom:6%;  width:clamp(38px,4.8vw,72px); }
.hl-pop.p4{ right:23%; top:12%;    width:clamp(26px,3.2vw,50px); }
.hl-pop.p5{ right:41%; top:50%;    width:clamp(24px,3vw,46px); }
.hl-pop.p6{ right:6%;  top:64%;    width:clamp(22px,2.8vw,42px); }
@media (prefers-reduced-motion:no-preference){
  .hl-pop{ animation:hl-popfloat var(--fd,11s) ease-in-out infinite alternate; }
  .hl-pop.p2{ --fd:13s; animation-delay:-2s; } .hl-pop.p3{ --fd:9.5s; animation-delay:-4s; }
  .hl-pop.p4{ --fd:12s; animation-delay:-1s; } .hl-pop.p5{ --fd:10s; animation-delay:-3s; } .hl-pop.p6{ --fd:14s; animation-delay:-5s; }
  @keyframes hl-popfloat{ from{ transform:translateY(0) rotate(-10deg); } to{ transform:translateY(-24px) rotate(12deg); } }
}
@media (max-width:600px){ .hl-pop.p3,.hl-pop.p4{ display:none; } }
@media (prefers-reduced-motion:no-preference){
  .hl-bag img{ animation:hl-bob 6s ease-in-out infinite alternate; }
  @keyframes hl-bob{ from{ transform:translateY(0) rotate(-1.5deg);} to{ transform:translateY(-18px) rotate(1.5deg);} }
  .hl-cloud{ animation:hl-drift 26s ease-in-out infinite alternate; }
  .hl-cloud.c2{ animation-duration:34s; } .hl-cloud.c3{ animation-duration:30s; animation-direction:alternate-reverse; }
  @keyframes hl-drift{ from{ transform:translateX(0);} to{ transform:translateX(28px);} }
  .pk{ animation:hl-rise var(--rd,9s) linear infinite; }
  .pk2{ --rd:11s; animation-delay:2s; } .pk3{ --rd:8s; animation-delay:4s; } .pk4{ --rd:12s; animation-delay:1s; } .pk5{ --rd:10s; animation-delay:5s; }
  @keyframes hl-rise{ 0%{ transform:translateY(0) rotate(0); opacity:0; } 12%{ opacity:.9; } 88%{ opacity:.5; } 100%{ transform:translateY(-66vh) rotate(220deg); opacity:0; } }
}
.hl-baseline{ position:relative; margin-top:clamp(34px,6vw,68px); height:72px; background:#fff; display:flex; align-items:center; justify-content:center; }
.hl-baseline::before{ content:''; position:absolute; left:0; right:0; top:-24px; height:26px; background-image:radial-gradient(circle 26px at 30px 26px,#fff 25px,transparent 26px); background-size:60px 26px; background-repeat:repeat-x; }
.hl-baseline span{ position:relative; z-index:1; font-weight:900; font-size:clamp(11px,1.5vw,15px); letter-spacing:.2em; text-transform:uppercase; color:var(--w-ink); opacity:.65; }
@media (max-width:760px){
  .hl-inner{ grid-template-columns:1fr; text-align:center; gap:6px; min-height:0; padding-block:clamp(20px,6vw,40px); }
  .hl-bag{ order:-1; } .hl-sub{ margin-inline:auto; }
}

/* =====================================================================
   PDP upgrade, benefit row, flavor swatches, pack tiers, accordions
   ===================================================================== */
.pdp-icons{ display:flex; flex-wrap:wrap; gap:clamp(16px,3vw,30px); margin-top:24px; }
.pdp-benefit{ display:flex; flex-direction:column; align-items:center; gap:9px; width:84px; text-align:center; }
.pdp-benefit img{ width:clamp(48px,5vw,60px); height:auto; object-fit:contain; }
.pdp-benefit i{ width:40px; height:40px; border-radius:50%; background:var(--w-cream); display:grid; place-items:center; font-style:normal; font-weight:900; color:var(--w-teal); font-size:16px; }
.pdp-benefit span{ font-weight:700; font-size:11px; letter-spacing:.04em; text-transform:uppercase; line-height:1.2; }
.pdp-flavors{ display:flex; gap:12px; align-items:center; margin-top:26px; }
.pdp-flavors .lbl{ font-weight:700; font-size:12px; letter-spacing:.16em; text-transform:uppercase; opacity:.6; margin-right:4px; }
.pdp-swatch{ width:48px; height:48px; border-radius:50%; overflow:hidden; border:2px solid rgba(20,20,19,.15); background:#fff; display:grid; place-items:center; transition:.2s; }
.pdp-swatch:hover{ transform:translateY(-2px); }
.pdp-swatch.is-active{ border-color:var(--w-ink); box-shadow:0 0 0 3px var(--w-cream),0 0 0 5px var(--w-ink); }
.pdp-swatch img{ width:100%; height:100%; object-fit:contain; padding:5px; }
.pdp-packs{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:26px; }
.pdp-pack{ position:relative; border:2px solid transparent; box-shadow:var(--shadow-border); border-radius:16px; padding:18px 10px 14px; text-align:center; cursor:pointer; background:var(--w-paper); transition:.2s; }
.pdp-pack:not([aria-pressed="true"]):hover{ box-shadow:var(--shadow-border-hover); }
.pdp-pack[aria-pressed="true"]{ border-color:var(--w-ink); background:#fff; box-shadow:0 10px 22px rgba(20,20,19,.08); }
.pdp-pack .pk-qty{ font-weight:900; font-size:clamp(16px,2vw,20px); }
.pdp-pack .pk-note{ font-size:11px; letter-spacing:.03em; text-transform:uppercase; opacity:.55; margin-top:2px; }
.pdp-pack .pk-save{ position:absolute; top:-10px; left:50%; transform:translateX(-50%); background:var(--w-yellow); color:var(--w-ink); font-size:10px; font-weight:900; letter-spacing:.03em; text-transform:uppercase; padding:3px 9px; border-radius:999px; white-space:nowrap; }
.pdp-acc{ margin-top:30px; border-top:1.5px solid rgba(20,20,19,.12); }
.pdp-acc details{ border-bottom:1.5px solid rgba(20,20,19,.12); }
.pdp-acc summary{ list-style:none; cursor:pointer; padding:18px 0; font-weight:900; font-size:16px; letter-spacing:.01em; display:flex; justify-content:space-between; align-items:center; }
.pdp-acc summary::-webkit-details-marker{ display:none; }
.pdp-acc summary::after{ content:'+'; font-weight:700; font-size:22px; line-height:1; opacity:.6; }
.pdp-acc details[open] summary::after{ content:'\2013'; }
.pdp-acc .acc-body{ padding:0 0 20px; font-size:15px; line-height:1.7; }
.pdp-acc .acc-body p{ margin-bottom:.7em; }

/* =====================================================================
   global motion-off (theme setting), calm fallback
   ===================================================================== */
.motion-off *,.motion-off *::before,.motion-off *::after{ animation:none!important; transition:none!important; }
.motion-off .reveal{ opacity:1!important; transform:none!important; }
.motion-off .manifesto .w{ color:var(--mf-text)!important; }
.motion-off .manifesto.is-scrub{ min-height:0; }
.motion-off .manifesto.is-scrub .manifesto-sticky{ position:static; min-height:0; padding-block:clamp(80px,12vw,140px); }

/* ===== make-interfaces-feel-better polish pass ===== */
/* 12 Scale on press (always .96) */
.btn{ transition:transform .25s ease, background-color .2s ease, scale .12s ease; }
.btn:active{ scale:.96; }
.pdp-qty button{ transition:background-color .2s ease, border-color .2s ease, color .2s ease, scale .12s ease; }
.pdp-pack{ transition:background-color .2s ease, border-color .2s ease, box-shadow .2s ease, scale .12s ease; }
.pdp-swatch{ transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease, scale .12s ease; }
.pdp-qty button:active,.pdp-pack:active,.pdp-swatch:active{ scale:.96; }
/* 9 Tabular numbers (no layout shift on prices/stats) */
.pdp-price,.shop-price,.b2b-stat strong,.pk-per,.pk-note,.pk-qty,.compare .c-row>div,[data-cart-total],[data-cart-total-mirror]{ font-variant-numeric:tabular-nums; }
/* 14 Never transition:all -> explicit properties only */
.nav-toggle span{ transition-property:transform,opacity; }
/* 16 Minimum 40x40 hit area on the mobile burger */
@media (max-width:760px){ .nav-toggle{ padding:8px 10px; } }
/* 11 Image outlines: pure black, follows the radius (never tinted) */
.feeling-photo,.moment,.chapter-media{ position:relative; }
.moment::after,.chapter-media::after{ content:""; position:absolute; inset:0; border-radius:inherit; box-shadow:inset 0 0 0 1px rgba(0,0,0,.1); pointer-events:none; z-index:3; }
/* 5 Split + stagger enters (JS reveal path; scroll-timeline path already staggers by position) */
.flavor-grid>.reveal:nth-child(2),.ing-deck>.reveal:nth-child(2){ transition-delay:.08s; }
.flavor-grid>.reveal:nth-child(3),.ing-deck>.reveal:nth-child(3){ transition-delay:.16s; }
.flavor-grid>.reveal:nth-child(4),.ing-deck>.reveal:nth-child(4){ transition-delay:.24s; }

/* store finder is the primary nav action (shop stays a plain link) */
.nav-links .nl-find{ display:inline-flex; align-items:center; gap:7px;
  border:2px solid var(--w-ink); border-radius:999px; padding:9px 18px; font-weight:700;
  transition:background .2s ease, color .2s ease; }
.nav-links .nl-find:hover{ background:var(--w-ink); color:var(--w-cream); }
@media (max-width:760px){
  .nav-links .nl-find{ border:none; padding:0; gap:12px; }
  .nav-links .nl-find:hover{ background:none; color:inherit; }
  .nav-links .nl-find svg{ width:22px; height:22px; }
}

/* cart: icon on desktop with a count badge; label returns in the mobile drawer */
.nav-cart{ position:relative; }
.nav-cart-label{ display:none; }
.nav-cart .nl-count{ position:absolute; top:-6px; right:-8px; min-width:18px; height:18px;
  padding:0 5px; border-radius:999px; background:var(--w-ink); color:var(--w-cream);
  font-size:11px; font-weight:700; line-height:18px; text-align:center; }
@media (max-width:760px){
  .nav-links .nav-cart{ gap:12px; }
  .nav-cart-label{ display:inline; }
  .nav-cart .nl-count{ position:static; background:none; color:inherit; font-size:inherit; height:auto; padding:0; }
  .nav-cart .nav-cart-ico{ width:26px; height:26px; }
}

/* =====================================================================
   mobile repair pass (2026-09-04)
   ===================================================================== */

/* stockists: .stk-copy carries flex:1 1 320px. Once .stk-band flips to
   flex-direction:column on mobile, that 320px basis lands on the HEIGHT,
   so a ~90px block of copy is forced 320px tall and opens a dead gap
   above the button. Reset the basis on the column axis. */
@media (max-width:760px){
  .stockists .stk-copy{ flex:0 0 auto; }
  .stockists .stk-band{ gap:0; }
  .stockists .btn{ align-self:stretch; text-align:center; }
}

/* comparison table: four columns do not fit a phone. Below 560px the row
   label takes its own full-width line and the three values share equal
   columns underneath (79px -> ~113px each). The absolute pink band is
   positioned in percentages against a four-column grid, so it cannot
   follow this layout: the Wonder column carries its own pink cell instead,
   which needs no coordinate maths and cannot drift. */
@media (max-width:560px){
  .compare-band{ display:none; }
  .c-row{ grid-template-columns:repeat(3,1fr); row-gap:6px; padding:12px 0 14px; column-gap:6px; border-bottom:none; }
  .c-row>div{ padding:0 6px; }
  .c-label{ grid-column:1 / -1; padding:0 2px; font-size:11px; opacity:.5; }
  .c-head .c-label{ display:none; }
  .compare-table{ font-size:13px; }
  .c-head{ padding:0 0 12px; border-bottom:2px solid var(--w-ink); font-size:11px; line-height:1.2; }
  .c-head>div:not(.c-label){ align-self:end; }
  /* every Wonder cell is the same rounded pill: interleaved row labels make a single
     continuous band impossible here, so the highlight has to read as deliberate
     repetition rather than a band that keeps breaking */
  .c-wonder{ background:var(--w-pink); border-radius:14px; }
  .c-row:not(.c-head) .c-wonder{ padding:9px 6px; }
  .c-head .c-wonder{ padding:12px 6px; margin-bottom:2px; }
  .c-head .c-wonder img{ height:20px; }
  .mark{ width:19px; height:19px; font-size:11px; margin-right:4px; }
}
}

/* =====================================================================
   PDP duo shot: 100 g bag with the 30 g in front (2026-09-14)
   ===================================================================== */
/* The bag render carries transparent padding inside its own canvas: the visible
   bag occupies y 9.8%-88.3% and ends 16.2% short of the right edge. The 30 g asset
   is tight-cropped with none. So every offset below is measured against the CANVAS
   but chosen from the VISIBLE bag, which is why they are not round numbers:
   48% height = ~61% of the visible 100 g bag, and bottom 7% sets the 30 g a touch
   below the big bag's baseline so it reads as standing in front of it. */
.pp-duo{ position:relative; display:flex; align-items:center; justify-content:center; }
.pp-photo .pp-duo .pp-main{ position:relative; z-index:1; }
.pp-photo .pp-30{
  position:absolute; z-index:2; right:11%; bottom:7%;
  height:48%; width:auto; max-width:none; max-height:none;
  filter:drop-shadow(-8px 12px 20px rgba(20,20,19,.30)); }
@media (max-width:760px){
  .pp-photo .pp-30{ height:47%; right:9%; bottom:7%; }
}
