/* =====================================================================
   SATVA BEEJ HERBS — styles.css
   Premium botanical-apothecary design system (static site).
   ---------------------------------------------------------------------
   Brand: deep forest green + premium gold on warm ivory. Editorial
   Calisto MT headings (the brand's own wordmark face) with Poppins body.
   Generous glassmorphism: frosted nav, glass hero frame + badge, glass
   product/benefit cards, glass FAQ. The official client logo is used
   as-is (never recreated in text).

   Sections
     1. Self-hosted fonts
     2. Design tokens
     3. Base / reset / type
     4. Reusable atoms (container, eyebrow, buttons, chips, reveal, glass)
     5. Header / nav (glass)
     6. Hero (glass media frame)
     7. Trust strip
     8. Products intro + spotlights (B12 / ACV) + benefits + ingredients
     9. Why-us band
    10. Nutrition cards
    11. Reviews
    12. FAQ (glass)
    13. Temple pull-quote
    14. Final CTA + Footer
    15. Responsive
    16. Accessibility / reduced motion
   ===================================================================== */

/* ============================ 1. FONTS ============================== */
@font-face { font-family:"Calisto MT"; src:url("../fonts/calisto-mt.woff") format("woff"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("../fonts/poppins-light.woff")    format("woff"); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("../fonts/poppins-regular.woff")  format("woff"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("../fonts/poppins-medium.woff")   format("woff"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("../fonts/poppins-semibold.woff") format("woff"); font-weight:600; font-style:normal; font-display:swap; }

/* ============================ 2. TOKENS ============================= */
:root {
  /* Palette sampled directly from the official logo for brand accuracy */
  --forest:      #2a4d28;   /* logo deep green (primary)            */
  --forest-700:  #1e421d;   /* darker green from emblem outline     */
  --forest-900:  #122c12;   /* deepest green for dark sections      */
  --leaf:        #70a040;   /* mid leaf green (logo)                */
  --leaf-bright: #b9d43e;   /* bright leaf green (logo highlight)   */
  --gold:        #d88e26;   /* logo amber-orange (accent)           */
  --gold-300:    #ecc079;   /* lighter amber for on-dark text       */
  --cream:       #faf8f2;
  --ivory:       #fffdf8;
  --sage:        #eaf0e6;
  --sage-deep:   #dce7d6;
  --ink:         #14250f;
  --ink-60:      #51604a;
  --line:        #e7e2d4;

  --font-display: "Calisto MT", Georgia, "Times New Roman", serif;
  --font-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --fs-hero:  clamp(2.7rem, 1.5rem + 4.8vw, 4.8rem);
  --fs-h2:    clamp(2rem, 1.4rem + 2.6vw, 3.3rem);
  --fs-h3:    clamp(1.4rem, 1.2rem + 1vw, 1.85rem);
  --fs-lead:  clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  --fs-body:  1.02rem;
  --fs-eyebrow: 0.78rem;

  --section-y: clamp(4rem, 2.8rem + 5.5vw, 7.5rem);
  --gutter:    clamp(1.25rem, 0.5rem + 3vw, 3rem);
  --maxw:      1200px;

  --r-sm: 12px; --r-md: 18px; --r-lg: 28px; --r-xl: 34px; --r-pill: 999px;
  --shadow-card: 0 18px 48px -24px rgba(20,37,15,.30), 0 2px 8px -4px rgba(20,37,15,.12);
  --shadow-lift: 0 28px 64px -28px rgba(20,37,15,.42);
  --shadow-prod: 0 40px 80px -30px rgba(20,37,15,.45);

  /* Glassmorphism tokens (used widely per brief) */
  --glass-bg:        rgba(255,255,255,.55);
  --glass-bg-cream:  rgba(250,248,242,.72);
  --glass-border:    rgba(255,255,255,.6);
  --glass-blur:      saturate(160%) blur(16px);
  --glass-blur-lg:   saturate(170%) blur(22px);
  --glass-shadow:    0 12px 40px -16px rgba(20,37,15,.28), inset 0 1px 0 rgba(255,255,255,.5);
  --glass-dark-bg:     rgba(18,44,18,.42);
  --glass-dark-border: rgba(255,255,255,.16);

  --ease: cubic-bezier(.22,1,.36,1);
}

/* ========================= 3. BASE / TYPE ========================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.7;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; }     /* icons inherit font-size unless sized by a component */
::selection { background: var(--gold); color: #fff; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { color: var(--ink-60); }
strong, b { font-weight: 600; color: var(--ink); }

/* ====================== 4. REUSABLE ATOMS ========================== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: var(--section-y); }

.eyebrow {
  font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow[style*="center"]::after { content: ""; width: 22px; height: 1px; background: var(--gold); display: inline-block; }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .9rem; }
.section-head p  { margin-top: 1rem; font-size: var(--fs-lead); }

/* Buttons */
.btn {
  --btn-bg: var(--forest); --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; line-height: 1;
  padding: .95rem 1.7rem; border-radius: var(--r-pill); border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-gold  { --btn-bg: var(--gold); --btn-fg: #2a2208; }
.btn-ghost { --btn-bg: transparent; --btn-fg: currentColor; border-color: currentColor; }
.btn-ghost:hover { background: rgba(42,77,40,.08); }
.btn-lg    { padding: 1.05rem 2rem; font-size: 1rem; }
/* Glass button — frosted, for use over imagery / dark bands */
.btn-glass {
  --btn-fg: #fff;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--btn-fg);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  background-clip: padding-box;
}
.btn-glass:hover { background: rgba(255,255,255,.18); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-size: .82rem; font-weight: 500; color: var(--forest-700);
  padding: .42rem .85rem; border-radius: var(--r-pill);
  background: var(--glass-bg-cream); border: 1px solid var(--line);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
}

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--forest); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ===================== 5. HEADER / NAV (GLASS) ===================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: .35rem;
  background: linear-gradient(to bottom, rgba(18,44,18,.46), rgba(18,44,18,.14));
  -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
}
.site-header .nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 86px; }

/* Logo used AS-IS (official asset, never recreated). White over hero,
   colour once scrolled. Sized to stay legible (the vertical lockup needs
   height); it sits within a slim glass bar. */
.brand { display: inline-flex; align-items: center; line-height: 0; position: relative; }
.brand img { height: 86px; width: auto; transition: opacity .35s var(--ease), height .35s var(--ease); }
.brand .logo-color { position: absolute; left: 0; top: 0; opacity: 0; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a { font-size: 1.02rem; font-weight: 500; color: #fff; position: relative; transition: color .25s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 1.25rem; }
.menu-toggle { display: none; }

.site-header.is-scrolled {
  background: var(--glass-bg-cream);
  -webkit-backdrop-filter: var(--glass-blur-lg); backdrop-filter: var(--glass-blur-lg);
  box-shadow: 0 8px 30px -18px rgba(20,37,15,.4); border-bottom: 1px solid rgba(255,255,255,.5);
}
.site-header.is-scrolled .nav-links a { color: var(--ink); }
.site-header.is-scrolled .brand .logo-white { opacity: 0; }
.site-header.is-scrolled .brand .logo-color { opacity: 1; }
.site-header.is-scrolled .brand img { height: 72px; }
.site-header.is-scrolled .hamburger span { background: var(--ink); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled { background: rgba(250,248,242,.98); }
}

/* ============================ 6. HERO ============================== */
/* Designed banner: brand-green gradient base, botanical line art in gold,
   floating particles + grain. Content centred. Sharp at any size. */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  isolation: isolate; overflow: hidden; text-align: center;
  background:
    radial-gradient(140% 120% at 50% -10%, var(--forest) 0%, var(--forest-700) 45%, var(--forest-900) 100%);
}
/* film grain */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__aura { position: absolute; border-radius: 50%; filter: blur(20px); z-index: 0; pointer-events: none; }
.hero__aura--gold { width: 60vw; height: 60vw; top: -22vw; right: -14vw; background: radial-gradient(circle, rgba(216,142,38,.22), transparent 62%); animation: auraFloat 16s ease-in-out infinite; }
.hero__aura--leaf { width: 52vw; height: 52vw; bottom: -20vw; left: -14vw; background: radial-gradient(circle, rgba(112,160,64,.22), transparent 62%); animation: auraFloat 20s ease-in-out infinite reverse; }
@keyframes auraFloat { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(2.5vw,2vw);} }

/* botanical line art */
.hero__branch { position: absolute; z-index: 0; height: 88%; width: auto; color: var(--gold); opacity: .26; pointer-events: none; }
.hero__branch--r { right: -2%; bottom: -4%; }
.hero__branch--l { left: -2%; bottom: -4%; transform: scaleX(-1); color: var(--leaf); opacity: .2; }

/* floating particles */
.hero__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__particles span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: radial-gradient(circle, rgba(236,192,121,.9), rgba(236,192,121,0)); animation: rise linear infinite; }
.hero__particles span:nth-child(1){ left: 14%; bottom: -10px; animation-duration: 13s; animation-delay: 0s; }
.hero__particles span:nth-child(2){ left: 32%; bottom: -10px; animation-duration: 17s; animation-delay: 3s; transform: scale(.7); }
.hero__particles span:nth-child(3){ left: 54%; bottom: -10px; animation-duration: 15s; animation-delay: 6s; transform: scale(1.2); }
.hero__particles span:nth-child(4){ left: 68%; bottom: -10px; animation-duration: 19s; animation-delay: 1.5s; transform: scale(.6); }
.hero__particles span:nth-child(5){ left: 82%; bottom: -10px; animation-duration: 14s; animation-delay: 4.5s; }
.hero__particles span:nth-child(6){ left: 92%; bottom: -10px; animation-duration: 18s; animation-delay: 7.5s; transform: scale(.8); }
@keyframes rise { 0%{ transform: translateY(0); opacity: 0; } 12%{ opacity: 1; } 88%{ opacity: 1; } 100%{ transform: translateY(-104svh); opacity: 0; } }

.hero__inner { position: relative; z-index: 2; max-width: 820px; color: #fff; padding-top: 8rem; padding-bottom: 6rem; display: flex; flex-direction: column; align-items: center; }
.hero__inner .eyebrow { color: var(--gold-300); }
.hero__inner .eyebrow::before, .hero__inner .eyebrow::after { background: var(--gold-300); }
.hero h1 { color: #fff; margin-top: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero__lead { color: rgba(255,255,255,.86); font-size: var(--fs-lead); margin-top: 1.4rem; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; justify-content: center; }

/* Frosted glass stat bar — kept readable with a darker, less transparent fill */
.glass-panel {
  background: rgba(18,44,18,.55); border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: saturate(150%) blur(10px); backdrop-filter: saturate(150%) blur(10px);
  box-shadow: 0 18px 44px -20px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.18);
}
.hero__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; margin-top: 2.8rem; padding: 1.3rem 1.6rem; border-radius: var(--r-md); width: 100%; max-width: 620px; }
.hero__stat { text-align: center; position: relative; }
.hero__stat + .hero__stat::before { content: ""; position: absolute; left: -1px; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.28); }
.hero__stat b { display: block; font-family: var(--font-display); font-size: 1.55rem; line-height: 1; color: #fff; }
.hero__stat span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-top: .4rem; display: block; }

.hero__scroll { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 14px; display: grid; justify-items: center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: #fff; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(-4px);} 40%{opacity:1;} 80%{opacity:0;transform:translateY(10px);} 100%{opacity:0;} }


/* ===================== 8. PRODUCTS / SPOTLIGHTS ==================== */
/* Both products share one calm, light treatment. Alternate sides; product
   image reads big and sharp on a clean stage (no green wash). */
.products-intro { padding-bottom: 0; background: var(--cream); }
.spotlight { background: var(--cream); }
.spotlight--alt { background: linear-gradient(180deg, #f4f1e7, var(--cream)); }
.spotlight .container { position: relative; z-index: 1; }

.spotlight__top { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.spotlight__top--reverse .product__stage { order: 2; }

.product__stage {
  position: relative; border-radius: var(--r-lg);
  background: radial-gradient(120% 95% at 50% 12%, #ffffff 0%, var(--ivory) 50%, #eef3ec 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  display: grid; place-items: center; padding: clamp(1rem,2.2vw,2rem); min-height: 600px; overflow: hidden;
}
.product__stage::after { content: ""; position: absolute; width: 76%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(42,77,40,.14), transparent 70%); filter: blur(10px); z-index: 0; }
/* Bigger, zoomed product (client request) */
.product__img { position: relative; z-index: 1; max-height: 560px; width: auto; filter: drop-shadow(0 34px 46px rgba(20,37,15,.30)); transition: transform .6s var(--ease); animation: floaty 6s ease-in-out infinite; }
.product__img--tall { max-height: 580px; }
.product__stage:hover .product__img { transform: translateY(-10px) scale(1.03); }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

.product__badge {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--forest);
  background: var(--glass-bg-cream); border: 1px solid var(--line); padding: .45rem .85rem; border-radius: var(--r-pill);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
}

.spotlight__intro .eyebrow { margin-bottom: .8rem; }
.spotlight__intro h2 { font-size: clamp(1.9rem, 1.4rem+1.8vw, 2.8rem); }
.spotlight__tagline { color: var(--forest); font-weight: 500; font-style: italic; margin-top: .5rem; font-size: 1.1rem; }
.spotlight__desc { margin-top: 1rem; max-width: 46ch; }
.spotlight__intro .chips { margin-top: 1.3rem; }

/* Price block */
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }
.price__now  { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--forest); }
.price__mrp  { font-size: 1rem; color: var(--ink-60); text-decoration: line-through; text-decoration-thickness: 1px; }
.price__off  { font-size: .76rem; font-weight: 600; color: #fff; background: var(--gold); padding: .3rem .7rem; border-radius: var(--r-pill); }
.price__offer { display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem; font-size: .82rem; font-weight: 600; color: #b4452b; }
.price__offer svg { width: 15px; height: 15px; }
.product__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.product__note { display: flex; align-items: center; gap: .5rem; margin-top: 1.1rem; font-size: .82rem; color: var(--ink-60); }
.product__note svg { width: 16px; height: 16px; color: var(--forest); flex: none; }

/* The Formula — one premium "What's inside" grid */
.formula { margin-top: clamp(3rem,5vw,4.5rem); }
.formula__head { text-align: center; margin-bottom: 2.2rem; }
.formula__head h3 { font-size: clamp(1.6rem,1.2rem+1.4vw,2.2rem); margin-top: .6rem; }
.formula__grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.formula__card {
  display: flex; align-items: center; gap: .9rem;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.formula__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--gold-300); }
.formula__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(42,77,40,.1); color: var(--forest); flex: none; }
.formula__icon svg { width: 23px; height: 23px; }
.formula__card b { display: block; font-size: 1rem; color: var(--ink); }
.formula__card span { font-size: .85rem; color: var(--ink-60); }

/* Three product pillars (e.g. Super-Green / Fruit / Mushroom) */
.pillars { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: clamp(2.5rem,4vw,3.5rem); }
.pillars--two { grid-template-columns: repeat(2,1fr); max-width: 760px; margin-inline: auto; }
.pillar { position: relative; text-align: center; padding: 2.2rem 1.6rem; border-radius: var(--r-lg); background: linear-gradient(180deg, var(--ivory), #f4f7f1); border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform .35s var(--ease), box-shadow .35s var(--ease); overflow: hidden; }
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--leaf), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__icon { width: 60px; height: 60px; margin: 0 auto 1.2rem; border-radius: 16px; display: grid; place-items: center; background: radial-gradient(circle at 30% 25%, rgba(112,160,64,.2), rgba(42,77,40,.1)); color: var(--forest); }
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.3rem; }
.pillar p { font-size: .92rem; margin-top: .55rem; }

/* =========================== 9. WHY-US ============================ */
.why { background: var(--sage); position: relative; }
.why .section-head { /* on light sage */ }
.why__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3.2rem; }
.feature { background: var(--ivory); border: 1px solid var(--sage-deep); border-radius: var(--r-md); padding: 1.9rem 1.5rem; box-shadow: var(--shadow-card); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(42,77,40,.1); color: var(--forest); margin-bottom: 1.2rem; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; }
.feature p { font-size: .92rem; margin-top: .5rem; }

/* ====================== 10. NUTRITION CARDS ======================= */
.nutrition { background: var(--cream); }
.nutrition__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 3.2rem; }
.label-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-card); }
.label-card__head h3 { font-size: 1.7rem; }
.label-card__head .sub { font-size: .9rem; color: var(--ink-60); }
.label-card .rule { height: 6px; border-radius: 3px; margin: 1rem 0; }
.label-card .rule.green { background: var(--forest); }
.label-card .rule.gold  { background: var(--gold); }
.label-card .serving { font-size: .92rem; }
.label-card .serving b { color: var(--ink); }
.facts { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.facts th, .facts td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.facts thead th { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-60); font-weight: 600; }
.facts td:last-child, .facts th:last-child { text-align: right; }
.facts .ing { font-weight: 600; color: var(--ink); }
.facts .dv  { color: var(--forest); font-weight: 600; }
.macros { display: grid; grid-template-columns: repeat(4,1fr); gap: .6rem; margin-top: 1.3rem; }
.macro { background: var(--sage); border-radius: var(--r-sm); padding: .8rem .5rem; text-align: center; }
.macro b { display: block; font-size: 1.05rem; color: var(--ink); }
.macro span { font-size: .72rem; color: var(--ink-60); }
.label-card .foot { margin-top: 1.1rem; font-size: .78rem; color: var(--ink-60); line-height: 1.6; }
.nutrition__note { text-align: center; margin-top: 2.4rem; font-size: .92rem; color: var(--ink-60); }

