/** Shopify CDN: Minification failed

Line 774:275 Unexpected ";"

**/
/* =====================================================================
   Green Generation — base.css
   Ported verbatim from the design handoff (colors_and_type.css tokens +
   ui_kits/website/styles.css component system). Fonts declared in
   layout/theme.liquid via @font-face; the two tree-ring background images
   are wired through CSS variables (--img-rings-light / --img-rings-dark)
   set in theme.liquid. Brand colors are overridden by Theme Settings.
   ===================================================================== */

:root {
  /* ---------- Brand colors ---------- */
  --gg-green:       #2EB145;   /* primary brand green — wordmark, CTAs */
  --gg-green-deep:  #258E37;   /* hover/pressed */
  --gg-green-soft:  #9CB48A;   /* sage / packaging green */
  --gg-green-pkg:   #5E8B5F;   /* deeper sage on dark packaging */
  --gg-lime:        #C9E64A;   /* lime accent — badges, ticks */
  --gg-lime-soft:   #E5EFD6;   /* very pale mint */
  --gg-mint:        #D8E9C8;   /* announce bar mint */
  --gg-forest:      #3C5135;   /* deep forest */

  /* ---------- Neutrals & surfaces ---------- */
  --gg-paper:       #FDFDFC;   /* page background — clean near-white (Coterie-style) */
  --gg-cream:       #F4EFE4;   /* warm cream card surface */
  --gg-cream-2:     #EFE9DA;   /* deeper cream */
  --gg-bone:        #F7F2E6;
  --gg-ink:         #111111;   /* primary text — TRUE near-black */
  --gg-ink-2:       #3A3A3A;   /* secondary text */
  --gg-ink-3:       #6E6E6E;   /* tertiary / captions */
  --gg-line:        rgba(17,17,17,0.08);
  --gg-line-2:      rgba(17,17,17,0.16);
  --gg-line-soft:   rgba(17,17,17,0.04);

  /* ---------- Semantic ---------- */
  --bg:             var(--gg-paper);
  --bg-cream:       var(--gg-cream);
  --bg-mint:        var(--gg-mint);
  --bg-deep:        var(--gg-forest);
  --bg-accent:      var(--gg-green);
  --fg:             var(--gg-ink);
  --fg-muted:       var(--gg-ink-2);
  --fg-quiet:       var(--gg-ink-3);
  --fg-on-dark:     var(--gg-cream);
  --fg-on-accent:   #FFFFFF;
  --brand:          var(--gg-green);
  --brand-deep:     var(--gg-green-deep);
  --accent:         var(--gg-lime);
  --line:           var(--gg-line);
  --line-strong:    var(--gg-line-2);

  /* ---------- Feedback ---------- */
  --success:        var(--gg-green);
  --warning:        #C89A3B;
  --danger:         #9B3A2E;

  /* ---------- Type stacks ---------- */
  --font-sans:      "Helvetica Neue GG", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif:     "Helvetica Neue GG", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono:      ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* ---------- Type scale ---------- */
  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-56: 3.5rem;
  --fs-72: 4.5rem;
  --fs-96: 6rem;
  --fs-128: 8rem;
  --fs-160: 10rem;

  /* ---------- Spacing (4pt base) ---------- */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px; --s-40: 160px;

  /* ---------- Radii (Coterie-style — much rounder) ---------- */
  --r-none: 0; /* @kind radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-pill: 999px;
  --r-card: 28px;   /* default card radius */

  /* ---------- Shadows ---------- */
  --shadow-1: 0 1px 0 rgba(17,17,17,0.04), 0 1px 2px rgba(17,17,17,0.04);
  --shadow-2: 0 2px 4px rgba(17,17,17,0.04), 0 12px 28px rgba(17,17,17,0.06);
  --shadow-3: 0 6px 20px rgba(17,17,17,0.08), 0 32px 64px rgba(17,17,17,0.10);
  --shadow-inset: inset 0 0 0 1px rgba(17,17,17,0.06);

  /* ---------- Motion ---------- */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --t-fast: 120ms; /* @kind other */
  --t-base: 220ms; /* @kind other */
  --t-slow: 480ms; /* @kind other */

  /* ---------- Layout ---------- */
  --maxw-prose:   640px;
  --maxw-content: 1200px;
  --maxw-wide:    1360px;
  --maxw-bleed:   1480px;
}

/* ---------- Base ---------- */
html { color-scheme: light; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-16);
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  letter-spacing: -0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}

h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); line-height: 0.98; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.02; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.1; letter-spacing: -0.02em; }
h4 { font-size: var(--fs-20); line-height: 1.2; letter-spacing: -0.01em; }
h5 { font-size: var(--fs-16); font-weight: 700; letter-spacing: 0; }
h6 { font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }

p  { margin: 0 0 1em; line-height: 1.6; max-width: 64ch; text-wrap: pretty; }
small { font-size: var(--fs-13); color: var(--fg-quiet); }
a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-8) 0; }

/* ---------- Type utility classes ---------- */
.t-display     { font-size: clamp(4rem, 10vw, 9rem); font-weight: 700; letter-spacing: -0.035em; line-height: 0.9; }
.t-headline    { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 700; letter-spacing: -0.03em; line-height: 0.98; }
.t-title       { font-size: var(--fs-32); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.t-subtitle    { font-size: var(--fs-20); font-weight: 300; letter-spacing: 0; line-height: 1.35; color: var(--fg-muted); }
.t-body        { font-size: var(--fs-16); font-weight: 300; line-height: 1.6; }
.t-body-sm     { font-size: var(--fs-14); font-weight: 300; line-height: 1.55; }
.t-caption     { font-size: var(--fs-13); font-weight: 300; color: var(--fg-quiet); }
.t-eyebrow     { font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }

/* Editorial serif accents — "Pamper", "Gentle by Design" moments */
.t-accent      { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: -0.01em; }
.t-accent-up   { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.005em; }

/* Brand wordmark — green, bold, lowercase */
.t-wordmark    { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.04em; text-transform: lowercase; color: var(--brand); line-height: 0.92; }

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

/* ===================== styles.css (component system) ===================== */

/* =================================================================
   Green Generation — Website (Morning Cult architecture, GG brand)
   Editorial DTC. Cream surfaces, bamboo green, Fraunces italic accents,
   Helvetica light body, tree-ring backdrops on two sections.
   ================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body { background: var(--gg-paper); color: var(--gg-ink); font-family: var(--font-sans); font-weight: 400; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; position: relative; }
.container-w { max-width: 1480px; margin: 0 auto; padding: 0 40px; position: relative; }

/* ---------- Type system ---------- */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gg-ink-3); display: inline-block; }
.eyebrow-brand { color: var(--gg-green); }

