/* ═══════════════════════════════════════════════════════════
   EnjoyGevity — Ceremonial Matcha Capsules
   Palette pulled from the bottle label: near-black → deep
   forest gradient, acid-lime type, amber glass, warm sand.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --ink:        #07090a;
  --forest-900: #06140b;
  --forest-800: #0a2211;
  --forest-700: #0e2e18;
  --forest-500: #17512a;
  --forest-300: #2f7a45;

  --lime:       #c9f53f;
  --lime-hi:    #e2ff6b;
  --lime-lo:    #8fe02a;

  --sand:       #f0dcc9;
  --sand-soft:  #f8ece1;
  --cream:      #fbf9f5;
  --paper:      #ffffff;

  --text:       #14180f;
  --text-soft:  #5b6455;
  --line:       #e4e2d9;

  /* Gradients */
  --grad-lime:   linear-gradient(102deg, var(--lime-hi) 0%, var(--lime) 45%, var(--lime-lo) 100%);
  --grad-dark:   linear-gradient(155deg, var(--ink) 0%, var(--forest-800) 55%, var(--forest-500) 100%);
  --grad-btn-dk: linear-gradient(102deg, #12331c 0%, #0b1c11 60%, #1d5c2e 100%);
  --grad-text:   linear-gradient(96deg, var(--lime-hi), var(--lime-lo));

  /* Type */
  --sans:  'Inter Tight', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif: 'Instrument Serif', ui-serif, Georgia, 'Times New Roman', serif;
  --measure: 68ch;

  /* Space & motion */
  --shell: 1440px;
  --nav-h: 76px;   /* fallback; main.js measures the real height */
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(5rem, 11vw, 9.5rem);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --shadow-sm: 0 1px 2px rgba(10,25,14,.06), 0 6px 18px -8px rgba(10,25,14,.14);
  --shadow-md: 0 2px 6px rgba(10,25,14,.05), 0 22px 48px -22px rgba(10,25,14,.28);
  --shadow-lime: 0 10px 34px -12px rgba(143,224,42,.55);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  width: 100%;
  min-width: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
  font-family: var(--sans);
  font-size: clamp(1rem, .95rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::after {
  content: ''; position: fixed; z-index: 90; inset: 0; pointer-events: none;
  background: rgba(0,0,0,.1); opacity: 0; transition: opacity .28s ease;
}
body.is-cart-open::after { opacity: 1; }
.stripe-test-banner { position: fixed; z-index: 200; top: 0; left: 0; right: 0; padding: .5rem 1rem; background: #1a4f97; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .03em; line-height: 1.2; text-align: center; }
body.has-stripe-test-banner .nav { top: var(--stripe-test-banner-height, 2rem); }
html, body { max-width: 100%; }
/* Prevent an off-canvas component from widening the document on iOS. */
body > header, body > main, body > footer { width: 100%; min-width: 0; max-width: 100%; overflow-x: clip; }
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--forest-300); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--forest-700); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec-y); }
.muted { color: var(--text-soft); }

/* ── Type scale ────────────────────────────────────────── */
h1, h2, h3 { font-weight: 600; line-height: 1.05; letter-spacing: -.028em; }
h1, h2 { font-size: clamp(1.25rem, 3.5vw, 4.5rem); }

.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--forest-300); margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--lime); }
.eyebrow__mg { font-size: .68em; letter-spacing: .1em; }

.sectitle {
  font-size: clamp(2.15rem, 1.2rem + 4.2vw, 4.25rem);
  line-height: 1.02;
  max-width: 15ch;
}
.sectitle em, .hero__title em, .closer em, blockquote em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  letter-spacing: -.012em;
}
.sectitle--light { color: var(--cream); }
.sectitle--light em { color: var(--lime); }

.secsub {
  margin-top: 1.35rem; max-width: min(var(--measure), 100%); font-size: 1.0625rem;
  color: var(--text-soft); line-height: 1.7;
}
.hero__sub { max-inline-size: min(var(--measure), 100%); }
.secsub--light { color: rgba(238,244,232,.72); }

.sechead { margin-bottom: clamp(2.75rem, 6vw, 4.5rem); }
.sechead .sectitle { margin-inline: auto; }
.sechead { text-align: center; }
.sechead .secsub { margin-inline: auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  --btn-bg: var(--grad-lime);
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 1.6rem;
  font-size: .95rem; font-weight: 600; letter-spacing: -.01em;
  border-radius: var(--r-pill);
  text-decoration: none; white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), color .25s, opacity .25s;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit; background: var(--btn-bg);
  background-size: 180% 100%; background-position: 0% 50%;
  transition: background-position .6s var(--ease-out);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:hover::before { background-position: 100% 50%; }