/* ======================== 11. REVIEWS ============================= */
.reviews { background: var(--sage); }
.reviews .stars { display: inline-flex; gap: .2rem; color: var(--gold); margin-top: 1rem; }
.reviews .stars svg { width: 22px; height: 22px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 3rem; }
.review { background: var(--ivory); border: 1px solid var(--sage-deep); border-radius: var(--r-md); padding: 2rem 1.8rem; box-shadow: var(--shadow-card); }
.review .stars { margin: 0 0 1.1rem; }
.review .stars svg { width: 18px; height: 18px; }
.review p { color: var(--ink); font-size: 1rem; line-height: 1.7; font-style: italic; }
.review .who { margin-top: 1.4rem; }
.review .who b { display: block; color: var(--forest); font-family: var(--font-display); font-size: 1.15rem; font-style: normal; }
.review .who span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-60); }

/* ========================== 12. FAQ ============================== */
.faq { background: var(--cream); }
.faq__wrap { max-width: 820px; }
.faq__list { margin-top: 2.6rem; display: grid; gap: .9rem; }
.faq-item {
  background: var(--glass-bg-cream); border: 1px solid var(--line); border-radius: var(--r-md);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; font-family: var(--font-display); font-size: 1.18rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { width: 22px; height: 22px; color: var(--forest); flex: none; transition: transform .3s var(--ease); }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.35rem; }