.display-1, .hero-h {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 500; letter-spacing: -0.035em; line-height: 0.96;
  color: var(--gg-ink); margin: 0;
}
.display-2 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 500; letter-spacing: -0.028em; line-height: 1.02;
  color: var(--gg-ink); margin: 0 0 8px;
}
.page-h {
  font-family: var(--font-sans);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 500; letter-spacing: -0.032em; line-height: 0.98;
  color: var(--gg-ink); margin: 0 0 24px;
}
/* the editorial italic accent — Fraunces */
.accent {
  font-family: var(--font-sans);
  font-style: normal; font-weight: 500;
  letter-spacing: -0.02em;
}
/* All-Helvetica: neutralize every former serif-italic accent */
.hero-spec .n, .step .num, .pillar-n, .how-step-n, .shop-card-name, .pb-name,
.pd-blurb-text, .pd-moment-time, .pd-reviews-avg, .acct-saved-n, .acct-next-date,
.acct-stat-card .n, .vote-cta-stat-h, .subscribe-done, .sidemenu-links a:hover, .hero-h em {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
}
.lede {
  font-size: 17px; line-height: 1.6; font-weight: 300;
  color: var(--gg-ink-2); margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font: inherit; font-weight: 500;
  font-size: 14px; letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: 999px;
  background: var(--gg-green); color: #fff;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}
.btn:hover { background: var(--gg-green-deep); }
.btn:active { transform: scale(0.97); }
.btn.dark { background: var(--gg-ink); color: #fff; }
.btn.dark:hover { background: #000; }
.btn.secondary { background: transparent; color: var(--gg-ink); box-shadow: inset 0 0 0 1.5px var(--gg-line-2); }
.btn.secondary:hover { background: var(--gg-ink); color: #fff; box-shadow: none; }
.btn.light { background: #fff; color: var(--gg-ink); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }
.btn.light:hover { background: var(--gg-cream); }
.btn.lg { padding: 18px 38px; font-size: 15px; }
.btn.sm { padding: 11px 22px; font-size: 13px; }
.btn.ghost { background: transparent; color: var(--gg-ink); padding: 15px 6px; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.btn.ghost:hover { background: transparent; color: var(--gg-green); text-decoration-thickness: 2px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 1; }
.reveal.in { animation: reveal-in 720ms var(--ease-out) both; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.rd1.in { animation-delay: 80ms; }
.rd2.in { animation-delay: 160ms; }
.rd3.in { animation-delay: 240ms; }
.rd4.in { animation-delay: 320ms; }

/* ---------- Tree-ring backdrop ---------- */
.rings, .rings-dark {
  position: absolute; inset: -20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.rings { background-image: var(--img-rings-light); }
.rings-dark { background-image: var(--img-rings-dark); will-change: transform; }
.has-rings { position: relative; }
.has-rings > .ring-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.has-rings > .container, .has-rings > .container-w { position: relative; z-index: 1; }

/* ===================================================================
   NAVBAR
   =================================================================== */
.nav {
  position: sticky; top: 0; z-index: 40; background: var(--gg-paper);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 40px; gap: 24px;
  transition: box-shadow var(--t-base);
}
.nav.scrolled { box-shadow: 0 1px 0 var(--gg-line); }
.nav-left { display: flex; align-items: center; gap: 14px; }
.nav-burger { background: none; border: 0; padding: 8px 6px; cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--gg-ink); transition: all var(--t-fast); }
.nav-burger span:nth-child(2) { width: 18px; }
.nav-burger:hover span { width: 24px; }
.nav-brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav-brand img { height: 52px; width: auto; display: block; image-rendering: auto; }
.nav-links { display: flex; gap: 38px; align-items: center; font-size: 16px; font-weight: 400; }
.nav-links > a, .nav-shop-link { text-decoration: none; color: var(--gg-ink); cursor: pointer; padding: 8px 0; position: relative; }
.nav-links > a::after, .nav-shop-link::after { content:''; position: absolute; left: 0; right: 0; bottom: 2px; height: 1.5px; background: var(--gg-green); transform: scaleX(0); transform-origin: center; transition: transform 220ms var(--ease-out); }
.nav-links > a:hover, .nav-shop-link:hover { color: var(--gg-green); }
.nav-links > a:hover::after, .nav-shop-link:hover::after { transform: scaleX(1); }
.nav-shop { position: relative; }
.nav-shop::after { content:''; position: absolute; top: 100%; left: 0; right: 0; height: 18px; }
.nav-drawer { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); min-width: 360px; background: var(--gg-paper); border-radius: 20px; box-shadow: var(--shadow-3); padding: 14px; opacity: 0; pointer-events: none; transition: opacity var(--t-fast); z-index: 60; }
.nav-drawer.open, .nav-shop:hover .nav-drawer { opacity: 1; pointer-events: auto; }
.nav-drawer-item { display: flex; align-items: center; gap: 16px; padding: 14px 16px; border-radius: 14px; text-decoration: none; color: var(--gg-ink); transition: color var(--t-fast); }
.nav-drawer-item:hover { color: var(--gg-green); }
.nav-drawer-thumb { width: 64px; height: 64px; flex-shrink: 0; }
.nav-drawer-thumb img { width: 100%; height: 100%; object-fit: contain; }
.nav-drawer-name { font-size: 17px; font-weight: 400; }
.nav-drawer-sub { display: none; }
.nav-drawer-sub { font-size: 12px; color: var(--gg-ink-3); margin-top: 1px; }
.nav-drawer-all { display: block; padding: 12px 14px; font-size: 13px; color: var(--gg-green); text-decoration: none; font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-pill { width: 42px; height: 42px; border-radius: 999px; background: var(--gg-green); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: 0; position: relative; transition: background var(--t-fast), transform var(--t-fast); }
.nav-pill:hover { background: var(--gg-green-deep); }
.nav-pill:active { transform: scale(0.94); }
.nav-pill svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-pill.pulse { animation: cart-pulse 1.2s var(--ease-out); }
@keyframes cart-pulse { 0%,100%{transform:none} 30%{transform:scale(1.18)} }
.nav-cart-count { position: absolute; top: -4px; right: -4px; min-width: 19px; height: 19px; padding: 0 5px; background: var(--gg-ink); color: #fff; border-radius: 999px; font-size: 10.5px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px var(--gg-paper); }

/* ===================================================================
   SLIDE-OUT SIDE MENU
   =================================================================== */
.menu-scrim { position: fixed; inset: 0; background: rgba(17,17,17,0.18); z-index: 59; opacity: 0; pointer-events: none; transition: opacity 280ms; }
.menu-scrim.open { opacity: 1; pointer-events: auto; }
.sidemenu {
  position: fixed; top: 0; bottom: 0; left: 0; width: min(620px, 90vw);
  background: #fff; color: var(--gg-ink); z-index: 60;
  transform: translateX(-100%); transition: transform 440ms var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: 32px 0 80px rgba(0,0,0,0.10);
  overflow-y: auto;
}
.sidemenu.open { transform: translateX(0); }
.sidemenu-close { align-self: flex-start; background: none; border: 0; color: var(--gg-green); cursor: pointer; font-size: 21px; font-weight: 400; display: inline-flex; align-items: center; gap: 14px; padding: 38px 56px 0; font-family: var(--font-sans); }
.sidemenu-close .x { font-size: 24px; line-height: 0; }
.sidemenu-close:hover { color: var(--gg-green-deep); }
.sidemenu-links { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; padding: 56px 56px 48px; flex: 1; justify-content: center; }
.sidemenu-links a { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 400; letter-spacing: -0.02em; text-decoration: none; color: var(--gg-ink); line-height: 1; transition: color var(--t-fast); }
.sidemenu-links a:hover { color: var(--gg-green); }
.sidemenu-foot { background: var(--gg-cream); padding: 44px 56px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sidemenu-col h6 { font-size: 14px; color: var(--gg-green); font-weight: 500; margin: 0 0 18px; letter-spacing: 0; text-transform: none; }
.sidemenu-col a { display: block; font-size: 14px; color: var(--gg-ink-2); text-decoration: none; margin-bottom: 13px; font-weight: 300; transition: color var(--t-fast); }
.sidemenu-col a:hover { color: var(--gg-green); }

/* ===================================================================
   HOME — HERO
   =================================================================== */
.hero { position: relative; padding: 0; background: #fff; }
.hero-band { background: #fff; padding: 64px 0 0; }
.hero-top { max-width: 1280px; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.hero-h { text-align: left; font-size: clamp(2.25rem, 5.2vw, 4.5rem); }
.hero-sub { font-size: 16px; line-height: 1.55; font-weight: 400; color: var(--gg-ink); margin: 22px 0 28px; max-width: 36ch; }
.hero-subrow { flex-shrink: 0; padding-bottom: 6px; }
.hero-getstarted { padding: 17px 44px; font-size: 19px; font-weight: 500; color: var(--gg-ink); background: var(--gg-cream); }
.hero-getstarted:hover { background: var(--gg-cream-2); color: var(--gg-ink); }
.hero-sub { font-size: 19px; line-height: 1.55; font-weight: 400; color: var(--gg-ink); margin: 22px 0 28px; max-width: none; }
.hero-subrow { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hero-subrow .hero-sub { margin: 22px 0; }
/* Hero option switch (temporary compare UI) */
.hero-switch { display: flex; align-items: center; gap: 8px; padding: 12px 40px; }
.hero-switch-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gg-ink-3); margin-right: 6px; }
.hero-switch button { background: transparent; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 999px; padding: 8px 16px; font: inherit; font-size: 13px; font-weight: 500; color: var(--gg-ink); cursor: pointer; transition: all var(--t-fast); }
.hero-switch button.on { background: var(--gg-green); color: #fff; box-shadow: none; }

/* Hero lineup — option A: editorial card row */
.hero-lineup { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; margin-top: 56px; }
.hl-card { border-radius: 20px; overflow: hidden; background: var(--gg-cream); aspect-ratio: 1 / 1; }
.hl-card-1 { aspect-ratio: auto; }
.hl-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hl-card-1 img { object-fit: contain; padding: 28px; background: var(--gg-cream); }

/* Hero option B: cinematic full-bleed */
.hero-cinematic { position: relative; height: clamp(520px, 70vh, 760px); border-radius: 0; overflow: hidden; }
.hero-cine-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-cine-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 64px; background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 55%, transparent); }
.hero-cine-eyebrow { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-bottom: 16px; }
.hero-cine-h { color: #fff; font-size: clamp(2rem, 4.6vw, 4rem); font-weight: 400; letter-spacing: -0.028em; line-height: 1.05; margin: 0 0 28px; }
.hero-cinematic .btn { background: #fff; color: var(--gg-ink); }
.hero-cinematic .btn:hover { background: var(--gg-cream); }

/* Hero option C: split */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0; min-height: clamp(560px, 78vh, 840px); }
.hero-split-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px clamp(28px, 3vw, 56px); }
.hero-split-text .eyebrow { margin-bottom: 18px; }
.hero-split-h { font-size: 120px; font-weight: 500; letter-spacing: -0.05em; line-height: 0.85; color: var(--gg-ink); margin: 0 0 36px; width: 100%; }
.hero-split-sub { font-size: 16px; line-height: 1.55; font-weight: 400; color: var(--gg-ink-2); max-width: 40ch; margin: 0 0 28px; }
.hero-split-media { position: relative; overflow: hidden; }
.hero-split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-media { min-height: 320px; position: relative; }
}

/* ===================================================================
   VALUE STRIP
   =================================================================== */
.value-strip { background: var(--gg-cream); }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.value-cell { padding: 40px 28px; border-right: 1px solid var(--gg-line); }
.value-cell:last-child { border-right: 0; }
.value-k { font-size: 15px; font-weight: 600; color: var(--gg-green); margin-bottom: 8px; letter-spacing: -0.01em; }
.value-v { font-size: 13.5px; line-height: 1.5; color: var(--gg-ink-2); font-weight: 300; }

/* ===================================================================
   SHOP GRID (home lineup + shop page)
   =================================================================== */
.shop-grid-section { padding: 96px 0; }
.lineup-head { text-align: left; max-width: 880px; margin: 0 0 56px; }
.lineup-head .eyebrow { margin-bottom: 14px; }
.products-h { color: var(--gg-ink); font-weight: 500; line-height: 1.06; }
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.shop-card { position: relative; border-radius: 28px; overflow: hidden; text-decoration: none; color: inherit; background: var(--gg-lime-soft); display: flex; flex-direction: column; transition: transform 320ms var(--ease-out); text-align: center; }
.shop-card:hover { transform: translateY(-6px); }
.shop-card-art { display: flex; align-items: center; justify-content: center; padding: 12px 12px 8px; }
.shop-card-art img { max-width: 100%; max-height: 400px; object-fit: contain; }
.shop-card-body { padding: 0 36px 40px; display: flex; flex-direction: column; align-items: center; }
.shop-card-name { font-weight: 500; font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--gg-ink); letter-spacing: -0.02em; line-height: 1; margin: 0 0 12px; }
.shop-card-price { font-size: 15px; font-weight: 400; color: var(--gg-ink); margin-bottom: 20px; }
.shop-card-btn { padding: 13px 34px; background: var(--gg-ink); color: #fff; }
.shop-card-btn:hover { background: #000; }

/* ===================================================================
   RITUAL BAND (how it works 01/02/03) — TREE RINGS
   =================================================================== */
.ritual { padding: 110px 0; }
.ritual-head { text-align: left; max-width: 640px; margin: 0 0 64px; }
.ritual-head .eyebrow { margin-bottom: 14px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: left; }
.step .num { font-size: 56px; font-weight: 500; color: var(--gg-ink); line-height: 1; margin-bottom: 18px; }
.step h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--gg-ink); }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink-2); margin: 0; font-weight: 300; max-width: 32ch; }

/* Sustainable practices — 4 columns */
.practices { padding: 110px 0; background: var(--gg-cream); }
.practices-h { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.025em; line-height: 1.06; margin: 0 0 64px; }
.practices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.practice-col { background: #fff; border-radius: 20px; padding: 32px 28px; }
.practice-col h3 { font-size: 19px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 12px; }
.practice-col p { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink); font-weight: 400; margin: 0; }
.practices-cta { text-align: center; margin-top: 64px; }

/* ===================================================================
   INSPIRATION TEASER (editorial tiles)
   =================================================================== */
.insp-teaser { padding: 96px 0; }
.insp-teaser-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.insp-teaser-copy h2 { margin-bottom: 20px; }
.insp-teaser-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.insp-tile { border-radius: 22px; overflow: hidden; min-height: 200px; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; color: #fff; position: relative; isolation: isolate; }
.insp-tile::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 100%); z-index: 1; }
.insp-tile > * { position: relative; z-index: 2; }
.insp-tile img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.insp-tile-eb { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9; margin-bottom: 8px; }
.insp-tile-h { font-size: 16px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }
.insp-tile-2 { margin-top: 32px; }
.insp-tile-3 { margin-top: -32px; }

/* ===================================================================
   IMPACT BAND (river + stat blocks)
   =================================================================== */
.impact { padding: 56px 0 96px; }
.impact-pill { display: inline-flex; align-items: center; gap: 9px; background: var(--gg-mint); color: var(--gg-ink); font-size: 15px; font-weight: 500; padding: 11px 22px; border-radius: 999px; margin-bottom: 28px; }
.impact-pill svg { width: 18px; height: 18px; color: var(--gg-green); }
.impact-headrow { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 14px; }
.impact-h-green { font-size: clamp(2.5rem, 5.1vw, 4.25rem); font-weight: 400; color: var(--gg-ink); letter-spacing: -0.028em; line-height: 1.05; margin: 0; padding-left: 40px; }
.impact-aside { text-align: left; flex-shrink: 0; padding-top: 8px; }
.impact-aside p { font-size: 13px; color: var(--gg-ink-2); margin: 0 0 12px; line-height: 1.4; font-weight: 400; }
.impact-river { position: relative; border-radius: 28px; overflow: hidden; }
.impact-river img { width: 100%; height: clamp(360px, 42vw, 560px); object-fit: cover; display: block; }
.impact-h-white { position: absolute; left: 40px; top: 6px; font-size: clamp(2.5rem, 5.1vw, 4.25rem); font-weight: 400; color: #fff; letter-spacing: -0.028em; line-height: 1.32; margin: 0; }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: -64px; position: relative; z-index: 2; padding: 0 8px; }
.impact-stat { border-radius: 28px; padding: 36px 40px; display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 150px; }
.impact-stat.cream { background: var(--gg-cream); color: var(--gg-ink); }
.impact-stat.green { background: var(--gg-green); color: #fff; }
.impact-stat-label { font-size: 14px; font-weight: 400; opacity: 0.85; margin-bottom: 6px; }
.impact-stat.green .impact-stat-label { margin-top: 6px; margin-bottom: 0; }
.impact-stat-num { font-size: clamp(2.5rem, 4.2vw, 3.5rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.impact-stat-ico { width: 48px; height: 48px; flex-shrink: 0; opacity: 0.6; }

/* ===================================================================
   TESTIMONIALS (marquee) — TREE RINGS
   =================================================================== */
.testimonial { padding: 96px 0; }
.testimonial-h { text-align: left; color: var(--gg-ink); font-weight: 500; font-size: clamp(2rem, 4.4vw, 3.5rem); letter-spacing: -0.028em; line-height: 1.06; margin: 0 0 56px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quote { background: var(--gg-cream); border-radius: 22px; padding: 28px 26px; display: flex; flex-direction: column; }
.quote-stars { color: var(--gg-green); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.quote-who { font-size: 13px; color: var(--gg-ink-3); margin-bottom: 14px; }
.quote-who strong { color: var(--gg-ink); font-weight: 600; }
.quote-body { font-size: 13px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 300; }
.quote-more { font-size: 13px; color: var(--gg-green); margin-top: 16px; text-decoration: none; }
.quote-more:hover { text-decoration: underline; }

/* ===================================================================
   TRUST BAR
   =================================================================== */
.trustbar { background: #fff; border-top: 1px solid var(--gg-line); border-bottom: 1px solid var(--gg-line); }
.trustbar-inner { max-width: 1280px; margin: 0 auto; padding: 22px 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trustbar-item { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.005em; }
.trustbar-item svg { width: 20px; height: 20px; color: var(--gg-green); flex-shrink: 0; }
@media (max-width: 760px) {
  .subscribe-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px; }
  .subscribe-art { order: -1; }
}

@media (max-width: 760px) { .trustbar-inner { justify-content: flex-start; gap: 16px 28px; } }

/* ===================================================================
   BUILD YOUR BOX
   =================================================================== */
.bundle { padding: 96px 0; }
.bundle-head { margin-bottom: 48px; max-width: 720px; }
.bundle-head .eyebrow { margin-bottom: 14px; display: block; }
.bundle-head .lede { margin-top: 16px; }
.bundle-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: center; }
.bundle-picker { display: flex; flex-direction: column; gap: 14px; }
.bundle-card { display: flex; flex-direction: column; gap: 0; text-align: left; background: var(--gg-cream); border: 0; border-radius: 22px; padding: 0; overflow: hidden; box-shadow: inset 0 0 0 2px transparent; transition: box-shadow var(--t-fast), background var(--t-fast); position: relative; }
.bundle-card.on { box-shadow: inset 0 0 0 2px var(--gg-green); background: var(--gg-lime-soft); }
.bundle-card-main { display: flex; align-items: center; gap: 18px; text-align: left; background: transparent; border: 0; padding: 18px 22px; cursor: pointer; font: inherit; width: 100%; }
.bundle-vars { display: flex; gap: 8px; padding: 0 22px 16px 64px; flex-wrap: wrap; }
.bundle-var { background: #fff; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 999px; padding: 8px 16px; font: inherit; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--gg-ink); transition: all var(--t-fast); }
.bundle-var:hover { box-shadow: inset 0 0 0 1.5px var(--gg-ink); }
.bundle-var.on { background: var(--gg-green); color: #fff; box-shadow: none; }
.bundle-check { width: 26px; height: 26px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--gg-ink); display: inline-flex; align-items: center; justify-content: center; color: var(--gg-ink); background: #fff; flex-shrink: 0; transition: background var(--t-fast); }
.bundle-check svg { width: 14px; height: 14px; display: block; }
.bundle-card.on .bundle-check { background: #fff; box-shadow: inset 0 0 0 1.5px var(--gg-ink); color: var(--gg-ink); }
.bundle-card-img { width: 110px; height: 90px; flex-shrink: 0; background: #fff; border-radius: 14px; padding: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bundle-card-img img { width: 100%; height: 100%; object-fit: contain; }
.bundle-card-name { display: block; font-size: 24px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.015em; }
.bundle-card-sub { display: block; font-size: 14.5px; color: var(--gg-ink-3); margin-top: 3px; }
.bundle-card-sub .dot { font-weight: 900; color: var(--gg-ink); margin: 0 7px; font-size: 1.15em; }
.bundle-freq { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 6px 4px 0; }
.bundle-freq-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gg-ink-3); }
.bundle-freq-opts { display: flex; gap: 8px; }
.bundle-freq-btn { background: transparent; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 999px; padding: 9px 18px; font: inherit; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--gg-ink); transition: all var(--t-fast); }
.bundle-freq-btn.on { background: var(--gg-ink); color: #fff; box-shadow: none; }
.bundle-summary { background: var(--gg-cream); color: var(--gg-ink); border-radius: 28px; padding: 30px 34px; position: sticky; top: 92px; }
.bundle-sum-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gg-ink-3); margin-bottom: 18px; }
.bundle-sum-items { display: flex; flex-direction: column; gap: 16px; min-height: 56px; }
.bundle-sum-empty { font-size: 14px; color: var(--gg-ink-3); }
.bundle-sum-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 15px; }
.bundle-sum-name { flex: 1 1 auto; }
.bundle-sum-qty { background: #fff; color: var(--gg-ink); font-size: 13px; font-weight: 500; padding: 4px 12px; border-radius: 999px; white-space: nowrap; width: 92px; text-align: center; flex-shrink: 0; }
.bundle-sum-amt { font-weight: 600; white-space: nowrap; width: 48px; text-align: right; flex-shrink: 0; }
.bundle-sum-total { display: block; margin: 24px 0 0; padding-top: 24px; border-top: 1px solid var(--gg-line); }
.bundle-sum-cadence { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gg-ink-3); white-space: nowrap; margin-bottom: 18px; }
.bundle-sum-row2 { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: nowrap; }
.bundle-sum-priceblock { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.bundle-sum-price { font-size: 34px; font-weight: 600; letter-spacing: -0.02em; color: var(--gg-ink); line-height: 1; }
.bundle-sum-was { font-size: 18px; font-weight: 400; color: var(--gg-ink-3); text-decoration: line-through; }
.bundle-sum-save { background: var(--gg-mint); color: var(--gg-forest); font-size: 13px; font-weight: 600; padding: 5px 13px; border-radius: 999px; line-height: 1; align-self: center; }
.bundle-cta { background: var(--gg-ink); color: #fff; font-weight: 600; font-size: 15px; text-align: center; white-space: nowrap; padding: 14px 22px; flex-shrink: 0; }
.bundle-cta:hover { background: #000; }
.bundle-cta:disabled { opacity: 0.4; cursor: default; }
.bundle-trust { display: flex; gap: 10px; justify-content: center; margin-top: 14px; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.7; }

/* ===================================================================
   COMMUNITY (Instagram grid) — TREE RINGS
   =================================================================== */
.community { padding: 80px 0 96px; background: var(--gg-cream); }
.community-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 40px; }
.community-h { font-size: clamp(2.25rem, 4.6vw, 3.75rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.028em; line-height: 1.0; margin: 0; }
.community-aside { text-align: left; padding-bottom: 6px; }
.community-tag-btn { background: #fff; color: var(--gg-ink); box-shadow: inset 0 0 0 1.5px var(--gg-line-2); text-transform: lowercase; }
.community-tag-btn:hover { background: var(--gg-cream); }
.community-aside p { font-size: 14px; color: var(--gg-ink-2); margin: 0 0 14px; line-height: 1.4; }
.community-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.community-tile { position: relative; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; }
.community-tile img { width: 100%; height: 100%; object-fit: cover; }
.community-ic { position: absolute; left: 14px; bottom: 14px; display: flex; gap: 12px; }
.community-ic svg { width: 20px; height: 20px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.community-handle { position: absolute; right: 14px; bottom: 14px; color: #fff; font-size: 12px; opacity: 0.9; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }

/* ===================================================================
   LIVE MORE SUSTAINABLY (collage)
   =================================================================== */
.live { padding: 80px 0; }
.live-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.live-tile { border-radius: 18px; overflow: hidden; }
.live-tile img { width: 100%; height: 100%; object-fit: cover; }
.live-a { grid-column: 1; grid-row: 1; }
.live-b { grid-column: 1; grid-row: 2; }
.live-c { grid-column: 4; grid-row: 1; }
.live-d { grid-column: 4; grid-row: 2; }
.live-card { grid-column: 2 / 4; grid-row: 1 / 3; background: var(--gg-mint); border-radius: 24px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 48px; gap: 28px; }
.live-card-h { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 500; color: var(--gg-green); letter-spacing: -0.03em; line-height: 1.0; margin: 0; }

/* ===================================================================
   POLICY / LEGAL PAGES
   =================================================================== */
.policy-wrap { max-width: 760px; }
.policy-block { padding: 28px 0; border-top: 1px solid var(--gg-line); }
.policy-block:first-child { border-top: 0; padding-top: 8px; }
.policy-h { font-size: 20px; font-weight: 600; color: var(--gg-ink); letter-spacing: -0.015em; margin: 0 0 12px; }
.policy-p { font-size: 15px; line-height: 1.7; color: var(--gg-ink-2); font-weight: 400; margin: 0 0 12px; }
.policy-p:last-child { margin-bottom: 0; }
.policy-foot { margin-top: 32px; padding: 24px 28px; background: var(--gg-cream); border-radius: 18px; font-size: 14.5px; color: var(--gg-ink-2); }
.policy-foot a { color: var(--gg-green); font-weight: 500; }

/* ===================================================================
   STOCKISTS
   =================================================================== */
.stk-search { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 999px; padding: 4px 22px; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); }
.stk-search svg { width: 20px; height: 20px; color: var(--gg-ink-3); flex-shrink: 0; }
.stk-search input { flex: 1; border: 0; outline: 0; background: transparent; font: inherit; font-size: 15px; padding: 14px 0; color: var(--gg-ink); }
.stk-count { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gg-ink-3); margin-bottom: 20px; }
.stk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stk-card { display: flex; align-items: center; gap: 16px; background: var(--gg-cream); border-radius: 18px; padding: 20px 22px; }
.stk-pin { width: 42px; height: 42px; border-radius: 999px; background: var(--gg-lime-soft); color: var(--gg-green); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stk-pin svg { width: 20px; height: 20px; }
.stk-meta { flex: 1; min-width: 0; }
.stk-name { font-size: 15.5px; font-weight: 600; color: var(--gg-ink); letter-spacing: -0.01em; }
.stk-city { font-size: 13px; color: var(--gg-ink-3); margin-top: 2px; }
.stk-type { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gg-green); background: #fff; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.stk-empty { grid-column: 1 / -1; padding: 40px; text-align: center; color: var(--gg-ink-2); font-size: 15px; }
.stk-empty a { color: var(--gg-green); }
.stk-cta { display: flex; justify-content: space-between; align-items: center; gap: 32px; background: var(--gg-mint); border-radius: 28px; padding: 48px 56px; margin-top: 48px; flex-wrap: wrap; }

@media (max-width: 900px) { .stk-grid { grid-template-columns: 1fr; } .stk-cta { flex-direction: column; align-items: flex-start; } }

/* Store locator — map + list (Shopify-plugin style) */
.stk-hero { padding-bottom: 32px; }
.stk-locator-sec { padding-bottom: 96px; }
.stk-locator { display: grid; grid-template-columns: 420px 1fr; gap: 24px; border: 1px solid var(--gg-line); border-radius: 28px; overflow: hidden; background: #fff; height: 620px; }
.stk-panel { display: flex; flex-direction: column; padding: 24px; min-height: 0; border-right: 1px solid var(--gg-line); }
.stk-panel .stk-search { margin-bottom: 16px; }
.stk-panel .stk-count { margin: 0 0 14px; padding-left: 4px; }
.stk-list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; min-height: 0; flex: 1; margin: 0 -8px; padding: 0 8px; }
.stk-item { display: flex; align-items: flex-start; gap: 14px; text-align: left; width: 100%; background: transparent; border: 0; border-radius: 16px; padding: 16px; cursor: pointer; font: inherit; transition: background .16s; box-shadow: inset 0 0 0 1.5px transparent; }
.stk-item:hover { background: var(--gg-cream); }
.stk-item.is-active { background: var(--gg-lime-soft); box-shadow: inset 0 0 0 1.5px var(--gg-green); }
.stk-item .stk-pin { width: 38px; height: 38px; border-radius: 999px; background: #fff; color: var(--gg-green); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); }
.stk-item .stk-pin svg { width: 18px; height: 18px; }
.stk-item.is-active .stk-pin { background: var(--gg-green); color: #fff; box-shadow: none; }
.stk-meta { flex: 1; min-width: 0; }
.stk-name { font-size: 15px; font-weight: 600; color: var(--gg-ink); }
.stk-addr { font-size: 13px; color: var(--gg-ink-2); margin-top: 2px; }
.stk-city { font-size: 12.5px; color: var(--gg-ink-3); margin-top: 2px; }
.stk-type { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gg-green); background: var(--gg-lime-soft); padding: 5px 10px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.stk-empty { padding: 28px 16px; font-size: 14.5px; color: var(--gg-ink-2); }
.stk-empty a { color: var(--gg-green); font-weight: 500; }

.stk-map { position: relative; background: linear-gradient(160deg, #EAF0E6 0%, #E3ECDD 100%); overflow: hidden; }
.stk-map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(31,76,42,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31,76,42,0.06) 1px, transparent 1px); background-size: 44px 44px; }
.stk-map-pin { position: absolute; transform: translate(-50%, -100%); background: transparent; border: 0; padding: 0; cursor: pointer; color: var(--gg-forest); transition: color .16s, transform .16s; z-index: 2; }
.stk-map-pin svg { width: 26px; height: 26px; filter: drop-shadow(0 2px 4px rgba(20,40,25,0.25)); display: block; }
.stk-map-pin:hover { transform: translate(-50%, -106%); }
.stk-map-pin.is-active { color: var(--gg-green); z-index: 4; }
.stk-map-pin.is-active svg { width: 34px; height: 34px; }
.stk-map-pin.is-dim { opacity: 0.3; pointer-events: none; }
.stk-map-card { position: absolute; transform: translate(-50%, calc(-100% - 38px)); background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: 0 12px 30px rgba(20,40,25,0.18); width: max-content; max-width: 220px; z-index: 5; pointer-events: none; }
.stk-map-card::after { content: ""; position: absolute; left: 50%; bottom: -7px; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: #fff; }
.stk-map-card-name { font-size: 14px; font-weight: 600; color: var(--gg-ink); }
.stk-map-card-addr { font-size: 12.5px; color: var(--gg-ink-2); margin-top: 2px; }
.stk-map-card-city { font-size: 12px; color: var(--gg-ink-3); margin-top: 1px; }

@media (max-width: 900px) {
  .stk-locator { grid-template-columns: 1fr; height: auto; }
  .stk-panel { border-right: 0; border-bottom: 1px solid var(--gg-line); }
  .stk-list { max-height: 360px; }
  .stk-map { height: 360px; }
}

/* ===================================================================
   WHOLESALE
   =================================================================== */
.wholesale-section { padding: 64px 0 112px; }
.wholesale-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.ws-h { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.02em; margin: 0 0 8px; }
.wholesale-perks-list { list-style: none; padding: 0; margin: 16px 0 0; }
.wholesale-perks-list li { font-size: 15px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 400; position: relative; padding: 18px 0 18px 28px; border-top: 1px solid var(--gg-line); }
.wholesale-perks-list li:first-child { border-top: none; }
.wholesale-perks-list li::before { content: ""; position: absolute; left: 0; top: 24px; width: 9px; height: 9px; border-radius: 50%; background: var(--gg-green); }
.wholesale-perks-list strong { color: var(--gg-ink); font-weight: 600; }
.wholesale-form { background: var(--gg-cream); border-radius: 24px; padding: 36px 40px; }
.ws-block { border: 0; padding: 0; margin: 0 0 24px; }
.ws-q { font-size: clamp(17px, 2vw, 20px); font-weight: 500; color: var(--gg-ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.wholesale-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wholesale-toggle-btn { appearance: none; background: var(--gg-paper); border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 14px; padding: 16px 20px; cursor: pointer; font: inherit; font-size: 16px; font-weight: 600; color: var(--gg-ink); text-align: left; display: flex; flex-direction: column; gap: 4px; transition: box-shadow var(--t-fast), background var(--t-fast); }
.wholesale-toggle-btn:hover { box-shadow: inset 0 0 0 1.5px var(--gg-ink); }
.wholesale-toggle-btn.active { background: var(--gg-lime-soft); box-shadow: inset 0 0 0 2px var(--gg-green); }
.wholesale-toggle-sub { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--gg-ink-3); }
.ws-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ws-field { display: flex; flex-direction: column; gap: 7px; }
.ws-field-full { grid-column: 1 / -1; }
.ws-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gg-ink-3); }
.ws-label em { color: var(--gg-green); font-style: normal; }
.ws-input, .ws-textarea { background: var(--gg-paper); border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 12px; padding: 13px 16px; font: inherit; font-size: 14.5px; color: var(--gg-ink); transition: box-shadow var(--t-fast); }
.ws-input:focus, .ws-textarea:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--gg-green); }
.ws-textarea { resize: vertical; line-height: 1.5; }
.ws-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gg-line); }
.ws-foot .btn.dark { background: var(--gg-ink); color: #fff; font-weight: 600; padding: 15px 30px; text-align: center; }
.ws-foot .btn.dark:hover { background: #000; }
.ws-mail { font-size: 14px; color: var(--gg-green); text-decoration: none; font-weight: 500; }
.ws-mail:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .wholesale-grid { grid-template-columns: 1fr; }
  .ws-form-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   FINAL CTA
   =================================================================== */
.final-cta { padding: 80px 0 96px; }
.final-cta-h { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.03em; line-height: 1.02; margin: 0 0 32px; }

/* ===================================================================
   SUBSCRIBE BAND
   =================================================================== */
.subscribe { padding: 80px 0; }
.subscribe-inner { background: var(--gg-mint); border-radius: 40px; padding: 48px 72px; display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; position: relative; overflow: hidden; margin: 0 auto; }
.subscribe-copy { max-width: none; min-width: 0; }
.subscribe-copy .display-2 { white-space: nowrap; }
.subscribe-art { width: 220px; height: 220px; max-width: 100%; justify-self: end; border-radius: 24px; overflow: hidden; }
.subscribe-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.subscribe-roll { display: inline-block; animation: sub-roll 1900ms ease; }
@keyframes sub-roll { 0% { opacity: 0; transform: translateY(10px); } 22% { opacity: 1; transform: none; } 100% { opacity: 1; transform: none; } }
.subscribe-copy h2 { color: var(--gg-green); }
.subscribe-copy .accent { color: var(--gg-green); }
.subscribe-copy p { font-size: 16px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 300; margin: 14px 0 28px; max-width: 44ch; }
.subscribe-form { display: flex; gap: 8px; background: #fff; border-radius: 999px; padding: 6px; max-width: 440px; }
.subscribe-input { flex: 1; border: 0; outline: 0; padding: 14px 22px; background: transparent; font: inherit; font-size: 15px; color: var(--gg-ink); }
.subscribe-done { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--gg-green); }

/* ===================================================================
   PAGE HERO (shop, about)
   =================================================================== */
.page-hero { padding: 56px 0 32px; }
.page-hero .lede { margin-top: 8px; }

/* ===================================================================
   PRODUCT PAGE
   =================================================================== */
.product-banner { padding: 24px 0 72px; background: var(--gg-paper) !important; }
.pb-back { font-size: 13px; color: var(--gg-ink-3); text-decoration: none; display: inline-block; margin-bottom: 24px; }
.pb-back:hover { color: var(--gg-green); }
.pb-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.pb-media { display: flex; gap: 16px; align-items: stretch; position: sticky; top: 92px; }
.pb-art { position: relative; flex: 1; border-radius: 0; background: transparent; box-shadow: none; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 0; overflow: visible; }
.pb-art-main { max-width: 100%; max-height: 100%; object-fit: contain; position: relative; z-index: 2; transition: opacity var(--t-base); }
.pb-leaf { position: absolute; width: 150px; opacity: 0.8; z-index: 1; }
.pb-leaf.a { left: -30px; top: 20px; }
.pb-leaf.b { right: -20px; bottom: 10px; transform: scaleX(-1); }
.pb-thumbs { display: flex; flex-direction: column; gap: 12px; width: 78px; flex-shrink: 0; max-height: 100%; overflow-y: auto; overscroll-behavior: contain; padding-right: 2px; scrollbar-width: thin; }
.pb-thumb { width: 78px; height: 78px; border-radius: 14px; background: #fff; box-shadow: inset 0 0 0 1px var(--gg-line); padding: 6px; cursor: pointer; border: 1.5px solid transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pb-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pb-thumb.active { border-color: var(--gg-ink); }
.pb-name { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--gg-ink); letter-spacing: -0.015em; line-height: 1; margin: 0 0 8px; }
.pb-sub { font-size: 14px; color: var(--gg-ink-3); letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 14px; }
.pb-stars { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 18px; }
.pb-stars-row { color: var(--gg-green); font-size: 14px; letter-spacing: 1px; }
.pb-stars-rating { font-weight: 600; font-size: 14px; color: var(--gg-ink); }
.pb-stars-count { font-size: 13px; color: var(--gg-ink-3); }
.pb-desc { font-size: 15.5px; line-height: 1.6; color: var(--gg-ink); max-width: 48ch; margin: 0 0 24px; font-weight: 400; }
.pb-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 22px 0; border-top: 1px solid var(--gg-line); border-bottom: 1px solid var(--gg-line); margin-bottom: 28px; }
.pb-meta > div { display: flex; flex-direction: column; gap: 3px; }
.pb-meta-n { font-size: 15px; font-weight: 600; color: var(--gg-ink); letter-spacing: -0.01em; }
.pb-meta-l { font-size: 12px; color: var(--gg-ink-3); }

/* ---------- purchase module (two tabs + freq dropdown) ---------- */
.pb-priceline { font-size: 18px; font-weight: 500; color: var(--gg-ink); margin-bottom: 20px; }
.pb-priceline s { color: var(--gg-ink-3); font-weight: 400; margin-right: 4px; }

/* variant selector */
.pb-field-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gg-ink-3); margin-bottom: 10px; }
.pb-variants { margin-bottom: 18px; }
.pb-variant-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pb-variant { flex: 1; min-width: 96px; background: #fff; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 14px; padding: 16px 12px; cursor: pointer; font: inherit; display: flex; align-items: center; justify-content: center; text-align: center; }lex; flex-direction: column; gap: 3px; align-items: flex-start; transition: box-shadow var(--t-fast); }
.pb-variant:hover { box-shadow: inset 0 0 0 1.5px var(--gg-ink); }
.pb-variant.active { box-shadow: inset 0 0 0 2px var(--gg-green); background: var(--gg-lime-soft); }
.pb-variant-label { font-size: 18px; font-weight: 400; color: var(--gg-ink); white-space: nowrap; }
.pb-variant-price { font-size: 13px; color: var(--gg-ink-3); }
.pb-variant.active .pb-variant-price { color: var(--gg-green); }

.pb-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }
.pb-tab { position: relative; text-align: left; background: var(--gg-cream); border: 0; border-radius: 16px; overflow: hidden; cursor: pointer; font: inherit; padding: 0; box-shadow: inset 0 0 0 1.5px transparent; transition: box-shadow var(--t-fast); }
.pb-tab.sub.active { box-shadow: inset 0 0 0 2px var(--gg-green); }

/* frequency — animated roll down */
.pb-freq { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 360ms var(--ease-out), opacity 240ms, margin 360ms var(--ease-out); }
.pb-freq.show { max-height: 460px; opacity: 1; margin-bottom: 14px; }
.pb-freq-toggle { width: 100%; background: var(--gg-cream); border: 0; border-radius: 14px; padding: 15px 20px; cursor: pointer; font: inherit; font-size: 14.5px; font-weight: 500; color: var(--gg-ink); display: flex; justify-content: space-between; align-items: center; }
.pb-freq-chev { color: var(--gg-green); transition: transform 300ms var(--ease-out); display: inline-block; }
.pb-freq-chev.up { transform: rotate(180deg); }
.pb-freq-roll { max-height: 0; overflow: hidden; transition: max-height 360ms var(--ease-out); }
.pb-freq-roll.open { max-height: 360px; }
.pb-freq-inner { display: flex; flex-direction: column; gap: 4px; padding: 8px 6px 2px; }
.pb-freq-opt { background: transparent; border: 0; text-align: left; font: inherit; font-size: 14.5px; color: var(--gg-ink-2); padding: 12px 16px; cursor: pointer; border-radius: 12px; transition: background var(--t-fast), color var(--t-fast); }
.pb-freq-opt:hover { background: var(--gg-lime-soft); }
.pb-freq-opt.active { background: var(--gg-lime-soft); color: var(--gg-green); font-weight: 600; }
.pb-tab.once.active { box-shadow: inset 0 0 0 2px var(--gg-ink); }
.pb-tab-head { display: block; padding: 11px 18px; font-size: 14px; font-weight: 600; color: #fff; background: var(--gg-ink); }
.pb-tab.sub.active .pb-tab-head { background: var(--gg-ink); color: #fff; }
.pb-tab.once.active .pb-tab-head { background: var(--gg-ink); color: #fff; }
.pb-tab-body { display: block; position: relative; padding: 18px 20px 20px; }
.pb-tab-body s { font-size: 14px; color: var(--gg-ink-3); font-weight: 400; }
.pb-tab-price { display: block; font-size: 30px; font-weight: 500; letter-spacing: -0.02em; color: var(--gg-ink); margin-top: 2px; }
.pb-tab.sub.active .pb-tab-price { color: var(--gg-green); }
.pb-tab-radio { position: absolute; top: 18px; right: 18px; width: 18px; height: 18px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--gg-ink-3); }
.pb-tab.sub.active .pb-tab-radio { box-shadow: inset 0 0 0 5px var(--gg-green); }
.pb-tab.once.active .pb-tab-radio { box-shadow: inset 0 0 0 5px var(--gg-ink); }

.pb-drop { background: var(--gg-cream); border-radius: 16px; overflow: hidden; margin-bottom: 14px; }
.pb-drop-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; font-size: 15px; font-weight: 600; color: var(--gg-ink); }
.pb-drop-close { width: 30px; height: 30px; border-radius: 999px; background: var(--gg-ink); color: #fff; border: 0; cursor: pointer; font-size: 16px; line-height: 0; display: inline-flex; align-items: center; justify-content: center; }
.pb-drop-list { display: flex; flex-direction: column; padding-bottom: 6px; }
.pb-drop-opt { background: transparent; border: 0; text-align: left; font: inherit; font-size: 14.5px; color: var(--gg-ink-2); padding: 11px 20px; cursor: pointer; transition: background var(--t-fast), color var(--t-fast); }
.pb-drop-opt:hover { background: var(--gg-lime-soft); }
.pb-drop-opt.active { background: var(--gg-lime-soft); color: var(--gg-green); font-weight: 600; }
.pb-drop-reopen { width: 100%; background: var(--gg-cream); border: 0; border-radius: 16px; padding: 15px 20px; cursor: pointer; font: inherit; font-size: 14.5px; color: var(--gg-ink); display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pb-drop-reopen .chev { color: var(--gg-ink-3); }

.pb-boxes { display: flex; justify-content: space-between; align-items: center; background: var(--gg-cream); border-radius: 16px; padding: 12px 20px; margin-bottom: 16px; }
.pb-boxes-label { font-size: 15px; font-weight: 500; color: var(--gg-ink); }
.pb-qty { display: inline-flex; align-items: center; gap: 14px; }
.pb-qty button { width: 36px; height: 36px; border-radius: 999px; background: var(--gg-ink); color: #fff; border: 0; cursor: pointer; font-size: 18px; line-height: 0; }
.pb-qty span { min-width: 24px; text-align: center; font-size: 17px; font-weight: 500; }

.pb-buynow { width: 100%; padding: 20px 28px; display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.pb-buynow-info { display: flex; align-items: baseline; justify-content: center; gap: 12px; line-height: 1.2; flex-wrap: wrap; }
.pb-buynow-detail { font-size: 16px; font-weight: 400; opacity: 0.85; letter-spacing: 0; }
.pb-buynow-label { font-size: 20px; font-weight: 400; }
.pb-trust { display: flex; gap: 14px; justify-content: center; margin-top: 14px; font-size: 11px; color: var(--gg-ink-3); letter-spacing: 0.06em; text-transform: uppercase; }

/* purchase-column accordion */
.pb-acc { margin-top: 28px; }
.pb-acc-item { border-bottom: 1px solid var(--gg-line); }
.pb-acc-item:first-child { border-top: 1px solid var(--gg-line); }
.pb-acc-h { width: 100%; background: none; border: 0; cursor: pointer; font: inherit; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 28px; font-weight: 400; letter-spacing: -0.025em; color: var(--gg-ink); }
.pb-acc-item:first-child .pb-acc-h { color: var(--gg-ink); }
.pb-acc-ico { font-size: 28px; color: var(--gg-green); line-height: 0; font-weight: 400; }
.pb-acc-body { padding: 0 0 22px; }
.pb-acc-specs .pd-spec-row:first-of-type { border-top: 0; }

/* details strip (unused on PDP now, kept for other uses) */
.pd-strip { padding: 80px 0; background: var(--gg-cream); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }
.pd-block { background: var(--gg-paper); border-radius: 22px; padding: 32px 30px; }
.pd-k { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gg-green); margin-bottom: 18px; }
.pd-spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--gg-line); font-size: 14px; }
.pd-spec-row:first-of-type { border-top: 0; }
.pd-spec-row .k { color: var(--gg-ink-3); }
.pd-spec-row .v { color: var(--gg-ink); font-weight: 500; text-align: right; }
.pd-mat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.pd-mat-list li { font-size: 14px; color: var(--gg-ink); padding-left: 18px; position: relative; font-weight: 400; }
.pd-mat-list li::before { content:''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 999px; background: var(--gg-green); }
.pd-pillar { padding: 14px 0; border-top: 1px solid var(--gg-line); }
.pd-pillar:first-of-type { border-top: 0; padding-top: 0; }
.pd-pillar-k { font-size: 15px; font-weight: 600; color: var(--gg-ink); margin-bottom: 5px; letter-spacing: -0.01em; }
.pd-pillar-d { font-size: 13.5px; line-height: 1.55; color: var(--gg-ink); font-weight: 400; }

/* brand blurb (legacy, unused) */
.pd-blurb { padding: 96px 0; text-align: center; }
.pd-blurb-text { font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.3; letter-spacing: -0.02em; color: var(--gg-ink); max-width: 22ch; margin: 0 auto; }
.pd-blurb-text .g { color: var(--gg-green); }

/* editorial curved-connector rows */
/* ---------- 3-ply luxurious layered section ---------- */
.pd-ply { padding: 110px 0; background: var(--gg-cream); }
.pd-ply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pd-ply-copy h2 { margin-bottom: 24px; }
.pd-ply-lede { font-size: 17px; line-height: 1.65; color: var(--gg-ink); font-weight: 400; max-width: 42ch; margin: 0 0 36px; }
.pd-ply-rows { display: flex; flex-direction: column; gap: 4px; }
.pd-ply-row { display: flex; gap: 22px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--gg-line); }
.pd-ply-num { font-size: 15px; font-weight: 500; color: var(--gg-green); letter-spacing: 0.04em; padding-top: 3px; min-width: 28px; }
.pd-ply-t { font-size: 18px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.01em; margin-bottom: 5px; }
.pd-ply-d { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 400; max-width: 38ch; }
.pd-ply-art { position: relative; background: transparent; border-radius: 0; padding: 0; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.pd-ply-art img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(17,17,17,0.12)); }
.pd-ply-badge { position: absolute; top: 28px; right: 28px; background: var(--gg-green); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; padding: 8px 16px; border-radius: 999px; }

/* ---------- key features radiating around the roll ---------- */
.pd-features { padding: 96px 0; }
.pd-feat-head { text-align: center; margin-bottom: 56px; }
.pd-feat-head .eyebrow { margin-bottom: 14px; display: block; }
.pd-feat-stage { position: relative; display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 32px; align-items: center; }
.pd-feat-wires { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.pd-feat { position: relative; z-index: 1; max-width: 260px; padding: 22px 28px; border: 1.5px solid var(--gg-green); border-radius: 140px / 80px; background: rgba(251,250,246,0.92); backdrop-filter: blur(2px); }
.pd-feat-wires path { fill: none; stroke: var(--gg-green); stroke-width: 2.5; opacity: 0.65; }
.pd-feat-col { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 1; }
.pd-feat-col.left { text-align: center; align-items: flex-start; }
.pd-feat-col.right { text-align: center; align-items: flex-end; }
.pd-feat { max-width: 260px; padding: 22px 28px; border: 1.5px solid var(--gg-green); border-radius: 140px / 80px; background: rgba(251,250,246,0.85); backdrop-filter: blur(2px); }
.pd-feat-t { font-size: 16px; font-weight: 600; color: var(--gg-ink); letter-spacing: -0.01em; margin-bottom: 5px; }
.pd-feat-d { font-size: 12.5px; line-height: 1.5; color: var(--gg-ink-2); font-weight: 400; }
.pd-feat-hero { position: relative; z-index: 1; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.pd-feat-hero img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* competitive comparison chart */
.pd-compare { padding: 80px 0; background: #EEF4E8; }
.pd-compare-head { text-align: center; margin-bottom: 40px; }
.pd-compare-head .eyebrow { margin-bottom: 14px; display: block; }
.pd-compare-table { max-width: 1240px; margin: 0 auto; position: relative; }
.pd-compare-row { display: grid; grid-template-columns: 1.7fr 1.2fr 1fr 1fr 1fr; align-items: center; padding: 13px 16px; border-top: 1px solid rgba(17,17,17,0.12); }
.pd-compare-row:first-child { border-top: 0; }
.pd-compare-feat { font-size: 20px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.015em; }
.pd-compare-us, .pd-compare-them { text-align: center; }
.pd-compare-top { padding-top: 18px; padding-bottom: 18px; }
.pd-compare-top .pd-compare-us { font-size: 22px; font-weight: 700; color: var(--gg-green); text-transform: lowercase; letter-spacing: -0.02em; padding: 0; }
.pd-compare-top .pd-compare-them { font-size: 17px; font-weight: 600; color: var(--gg-ink-3); letter-spacing: 0.01em; }
.pd-check { width: 38px; height: 38px; border-radius: 999px; background: var(--gg-green); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.pd-check svg { width: 20px; height: 20px; }
.pd-x { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; color: var(--gg-ink-3); opacity: 0.4; font-size: 19px; }
.pd-x { color: var(--gg-ink-3); font-size: 18px; font-weight: 600; }

/* editorial curved-connector rows (legacy, unused) */
.pd-editorial { padding: 96px 0; }
.pd-edit-row { position: relative; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: center; }
.pd-edit-row + .pd-edit-row { margin-top: 96px; }
.pd-edit-row.reverse .pd-edit-art { order: 3; }
.pd-edit-h { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.028em; line-height: 1.02; margin: 0; }
.pd-edit-art { border-radius: 28px; overflow: hidden; aspect-ratio: 1/1; background: var(--gg-cream); display: flex; align-items: center; justify-content: center; }
.pd-edit-art img { width: 100%; height: 100%; object-fit: cover; }
.pd-edit-text { font-size: 14px; line-height: 1.7; color: var(--gg-ink); font-weight: 400; max-width: 34ch; }
.pd-connector { position: absolute; left: 0; right: 0; top: -40px; width: 100%; height: 200px; pointer-events: none; z-index: -1; }
.pd-connector path { fill: none; stroke: var(--gg-green); stroke-width: 1.5; opacity: 0.5; }

/* moments (legacy, unused) */
.pd-moments { padding: 96px 0; background: var(--gg-forest); color: var(--gg-cream); }
.pd-moments-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.pd-moments-grid h2 { color: var(--gg-cream); }
.pd-moments-grid .accent { color: var(--gg-lime); }
.pd-moments-grid .lede { color: rgba(244,239,228,0.82); margin-top: 16px; }
.pd-moments-list { display: flex; flex-direction: column; gap: 14px; }
.pd-moment-tile { background: rgba(255,255,255,0.08); border-radius: 18px; padding: 22px 26px; }
.pd-moment-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.pd-moment-time { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--gg-lime); }
.pd-moment-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.pd-moment-d { font-size: 14px; line-height: 1.55; opacity: 0.88; font-weight: 300; }

/* infographic A+ gallery */
.pd-infographics { padding: 24px 0 0; }
.pd-info-wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-info-tile { border-radius: 20px; overflow: hidden; background: var(--gg-cream); }
.pd-info-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* reviews */
.pd-reviews { padding: 96px 0; background: var(--gg-cream); }
.pd-reviews-head .display-2 { color: var(--gg-green); }
.pd-reviews-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 32px; }
.pd-reviews-summary { text-align: right; }
.pd-reviews-avg { font-family: var(--font-serif); font-style: italic; font-size: 56px; font-weight: 400; color: var(--gg-green); line-height: 1; }
.pd-reviews-stars { color: var(--gg-green); font-size: 16px; letter-spacing: 2px; }
.pd-reviews-count { font-size: 13px; color: var(--gg-ink-3); margin-top: 6px; }
.pd-reviews-carousel { display: flex; align-items: stretch; gap: 16px; }
.pd-reviews-arrow { flex-shrink: 0; align-self: center; width: 44px; height: 44px; border-radius: 999px; background: var(--gg-paper); border: 0; cursor: pointer; font-size: 18px; color: var(--gg-ink); transition: background var(--t-fast); }
.pd-reviews-arrow:hover { background: #fff; }
.pd-reviews-arrow.disabled { opacity: 0.4; cursor: default; }
.pd-reviews-grid { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pd-review { background: var(--gg-paper); border-radius: 18px; padding: 24px 26px; }
.pd-review-meta { font-size: 12.5px; color: var(--gg-ink-3); margin-bottom: 10px; }
.pd-review-meta strong { color: var(--gg-ink); font-weight: 600; }
.pd-review-verified { color: var(--gg-green); }
.pd-review-stars { color: var(--gg-green); font-size: 13px; letter-spacing: 1.5px; }
.pd-review-title { font-size: 15px; font-weight: 600; margin: 10px 0 6px; letter-spacing: -0.01em; }
.pd-review-body { font-size: 14px; line-height: 1.55; color: var(--gg-ink); margin: 0; font-weight: 400; }
.pd-reviews-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.pd-reviews-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gg-line-2); border: 0; cursor: pointer; padding: 0; }
.pd-reviews-dot.active { background: var(--gg-green); }
.pd-reviews-cta { text-align: center; margin-top: 32px; }

/* related */
.pd-related { padding: 96px 0; }
.pd-related-head { text-align: left; margin-bottom: 48px; }
.pd-related-head .eyebrow { margin-bottom: 12px; }

/* ===================================================================
   ABOUT v2 (Coterie flow)
   =================================================================== */
.ab2-hero { padding: 72px 0 56px; background: #fff; text-align: center; }
.ab2-hero .eyebrow { display: block; margin-bottom: 20px; }
.ab2-hero-h { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.035em; line-height: 0.98; margin: 0 auto 28px; max-width: 16ch; }
.ab2-hero-lede { font-size: 18px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 400; max-width: 56ch; margin: 0 auto; }
.ab2-hero-lede.nowrap { max-width: none; white-space: nowrap; }

.ab2-bleed { width: 100%; height: clamp(360px, 52vh, 620px); overflow: hidden; }
.ab2-bleed img { width: 100%; height: 100%; object-fit: cover; }

.ab2-split { padding: 110px 0; }
.ab2-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ab2-split-media { border-radius: 32px; overflow: hidden; aspect-ratio: 4/5; }
.ab2-split-media img { width: 100%; height: 100%; object-fit: cover; }
.ab2-split-copy h2 { margin-bottom: 24px; }
.ab2-split-copy p { font-size: 17px; line-height: 1.7; color: var(--gg-ink-2); font-weight: 400; margin: 0 0 18px; max-width: 44ch; }

.ab2-values { padding: 0 0 110px; }
.ab2-values-h { text-align: center; margin: 0 auto 64px; }
.ab2-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ab2-value { border-top: 2px solid var(--gg-ink); padding-top: 22px; }
.ab2-value-n { font-size: 14px; font-weight: 500; color: var(--gg-green); letter-spacing: 0.04em; }
.ab2-value h3 { font-size: 20px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.01em; margin: 14px 0 10px; }
.ab2-value p { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 400; margin: 0; }

.ab2-clean { padding: 110px 0; background: var(--gg-cream); }
.ab2-clean-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ab2-clean-copy h2 { margin-bottom: 22px; }
.ab2-clean-copy p { font-size: 17px; line-height: 1.7; color: var(--gg-ink-2); font-weight: 400; max-width: 42ch; margin: 0 0 28px; }
.ab2-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.ab2-chip { background: var(--gg-green-soft); color: #fff; font-size: 15px; font-weight: 500; padding: 10px 22px; border-radius: 999px; }
.ab2-clean-media { border-radius: 32px; overflow: hidden; aspect-ratio: 1/1; }
.ab2-clean-media img { width: 100%; height: 100%; object-fit: cover; }

.ab2-quote { padding: 120px 0; text-align: center; }
.ab2-quote-text { font-size: clamp(1.75rem, 3.6vw, 3rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.025em; line-height: 1.25; max-width: 24ch; margin: 0 auto 24px; }
.ab2-quote-by { font-size: 14px; color: var(--gg-ink-3); font-weight: 500; letter-spacing: 0.04em; text-align: center; display: block; width: 100%; margin: 0 auto; }

.ab2-cta { padding: 96px 0 110px; text-align: center; background: var(--gg-cream); }
.ab2-cta-h { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.03em; line-height: 0.98; margin: 0 0 36px; white-space: nowrap; }
.ab2-cta-btn { background: var(--gg-ink); color: #fff; }
.ab2-cta-btn:hover { background: #000; }

@media (max-width: 900px) {
  .ab2-split-grid, .ab2-clean-grid { grid-template-columns: 1fr; gap: 40px; }
  .ab2-values-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .ab2-clean-media { order: -1; }
}

/* ===================================================================
   ABOUT (legacy)
   =================================================================== */
.about-hero { padding: 24px 0 48px; background: #fff; }
.about-hero-h { font-size: clamp(3.25rem, 8vw, 7rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.035em; line-height: 0.96; margin: 0 0 48px; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 920px; }
.about-intro p { font-size: 13px; line-height: 1.7; color: var(--gg-ink-3); font-weight: 400; margin: 0; }

.about-feature { padding: 48px 0; }
.about-feature-card { position: relative; background: var(--gg-cream); border-radius: 28px; display: grid; grid-template-columns: 0.85fr 1fr; gap: 48px; align-items: center; padding: 40px; }
.about-feature-img { border-radius: 20px; overflow: hidden; aspect-ratio: 1/1; margin-top: -64px; }
.about-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.about-feature-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-feature-cols p { font-size: 13.5px; line-height: 1.7; color: var(--gg-ink-2); font-weight: 300; margin: 0; }
.about-feature-pill { display: inline-flex; align-items: center; gap: 12px; background: var(--gg-lime-soft); color: var(--gg-ink); border-radius: 999px; padding: 12px 24px 12px 12px; font-size: 15px; font-weight: 500; margin: 24px auto 0; width: fit-content; }
.afp-ic { width: 34px; height: 34px; border-radius: 999px; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: var(--gg-green); }
.afp-ic svg { width: 18px; height: 18px; }

.about-sustainable { padding: 80px 0 96px; }
.about-sus-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 40px; }
.about-sus-tag { display: flex; align-items: center; gap: 18px; }
.about-sus-h { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.03em; margin: 0; }
.about-sus-line { width: 1px; height: 64px; background: var(--gg-green); opacity: 0.4; }
.about-sus-ic { width: 32px; height: 32px; }
.about-sus-aside { font-size: 13.5px; line-height: 1.7; color: var(--gg-ink-2); font-weight: 300; max-width: 40ch; justify-self: end; }
.about-sus-stage { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 24/10; }
.about-sus-stage > img { width: 100%; height: 100%; object-fit: cover; }
.about-sus-card { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); background: var(--gg-cream); border-radius: 24px; padding: 36px 44px; text-align: center; max-width: 320px; }
.asc-pct { font-size: 56px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.03em; line-height: 1; }
.asc-lbl { font-size: 30px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.02em; line-height: 1; margin-top: 2px; }
.about-sus-card p { font-size: 13px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 300; margin: 16px 0 0; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; text-align: center; }
.about-stat .as-l { font-size: 13px; color: var(--gg-ink-3); font-weight: 400; margin-bottom: 8px; }
.about-stat .as-n { font-size: clamp(2.5rem, 4.5vw, 3.75rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.about-stats-foot { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 48px; gap: 24px; }
.about-stats-line { width: 1px; height: 56px; background: var(--gg-green); opacity: 0.4; }
.about-stats-foot p { font-size: 13.5px; line-height: 1.7; color: var(--gg-ink-2); font-weight: 300; max-width: 48ch; margin: 0; }

.help-band-section { padding: 24px 0 96px; }
.help-band { background: var(--gg-green); color: #fff; border-radius: 28px; padding: 64px 48px; text-align: center; font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 500; letter-spacing: -0.028em; line-height: 1.05; }

/* legacy about styles (unused) */
.about-pillars { padding: 64px 0 32px; }
.about-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar-n { font-family: var(--font-serif); font-style: italic; font-size: 48px; color: var(--gg-green); line-height: 1; margin-bottom: 14px; }
.pillar-t { font-size: 19px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.pillar-d { font-size: 14px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 300; max-width: 32ch; }
.about-origin { padding: 64px 0; }
.about-origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-origin-copy h2 { margin-bottom: 20px; }
.about-origin-copy p { font-size: 16px; line-height: 1.65; color: var(--gg-ink-2); font-weight: 300; margin: 0 0 16px; max-width: 46ch; }
.about-origin-stage { border-radius: 32px; overflow: hidden; aspect-ratio: 4/5; background: var(--gg-cream); }
.about-origin-stage img { width: 100%; height: 100%; object-fit: cover; }
.about-how { padding: 96px 0; }
.about-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.how-step-n { font-family: var(--font-serif); font-style: italic; font-size: 40px; color: var(--gg-green); line-height: 1; margin-bottom: 12px; }
.how-step-t { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.how-step-d { font-size: 13.5px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 300; }
.about-values { padding: 64px 0 96px; }
.about-values-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.about-values-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.about-values-list li { font-size: 16px; line-height: 1.6; color: var(--gg-ink-2); font-weight: 300; padding: 20px 0; border-top: 1px solid var(--gg-line); }
.about-values-list li strong { color: var(--gg-ink); font-weight: 600; }
.about-cta { padding: 96px 0; text-align: center; }
.about-cta-inner h2 { margin-bottom: 20px; }

/* ===================================================================
   ACCOUNT
   =================================================================== */
.acct { padding: 40px 0 96px; }
.acct-top { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--gg-line); padding-bottom: 32px; }
.acct-saved { text-align: right; }
.acct-saved-n { font-family: var(--font-serif); font-style: italic; font-size: 52px; color: var(--gg-green); line-height: 1; }
.acct-next { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin-top: 40px; }
.acct-next-l { background: var(--gg-mint); color: var(--gg-ink); border-radius: 28px; padding: 40px 48px; }
.acct-next-l .eyebrow { color: var(--gg-ink); }
.acct-next-l .btn.ghost, .acct-next-l .btn.ghost:hover { color: var(--gg-ink); }
.acct-next-date { font-family: var(--font-serif); font-style: italic; font-size: 44px; line-height: 1; margin-top: 12px; }
.acct-next-r { background: var(--gg-cream); border-radius: 28px; padding: 32px; display: flex; align-items: center; gap: 20px; }
.acct-next-r .img { width: 110px; height: 110px; background: #fff; border-radius: 18px; padding: 10px; flex-shrink: 0; }
.acct-next-r .img img { width: 100%; height: 100%; object-fit: contain; }
.acct-line { display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--gg-line); }
.acct-line-img { aspect-ratio: 1/1; border-radius: 14px; background: var(--gg-cream); padding: 8px; display: flex; align-items: center; justify-content: center; }
.acct-line-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.acct-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.acct-stat-card { background: var(--gg-cream); border-radius: 22px; padding: 26px; }
.acct-stat-card .n { font-family: var(--font-serif); font-style: italic; font-size: 44px; color: var(--gg-green); line-height: 1; }
.acct-stat-card .l { font-size: 14px; font-weight: 600; margin-top: 12px; }

/* ===================================================================
   CART page + drawer
   =================================================================== */
.cart-scrim { position: fixed; inset: 0; background: rgba(17,17,17,0.36); z-index: 70; opacity: 0; pointer-events: none; transition: opacity 220ms; }
.cart-scrim.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: min(460px, 92vw); background: var(--gg-paper); z-index: 71; transform: translateX(100%); transition: transform 340ms var(--ease-out); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--gg-line); }
.cart-drawer-title { font-size: 18px; font-weight: 600; margin: 0; }
.cart-drawer-close { background: none; border: 0; cursor: pointer; font-size: 22px; color: var(--gg-ink-3); line-height: 0; }
.cart-drawer-empty { padding: 48px 28px; text-align: center; color: var(--gg-ink-3); }
.cart-drawer-empty p { margin-bottom: 18px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 8px 28px; }
.cart-ship { padding: 16px 28px; border-bottom: 1px solid var(--gg-line); }
.cart-ship-msg { font-size: 13px; color: var(--gg-ink-2); margin-bottom: 9px; }
.cart-ship-msg strong { color: var(--gg-ink); font-weight: 600; }
.cart-ship-track { height: 6px; border-radius: 999px; background: var(--gg-cream); overflow: hidden; }
.cart-ship-fill { height: 100%; background: var(--gg-green); border-radius: 999px; transition: width 400ms var(--ease-out); }
.cart-upsell { background: var(--gg-lime-soft); border-radius: 16px; padding: 16px 18px; margin: 16px 0 4px; }
.cart-upsell-k { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-green); margin-bottom: 6px; }
.cart-upsell-d { font-size: 13.5px; line-height: 1.5; color: var(--gg-ink); font-weight: 400; }
.cart-upsell-d strong { font-weight: 700; }
.cart-foot-trust { display: flex; gap: 12px; justify-content: center; margin-top: 12px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gg-ink-3); }
.cart-drawer-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--gg-line); }
.cart-drawer-can { width: 70px; height: 70px; object-fit: contain; border-radius: 12px; background: var(--gg-cream); padding: 6px; }
.cart-drawer-eyebrow { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-green); font-weight: 600; }
.cart-drawer-name { font-size: 14px; font-weight: 600; margin: 2px 0; }
.cart-drawer-sub { font-size: 12px; color: var(--gg-ink-3); }
.cart-drawer-remove { background: none; border: 0; cursor: pointer; font-size: 12px; color: var(--gg-ink-3); text-decoration: underline; padding: 4px 0 0; }
.cart-drawer-line-price { font-size: 14px; font-weight: 600; }
.cart-drawer-foot { padding: 20px 28px 24px; border-top: 1px solid var(--gg-line); background: var(--gg-cream); }
.cart-drawer-totals { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-drawer-total-n { font-size: 22px; font-weight: 600; }
.cart-drawer-checkout { width: 100%; }
.cart-drawer-keep { background: none; border: 0; cursor: pointer; width: 100%; padding: 14px 0 0; font-size: 13px; color: var(--gg-ink-3); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--gg-paper); border-top: 1px solid var(--gg-line); padding: 80px 0 36px; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.brand-col img { height: 52px; margin-bottom: 18px; }
.brand-col p { font-size: 14px; color: var(--gg-ink); max-width: none; white-space: nowrap; line-height: 1.55; font-weight: 400; margin-bottom: 16px; }
.ft-news { display: flex; gap: 8px; background: var(--gg-cream); border-radius: 999px; padding: 5px; max-width: 360px; }
.ft-news-input { flex: 1; border: 0; outline: 0; background: transparent; padding: 11px 18px; font: inherit; font-size: 14px; color: var(--gg-ink); }
.ft-news-input::placeholder { color: var(--gg-ink-3); }
.ft-news-btn { padding: 11px 26px; font-size: 14px; }
.ft-news-done { font-size: 14px; color: var(--gg-green); font-weight: 500; padding: 10px 0; }
.ft-meta-links { display: flex; gap: 24px; }
.ft-socials { display: flex; gap: 14px; margin-top: 20px; }
.ft-socials a { color: var(--gg-green); }
.ft-socials svg { width: 22px; height: 22px; }
.footer h4 { font-size: 13px; font-weight: 700; color: var(--gg-green); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--gg-ink); text-decoration: none; font-size: 14px; font-weight: 400; }
.footer a:hover { color: var(--gg-green); }
.ft-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--gg-line); font-size: 12px; color: var(--gg-ink-3); }
.ft-meta a { color: var(--gg-ink-3); }

/* ---------- Buzz toast ---------- */
.buzz { position: fixed; left: 20px; bottom: 20px; z-index: 55; background: #fff; border-radius: 16px; padding: 12px 16px 12px 12px; box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 0 0 1px var(--gg-line); display: flex; align-items: center; gap: 12px; max-width: 320px; transform: translateY(140%); opacity: 0; transition: transform 400ms var(--ease-out), opacity 400ms; }
.buzz.in { transform: none; opacity: 1; }
.buzz-img { width: 44px; height: 44px; border-radius: 12px; background: var(--gg-cream); padding: 4px; flex-shrink: 0; }
.buzz-img img { width: 100%; height: 100%; object-fit: contain; }
.buzz-meta { font-size: 12.5px; line-height: 1.4; color: var(--gg-ink-2); }
.buzz-meta strong { color: var(--gg-ink); display: block; font-size: 13px; }
.buzz-close { background: none; border: 0; cursor: pointer; font-size: 14px; color: var(--gg-ink-3); }

/* ===================================================================
   FOOTER PAGES (Blog, Contact, Careers, Refer, Press, Affiliate)
   =================================================================== */
/* Blog */
.blog-feature-sec { padding: 24px 0 64px; }
.blog-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; text-decoration: none; color: inherit; }
.blog-feature-img { border-radius: 28px; overflow: hidden; aspect-ratio: 4/3; }
.blog-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.blog-feature:hover .blog-feature-img img { transform: scale(1.03); }
.blog-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-green); margin-bottom: 16px; }
.blog-feature-h { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 16px; }
.blog-feature-ex { font-size: 16px; line-height: 1.65; color: var(--gg-ink-2); margin: 0 0 18px; max-width: 46ch; }
.blog-meta { font-size: 13px; color: var(--gg-ink-3); margin-bottom: 14px; }
.blog-readmore { font-size: 15px; font-weight: 500; color: var(--gg-ink); }
.blog-feature:hover .blog-readmore { color: var(--gg-green); }
.blog-grid-sec { padding: 32px 0 96px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.blog-card { text-decoration: none; color: inherit; }
.blog-card-img { border-radius: 20px; overflow: hidden; aspect-ratio: 3/2; margin-bottom: 18px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-h { font-size: 19px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.015em; line-height: 1.2; margin: 12px 0 10px; }
.blog-card:hover .blog-card-h { color: var(--gg-green); }
.blog-card-ex { font-size: 14px; line-height: 1.6; color: var(--gg-ink-2); margin: 0 0 12px; }

/* Blog grid bar + dots */
.blog-grid-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.blog-grid-title { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; color: var(--gg-ink); margin: 0; }
.blog-grid { animation: nh-rev-fade .4s ease; }
.blog-dots { margin-top: 44px; }

/* Article page */
.article-head { padding: 56px 0 36px; background: #fff; }
.article-head-inner { max-width: 760px; }
.article-back { font-size: 14px; color: var(--gg-ink-3); text-decoration: none; display: block; margin-bottom: 28px; }
.article-back:hover { color: var(--gg-green); }
.article-head .blog-tag { margin-bottom: 18px; }
.article-h { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; color: var(--gg-ink); margin: 0 0 22px; }
.article-dek { font-size: 19px; line-height: 1.55; color: var(--gg-ink-2); margin: 0 0 26px; }
.article-byline { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gg-ink-3); }
.article-author { font-weight: 600; color: var(--gg-ink); }
.article-dot { color: var(--gg-line-2); }
.article-hero { max-width: 1040px; margin: 0 auto 8px; padding: 0 40px; }
.article-hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: 28px; display: block; }
.article-body { max-width: 760px; padding-top: 48px; padding-bottom: 72px; }
.article-section { margin-bottom: 36px; }
.article-h2 { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; color: var(--gg-ink); margin: 0 0 12px; }
.article-p { font-size: 17px; line-height: 1.75; color: var(--gg-ink-2); margin: 0 0 18px; }
.article-p:last-child { margin-bottom: 0; }
.article-list { margin: 4px 0 18px; padding-left: 0; list-style: none; }
.article-list li { position: relative; font-size: 17px; line-height: 1.7; color: var(--gg-ink-2); padding-left: 30px; margin-bottom: 12px; }
.article-list li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--gg-green); }
.article-list-ol { counter-reset: gg-step; }
.article-list-ol li { padding-left: 42px; }
.article-list-ol li::before { counter-increment: gg-step; content: counter(gg-step); top: 2px; left: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--gg-mint); color: var(--gg-forest); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.article-quote { margin: 28px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--gg-green); font-family: var(--font-serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--gg-ink); }
.article-cta { margin-top: 56px; padding: 40px; background: var(--gg-mint); border-radius: 28px; text-align: center; }
.article-cta-h { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; color: var(--gg-ink); margin: 0 0 22px; }
.article-more { padding-top: 24px; border-top: 1px solid var(--gg-line); }

/* Contact */
.contact-sec { padding: 24px 0 110px; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.contact-block { padding: 22px 0; border-top: 1px solid var(--gg-line); }
.contact-block:first-child { border-top: 0; padding-top: 0; }
.contact-h { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-green); margin: 0 0 12px; }
.contact-link { font-size: 20px; font-weight: 500; color: var(--gg-ink); text-decoration: none; letter-spacing: -0.01em; }
.contact-link:hover { color: var(--gg-green); }
.contact-note { font-size: 14px; line-height: 1.6; color: var(--gg-ink-2); margin: 8px 0 0; }
.contact-form-wrap { background: var(--gg-cream); border-radius: 28px; padding: 40px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gg-ink-3); }
.cf-label em { color: var(--gg-green); font-style: normal; }
.cf-opt { text-transform: none; letter-spacing: 0; font-weight: 400; }
.cf-input, .cf-textarea { background: #fff; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 12px; padding: 13px 16px; font: inherit; font-size: 14.5px; color: var(--gg-ink); }
.cf-input:focus, .cf-textarea:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--gg-green); }
.cf-textarea { resize: vertical; line-height: 1.5; }
.cf-topics { display: flex; flex-wrap: wrap; gap: 10px; }
.cf-topic { background: #fff; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 999px; padding: 10px 20px; font: inherit; font-size: 14px; cursor: pointer; color: var(--gg-ink); transition: all var(--t-fast); }
.cf-topic:hover { box-shadow: inset 0 0 0 1.5px var(--gg-ink); }
.cf-topic.on { background: var(--gg-green); color: #fff; box-shadow: none; }
.cf-submit { width: 100%; margin-top: 8px; }
.contact-done { text-align: center; padding: 40px 0; }
.contact-done h3 { font-size: 28px; font-weight: 500; color: var(--gg-ink); margin: 0 0 12px; letter-spacing: -0.02em; }
.contact-done p { font-size: 16px; color: var(--gg-ink-2); margin: 0 0 24px; }

/* Careers */
.careers-perks-sec { padding: 96px 0 64px; }
.careers-perks-h { text-align: center; margin: 0 auto 56px; }
.careers-perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.careers-perk { border-top: 2px solid var(--gg-ink); padding-top: 20px; }
.careers-perk h3 { font-size: 19px; font-weight: 500; color: var(--gg-ink); margin: 0 0 10px; letter-spacing: -0.01em; }
.careers-perk p { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink-2); margin: 0; }
.careers-roles-sec { padding: 32px 0 110px; }
.careers-roles-h { margin-bottom: 32px; }
.career-row { display: grid; grid-template-columns: 2fr 1.2fr 1fr 40px; gap: 24px; align-items: center; padding: 26px 8px; border-top: 1px solid var(--gg-line); text-decoration: none; color: inherit; transition: padding var(--t-fast); }
.career-row:last-of-type { border-bottom: 1px solid var(--gg-line); }
.career-row:hover { padding-left: 20px; background: var(--gg-cream); border-radius: 14px; }
.career-title { font-size: 21px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.015em; }
.career-team { font-size: 13px; color: var(--gg-green); margin-top: 3px; }
.career-type, .career-loc { font-size: 14px; color: var(--gg-ink-2); }
.career-arrow { font-size: 20px; color: var(--gg-ink); text-align: right; }
.careers-foot { font-size: 15px; color: var(--gg-ink-2); margin-top: 32px; }
.careers-foot a { color: var(--gg-green); }

/* Refer a friend */
.refer-card-sec { padding: 24px 0 64px; }
.refer-card { background: var(--gg-mint); color: var(--gg-ink); border-radius: 32px; padding: 56px; text-align: center; max-width: 640px; margin: 0 auto; }
.refer-card-label { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gg-ink-3); margin-bottom: 18px; }
.refer-code { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 500; letter-spacing: 0.02em; margin-bottom: 28px; }
.refer-copy { background: var(--gg-ink); color: #fff; }
.refer-copy:hover { background: var(--gg-forest); }
.refer-share { display: flex; gap: 18px; justify-content: center; align-items: center; margin-top: 28px; font-size: 14px; }
.refer-share span { color: var(--gg-ink-3); }
.refer-share a { color: var(--gg-green); text-decoration: underline; text-underline-offset: 3px; }
.refer-steps-sec { padding: 48px 0 110px; }
.refer-steps-h { text-align: center; margin: 0 auto 56px; }
.refer-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.refer-step { text-align: center; }
.refer-step-n { font-size: 15px; font-weight: 500; color: var(--gg-green); letter-spacing: 0.04em; }
.refer-step h3 { font-size: 21px; font-weight: 500; color: var(--gg-ink); margin: 14px 0 10px; letter-spacing: -0.015em; }
.refer-step p { font-size: 15px; line-height: 1.6; color: var(--gg-ink-2); margin: 0 auto; max-width: 30ch; }

/* Press kit */
.press-section { padding: 24px 0 64px; }
.press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.press-h { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-green); margin: 0 0 18px; }
.press-facts { width: 100%; border-collapse: collapse; }
.press-facts th { text-align: left; vertical-align: top; font-size: 13px; font-weight: 600; color: var(--gg-ink-3); padding: 14px 24px 14px 0; white-space: nowrap; border-top: 1px solid var(--gg-line); width: 38%; }
.press-facts td { font-size: 14.5px; color: var(--gg-ink); padding: 14px 0; border-top: 1px solid var(--gg-line); line-height: 1.5; }
.press-facts tr:first-child th, .press-facts tr:first-child td { border-top: 0; }
.press-copy { font-size: 15.5px; line-height: 1.7; color: var(--gg-ink-2); margin: 0 0 16px; }
.press-copy a { color: var(--gg-green); }
.press-assets-sec { padding: 48px 0 64px; }
.press-assets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.press-asset { display: flex; align-items: center; gap: 16px; background: var(--gg-cream); border-radius: 18px; padding: 16px; text-decoration: none; color: inherit; transition: background var(--t-fast); }
.press-asset:hover { background: var(--gg-cream-2); }
.press-asset-img { width: 64px; height: 64px; border-radius: 12px; background: #fff; padding: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.press-asset-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.press-asset-meta { flex: 1; min-width: 0; }
.press-asset-name { font-size: 14.5px; font-weight: 500; color: var(--gg-ink); }
.press-asset-sub { font-size: 12.5px; color: var(--gg-ink-3); margin-top: 2px; }
.press-asset-dl { font-size: 18px; color: var(--gg-green); }
.press-foot-sec { padding: 24px 0 110px; }
.press-foot { display: flex; justify-content: space-between; align-items: center; gap: 32px; background: var(--gg-cream); border-radius: 28px; padding: 48px 56px; flex-wrap: wrap; }

/* Affiliate */
.affil-tiers-sec { padding: 32px 0 64px; }
.affil-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.affil-tier { background: var(--gg-cream); border-radius: 24px; padding: 40px 36px; text-align: center; }
.affil-tier-big { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 500; color: var(--gg-green); letter-spacing: -0.03em; line-height: 1; }
.affil-tier-label { font-size: 16px; font-weight: 500; color: var(--gg-ink); margin: 10px 0 12px; }
.affil-tier-d { font-size: 14px; line-height: 1.6; color: var(--gg-ink-2); margin: 0; }
.affil-who-sec { padding: 64px 0; }
.affil-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.affil-who-media { border-radius: 32px; overflow: hidden; aspect-ratio: 4/3; }
.affil-who-media img { width: 100%; height: 100%; object-fit: cover; }
.affil-who-copy h2 { margin-bottom: 20px; }
.affil-who-copy > p { font-size: 16.5px; line-height: 1.7; color: var(--gg-ink-2); margin: 0 0 24px; max-width: 44ch; }
.affil-list { list-style: none; padding: 0; margin: 0; }
.affil-list li { font-size: 15px; line-height: 1.5; color: var(--gg-ink); padding: 12px 0 12px 28px; border-top: 1px solid var(--gg-line); position: relative; }
.affil-list li::before { content: ""; position: absolute; left: 0; top: 19px; width: 9px; height: 9px; border-radius: 50%; background: var(--gg-green); }
.affil-apply-sec { padding: 48px 0 110px; }
.affil-apply { background: var(--gg-cream); border-radius: 32px; padding: 56px; max-width: 760px; margin: 0 auto; }
.affil-apply-h { text-align: center; margin-bottom: 32px; }
.affil-form .cf-row { margin-bottom: 18px; }
.affil-done { text-align: center; }
.affil-done p { font-size: 16px; line-height: 1.6; color: var(--gg-ink-2); margin: 16px auto 0; max-width: 44ch; }

/* cross-link banner */
.page-crosslink-sec { padding: 0 0 96px; }
.page-crosslink { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: var(--gg-cream); border-radius: 22px; padding: 32px 44px; text-decoration: none; color: inherit; transition: background var(--t-fast); }
.page-crosslink:hover { background: var(--gg-cream-2); }
.pcl-eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-green); margin-bottom: 6px; }
.pcl-title { display: block; font-size: clamp(1.25rem, 2.4vw, 1.75rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.02em; }
.pcl-arrow { font-size: 24px; color: var(--gg-ink); }

@media (max-width: 900px) {
  .blog-feature, .contact-grid, .press-grid, .affil-who-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid, .careers-perks-grid, .refer-steps, .affil-tiers, .press-assets { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .careers-perks-grid { grid-template-columns: 1fr 1fr; }
  .career-row { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .career-type, .career-loc { display: none; }
  .contact-form-wrap, .affil-apply { padding: 28px; }
}

/* ===================================================================
   NEW HOME (v2, Coterie flow) — #/new-home
   =================================================================== */
/* cinematic full-bleed hero */
.nh2-hero { position: relative; height: clamp(560px, 84vh, 880px); overflow: hidden; }
.nh2-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nh2-hero-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: clamp(48px, 8vh, 96px); background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 100%); }
.nh2-hero-eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.nh2-hero-h { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 500; color: #fff; letter-spacing: -0.035em; line-height: 0.98; margin: 0 0 22px; max-width: 16ch; }
.nh2-hero-h .accent { color: #fff; }
.nh2-hero-lede { font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: rgba(255,255,255,0.92); font-weight: 400; max-width: 46ch; margin: 0 0 32px; }
.nh2-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.nh2-hero-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.6); }
.nh2-hero-outline:hover { background: #fff; color: var(--gg-ink); box-shadow: none; }

/* promise band (replaces tag carousel) */
.nh2-promise { padding: 72px 0; border-bottom: 1px solid var(--gg-line); }
.nh2-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.nh2-promise-item { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.nh2-promise-item:not(:first-child) { padding-left: 48px; border-left: 1px solid var(--gg-line); }
.nh2-promise-big { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 500; color: var(--gg-green); letter-spacing: -0.03em; line-height: 1; }
.nh2-promise-d { font-size: 15.5px; line-height: 1.55; color: var(--gg-ink-2); margin: 0; max-width: 26ch; }

.nh-sec-head { margin-bottom: 56px; max-width: 640px; }
.nh-sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.nh-sec-head .eyebrow { display: block; margin-bottom: 14px; }
.nh-sec-head .lede { margin-top: 14px; }

.nh-products { padding: 110px 0; }
.nh-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nh-product { border-radius: 28px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; min-height: 460px; transition: transform 320ms var(--ease-out); }
.nh-product:hover { transform: translateY(-6px); }
.nh-product-media { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px; }
.nh-product-media img { max-width: 80%; max-height: 300px; object-fit: contain; }
.nh-product-foot { display: flex; justify-content: space-between; align-items: flex-end; padding: 0 36px 36px; }
.nh-product-name { font-size: clamp(1.6rem, 2.6vw, 2rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.02em; }
.nh-product-sub { font-size: 14px; color: var(--gg-ink-2); margin-top: 4px; }
.nh-product-cta { font-size: 15px; font-weight: 500; color: var(--gg-ink); }
.nh-product:hover .nh-product-cta { color: var(--gg-green); }

.nh-why { padding: 0 0 110px; }
.nh-why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.nh-why-media { border-radius: 32px; overflow: hidden; aspect-ratio: 4/5; }
.nh-why-media img { width: 100%; height: 100%; object-fit: cover; }
.nh-why-copy h2 { margin-bottom: 36px; }
.nh-why-list { display: flex; flex-direction: column; }
.nh-why-item { display: flex; gap: 22px; padding: 22px 0; border-top: 1px solid var(--gg-line); }
.nh-why-item:first-child { border-top: 0; padding-top: 0; }
.nh-why-n { font-size: 14px; font-weight: 500; color: var(--gg-green); letter-spacing: 0.04em; padding-top: 4px; }
.nh-why-item h3 { font-size: 19px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.01em; margin: 0 0 6px; }
.nh-why-item p { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink-2); margin: 0; max-width: 42ch; }

.nh-clean { padding: 110px 0; background: var(--gg-mint); }
.nh-clean--flip .nh-clean-media { order: 0; }
.nh-clean-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.nh-clean-copy h2 { margin-bottom: 22px; }
.nh-clean-copy .eyebrow { display: block; }
.nh-clean-copy p { font-size: 17px; line-height: 1.7; color: var(--gg-ink-2); max-width: 42ch; margin: 0 0 28px; }
.nh-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.nh-chip { background: var(--gg-green-soft); color: #fff; font-size: 15px; font-weight: 500; padding: 10px 22px; border-radius: 999px; }
.nh-clean-media { border-radius: 32px; overflow: hidden; aspect-ratio: 7/4; }
.nh-clean-media img { width: 100%; height: 100%; object-fit: cover; }

.nh-ritual { padding: 110px 0; }
.nh-ritual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.nh-ritual-step { text-align: center; }
.nh-ritual-n { font-size: 15px; font-weight: 500; color: var(--gg-green); letter-spacing: 0.04em; }
.nh-ritual-step h3 { font-size: 21px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.015em; margin: 14px 0 10px; }
.nh-ritual-step p { font-size: 15px; line-height: 1.6; color: var(--gg-ink-2); margin: 0 auto; max-width: 28ch; }
.nh-ritual-cta { text-align: center; margin-top: 56px; }

.nh-quote { padding: 120px 0; text-align: center; background: #fff; color: var(--gg-ink); }
.nh-quote-text { font-size: clamp(1.75rem, 3.6vw, 3rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.25; max-width: 24ch; margin: 0 auto 24px; }
.nh-quote-text .accent { color: var(--gg-green); }
.nh-quote-by { font-size: 14px; color: var(--gg-ink-3); font-weight: 500; letter-spacing: 0.04em; text-align: center; display: block; width: 100%; margin: 0 auto; }

.nh-bundle-wrap { padding: 0; }
.nh-reviews { padding: 110px 0; }
.nh-reviews-bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.nh-reviews-bar .nh-sec-head { margin-bottom: 0; }
.nh-rev-arrows { display: flex; gap: 12px; flex-shrink: 0; }
.nh-rev-arrow { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gg-line); background: #fff; color: var(--gg-ink); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.nh-rev-arrow:hover { background: var(--gg-forest); color: var(--gg-cream); border-color: var(--gg-forest); }
.nh-rev-arrow svg { width: 20px; height: 20px; }
.nh-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; animation: nh-rev-fade .4s ease; }
@keyframes nh-rev-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.nh-rev-dots { display: flex; gap: 9px; justify-content: center; margin-top: 40px; }
.nh-rev-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: var(--gg-line); cursor: pointer; transition: background .2s, transform .2s; }
.nh-rev-dot.is-on { background: var(--gg-forest); transform: scale(1.25); }
.nh-review { background: var(--gg-cream); border-radius: 22px; padding: 30px 28px; }
.nh-review-stars { color: var(--gg-green); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.nh-review-t { font-size: 17px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.01em; margin: 0 0 10px; }
.nh-review-b { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink-2); margin: 0 0 18px; }
.nh-review-who { font-size: 13px; color: var(--gg-ink-3); }

@media (max-width: 900px) {
  .nh-hero, .nh-products-grid, .nh-why-grid, .nh-clean-grid, .nh-ritual-grid, .nh-reviews-grid { grid-template-columns: 1fr; }
  .nh2-promise-grid { grid-template-columns: 1fr; gap: 28px; }
  .nh2-promise-item:not(:first-child) { padding-left: 0; border-left: 0; padding-top: 28px; border-top: 1px solid var(--gg-line); }
  .nh-hero-media { min-height: 360px; }
  .nh-reviews-grid { grid-template-columns: 1fr 1fr; }
  .nh-reviews-bar { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ===================================================================
   NEW PRODUCT PAGE (v2, Coterie flow) — #/product-preview
   =================================================================== */
.np-hero { padding: 32px 0 64px; }
.np-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }

/* gallery */
.np-gallery { display: grid; grid-template-columns: 84px 1fr; gap: 16px; position: sticky; top: 96px; }
.np-gallery-rail { display: flex; flex-direction: column; gap: 12px; }
.np-thumb { width: 84px; height: 84px; border-radius: 16px; overflow: hidden; background: var(--gg-cream); border: 0; padding: 0; cursor: pointer; box-shadow: inset 0 0 0 1.5px transparent; transition: box-shadow var(--t-fast); }
.np-thumb img { width: 100%; height: 100%; object-fit: cover; }
.np-thumb.on { box-shadow: inset 0 0 0 2px var(--gg-ink); }
.np-gallery-main { border-radius: 28px; overflow: hidden; background: var(--gg-cream); aspect-ratio: 1/1; }
.np-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

/* buy box */
.np-buy { padding-top: 8px; }
.np-buy-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gg-green); margin-bottom: 12px; }
.np-buy-title { font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 500; color: var(--gg-ink); letter-spacing: -0.03em; line-height: 1; margin: 0 0 14px; }
.np-buy-rating { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gg-ink-2); font-size: 14px; margin-bottom: 18px; }
.np-stars { color: var(--gg-green); letter-spacing: 1px; }
.np-buy-desc { font-size: 16px; line-height: 1.6; color: var(--gg-ink-2); margin: 0 0 28px; max-width: 46ch; }
.np-field-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gg-ink-3); margin-bottom: 10px; }

.np-variants { display: flex; gap: 10px; margin-bottom: 24px; }
.np-variant { flex: 1; background: #fff; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 14px; padding: 14px 12px; cursor: pointer; font: inherit; display: flex; flex-direction: column; gap: 3px; align-items: center; transition: box-shadow var(--t-fast), background var(--t-fast); }
.np-variant:hover { box-shadow: inset 0 0 0 1.5px var(--gg-ink); }
.np-variant.on { box-shadow: inset 0 0 0 2px var(--gg-green); background: var(--gg-lime-soft); }
.np-variant-units { font-size: 16px; font-weight: 500; color: var(--gg-ink); }
.np-variant-each { font-size: 12.5px; color: var(--gg-ink-3); }

.np-modes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.np-mode { display: flex; align-items: center; gap: 14px; background: #fff; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 16px; padding: 16px 20px; cursor: pointer; font: inherit; text-align: left; transition: box-shadow var(--t-fast), background var(--t-fast); }
.np-mode.on { box-shadow: inset 0 0 0 2px var(--gg-green); background: var(--gg-lime-soft); }
.np-mode-radio { width: 20px; height: 20px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--gg-ink-3); flex-shrink: 0; }
.np-mode.on .np-mode-radio { box-shadow: inset 0 0 0 6px var(--gg-green); }
.np-mode-text { flex: 1; }
.np-mode-name { display: flex; align-items: center; gap: 6px; font-size: 15.5px; font-weight: 500; color: var(--gg-ink); }
.np-mode-badge { display: inline-flex; align-items: center; justify-content: center; background: var(--gg-green); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 999px; line-height: 1; }
.np-mode-sub { display: block; font-size: 12.5px; color: var(--gg-ink-3); margin-top: 3px; }
.np-mode-price { font-size: 17px; font-weight: 600; color: var(--gg-ink); white-space: nowrap; }
.np-mode-price s { color: var(--gg-ink-3); font-weight: 400; font-size: 14px; margin-right: 5px; }

.np-freq { background: var(--gg-cream); border-radius: 14px; overflow: hidden; margin: -4px 0 2px; }
.np-freq-toggle { width: 100%; background: transparent; border: 0; cursor: pointer; font: inherit; font-size: 14px; font-weight: 500; color: var(--gg-ink); display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; }
.np-freq-chev { color: var(--gg-green); transition: transform 280ms var(--ease-out); }
.np-freq-chev.up { transform: rotate(180deg); }
.np-freq-roll { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease-out); }
.np-freq-roll.open { max-height: 240px; }
.np-freq-opt { width: 100%; background: transparent; border: 0; text-align: left; font: inherit; font-size: 14px; color: var(--gg-ink-2); padding: 11px 20px; cursor: pointer; }
.np-freq-opt:hover { background: var(--gg-lime-soft); }
.np-freq-opt.on { background: var(--gg-lime-soft); color: var(--gg-green); font-weight: 600; }

.np-buy-row { display: flex; gap: 12px; align-items: flex-start; }
.np-qty { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--gg-cream); border-radius: 999px; height: 56px; padding: 0 8px; }
.np-qty button { width: 38px; height: 38px; border-radius: 999px; background: #fff; border: 0; cursor: pointer; font-size: 18px; line-height: 0; color: var(--gg-ink); }
.np-qty span { min-width: 24px; text-align: center; font-size: 16px; font-weight: 500; }
.np-add-col { flex: 1; display: flex; flex-direction: column; }
.np-add { width: 100%; height: 56px; padding: 0 18px; font-size: 16px; }
.np-trust { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 14px; font-size: 15px; font-weight: 500; color: var(--gg-ink-2); }
.np-trust span { color: var(--gg-ink-2); }
.np-trust-dot { color: var(--gg-ink-3) !important; }

/* benefit strip */
.np-benefits { background: var(--gg-green); color: #fff; padding: 40px 0; }
.np-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.np-benefit { display: flex; flex-direction: column; gap: 4px; }
.np-benefit-big { font-size: clamp(2rem, 3.6vw, 2.75rem); font-weight: 500; letter-spacing: -0.02em; }
.np-benefit-l { font-size: 13.5px; opacity: 0.85; }

/* feature */
.np-feature { padding: 110px 0; }
.np-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.np-feature-media { border-radius: 32px; overflow: hidden; aspect-ratio: 7/4; }
.np-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.np-feature-copy h2 { margin: 12px 0 22px; }
.np-feature-copy p { font-size: 17px; line-height: 1.7; color: var(--gg-ink-2); margin: 0 0 16px; max-width: 44ch; }

/* details accordion */
.np-details { padding: 96px 0; }
.np-details-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.np-details-left { position: sticky; top: 96px; padding-left: 144px; }
.np-details-h { margin: 12px 0 16px; }
.np-details-sub { font-size: 16px; line-height: 1.6; color: var(--gg-ink-2); margin: 0; max-width: 32ch; }
.np-acc-item { border-top: 1px solid var(--gg-line); }
.np-acc-item:last-child { border-bottom: 1px solid var(--gg-line); }
.np-acc-h { width: 100%; background: none; border: 0; cursor: pointer; font: inherit; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 18px; font-weight: 500; color: var(--gg-ink); }
.np-acc-ico { font-size: 24px; color: var(--gg-green); line-height: 0; transition: transform 480ms cubic-bezier(0.22,1,0.36,1); }
.np-acc-item.open .np-acc-ico { transform: rotate(180deg); }
.np-acc-roll { overflow: hidden; max-height: 0; transition: max-height 640ms cubic-bezier(0.22,1,0.36,1); }
.np-acc-body { padding: 0 0 24px; }
.np-spec-rows { display: flex; flex-direction: column; }
.np-spec-row { display: flex; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--gg-line); font-size: 14.5px; }
.np-spec-row:first-child { border-top: 0; }
.np-spec-row-single span { color: var(--gg-ink) !important; }
.np-spec-row span:first-child { color: var(--gg-ink-3); }
.np-spec-row span:last-child { color: var(--gg-ink); font-weight: 500; }
.np-mat { list-style: none; padding: 0; margin: 0; columns: 2; }
.np-mat li { font-size: 14.5px; color: var(--gg-ink-2); padding: 6px 0 6px 20px; position: relative; }
.np-mat li::before { content: ""; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--gg-green); }
.np-detail-p { font-size: 15.5px; line-height: 1.7; color: var(--gg-ink-2); margin: 0; max-width: 60ch; }

/* 3-ply layered section */
.np-ply { padding: 110px 0; background: var(--gg-cream); }
.np-ply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.np-ply-copy h2 { margin: 12px 0 22px; }
.np-ply-lede { font-size: 17px; line-height: 1.65; color: var(--gg-ink-2); margin: 0 0 32px; max-width: 42ch; }
.np-ply-rows { display: flex; flex-direction: column; }
.np-ply-row { display: flex; gap: 22px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--gg-line); }
.np-ply-row:first-child { border-top: 0; padding-top: 0; }
.np-ply-num { font-size: 14px; font-weight: 500; color: var(--gg-green); letter-spacing: 0.04em; padding-top: 3px; }
.np-ply-t { font-size: 18px; font-weight: 500; color: var(--gg-ink); letter-spacing: -0.01em; margin-bottom: 5px; }
.np-ply-d { font-size: 14.5px; line-height: 1.6; color: var(--gg-ink-2); max-width: 38ch; }
.np-ply-art { display: flex; align-items: center; justify-content: center; }
.np-ply-img { width: 100%; max-width: 480px; object-fit: contain; transform-origin: center; transition: transform 200ms linear; }

/* compare */
.np-compare { padding: 110px 0; background: var(--gg-cream); }
.np-compare-head { text-align: center; margin-bottom: 48px; }
.np-compare-head h2 { margin-top: 10px; }
.np-compare-table { max-width: 1080px; margin: 0 auto; background: var(--gg-paper); border-radius: 22px; padding: 8px 28px; }
.np-compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; align-items: center; padding: 16px 8px; border-top: 1px solid var(--gg-line); }
.np-compare-4 .np-compare-row { grid-template-columns: 1.4fr 1.1fr 1.3fr 1.3fr 1.1fr; }
.np-compare-logo { height: 30px; width: auto; display: inline-block; vertical-align: middle; }
.np-compare-t .np-compare-row { grid-template-columns: 1.2fr repeat(7, 1fr); }
.np-compare-t .np-compare-feat { font-size: 12px; font-weight: 600; color: var(--gg-ink-3); text-align: center; line-height: 1.25; padding: 0 4px; }
.np-compare-t .np-compare-brand { font-size: 15px; font-weight: 600; color: var(--gg-ink); }
.np-compare-t .np-compare-brand.np-compare-us { color: var(--gg-green); }
.np-compare-t .np-compare-usrow { background: var(--gg-lime-soft); border-radius: 12px; }
.np-compare-row:first-child { border-top: 0; }
.np-compare-top { font-size: 18px; font-weight: 400; color: var(--gg-ink-2); text-align: center; }
.np-compare-top span:first-child { text-align: left; }
.np-compare-us { color: var(--gg-green) !important; }
.np-compare-label { font-size: 17px; font-weight: 500; color: var(--gg-ink); }
.np-cell { display: flex; align-items: center; justify-content: center; font-size: 16px; }
.np-cell svg { width: 22px; height: 22px; }
.np-cell.yes { color: var(--gg-green); }
.np-cell-dash { color: var(--gg-line-2); }
.np-cell.no { color: var(--gg-line-2); }

/* reviews — Coterie-style two-column: sticky summary left, scrolling list right */
.np-reviews { padding: 110px 0; }
.np-rv-grid { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.np-rv-aside { position: sticky; top: 100px; }
.np-rv-h { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 28px; color: var(--gg-ink); }
.np-rv-summary { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.np-rv-avg { font-size: 60px; font-weight: 400; letter-spacing: -0.03em; line-height: 1; color: var(--gg-ink); }
.np-rv-summary .np-stars { color: var(--gg-green); }
.np-rv-count { font-size: 13px; color: var(--gg-ink-3); margin-top: 6px; }
.np-rv-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.np-rv-bar-row { display: grid; grid-template-columns: 32px 1fr 36px; align-items: center; gap: 12px; }
.np-rv-bar-label { font-size: 12px; color: var(--gg-ink-3); white-space: nowrap; }
.np-rv-bar-track { height: 7px; border-radius: 4px; background: var(--gg-line); overflow: hidden; }
.np-rv-bar-fill { display: block; height: 100%; background: var(--gg-green); border-radius: 4px; }
.np-rv-bar-pct { font-size: 12px; color: var(--gg-ink-3); text-align: right; }
.np-rv-write { white-space: nowrap; }

.np-rv-listwrap { min-width: 0; }
.np-rv-list { display: flex; flex-direction: column; border-top: 1px solid var(--gg-line); }
.np-rv-item { padding: 32px 0; border-bottom: 1px solid var(--gg-line); }
.np-rv-item-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.np-rv-item-top .np-stars { font-size: 14px; }
.np-rv-date { font-size: 12.5px; color: var(--gg-ink-3); }
.np-rv-title { font-size: 17px; font-weight: 600; color: var(--gg-ink); margin: 0 0 8px; }
.np-rv-text { font-size: 15px; line-height: 1.65; color: var(--gg-ink-2); margin: 0 0 18px; max-width: 64ch; }
.np-rv-byline { display: flex; align-items: center; gap: 12px; }
.np-rv-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gg-mint); color: var(--gg-forest); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; flex-shrink: 0; }
.np-rv-meta { display: flex; flex-direction: column; gap: 2px; }
.np-rv-who { font-size: 14px; color: var(--gg-ink); }
.np-rv-who strong { font-weight: 600; }
.np-rv-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gg-green); }
.np-rv-verified svg { width: 13px; height: 13px; }
.np-rv-pager { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 44px; }
.np-rv-pg { min-width: 40px; height: 40px; padding: 0 6px; border-radius: 10px; border: 1.5px solid var(--gg-line); background: #fff; color: var(--gg-ink); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .18s, color .18s, border-color .18s; }
.np-rv-pg:hover:not(:disabled) { background: var(--gg-mint); border-color: var(--gg-mint); color: var(--gg-forest); }
.np-rv-pg.is-on { background: var(--gg-mint); border-color: var(--gg-mint); color: var(--gg-forest); }
.np-rv-pg:disabled { opacity: 0.4; cursor: default; }
.np-rv-pg-arrow svg { width: 17px; height: 17px; }
.np-rv-pg-gap { padding: 0 4px; color: var(--gg-ink-3); font-size: 14px; }

/* faq */
.np-faq { padding: 110px 0; background: var(--gg-cream); }
.np-faq-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.np-faq-left { position: sticky; top: 96px; padding-left: 96px; }
.np-faq-h { margin: 12px 0 16px; }
.np-faq-sub { font-size: 16px; line-height: 1.6; color: var(--gg-ink-2); margin: 0; max-width: 32ch; }
.np-faq-item { border-top: 1px solid var(--gg-line); }
.np-faq-item:last-child { border-bottom: 1px solid var(--gg-line); }
.np-faq-q { width: 100%; background: none; border: 0; cursor: pointer; font: inherit; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 18px; font-weight: 500; color: var(--gg-ink); text-align: left; }
.np-faq-ico { font-size: 24px; color: var(--gg-green); flex-shrink: 0; line-height: 0; }
.np-faq-roll { overflow: hidden; max-height: 0; transition: max-height 640ms cubic-bezier(0.22,1,0.36,1); }
.np-faq-a { font-size: 15.5px; line-height: 1.7; color: var(--gg-ink-2); margin: 0 0 22px; max-width: 64ch; }

@media (max-width: 900px) {
  .np-hero-inner, .np-feature-grid, .np-benefits-grid, .np-ply-grid, .np-details-grid, .np-faq-grid, .np-related-grid { grid-template-columns: 1fr; }
  .np-details-left { position: static; padding-left: 0; }
  .np-faq-left { position: static; padding-left: 0; }
  .np-gallery { position: static; grid-template-columns: 1fr; }
  .np-gallery-rail { flex-direction: row; order: 2; overflow-x: auto; }
  .np-benefits-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .np-rv-grid { grid-template-columns: 1fr; gap: 40px; }
  .np-rv-aside { position: static; }
  .np-mat { columns: 1; }
}

/* you might also like */
.np-related { padding: 110px 0; }
.np-related-h { text-align: center; margin-bottom: 48px; }
.np-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .pb-grid, .insp-teaser-grid, .vote-cta-inner, .subscribe-inner,
  .pd-grid, .pd-moments-grid, .about-origin-grid, .about-values-grid,
  .acct-next, .ft-grid, .pd-edit-row, .about-intro, .about-sus-head, .about-feature-card, .pd-info-wrap, .pd-feat-stage, .pd-ply-grid { grid-template-columns: 1fr; }
  .pd-feat-col.left, .pd-feat-col.right { text-align: left; align-items: flex-start; }
  .pd-feat-wires { display: none; }
  .pd-feat { max-width: none; border-radius: 28px; }
  .pd-compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; padding: 14px 16px; }
  .pd-compare-feat { font-size: 12.5px; }
  .pd-compare-top .pd-compare-us { font-size: 12px; }
  .pd-compare-top .pd-compare-them { font-size: 11px; }
  .about-feature-cols { grid-template-columns: 1fr; }
  .about-feature-img { margin-top: 0; }
  .about-sus-aside { justify-self: start; }
  .about-stats { grid-template-columns: 1fr; gap: 28px; }
  .about-sus-card { position: static; transform: none; max-width: none; margin-top: 16px; }
  .about-sus-stage { aspect-ratio: auto; }
  .pd-edit-row.reverse .pd-edit-art { order: 0; }
  .pd-connector { display: none; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-cell { border-right: 0; border-bottom: 1px solid var(--gg-line); }
  .shop-grid, .steps, .about-pillars-grid, .pd-reviews-grid { grid-template-columns: 1fr; }
  .about-how-grid, .acct-cards, .practices-grid, .impact-stats, .testimonial-grid, .community-grid, .live-grid, .bundle-grid { grid-template-columns: 1fr 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-summary { position: static; }
  .live-grid { grid-auto-rows: auto; }
  .live-card { grid-column: 1 / 3; grid-row: auto; min-height: 240px; }
  .live-a, .live-b, .live-c, .live-d { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; }
  .pb-art { position: static; }
  .pb-media { position: static; flex-direction: column; }
  .pb-thumbs { flex-direction: row; width: auto; max-height: none; overflow-x: auto; overflow-y: hidden; }
  .vote-cta-stat { border-left: 0; padding-left: 0; border-top: 1px solid rgba(244,239,228,0.2); padding-top: 28px; }
  .container, .container-w { padding: 0 24px; }
}

/* ===================================================================
   SURVEY POPUP
   =================================================================== */
.ggpop-scrim { position: fixed; inset: 0; z-index: 2000; background: rgba(28, 40, 30, 0.5); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: ggpop-scrim-in 280ms ease; }
@keyframes ggpop-scrim-in { from { opacity: 0; } to { opacity: 1; } }
.ggpop-card { position: relative; background: #fff; border-radius: 28px; width: min(94vw, 460px); padding: 40px 40px 32px; max-height: calc(100vh - 48px); overflow-y: auto; box-shadow: 0 30px 80px rgba(20,40,25,0.28); animation: ggpop-in 420ms cubic-bezier(.22,1,.36,1); }
@keyframes ggpop-in { from { transform: translateY(16px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.ggpop-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--gg-cream); color: var(--gg-ink); font-size: 22px; line-height: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .18s, color .18s; }
.ggpop-close:hover { background: var(--gg-forest); color: var(--gg-cream); }
.ggpop-badge { display: inline-block; background: var(--gg-mint); color: var(--gg-forest); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; border-radius: 999px; padding: 7px 15px; margin-bottom: 18px; }
.ggpop-h { font-size: clamp(1.7rem, 4vw, 2.1rem); font-weight: 400; letter-spacing: -0.025em; line-height: 1.04; color: var(--gg-ink); margin: 0 0 8px; }
.ggpop-h .accent { color: var(--gg-green); }
.ggpop-p { font-size: 14.5px; line-height: 1.5; color: var(--gg-ink-2); margin: 8px 0 20px; }
.ggpop-progress { display: flex; gap: 7px; margin: 16px 0 20px; }
.ggpop-dot { width: 30px; height: 4px; border-radius: 2px; background: var(--gg-line); transition: background .2s; }
.ggpop-dot.on { background: var(--gg-green); }
.ggpop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ggpop-pick { display: flex; align-items: center; gap: 11px; text-align: left; appearance: none; background: var(--gg-cream); border: 0; border-radius: 14px; padding: 14px 16px; cursor: pointer; font: inherit; color: var(--gg-ink); box-shadow: inset 0 0 0 1.5px transparent; transition: background .16s, box-shadow .16s, transform .16s; }
.ggpop-pick:hover { transform: translateY(-1px); }
.ggpop-pick.active { background: var(--gg-lime-soft); box-shadow: inset 0 0 0 2px var(--gg-green); }
.ggpop-check { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; background: transparent; transition: background .16s, box-shadow .16s; }
.ggpop-pick.active .ggpop-check { background: var(--gg-green); box-shadow: none; }
.ggpop-pick-label { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.ggpop-input { width: 100%; border: 0; box-shadow: inset 0 0 0 1.5px var(--gg-line-2); border-radius: 14px; padding: 16px 18px; font: inherit; font-size: 15px; color: var(--gg-ink); outline: 0; transition: box-shadow .16s; }
.ggpop-input:focus { box-shadow: inset 0 0 0 2px var(--gg-green); }
.ggpop-actions { display: flex; gap: 10px; align-items: center; margin-top: 22px; }
.ggpop-actions .btn { flex: 1; justify-content: center; }
.ggpop-actions .btn:disabled { opacity: 0.4; pointer-events: none; }
.ggpop-skip { display: block; margin: 16px auto 0; background: none; border: 0; color: var(--gg-ink-3); font: inherit; font-size: 13px; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.ggpop-skip:hover { color: var(--gg-ink); }
.ggpop-done { text-align: left; }
.ggpop-code { font-size: 22px; font-weight: 600; letter-spacing: 0.14em; color: var(--gg-forest); background: var(--gg-cream); border: 1.5px dashed var(--gg-green); border-radius: 14px; padding: 16px; text-align: center; margin: 4px 0 20px; }
.ggpop-cta { width: 100%; justify-content: center; }
@media (max-width: 480px) { .ggpop-card { padding: 32px 24px 26px; } .ggpop-grid { grid-template-columns: 1fr; } }