.btn--lime { color: #0a1a0c; box-shadow: var(--shadow-lime); }
.btn--lime:hover { box-shadow: 0 14px 42px -12px rgba(143,224,42,.7); }

.btn--dark { --btn-bg: var(--grad-btn-dk); color: #f2f7ee; box-shadow: var(--shadow-sm); }
.btn--dark:hover { box-shadow: var(--shadow-md); }

.btn--ghost { --btn-bg: transparent; color: rgba(240,247,234,.9); box-shadow: inset 0 0 0 1px rgba(240,247,234,.28); }
.btn--ghost:hover { color: #fff; box-shadow: inset 0 0 0 1px rgba(240,247,234,.6); }

.btn--sm { padding: .58rem 1.05rem; font-size: .85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

.btn__price {
  font-variant-numeric: tabular-nums; font-weight: 500;
  padding-left: .65rem; margin-left: .1rem;
  border-left: 1px solid currentColor;
  opacity: .72;
}
.btn.is-busy { pointer-events: none; opacity: .72; }

/* ── Stars ─────────────────────────────────────────────── */
.stars {
  --star: '★★★★★';
  display: inline-block; position: relative;
  font-size: 1rem; letter-spacing: .12em; line-height: 1;
  color: rgba(160,175,150,.45);
}
.stars::before { content: '★★★★★'; }
.stars::after {
  content: '★★★★★'; position: absolute; inset: 0;
  overflow: hidden; white-space: nowrap;
  width: calc(var(--rating) / 5 * 100%);
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stars--lg { font-size: 1.5rem; }

@keyframes slide { to { transform: translateX(-50%); } }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50; width: 100%;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s, opacity .25s var(--ease), transform .25s var(--ease);
}
body.is-cart-open .nav { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.1rem; transition: padding .4s var(--ease);
}
.nav.is-stuck {
  background: rgba(6,20,11,.72);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(201,245,63,.14);
}
.nav.is-stuck .nav__inner { padding-block: .7rem; }
.nav.is-stuck.is-light {
  background: rgba(255,253,249,.88);
  box-shadow: 0 1px 0 rgba(6,20,11,.1);
}
.nav.is-stuck.is-light .brand img { filter: invert(1); }
.nav.is-stuck.is-light .nav__links a { color: rgba(6,20,11,.7); }
.nav.is-stuck.is-light .nav__links a:hover,
.nav.is-stuck.is-light .nav__links a.is-active { color: var(--ink); }
.nav.is-stuck.is-light .cart-toggle { color: var(--ink); }
.nav.is-stuck.is-light .burger span { background: var(--ink); }
.nav.is-stuck.is-light .win-button {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
.nav.is-stuck.is-light .win-button:hover,
.nav.is-stuck.is-light .win-button:focus-visible {
  background: transparent;
  color: var(--ink);
}

/* The supplied black-named file is the white lockup; it sits on dark surfaces. */
.brand { display: block; width: min(175px, 44vw); flex: none; }
.brand img { width: 100%; height: auto; }
.brand--foot { width: min(220px, 62vw); margin-bottom: 1.1rem; }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  position: relative; font-size: .9rem; font-weight: 500;
  color: rgba(238,244,232,.74); text-decoration: none; transition: color .25s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: var(--grad-lime); transition: width .35s var(--ease-out);
}
.nav__links a:hover,
.nav__links a.is-active { color: #fff; }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .75rem; }
@media (max-width: 1180px) and (min-width: 761px) {
  .nav__links { gap: 1rem; }
  .nav__links a { font-size: .82rem; }
}
@media (max-width: 1050px) {
  .nav__links { display: none; }
  .nav__actions .btn--sm { display: none; }
  .nav .burger { display: block; }
}
.win-button {
  position: relative; display: inline-flex; align-items: center; gap: .38rem;
  padding: .48rem .68rem; border: 1px solid rgba(201,245,63,.7); border-radius: 999px;
  color: var(--lime); font-size: .78rem; font-weight: 700; letter-spacing: .015em;
  line-height: 1; text-decoration: none; transition: background .25s, color .25s, border-color .25s;
}
.win-button:hover, .win-button:focus-visible { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.win-button__arrow { font-size: .95em; line-height: 1; }
.win-button::after {
  content: ''; position: absolute; right: 0; top: 100%; width: 246px; height: .75rem;
}
.win-tooltip {
  position: absolute; z-index: 60; top: calc(100% + .75rem); right: 0; width: 246px;
  display: grid; gap: .45rem; padding: 1rem; border: 1px solid rgba(201,245,63,.28); border-radius: .75rem;
  background: rgba(6,20,11,.96); box-shadow: 0 18px 40px rgba(0,0,0,.28);
  color: var(--cream); opacity: 0; pointer-events: none; transform: translateY(-5px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.win-tooltip::before { content: ''; position: absolute; left: 0; right: 0; bottom: 100%; height: .75rem; }
.win-button:hover .win-tooltip, .win-button:focus-visible .win-tooltip { opacity: 1; pointer-events: auto; transform: none; }
.win-tooltip strong { color: var(--lime); font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.win-tooltip span { color: rgba(238,244,232,.76); font-size: .76rem; font-weight: 400; line-height: 1.45; }
.win-tooltip em { color: var(--lime); font-size: .7rem; font-style: normal; font-weight: 800; letter-spacing: .09em; }
.win-tooltip b { font-size: 1rem; }
.cart-toggle { display: inline-flex; align-items: center; gap: .35rem; margin-left: 10px; color: var(--cream); font-size: 1rem; font-weight: 600; padding: .4rem .15rem; }
.cart-toggle__icon { width: 1.2rem; height: 1.2rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.cart-toggle #cartCount { display: inline-grid; place-items: center; min-width: 1.25rem; height: 1.25rem; margin-left: .05rem; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .72rem; font-weight: 700; transform: translate(-5px, -5px); }

.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute; left: 10px; width: 20px; height: 1.6px; background: var(--cream);
  transition: transform .35s var(--ease-out), opacity .25s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobilemenu {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; justify-content: center; gap: 1.25rem;
  padding: 6rem var(--gut) 3rem;
  background: var(--grad-dark);
  opacity: 0; transform: translateY(-8px); pointer-events: none; visibility: hidden;
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility 0s .24s;
}
.mobilemenu[hidden] { display: none; }
.mobilemenu.is-open {
  opacity: 1; transform: none; pointer-events: auto; visibility: visible;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility 0s;
}
.mobilemenu nav { display: flex; flex-direction: column; gap: .35rem; }
.mobilemenu nav a, .mobilemenu > .btn {
  opacity: 0; transform: translateY(14px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
}
.mobilemenu.is-open nav a, .mobilemenu.is-open > .btn { opacity: 1; transform: none; }
.mobilemenu.is-open nav a:nth-child(1) { transition-delay: .02s; }
.mobilemenu.is-open nav a:nth-child(2) { transition-delay: .05s; }
.mobilemenu.is-open nav a:nth-child(3) { transition-delay: .08s; }
.mobilemenu.is-open nav a:nth-child(4) { transition-delay: .11s; }
.mobilemenu.is-open nav a:nth-child(5) { transition-delay: .14s; }
.mobilemenu.is-open nav a:nth-child(6) { transition-delay: .17s; }
.mobilemenu.is-open nav a:nth-child(7) { transition-delay: .20s; }
.mobilemenu.is-open > .btn { transition-delay: .24s; }
.mobilemenu nav a {
  font-family: var(--serif); font-size: 2.25rem; line-height: 1.25;
  color: var(--cream); text-decoration: none;
}
.mobilemenu nav a:hover { color: var(--lime); }
html.is-menu-locked, body.is-menu-locked { overflow: hidden; overscroll-behavior: none; }
body.is-locked { overflow: hidden; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; isolation: isolate;
  margin-top: calc(-1 * var(--nav-h)); padding-top: var(--nav-h);   /* slide under the transparent nav */
  min-height: min(100svh, 900px);
  display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
}
.hero__bg {
  --hero-light-x: 50%;
  --hero-light-y: 45%;
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(58% 72% at var(--hero-light-x) var(--hero-light-y), rgba(150, 187, 91, .22), transparent 70%),
    linear-gradient(155deg, var(--ink) 0%, var(--forest-800) 55%, #82905a 100%);
  transition: background-position .15s linear;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
  animation: float 16s var(--ease) infinite alternate;
}
.orb--1 { width: 46vw; height: 46vw; left: -12vw; top: -10vw; background: radial-gradient(circle, rgba(47,122,69,.75), transparent 68%); }
.orb--2 { width: 38vw; height: 38vw; right: -8vw; top: 18%; background: radial-gradient(circle, rgba(201,245,63,.26), transparent 66%); animation-delay: -6s; }
.orb--3 { width: 34vw; height: 34vw; left: 32%; bottom: -16vw; background: radial-gradient(circle, rgba(23,81,42,.85), transparent 70%); animation-delay: -11s; }
@keyframes float {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(3vw,-3vw,0) scale(1.12); }
}
.grain {
  position: absolute; inset: -100%; pointer-events: none; opacity: .3; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }  20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); }   60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,1%); }
}

.hero__inner {
  display: grid; grid-template-columns: .87fr 1.13fr; align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero .eyebrow { color: var(--lime); }
.hero__title { font-size: clamp(2.6rem, 1.1rem + 6.1vw, 5.4rem); letter-spacing: -.035em; }
.hero__title--mobile { display: none; }
.hero__title em { display: inline-block; color: var(--lime); }
.hero__sub { margin-top: 1.5rem; max-width: 44ch; color: rgba(238,244,232,.72); line-height: 1.72; }

.hero__rating { display: flex; align-items: center; gap: .7rem; margin-top: 1.6rem; font-size: .9rem; color: rgba(238,244,232,.85); }
.hero__rating .muted { color: rgba(238,244,232,.5); }

.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }

.hero__product { position: relative; display: grid; place-items: center; min-width: 0; }
.hero__glow {
  position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,245,63,.3), rgba(47,122,69,.18) 45%, transparent 70%);
  filter: blur(30px); animation: pulse 7s var(--ease) infinite alternate;
}
@keyframes pulse { from { transform: scale(.94); opacity: .8; } to { transform: scale(1.06); opacity: 1; } }

.hero__gallery { position: relative; display: grid; grid-template-columns: 72px minmax(0, 1fr); align-items: center; gap: clamp(.7rem, 1.5vw, 1.15rem); width: min(100%, 680px); }
.hero__thumbs { display: grid; gap: .6rem; position: relative; z-index: 1; }
.hero__thumb { display: grid; place-items: center; aspect-ratio: 1; padding: .3rem; overflow: hidden; border: 1px solid rgba(238,244,232,.26); border-radius: .7rem; background: rgba(238,244,232,.08); opacity: .72; transition: border-color .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease), background .25s var(--ease); }
.hero__thumb:hover, .hero__thumb:focus-visible, .hero__thumb.is-active { border-color: var(--lime); background: rgba(201,245,63,.14); opacity: 1; transform: translateX(3px); }
.hero__thumb:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: .43rem; }
.hero__stage { display: grid; place-items: center; position: relative; width: 100%; aspect-ratio: 1; margin: 0; padding: 0; overflow: hidden; border: 0; border-radius: var(--r-lg); background: #fff; box-shadow: 0 20px 42px rgba(20,30,18,.2); cursor: pointer; }
.hero__stage:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }
.hero__bottle { position: relative; width: 100%; height: 100%; object-fit: cover; }


.scrollcue {
  position: absolute; left: 50%; bottom: 1.75rem; translate: -50% 0;
  width: 24px; height: 38px; border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1.5px rgba(238,244,232,.28);
}
.scrollcue span {
  position: absolute; left: 50%; top: 8px; translate: -50% 0;
  width: 3px; height: 7px; border-radius: 2px; background: var(--lime);
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ── Marquee ───────────────────────────────────────────── */
.marquee {
  min-height: 43px; background: var(--grad-lime); color: #0a1a0c; overflow: hidden;
  border-block: 1px solid rgba(10,26,12,.1);
}
.marquee__track {
  display: flex; align-items: center; gap: 1.75rem; width: max-content;
  padding-block: .9rem; animation: slide 46s linear infinite paused; opacity: 0;
  will-change: transform; transition: opacity .18s ease;
  font-size: .82rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.marquee.is-ready .marquee__track { animation-play-state: running; opacity: 1; }
.marquee__track i { font-style: normal; opacity: .45; font-size: .7rem; }

/* ── Benefits ──────────────────────────────────────────── */
.benefits { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.card {
  position: relative; padding: 2rem 1.6rem 2.1rem;
  background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-lime); opacity: 0; transition: opacity .45s var(--ease);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover::after { opacity: 1; }
.card__icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.35rem;
  border-radius: 14px; color: var(--forest-700);
  background: linear-gradient(150deg, rgba(201,245,63,.55), rgba(143,224,42,.22));
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.14rem; letter-spacing: -.02em; margin-bottom: .55rem; }
.card p { font-size: .94rem; color: var(--text-soft); line-height: 1.65; }

/* ── Curve / comparison ────────────────────────────────── */
.curve { background: var(--sand-soft); }
.curve__grid {
  display: grid; grid-template-columns: .95fr 1.05fr; align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.ticks { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: .85rem; }
.ticks li { position: relative; padding-left: 2rem; font-size: .97rem; color: var(--text-soft); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 18px; height: 10px; border-left: 2px solid var(--forest-300); border-bottom: 2px solid var(--forest-300);
  transform: rotate(-45deg) translateY(-2px); border-radius: 1px;
}

.chart {
  position: relative; background: var(--paper); border-radius: var(--r-lg); padding: 1.75rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-md);
}
.chart svg { width: 100%; height: auto; overflow: visible; }
.chart__grid line { stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 6; }
.chart__axis text { font-size: 11px; fill: #9aa392; font-family: var(--sans); }
.chart__line { fill: none; stroke-width: 3; stroke-linecap: round; }
.chart__line--matcha { stroke: url(#gLime); }
.chart__line--coffee { stroke: #c2b3a4; stroke-width: 2.5; }
.chart__area { opacity: 0; transition: opacity 1s var(--ease) .7s; }

.chart__line { stroke-dasharray: var(--len, 1000); stroke-dashoffset: var(--len, 1000); }
.chart.is-drawn .chart__line { transition: stroke-dashoffset 1.9s var(--ease-out); stroke-dashoffset: 0; }
.chart.is-drawn .chart__line--coffee { transition-delay: .25s; }
.chart.is-drawn .chart__area { opacity: 1; }

.chart__key { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 1rem; font-size: .84rem; }
.key { display: inline-flex; align-items: center; gap: .5rem; color: var(--text-soft); }
.key::before { content: ''; width: 18px; height: 3px; border-radius: 2px; }
.key--matcha::before { background: var(--grad-lime); }
.key--coffee::before { background: #c2b3a4; }
.chart__key small { flex-basis: 100%; color: #9aa392; font-size: .74rem; }
.review-hotspot {
  position: absolute; z-index: 3; top: 19%; left: 39%; display: grid; place-items: center; width: 2.35rem; height: 2.35rem;
  border: 1px solid rgba(6,20,11,.16); border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: 0 0 0 0 rgba(201,245,63,.55), 0 8px 20px rgba(20,50,20,.23);
  font-size: 1.6rem; font-weight: 400; line-height: 1; transition: transform .25s var(--ease), background .25s, box-shadow .25s;
  animation: hotspot-glow 2.2s var(--ease) infinite;
}
.review-hotspot span { display: block; transition: transform .28s var(--ease); }
.review-hotspot:hover, .review-hotspot:focus-visible { transform: scale(1.08); animation-play-state: paused; }
.review-hotspot:focus-visible { outline: 2px solid var(--forest-500); outline-offset: 4px; }
.review-hotspot[aria-expanded="true"] { background: var(--ink); color: var(--cream); box-shadow: 0 10px 22px rgba(6,20,11,.3); animation: none; }
.review-hotspot[aria-expanded="true"] span { transform: rotate(45deg); }
@keyframes hotspot-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,245,63,.5), 0 8px 20px rgba(20,50,20,.23); } 50% { box-shadow: 0 0 0 11px rgba(201,245,63,0), 0 10px 24px rgba(20,50,20,.3); } }
.chart__review {
  position: absolute; z-index: 4; top: calc(19% + 3.25rem); left: 39%; width: min(330px, calc(100% - 2rem)); padding: 1.15rem;
  border: 1px solid rgba(20,50,20,.12); border-radius: var(--r-md); background: var(--paper); box-shadow: 0 20px 44px rgba(20,30,18,.22);
  transform: translateX(-50%); animation: review-card-in-centered .25s var(--ease-out);
}
.chart__review > b { display: block; margin: .5rem 0; font-size: .92rem; }
.chart__review blockquote { margin: 0; color: var(--text-soft); font-size: .88rem; line-height: 1.55; }
.chart__review p { display: flex; align-items: center; gap: .45rem; margin: .9rem 0 0; color: var(--text); font-size: .76rem; font-weight: 700; }
.chart__review p > span { display: grid; place-items: center; width: 1.45rem; height: 1.45rem; border-radius: 50%; background: var(--forest-700); color: var(--lime); font-size: .65rem; }
.chart__review small { color: var(--text-soft); font-size: .72rem; font-weight: 400; }
@keyframes review-card-in { from { opacity: 0; transform: translateY(-.45rem) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes review-card-in-centered { from { opacity: 0; transform: translateX(-50%) translateY(-.45rem) scale(.98); } to { opacity: 1; transform: translateX(-50%); } }

/* ── Ritual ────────────────────────────────────────────── */
.ritual { background: var(--cream); }
.ritual__grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.ritual__media { position: relative; z-index: 0; margin: 0; overflow: visible; }
.ritual__media picture { display: block; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.ritual__media picture img { width: 100%; transition: transform 1.2s var(--ease-out); }
.ritual__media:hover picture img { transform: scale(1.04); }
.ritual__badge { position: absolute; z-index: 4; width: clamp(104px, 23%, 154px); height: auto; right: clamp(-2.4rem, -4vw, -1rem); top: clamp(-2.5rem, -5vw, -1.25rem); pointer-events: none; filter: drop-shadow(0 15px 20px rgba(6,20,11,.24)); transform: rotate(var(--badge-rotation, 0deg)); transform-origin: center; }
.ritual__hotspot { top: 19%; left: 40%; z-index: 5; }
.ritual__review {
  position: absolute; z-index: 6; top: calc(19% + 3.25rem); left: 40%; width: min(330px, calc(100% - 2rem)); padding: 1.15rem;
  border: 1px solid rgba(20,50,20,.12); border-radius: var(--r-md); background: var(--paper); box-shadow: 0 20px 44px rgba(20,30,18,.22);
  transform: translateX(-50%); animation: review-card-in-centered .25s var(--ease-out);
}
.ritual__review > b { display: block; margin: .5rem 0; font-size: .92rem; }
.ritual__review blockquote { margin: 0; color: var(--text-soft); font-size: .88rem; line-height: 1.55; }
.ritual__review p { display: flex; align-items: center; gap: .45rem; margin: .9rem 0 0; color: var(--text); font-size: .76rem; font-weight: 700; }
.ritual__review p > span { display: grid; place-items: center; width: 1.45rem; height: 1.45rem; border-radius: 50%; background: var(--forest-700); color: var(--lime); font-size: .65rem; }
.ritual__review small { color: var(--text-soft); font-size: .72rem; font-weight: 400; }

.steps { list-style: none; padding: 0; margin-top: 2.75rem; display: grid; gap: 1.75rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.step__n {
  font-family: var(--serif); font-size: 2.1rem; line-height: 1;
  color: var(--forest-500);
  padding-top: .1em;
}
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { font-size: .95rem; color: var(--text-soft); }

/* ── Compare ───────────────────────────────────────────── */
.compare { background: #f6f6ef; }

.cmp {
  background: transparent; border: 0; border-radius: 0; box-shadow: none; overflow: visible;
}
.cmp__scroll { max-width: 100%; overflow: hidden; }

.cmp__table {
  border-collapse: separate; border-spacing: 0;
  min-width: 900px;
  text-align: center;
}
.cmp__col-label { width: 34%; }
.cmp__col-hero  { width: 22%; }

.cmp__table th, .cmp__table td {
  padding: 1.45rem 1.25rem;
  border-bottom: 2px dotted rgba(33,63,39,.25);
  vertical-align: top;
}
.cmp__table tbody tr:last-child th,
.cmp__table tbody tr:last-child td { border-bottom: 0; }

/* Column heads */
.cmp__table thead th {
  padding-block: 1.2rem 1.25rem;
  font-size: 1.02rem; font-weight: 600; letter-spacing: -.01em;
  background: transparent;
}
.cmp__table thead td { background: transparent; border-bottom-color: rgba(33,63,39,.25); }
.cmp__product-media { display: grid; place-items: center; width: 5.5rem; height: 5.5rem; margin: 0 auto .55rem; }
.cmp__product-media img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; }
/* Give the capsule illustration a little more breathing room in its column. */
.cmp__table thead th.is-hero .cmp__product-media { width: 4.95rem; height: 4.95rem; }

/* Row labels */
.cmp__table tbody th {
  text-align: left; font-family: var(--serif); font-size: 1.28rem; font-weight: 400; letter-spacing: -.025em; background: transparent;
  vertical-align: middle;
}

/* Body cells */
.cmp__table tbody td {
  font-size: .84rem; line-height: 1.6; color: var(--text-soft); background: transparent; white-space: nowrap;
}
.mark {
  display: block; width: 26px; height: 26px; margin: 0 auto .7rem;
  border-radius: 50%; position: relative;
}
.mark--yes { background: var(--grad-lime); }
.mark--yes::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 9px; height: 5px; border-left: 2px solid #0a1a0c; border-bottom: 2px solid #0a1a0c;
  transform: translate(-50%, -62%) rotate(-45deg);
}
.mark--no { background: rgba(20,30,18,.09); }
.mark--no::before, .mark--no::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.8px;
  background: #9a9384; border-radius: 2px;
}
.mark--no::before { transform: translate(-50%, -50%) rotate(45deg); }
.mark--no::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* The Capsules column is raised as the premium, featured option. */
.cmp__table thead th.is-hero { border: 0; border-radius: .75rem .75rem 0 0; background: #fff; color: var(--forest-700); box-shadow: 0 -1px 0 rgba(33,63,39,.08), 0 0 22px rgba(22,49,28,.1); }
.cmp__table tbody td.is-hero {
  background: #fff; color: var(--forest-700); border-bottom-color: rgba(33,63,39,.14); box-shadow: -1px 0 0 rgba(33,63,39,.08), 1px 0 0 rgba(33,63,39,.08);
}
.cmp__table tbody tr:last-child td.is-hero { border-radius: 0 0 .75rem .75rem; box-shadow: -1px 0 0 rgba(33,63,39,.08), 1px 0 0 rgba(33,63,39,.08), 0 9px 22px rgba(22,49,28,.1); }
.cmp__table tbody tr:hover td:not(.is-hero), .cmp__table tbody tr:hover th { color: var(--ink); }

/* Only meaningful once the table is wider than its scroller */
.cmp__hint { display: none; margin-top: .9rem; font-size: .78rem; letter-spacing: .06em; color: var(--text-soft); text-align: center; }

.cmp__cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ── Ceremonial matcha ─────────────────────────────────── */
.ceremonial { overflow: hidden; background: #fffdf9; }
.ceremonial__head { max-width: 1180px; margin-inline: auto; text-align: center; }
.ceremonial__head .eyebrow { margin-bottom: 1.4rem; }
.ceremonial__head h2 { margin: 0; font-size: clamp(3rem, 1.25rem + 6.4vw, 7rem); font-weight: 400; letter-spacing: -.055em; line-height: .96; }
.ceremonial__head h2 em { color: var(--forest-500); }
.ceremonial__capsule { display: inline-block; width: clamp(4.8rem, 8vw, 8.4rem); margin: 0 .04em; vertical-align: -.18em; filter: drop-shadow(0 .55rem .65rem rgba(37,83,26,.2)); }
.ceremonial__details { max-width: 1120px; margin: clamp(3.5rem, 7vw, 6.5rem) auto 0; }
.ceremonial__lead { max-width: 720px; margin: 0 auto; color: var(--forest-700); font-family: var(--serif); font-size: clamp(1.45rem, 1.05rem + 1vw, 2rem); line-height: 1.35; text-align: center; }
.ceremonial__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid rgba(33,63,39,.16); }
.ceremonial__point { padding: 1.75rem clamp(1rem, 3vw, 2.5rem) 0; border-right: 1px solid rgba(33,63,39,.16); }
.ceremonial__point:first-child { padding-left: 0; }
.ceremonial__point:last-child { padding-right: 0; border-right: 0; }
.ceremonial__point span { color: var(--forest-500); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.ceremonial__point h3 { margin: .8rem 0 .6rem; font-size: 1.05rem; }
.ceremonial__point p { margin: 0; color: var(--text-soft); font-size: .9rem; line-height: 1.6; }

/* ── Inside ────────────────────────────────────────────── */
.inside { position: relative; isolation: isolate; color: var(--text); overflow: hidden; }
.inside__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top right, #c2cbc3, #caccc9); }
.inside__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.inside__media { position: relative; margin: 0; }
.inside__media img { filter: drop-shadow(0 24px 34px rgba(20,38,24,.24)); }
.inside__hotspot { top: 18%; left: 29%; z-index: 3; }
.inside__review {
  position: absolute; z-index: 4; top: calc(18% + 3.25rem); left: 29%; width: min(330px, calc(100% - 2rem)); padding: 1.15rem;
  border: 1px solid rgba(201,245,63,.22); border-radius: var(--r-md); background: var(--paper); color: var(--text); box-shadow: 0 20px 44px rgba(0,0,0,.36);
  transform: translateX(-50%); animation: review-card-in-centered .25s var(--ease-out);
}
.inside__review > b { display: block; margin: .5rem 0; font-size: .92rem; }
.inside__review blockquote { margin: 0; color: var(--text-soft); font-size: .88rem; line-height: 1.55; }
.inside__review p { display: flex; align-items: center; gap: .45rem; margin: .9rem 0 0; color: var(--text); font-size: .76rem; font-weight: 700; }
.inside__review p > span { display: grid; place-items: center; width: 1.45rem; height: 1.45rem; border-radius: 50%; background: var(--forest-700); color: var(--lime); font-size: .65rem; }
.inside__review small { color: var(--text-soft); font-size: .72rem; font-weight: 400; }

.facts {
  max-width: 540px; margin-top: 2.5rem; padding: 1.5rem 1.6rem 1.2rem;
  border-radius: var(--r-md); background: #fffdfa;
  box-shadow: inset 0 0 0 1px rgba(23,81,42,.24);
  backdrop-filter: blur(6px);
}
.facts__head h3 { font-size: 1.05rem; letter-spacing: -.01em; }
.facts__head p { font-size: .82rem; color: var(--text-soft); margin-top: .3rem; }
.facts table { margin-top: 1rem; font-size: .9rem; }
.facts th, .facts td { text-align: left; padding: .65rem 0; border-bottom: 1px solid rgba(23,81,42,.18); }
.facts th { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); font-weight: 500; }
.facts td:nth-child(2), .facts th:nth-child(2) { text-align: right; white-space: nowrap; }
.facts td:nth-child(3), .facts th:nth-child(3) { text-align: right; width: 3rem; color: var(--text-soft); }
.facts tbody td { color: var(--text); }
.facts__note { font-size: .74rem; color: var(--text-soft); margin-top: .8rem; }

.stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.5rem; }
.stat b {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 1.3rem + 2vw, 2.9rem); line-height: 1;
  color: var(--forest-700);
  font-variant-numeric: tabular-nums;
}
.inside .sectitle em { color: var(--forest-500); }
.stat span { display: block; margin-top: .35rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }

/* ── Lifestyle ─────────────────────────────────────────── */
.lifestyle { position: relative; isolation: isolate; min-height: min(78svh, 680px); display: grid; align-items: end; overflow: hidden; }
.lifestyle__img { position: absolute; inset: 0; z-index: -2; }
.lifestyle__img img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.lifestyle__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6,20,11,.86) 0%, rgba(6,20,11,.35) 45%, rgba(6,20,11,.05) 75%);
}
.lifestyle__copy { padding-block: clamp(3rem, 7vw, 5.5rem); color: var(--cream); }
.lifestyle blockquote p {
  font-size: clamp(1.8rem, 1rem + 3.4vw, 3.4rem); line-height: 1.12; letter-spacing: -.03em;
  font-weight: 500; max-width: 18ch;
}
.lifestyle blockquote em { color: var(--lime); }
.lifestyle cite { display: block; margin-top: 1.25rem; font-style: normal; font-size: .95rem; color: rgba(238,244,232,.68); }

/* ── Reviews ───────────────────────────────────────────── */
.reviews { background: #fffdfa; }

.rev-agg {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 1.35rem; font-size: .95rem;
}
.rev-agg strong { font-weight: 600; }

.revgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.rev {
  display: flex; flex-direction: column; margin: 0;
  padding: 1.85rem 1.6rem 1.6rem;
  background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.rev:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rev .stars { font-size: .95rem; }
.rev__title { display: block; margin-top: 1rem; font-size: 1.02rem; font-weight: 600; letter-spacing: -.015em; }
.rev blockquote {
  margin: .6rem 0 1.5rem; font-size: .94rem; line-height: 1.68; color: var(--text-soft);
}
.rev blockquote::before { content: '“'; }
.rev blockquote::after  { content: '”'; }

.rev__by {
  display: flex; align-items: center; gap: .75rem;
  margin-top: auto; padding-top: 1.15rem; border-top: 1px solid var(--line);
}
.rev__avatar {
  display: grid; place-items: center; flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-btn-dk); color: var(--lime);
  font-size: .92rem; font-weight: 600;
}
.rev__name { display: grid; font-size: .92rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.35; }
.rev__name small { font-size: .76rem; font-weight: 400; color: var(--text-soft); }

.reviews__note { text-align: center; margin-top: 2.25rem; font-size: .88rem; color: var(--text-soft); }
.reviews__note a { color: var(--forest-500); font-weight: 500; text-underline-offset: 3px; }
.reviews__more { display: none; }

/* ── Buy ───────────────────────────────────────────────── */
.buy { background: var(--cream); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 1.25rem; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 2.1rem 1.75rem 1.9rem;
  background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: var(--grad-dark); color: var(--cream);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(201,245,63,.3);
}
.plan--featured .plan__meta, .plan--featured .plan__list li { color: rgba(238,244,232,.7); }
.plan__flag {
  position: absolute; top: -.75rem; left: 50%; translate: -50% 0;
  padding: .32rem .8rem; border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #0a1a0c; background: var(--grad-lime); box-shadow: var(--shadow-lime);
}
.plan__name { font-size: 1.2rem; }
.plan__meta { font-size: .85rem; color: var(--text-soft); margin-top: .3rem; }
.plan__price {
  margin-top: 1.4rem; font-family: var(--serif); font-weight: 400; font-size: 2.9rem; line-height: 1;
  letter-spacing: -.02em; display: flex; align-items: baseline; gap: .5rem;
}
.plan__price small { font-family: var(--sans); font-size: .95rem; color: var(--text-soft); }
.plan--featured .plan__price small { color: rgba(238,244,232,.6); }
.plan__price s { font-family: var(--sans); font-size: 1rem; color: var(--text-soft); }
/* Cards stretch and the CTA is pinned with margin-top:auto, so an empty
   savings line can collapse instead of holding open a gap. */
.plan__per:not(:empty) { margin-top: .4rem; font-size: .82rem; color: var(--forest-300); }
.plan--featured .plan__per { color: var(--lime); }
.plan__list { list-style: none; padding: 0; margin: 1.5rem 0 1.75rem; display: grid; gap: .6rem; font-size: .9rem; color: var(--text-soft); }
.plan__list li { position: relative; padding-left: 1.4rem; }
.plan__list li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 11px; height: 6px; border-left: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
  transform: rotate(-45deg); opacity: .75;
}
.plan .btn { margin-top: auto; }
.plan__actions { display: grid; gap: .75rem; margin-top: auto; }
.plan__actions .btn { margin-top: 0; }
.plan__add { color: var(--forest-500); font-size: .88rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.plan--featured .plan__add { color: var(--lime); }

.assure {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem;
  list-style: none; padding: 0; margin-top: 2.5rem;
  font-size: .8rem; letter-spacing: .06em; color: var(--text-soft);
}
.assure li { position: relative; padding-left: 1.3rem; }
.assure li::before {
  content: ''; position: absolute; left: 0; top: .38em; width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-lime);
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq { background: var(--sand-soft); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); }
.faq__media { width: 100%; aspect-ratio: 1; margin: 0; overflow: hidden; border-radius: var(--r-lg); box-shadow: 0 20px 42px rgba(20,30,18,.2); }
.faq__media picture, .faq__media img { display: block; width: 100%; height: 100%; }
.faq__media img { object-fit: cover; object-position: center; }

.faq__list { display: grid; align-content: start; }
.faq__title { margin: 0 0 1rem; font-size: clamp(2.15rem, 1.2rem + 4.2vw, 4.25rem); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-size: 1.06rem; font-weight: 500; letter-spacing: -.015em;
  transition: color .25s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ''; flex: none; width: 12px; height: 12px; position: relative;
  background:
    linear-gradient(var(--forest-500), var(--forest-500)) center/12px 1.6px no-repeat,
    linear-gradient(var(--forest-500), var(--forest-500)) center/1.6px 12px no-repeat;
  transition: transform .35s var(--ease-out);
}
.qa[open] summary::after { transform: rotate(135deg); }
.qa summary:hover { color: var(--forest-500); }
.qa__body { overflow: hidden; }
.qa__body p { padding-bottom: 1.4rem; max-width: 62ch; font-size: .96rem; color: var(--text-soft); }

/* ── Closer ────────────────────────────────────────────── */
.closer { position: relative; isolation: isolate; overflow: hidden; text-align: center; color: var(--cream); }
.closer__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(155deg, var(--ink) 0%, var(--forest-800) 55%, #82905a 100%); }
.closer__inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 0; padding-block: clamp(4rem, 8vw, 7rem); }
.closer__content { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; padding: clamp(2rem, 5vw, 5rem); }
.closer__visual { position: relative; height: clamp(36rem, 50vw, 48rem); margin: 0; overflow: hidden; border-radius: var(--r-lg); box-shadow: 0 28px 58px rgba(0,0,0,.28); }
.closer__scrub { display: block; width: 100%; height: 100%; background: #07130d; }
.closer__scrub-loader { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(238,244,232,.55); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; transition: opacity .35s var(--ease); }
.closer__scrub-loader.is-hidden { opacity: 0; }
.closer h2 { font-size: clamp(2.3rem, 1.2rem + 4.6vw, 4.6rem); line-height: 1.03; }
.closer em { color: var(--lime); }
.closer__cta { margin-top: 2.5rem; }
.closer__note { margin-top: 1.5rem; font-size: .84rem; color: rgba(238,244,232,.55); }

/* ── Footer ────────────────────────────────────────────── */
.foot { background: #151810; color: rgba(238,244,232,.65); padding-block: clamp(3rem, 7vw, 4.5rem) 2rem; font-size: .9rem; }
.foot__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; }
.foot__brand p { line-height: 1.7; max-width: 34ch; }
.foot__newsletter { align-self: start; }
.foot__newsletter h2 { margin: 0; color: var(--cream); font-size: clamp(.98rem, 1.2vw, 1.15rem); font-weight: 600; }
.foot__newsletter p { margin: .5rem 0 .8rem; font-size: .82rem; line-height: 1.5; }
.foot__newsletter label { display: block; margin-bottom: .35rem; font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.foot__newsletter-form { display: flex; width: min(100%, 285px); }
.foot__newsletter input {
  min-width: 0; flex: 1; width: 100%; padding: .7rem .8rem; border: 1px solid rgba(238,244,232,.3); border-radius: .35rem 0 0 .35rem;
  background: rgba(238,244,232,.06); color: var(--cream); font: inherit; outline: none;
}
.foot__newsletter input::placeholder { color: rgba(238,244,232,.42); }
.foot__newsletter input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(201,245,63,.14); }
.foot__newsletter-submit { padding: .7rem .85rem; border-radius: 0 .35rem .35rem 0; background: var(--lime); color: var(--ink); font-size: .78rem; font-weight: 800; }
.foot__newsletter-submit:disabled { opacity: .65; cursor: wait; }
.foot__newsletter-status { min-height: 1.2em; color: var(--lime); }
.foot__contact { font-style: normal; line-height: 1.8; }
.foot__contact a { color: var(--lime); text-underline-offset: 3px; }
.foot__legal {
  margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid rgba(238,244,232,.12);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(25rem, 72ch) minmax(0, 1fr); align-items: start; gap: 1rem;
  font-size: .74rem; color: rgba(238,244,232,.4); line-height: 1.6;
}
.foot__legal p { margin: 0; }
.foot__legal p:first-child { grid-column: 2; max-width: 72ch; text-align: center; }
.foot__legal-links { grid-column: 3; justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; text-align: right; white-space: nowrap; }
.foot__legal-nav { display: flex; gap: .65rem; }
.foot__legal-links a { color: rgba(238,244,232,.72); text-decoration: underline; text-underline-offset: 3px; }
.foot__legal-links a:hover { color: var(--lime); }

/* ── Sticky buy bar ────────────────────────────────────── */
.stickybuy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .75rem var(--gut) calc(.75rem + env(safe-area-inset-bottom));
  background: transparent; color: var(--ink);
  transform: translateY(110%); transition: transform .45s var(--ease-out);
}
.stickybuy[hidden] { display: flex; }
.stickybuy.is-up { transform: none; }
.stickybuy__offer { display: inline-flex; align-items: center; gap: .35rem; flex: 0 0 auto; padding: .78rem .85rem; border-radius: var(--r-pill); background: #fff; color: var(--ink); box-shadow: var(--shadow-md); font-size: .8rem; font-weight: 800; }
.stickybuy__offer span { font-size: .95rem; }
.stickybuy #stickyBuy { flex: 0 1 auto; padding-inline: 1.05rem; box-shadow: var(--shadow-lime); }
.stickybuy__price { margin-left: .55rem; color: inherit; font-size: .9em; white-space: nowrap; }
.stickybuy__price s { opacity: .62; margin-right: .25rem; }

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 5.5rem; translate: -50% 0; z-index: 90;
  max-width: min(92vw, 460px);
  padding: .9rem 1.25rem; border-radius: var(--r-md);
  background: rgba(6,20,11,.95); color: var(--cream); font-size: .88rem; line-height: 1.5;
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(201,245,63,.28);
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s var(--ease-out);
}
.toast[hidden] { display: block; pointer-events: none; }
.toast.is-up { opacity: 1; transform: none; }

/* ── Welcome offer ─────────────────────────────────────── */
.discount-fab {
  position: fixed; z-index: 70; left: max(1rem, env(safe-area-inset-left)); bottom: max(1rem, env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; gap: .45rem; padding: .78rem 1.05rem; border-radius: var(--r-pill);
  background: var(--lime); color: var(--ink); box-shadow: 0 10px 28px rgba(131,183,25,.32); font-size: .86rem; font-weight: 800;
  opacity: 0; pointer-events: none; transform: translateY(1.5rem); visibility: hidden;
  transition: opacity .35s ease, transform .45s var(--ease-out), visibility 0s .45s;
}
.discount-fab.is-visible {
  opacity: 1; pointer-events: auto; transform: none; visibility: visible; animation: offer-pulse 10s ease-in-out infinite;
  transition: opacity .35s ease, transform .45s var(--ease-out), visibility 0s;
}
.discount-fab:hover, .discount-fab:focus-visible { animation-play-state: paused; transform: translateY(-2px); }
.discount-fab__spark { font-size: 1rem; }
@keyframes offer-pulse {
  0%, 7%, 100% { transform: scale(1); box-shadow: 0 10px 28px rgba(131,183,25,.32); }
  2%, 5% { transform: scale(1.06); box-shadow: 0 0 0 10px rgba(201,245,63,0), 0 12px 32px rgba(201,245,63,.5); }
}
.discount-overlay {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.25rem;
  background: rgba(2,12,7,.73); backdrop-filter: blur(8px); opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility 0s .25s;
}
.discount-overlay[hidden] { display: grid; }
.discount-overlay.is-open { opacity: 1; visibility: visible; transition: opacity .25s ease; }
.discount-modal {
  position: relative; display: grid; grid-template-columns: minmax(0, .94fr) minmax(280px, 1.06fr); width: min(100%, 980px); min-height: min(650px, 82vh);
  overflow: hidden; border-radius: 1.2rem; background: var(--paper); box-shadow: 0 28px 80px rgba(0,0,0,.38); transform: translateY(14px) scale(.98);
  transition: transform .35s var(--ease-out);
}
.discount-overlay.is-open .discount-modal { transform: none; }
.discount-modal__content {
  display: flex; flex-direction: column; align-items: flex-start; padding: clamp(2rem, 5vw, 4.75rem);
  background-color: #FAF8F5;
  background-image: linear-gradient(138deg, #FAF8F5 10%, #F7EEE4 64%, #D2F462 128%);
}
.discount-modal__close { position: absolute; z-index: 1; top: 1.25rem; right: 1.25rem; padding: .25rem; border: 0; background: transparent; color: var(--ink); font-size: 2rem; line-height: 1; }
.discount-modal__logo { display: block; width: min(170px, 58%); margin-bottom: auto; }
.discount-modal__logo img { display: block; width: 100%; height: auto; }
.discount-modal__content > :not(.discount-modal__logo) { margin-top: auto; }
.discount-modal h2 { margin: 0 0 1.15rem; font-size: clamp(2rem, 1.7rem + 1.8vw, 3.25rem); line-height: 1; letter-spacing: -.04em; }
.discount-modal h2 em { color: var(--forest-500); }
.discount-form h2.is-success { margin-bottom: 30px; font-size: clamp(2rem, 1.65rem + 1.2vw, 2.55rem); }
.discount-step, .discount-form { width: 100%; animation: discount-step-in .38s var(--ease-out); }
.discount-step.is-leaving { opacity: 0; transform: translateY(-.55rem); transition: opacity .18s ease, transform .18s ease; }
.discount-goals__prompt { margin: 0 0 1rem; color: var(--text-soft); font-size: .92rem; line-height: 1.45; }
.discount-goals { display: grid; gap: .55rem; }
.discount-goal { width: 100%; padding: .78rem 1rem; border: 1px solid rgba(6,20,11,.18); border-radius: var(--r-sm); background: rgba(255,255,255,.72); color: var(--ink); font: inherit; font-size: .96rem; font-weight: 600; text-align: left; transition: border-color .2s ease, background .2s ease, transform .2s var(--ease-out); }
.discount-goal:hover, .discount-goal:focus-visible { border-color: var(--forest-500); background: rgba(201,245,63,.18); transform: translateX(.25rem); }
.discount-form__selected { margin: 0 0 .55rem; color: var(--forest-500); font-size: .82rem; font-weight: 700; }
.discount-form { margin-top: auto; }
.discount-form input { width: 100%; margin-bottom: .75rem; padding: .95rem 1rem; border: 1px solid rgba(6,20,11,.24); border-radius: var(--r-pill); background: #fff; color: var(--ink); font: inherit; outline: none; }
.discount-form input:focus { border-color: var(--forest-500); box-shadow: 0 0 0 3px rgba(42,137,61,.15); }
.discount-form__privacy { margin: .85rem 0 0; color: var(--text-soft); font-size: .72rem; line-height: 1.45; }
.discount-form__privacy a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.discount-form__code { margin: 0 0 .75rem; padding: .8rem 1rem; border: 1px dashed rgba(6,20,11,.3); border-radius: var(--r-sm); background: rgba(201,245,63,.16); color: var(--ink); font-size: 1.05rem; font-weight: 800; letter-spacing: .08em; text-align: center; }
.discount-form__status { min-height: 1.3em; margin: 1.65rem 0 0; color: var(--forest-500); font-size: .936rem; font-weight: 600; line-height: 1.45; white-space: pre-line; opacity: 0; transform: translateY(.2rem); transition: opacity .38s var(--ease), transform .38s var(--ease); }
.discount-form__status.is-visible { opacity: 1; transform: none; }
.discount-modal__image { background: linear-gradient(180deg, rgba(2,21,10,.04), rgba(2,21,10,.24)), image-set(url('../img/unlock-hand.webp') type('image/webp') 1x, url('../img/unlock-hand.jpg') type('image/jpeg') 1x) center/cover no-repeat; }
@keyframes discount-step-in { from { opacity: 0; transform: translateY(.55rem); } to { opacity: 1; transform: none; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Cart ──────────────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 20px; right: 20px; z-index: 100; display: flex; flex-direction: column; width: min(calc(100% - 2.5rem), 390px); max-height: calc(100dvh - 2.5rem); padding: 1.5rem;
  overflow-y: auto; border-radius: var(--r-lg); background: var(--paper); color: var(--ink); box-shadow: -20px 18px 64px rgba(0,0,0,.34);
  opacity: 0; pointer-events: none; transform: translateX(100%); transition: opacity .28s ease, transform .38s var(--ease-out);
}
.cart-drawer[hidden] { display: flex; }
.cart-drawer.is-open { opacity: 1; pointer-events: auto; transform: none; }
.cart-toggle[hidden], .nav__actions .btn--sm[hidden], .cart-drawer__foot .btn[hidden] { display: none; }
.cart-summary[hidden], .cart-total[hidden] { display: none; }
.cart-drawer__head, .cart-summary > div, .cart-total, .cart-item, .cart-item__controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cart-drawer__head { padding-bottom: 1.1rem; border-bottom: 1px solid rgba(6,20,11,.12); font-size: 1.1rem; }
.cart-close { color: var(--ink); font-size: 2rem; line-height: 1; }
.cart-items { display: grid; gap: 1rem; padding: 1.2rem 0; overflow-y: auto; }
.cart-empty { display: grid; gap: .8rem; color: var(--text-soft); }
.cart-empty p { margin: 0; }
.cart-empty .btn { justify-self: start; }
.discount-form .btn__price s { opacity: .66; }
.cart-offer {
  margin: 0 0 1.2rem; padding: .8rem .9rem; border: 1px solid rgba(42,137,61,.2); border-radius: .55rem;
  background: rgba(201,245,63,.16); color: var(--ink); font-size: .79rem; font-weight: 600; line-height: 1.45;
}
.cart-item { align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid rgba(6,20,11,.1); }
.cart-item strong, .cart-item span { display: block; }
.cart-item__image { flex: 0 0 56px; width: 56px; height: 56px; border-radius: .45rem; object-fit: cover; background: #edf0e9; }
.cart-item__details { flex: 1 1 auto; min-width: 0; }
.cart-item__details span { margin-top: .2rem; color: var(--text-soft); font-size: .86rem; }
.cart-item__details .cart-item__subtitle { margin-top: .28rem; font-size: .78rem; }
.cart-item__price s { margin-right: .25rem; opacity: .58; }
.cart-item__controls button { display: grid; place-items: center; width: 1.9rem; height: 1.9rem; padding: 0 0 .08em; border: 1px solid rgba(6,20,11,.18); border-radius: 50%; font-size: 1.1rem; line-height: 1; }
.cart-drawer__foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(6,20,11,.12); }
.cart-summary { display: grid; gap: .55rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(6,20,11,.1); color: var(--text-soft); font-size: .86rem; }
.cart-summary strong { color: var(--ink); font-weight: 600; }
.cart-summary__free { color: var(--forest-500) !important; font-size: .74rem; letter-spacing: .06em; }
.cart-total { margin: .95rem 0 1rem; font-size: 1.04rem; }
.cart-drawer__foot p { margin: .85rem 0 0; color: var(--text-soft); font-size: .77rem; line-height: 1.45; }
#cartCheckout.btn--lime > span { display: inline-block; animation: checkout-arrow-loop 1.6s ease-in-out infinite; }
@keyframes checkout-arrow-loop {
  0%, 30%, 100% { transform: translateX(0); opacity: 1; }
  52% { transform: translateX(.55rem); opacity: 0; }
  53% { transform: translateX(0); opacity: 0; }
  68% { transform: translateX(0); opacity: 1; }
}

/* ── Reveal ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .revgrid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: grid; justify-items: center; }
  .hero__title, .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__product { order: -1; }
  .hero__gallery { width: min(92%, 500px); grid-template-columns: 58px minmax(0, 1fr); }
  .hero__stage { width: 100%; }
  .hero__bottle { width: 100%; height: 100%; }
  .curve__grid, .ritual__grid, .inside__grid, .faq__grid { grid-template-columns: 1fr; }
  .ritual__media { order: 1; }
  .ritual__badge { right: -1rem; top: -1.1rem; }
  .ritual__review { top: calc(19% + 3.1rem); left: 40%; width: min(240px, calc(100% - 1.5rem)); }
  .inside__media img { width: min(100%, 520px); margin-inline: auto; }
  .inside__review { top: calc(18% + 3.1rem); left: 29%; width: min(240px, calc(100% - 1.5rem)); }
  .faq__media { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .ceremonial__points { gap: 1.5rem; }
  .plan--featured { order: -1; }
  .foot__inner { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__actions .btn--sm { display: none; }
  .nav__inner { gap: .7rem; }
  .brand { width: min(135px, 38vw); }
  .nav__actions { gap: .45rem; }
  .cart-toggle__label { display: none; }
  .cart-toggle { gap: .1rem; }
  .cart-toggle__icon { width: 1.5rem; height: 1.5rem; }
  .win-button { padding: .44rem .55rem; font-size: .72rem; }
  .win-button::after { right: -2.5rem; }
  .win-tooltip { right: -2.5rem; }
  .discount-fab { display: none !important; }
  .hero__gallery { width: 100%; grid-template-columns: 52px minmax(0, 1fr); gap: .6rem; }
  .hero__copy > .hero__title { display: none; }
  .hero__title--mobile { display: block; margin: 0 auto 1.35rem; font-size: clamp(1.85rem, 8.4vw, 2.55rem); line-height: .98; text-align: center; }
  .hero__thumbs { gap: .45rem; }
  .hero__thumb { border-radius: .55rem; }
  .review-hotspot { top: 19%; left: 39%; }
  .chart__review { top: calc(19% + 3.1rem); left: 39%; width: min(240px, calc(100% - 1.5rem)); }
  .burger { display: block; }
  .cards { grid-template-columns: 1fr; }
  .revgrid { grid-template-columns: 1fr; }
  .reviews.is-mobile-paginated .rev:nth-child(n + 5):not(.is-review-visible) { display: none; }
  .reviews__more:not([hidden]) { display: block; margin: 1.1rem auto 0; padding: .2rem 0; color: var(--forest-500); font-size: .76rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
  .cmp__hint { display: none; }
  .cmp__table { width: 100%; min-width: 0; table-layout: fixed; }
  .cmp__col-label { width: 31%; }
  .cmp__table col:not(.cmp__col-label) { width: 23%; }
  /* Keep comparison criteria in view while product formats slide underneath. */
  .cmp__label-header,
  .cmp__table tbody th {
    position: sticky; left: 0; z-index: 10;
    isolation: isolate; background: #f6f6ef !important;
    box-shadow: 10px 0 16px -16px rgba(6,20,11,.5);
  }
  .cmp__label-header { z-index: 11; }
  .cmp__table th, .cmp__table td { padding: .9rem .28rem; }
  .cmp__table thead th { font-size: .78rem; }
  .cmp__product-media { width: 3.1rem; height: 3.1rem; margin-bottom: .4rem; }
  .cmp__table thead th.is-hero .cmp__product-media { width: 2.79rem; height: 2.79rem; }
  .cmp__table tbody th { font-size: .9rem; overflow-wrap: anywhere; }
  .cmp__table tbody td { font-size: .7rem; line-height: 1.45; white-space: normal; overflow-wrap: anywhere; }
  .mark { width: 21px; height: 21px; margin-bottom: .45rem; }
  .ceremonial__head { text-align: left; }
  .ceremonial__head h2 { font-size: clamp(2.9rem, 13vw, 4.2rem); }
  .ceremonial__details { margin-top: 3rem; }
  .ceremonial__lead { text-align: left; font-size: 1.35rem; }
  .ceremonial__points { grid-template-columns: 1fr; gap: 0; margin-top: 2.75rem; }
  .ceremonial__point, .ceremonial__point:first-child, .ceremonial__point:last-child { padding: 1.35rem 0; border-right: 0; border-bottom: 1px solid rgba(33,63,39,.16); }
  .ceremonial__point:last-child { border-bottom: 0; }
  .closer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .closer__visual { height: min(128vw, 38rem); max-width: 460px; width: 100%; margin-inline: auto; }
  .foot__legal { grid-template-columns: 1fr; }
  .foot__legal p:first-child, .foot__legal-links { grid-column: 1; }
  .foot__legal-links { justify-self: end; }
  .foot__legal { padding-bottom: 30px; }
  .foot__inner { grid-template-columns: 1fr; }
  .foot { padding-bottom: 60px; }
  .stats { gap: 1.75rem; }
  .stat { flex: 1 1 30%; }
  .scrollcue { display: none; }
  .toast { bottom: 6.5rem; }
  .discount-fab { bottom: calc(5.75rem + env(safe-area-inset-bottom)); }
  .discount-modal { grid-template-columns: 1fr; min-height: 0; max-height: calc(100dvh - 2.5rem); overflow-y: auto; }
  .discount-modal__content { min-height: 590px; padding: 4rem 1.5rem 2rem; }
  .discount-modal__logo { margin-bottom: 0; }
  .discount-modal__image { display: none; }
}

@media (max-width: 420px) {
  .btn--lg { padding: .95rem 1.4rem; font-size: .95rem; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
}

/* Sticky bar only makes sense where the nav CTA is hidden */
@media (min-width: 761px) { .stickybuy { display: none !important; } }

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .grain, .hero__glow, .scrollcue i, .marquee__track,
  .review-hotspot, .discount-fab, #cartCheckout.btn--lime > span { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .chart__line { stroke-dashoffset: 0 !important; }
  .chart__area { opacity: 1 !important; }
  .btn, .nav, .mobilemenu, .cart-drawer, .discount-overlay, .discount-modal,
  .toast, .discount-form__status { transition-duration: .01ms !important; }
}