.faq-answer p { font-size: .98rem; }
.faq-item[open] .faq-answer { animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ========================= 13. TEMPLE ============================= */
.temple { background: linear-gradient(180deg, var(--sage) 0%, var(--cream) 100%); color: var(--ink); overflow: hidden; }
.temple .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.temple__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-prod); }
.temple__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.temple__quote .eyebrow { color: var(--gold); }
.temple__quote .eyebrow::before { background: var(--gold); }
.temple blockquote { font-family: var(--font-display); font-size: clamp(1.9rem,1.2rem+2.2vw,3.1rem); line-height: 1.25; margin-top: 1.2rem; color: var(--forest); }
.temple blockquote .q { color: var(--gold); }
.temple p { color: var(--ink-60); margin-top: 1.5rem; max-width: 52ch; }
.temple cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--forest); }

/* ====================== 14. CTA + FOOTER ========================== */
/* Final CTA: on-theme ivory section with a premium card (no heavy colour
   band, so only the footer is dark). */
.cta-band { background: var(--ivory); }
.cta-card {
  position: relative; max-width: 880px; margin-inline: auto; text-align: center;
  padding: clamp(2.5rem,5vw,4rem) clamp(1.5rem,4vw,3.5rem);
  border-radius: var(--r-xl); background: linear-gradient(165deg, #ffffff 0%, #f3f7ee 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow-card); overflow: hidden;
}
.cta-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--leaf), var(--gold)); }
.cta-card .eyebrow { color: var(--gold); }
.cta-card .eyebrow::before, .cta-card .eyebrow::after { background: var(--gold); }
.cta-card h2 { color: var(--forest); margin-top: .9rem; }
.cta-card p { color: var(--ink-60); max-width: 50ch; margin: 1rem auto 0; font-size: var(--fs-lead); }
.cta-card .actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.site-footer { background: var(--forest-900); color: rgba(255,255,255,.74); padding-top: clamp(3.5rem,5vw,5.5rem); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand .logo-plate { display: inline-block; background: var(--ivory); border-radius: 14px; padding: 11px 15px; margin-bottom: 1.2rem; box-shadow: 0 12px 28px -14px rgba(0,0,0,.5); }
.footer__brand img { height: 88px; width: auto; display: block; }
.footer__brand p { color: rgba(255,255,255,.7); max-width: 34ch; }
.site-footer h4 { font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 1.2rem; }
.footer__links { display: flex; flex-direction: column; gap: .7rem; }
.footer__links a { color: rgba(255,255,255,.74); font-size: .95rem; transition: color .2s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__contact { padding: 0; list-style: none; }
.footer__contact li { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1rem; font-size: .95rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-300); flex: none; margin-top: 3px; }
.footer__contact a { color: rgba(255,255,255,.74); }
.footer__contact a:hover { color: #fff; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); color: #fff; transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-900); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.6rem; font-size: .82rem; color: rgba(255,255,255,.55); }

/* ===================== PREMIUM ANIMATIONS ======================== */
/* Hero entrance: each element rises and fades, staggered by --d. */
.hero-rise { opacity: 0; transform: translateY(26px); animation: heroRise .9s var(--ease) forwards; animation-delay: calc(var(--d, 0) * .12s + .15s); }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* Button sheen on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn-ghost::after { display: none; }

/* Gentle lift on glass/feature/label/review cards already handled per-section */

/* ===================== 15. RESPONSIVE ============================= */
@media (max-width: 1040px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .spotlight__top { grid-template-columns: 1fr; gap: 2rem; }
  .spotlight__top--reverse .product__stage { order: 0; }
  .product__stage { min-height: 470px; }
  .product__img { max-height: 450px; }
  .product__img--tall { max-height: 470px; }
  .formula__grid { grid-template-columns: repeat(2,1fr); }
  .pillars { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2,1fr); }
  .hero__inner { max-width: none; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .hamburger { width: 44px; height: 44px; border: 0; background: transparent; display: inline-grid; place-content: center; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2.4px; border-radius: 2px; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease); }
  body.menu-open .hamburger span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
  body.menu-open .site-header .hamburger span { background: var(--ink); }
  /* When the light menu is open, force the colour logo for contrast */
  body.menu-open .site-header .brand .logo-white { opacity: 0; }
  body.menu-open .site-header .brand .logo-color { opacity: 1; }

  .mobile-menu {
    display: block; position: fixed; inset: 0 0 auto 0; z-index: 90;
    background: rgba(250,248,242,.94); -webkit-backdrop-filter: var(--glass-blur-lg); backdrop-filter: var(--glass-blur-lg);
    padding: 7rem var(--gutter) 2.5rem; transform: translateY(-100%); transition: transform .45s var(--ease);
    box-shadow: 0 24px 50px -20px rgba(20,37,15,.35); border-bottom: 1px solid var(--line);
  }
  body.menu-open .mobile-menu { transform: translateY(0); }
  .mobile-menu a:not(.btn) { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: 1.5rem; width: 100%; }

  .temple .container { grid-template-columns: 1fr; }
  .temple__img { order: 2; max-width: 460px; }
  .nutrition__grid, .reviews__grid { grid-template-columns: 1fr; }
}
@media (min-width: 861px) { .mobile-menu { display: none; } }   /* hidden on desktop */

@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
  .formula__grid { grid-template-columns: 1fr; }
  .macros { grid-template-columns: repeat(2,1fr); }
  .hero__actions .btn, .product__actions .btn { width: 100%; }
  .hero__stats { grid-template-columns: repeat(2,1fr); gap: 1rem .5rem; }
  .hero__stat::before { display: none; }
  .product__stage { min-height: 380px; }
  .product__img, .product__img--tall { max-height: 340px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

/* ===================== LEGAL PAGES ============================== */
.legal-hero { background: linear-gradient(160deg, var(--forest-900), var(--forest-700)); color: #fff; padding-top: clamp(8rem, 7rem + 5vw, 11rem); padding-bottom: clamp(3rem, 2rem + 4vw, 5rem); }
.legal-hero .eyebrow { color: var(--gold-300); }
.legal-hero .eyebrow::before { background: var(--gold-300); }
.legal-hero h1 { color: #fff; font-size: var(--fs-h2); margin-top: .9rem; }
.legal-hero .updated { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .8rem; }
.legal { background: var(--cream); padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.legal__wrap { max-width: 820px; }
.legal__card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: clamp(1.75rem, 1rem + 3vw, 3.25rem); }
.legal__card h2 { font-size: 1.5rem; margin: 2.2rem 0 .9rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.legal__card h2:first-of-type { margin-top: .5rem; padding-top: 0; border-top: 0; }
.legal__card p { margin-bottom: 1rem; line-height: 1.75; }
.legal__card ul { margin: 0 0 1.1rem 0; padding-left: 1.2rem; }
.legal__card li { color: var(--ink-60); margin-bottom: .55rem; line-height: 1.7; }
.legal__card a { color: var(--forest); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(42,77,40,.35); text-underline-offset: 3px; }
.legal__card a:hover { text-decoration-color: var(--forest); }
.legal__contact { margin-top: 1.4rem; padding: 1.25rem 1.4rem; background: var(--sage); border-radius: var(--r-md); }
.legal__contact p { margin: 0; font-size: .95rem; }
.legal__back { display: inline-flex; align-items: center; gap: .5rem; margin-top: 2rem; font-weight: 600; color: var(--forest); }
.legal__back:hover { gap: .75rem; }

/* ================= 16. ACCESSIBILITY / MOTION ==================== */
/* Justified body copy for a clean, editorial finish (headings and
   centred blocks stay as designed). */
.spotlight__desc, .faq-answer p, .temple p, .legal__card p, .legal__card li,
.review blockquote p, .footer__brand p {
  text-align: justify; text-justify: inter-word; hyphens: auto; -webkit-hyphens: auto;
}

/* Content protection: images can't be dragged/saved via drag,
   long-press callout disabled (pairs with the JS guards). */
img { -webkit-user-drag: none; user-drag: none; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }

/* With five nav links, tighten spacing on narrower laptops/tablets */
@media (max-width: 1140px) and (min-width: 861px) {
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: .95rem; }
  .nav-cta .btn { padding: .85rem 1.2rem; font-size: .88rem; }
}

:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-rise { opacity: 1 !important; transform: none !important; }
  .product__img { animation: none !important; }
  .hero__aura, .hero__particles span { animation: none !important; }
}

@media (max-width: 560px) {
  .brand img { height: 76px; }
  .site-header.is-scrolled .brand img { height: 66px; }
}
