/* ============================================================
   CHAKU WASA: — v2 "The Apothecary Label"
   Paper-light system adapted from the chakuwasa repo handoff,
   upgraded with real photography + new conversion sections.
   ============================================================ */

:root {
  --paper: #F4F1EA;
  --paper-2: #ECE7DC;
  --paper-3: #E3DDCE;
  --paper-bleach: #FAF8F2;

  --ink: #1A1A1A;
  --ink-2: rgba(26, 26, 26, 0.72);
  --ink-3: rgba(26, 26, 26, 0.50);
  --ink-4: rgba(26, 26, 26, 0.30);
  --ink-line: rgba(26, 26, 26, 0.10);
  --ink-line-strong: rgba(26, 26, 26, 0.20);
  --ink-wash: rgba(26, 26, 26, 0.04);

  --signal: #F2A81E;
  --signal-deep: #8A5200;
  --signal-soft: #FBE6B6;

  --ember: #C14A2B;
  --ember-soft: #F4D7CB;

  --dark-bg: #14130F;
  --dark-bg-2: #1E1C18;
  --dark-ink: #EFEBE0;
  --dark-line: rgba(239, 235, 224, 0.10);

  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-sheet: 24px; --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-2: 0 8px 24px -8px rgba(26, 26, 26, 0.10);
  --shadow-3: 0 24px 64px -16px rgba(26, 26, 26, 0.18);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-micro: 120ms;
  --dur-base: 220ms;

  --font-display: 'Tsukimi Rounded', 'Cooper BT', Georgia, serif;
  --font-poster:  'Pompiere', 'Bodoni 72', serif;
  --font-hand:    'Mynerve', 'Caveat', cursive;
  --font-body:    'Geist', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'Geist Mono', 'SF Mono', 'Menlo', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { margin: 0; padding: 0; }

/* ============================================================
   INTRO MODAL — cinematic full-bleed video that auto-closes
   ============================================================ */
.intro-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: #0a0906;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  will-change: opacity, transform;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 1.2s;
}
.intro-modal.is-closing {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  visibility: hidden;
}
/* lock scroll while intro is up */
body.intro-active { overflow: hidden; }

.intro-video-container { position: relative; width: 100%; height: 100%; overflow: hidden; }
.intro-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: introKenBurns 14s ease-out forwards;
}
@keyframes introKenBurns { to { transform: scale(1); } }

/* cinematic vignette + bottom gradient for legibility */
.intro-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(0,0,0,0) 38%, rgba(0,0,0,.46) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 64%, rgba(0,0,0,.55) 100%);
}

.intro-content {
  text-align: center;
  padding: 0 24px;
}
.intro-tagline {
  font-family: var(--font-poster), serif;
  font-weight: 500;
  font-size: clamp(56px, 12vw, 132px);
  line-height: .9;
  color: #FAF8F2;
  margin: 0;
  letter-spacing: .01em;
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
  opacity: 0; filter: blur(14px); transform: translateY(22px);
  animation: introRise 2.2s cubic-bezier(0.16, 1, 0.3, 1) .7s forwards;
}
.intro-subline {
  font-family: var(--font-mono), monospace;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, .72);
  margin: 22px 0 0;
  opacity: 0; filter: blur(8px); transform: translateY(16px);
  animation: introRise 2.2s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
}
@keyframes introRise {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* thin progress line that fills over the clip — subtle "loading the experience" cue */
.intro-progress {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 0%;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(242,168,30,.6);
}

.intro-skip {
  position: absolute; right: 28px; bottom: 26px; z-index: 5;
  font-family: var(--font-mono), monospace; font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(250,248,242,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(250,248,242,.22);
  border-radius: var(--r-pill);
  padding: 9px 18px; cursor: pointer;
  backdrop-filter: blur(8px);
  opacity: 0; animation: introRise 1.2s ease 2.4s forwards;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.intro-skip:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(250,248,242,.4); }

.intro-sound {
  position: absolute; left: 28px; bottom: 26px; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  color: rgba(250,248,242,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(250,248,242,.22);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.intro-sound:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(250,248,242,.4); }
@media (max-width: 600px) {
  .intro-sound { left: 16px; bottom: 16px; }
}

/* page beneath fades up once the intro hands off */
.page-shell { opacity: 0; transition: opacity 1s ease .15s; }
.page-shell.is-revealed { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .intro-video { animation: none; transform: scale(1); }
  .intro-tagline, .intro-subline { animation-duration: .01ms; animation-delay: 0s; }
}
@media (max-width: 600px) {
  .intro-subline { letter-spacing: .2em; }
  .intro-skip { right: 16px; bottom: 16px; }
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--signal); color: var(--ink); }

.container-page { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .container-page { padding: 0 22px; } }

.dv { font-family: 'Tiro Devanagari Hindi', var(--font-display), serif; font-style: normal; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.accent { font-family: var(--font-poster); font-style: normal; color: var(--signal-deep); font-size: 1.12em; letter-spacing: 0; }
.hand { font-family: var(--font-hand); color: var(--signal-deep); font-weight: 400; }
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3);
  margin-bottom: 26px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal-deep); }
.eyebrow.on-dark { color: rgba(239,235,224,.55); }
.caption {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3);
}

/* Photography */
.photo { width: 100%; height: 100%; object-fit: cover; }
.photo.warm { filter: grayscale(.16) sepia(.22) saturate(.84) contrast(1.04) brightness(.98); }
.photo.bw { filter: grayscale(1) sepia(.08) contrast(1.07) brightness(1.0); }

/* Reveal on scroll — opacity:0 is gated behind body.js-anim so that if JS
   never runs (or the observer never fires) content stays visible by default. */
@media (prefers-reduced-motion: no-preference) {
  body.js-anim .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  body.js-anim .reveal.in { opacity: 1; transform: none; }
  body.js-anim .reveal.d1 { transition-delay: .08s; }
  body.js-anim .reveal.d2 { transition-delay: .16s; }
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 20; padding: 16px 0;
  background: rgba(244,241,234,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.nav .inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); white-space: nowrap; }
.logo img { height: 50px; width: auto; display: block; }
.logo .wm { font-family: var(--font-poster); font-size: 34px; line-height: .8; letter-spacing: .01em; }
.logo .dv { font-size: 17px; color: var(--signal-deep); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-r { display: flex; align-items: center; gap: 16px; }
.nav-r .pr { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }

.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 42px; height: 42px; padding: 0 10px; border: 1px solid var(--ink-line);
  border-radius: var(--r-sm); background: transparent; cursor: pointer;
}
.nav-burger span {
  display: block; height: 1.8px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform var(--dur-base) var(--ease), opacity var(--dur-micro) var(--ease);
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column;
  border-top: 1px solid var(--ink-line); background: var(--paper);
}
.nav-mobile a {
  padding: 15px 22px; font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink-line); letter-spacing: -.01em;
}
.nav-mobile a:active { background: var(--ink-wash); }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-r .pr { display: none; }
  .nav-burger { display: flex; }
  body.nav-open .nav-mobile { display: flex; }
}

/* BUTTONS / CHIPS / INPUT */
.btn-cta {
  display: inline-flex; align-items: center; gap: 9px; height: 48px;
  padding: 0 24px; border-radius: var(--r-md);
  background: var(--ink); color: var(--paper);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter var(--dur-micro) var(--ease), transform var(--dur-micro) var(--ease);
}
.btn-cta:hover { transform: translateY(-1px); }
.btn-cta:active { transform: scale(.98); }
.btn-cta.signal { background: var(--signal); color: var(--ink); }
.btn-cta.signal:hover { filter: brightness(.96); }
.btn-cta.sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-cta.ghost { background: transparent; color: var(--dark-ink); border: 1px solid rgba(239,235,224,.35); }
.btn-cta.ghost:hover { background: var(--dark-ink); color: var(--ink); }
.btn-link { font-family: var(--font-body); font-size: 14.5px; color: var(--ink-2); text-decoration: none; }
.btn-link:hover { color: var(--ink); }
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px;
  border-radius: var(--r-pill); background: var(--paper-2);
  border: 1px solid var(--ink-line); color: var(--ink-2); font-size: 13px; font-weight: 500;
}
.input {
  width: 100%; height: 44px; padding: 0 14px; border-radius: var(--r-sm);
  border: 1px solid var(--ink-line); background: var(--paper-bleach);
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: border-color var(--dur-micro) var(--ease);
}
.input::placeholder { color: var(--ink-4); }
.input:focus { outline: none; border-color: var(--ink); }

/* HERO */
.hero { padding-top: 78px; padding-bottom: 36px; position: relative; z-index: 2; overflow: visible; }
.hero-wrap { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 7.2vw, 100px); line-height: 1.0;
  letter-spacing: -0.03em; margin: 0;
}
.hero-sub { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 520px; margin-top: 26px; }
.hero-sub .dv { color: var(--ink); }
.hero-row { display: flex; gap: 14px; margin-top: 34px; align-items: center; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 8px; margin-top: 30px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 380px; }
}
.hero-media { position: relative; }
.jar-card {
  background: var(--paper-2); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-2);
  transform: rotate(2deg);
}
.jar-card .ph { aspect-ratio: 3/4; border-radius: var(--r-md); overflow: hidden; }
.hero-jar { max-width: 420px; width: 100%; height: auto; display: block; }

@media (max-width: 880px) {
  .hero-jar { max-width: 340px; }
}
  color: var(--signal-deep); transform: rotate(-5deg); z-index: 4;
}
.price-bubble {
  position: absolute; bottom: -14px; left: -14px; background: var(--signal);
  color: var(--ink); border-radius: var(--r-pill);
  width: 86px; height: 86px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-2); transform: rotate(-6deg); z-index: 5;
}
.price-bubble .a { font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1; }
.price-bubble .l { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* Floating nuts */
.hero-nuts { position: absolute; inset: -20px 0 -40px; z-index: 0; pointer-events: none; overflow: hidden; }
.nut {
  position: absolute; color: var(--ink); opacity: .08;
  animation: nutfloat var(--dur, 9s) var(--ease) infinite;
  animation-delay: var(--d, 0s); will-change: transform;
}
.nut.accent { color: var(--signal-deep); opacity: .28; }
.nut.soft { opacity: .12; }
@keyframes nutfloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-18px) rotate(calc(var(--r, 0deg) + 7deg)); }
}
@media (max-width: 880px) { .hero-nuts { display: none; } }
@media (prefers-reduced-motion: reduce) { .nut { animation: none; } }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* MARQUEE */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: 13px 0; position: relative; z-index: 2; }
.mqt { display: flex; width: max-content; white-space: nowrap; animation: mq 42s linear infinite; }
.marquee:hover .mqt { animation-play-state: paused; }
.mqt span { font-family: var(--font-display); font-weight: 500; font-size: 18px; padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; }
.mqt .s { color: var(--signal); }
.mqt .dv { color: var(--signal); font-size: 17px; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mqt { animation: none; } }

/* SECTION */
.section { padding: 92px 0; position: relative; z-index: 2; }
.section.tight { padding-top: 0; }
.section h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4.8vw, 56px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0 0 16px;
}
.sec-lead { font-size: 18px; color: var(--ink-2); max-width: 540px; line-height: 1.5; }
.sec-head { margin-bottom: 52px; }

/* FEATURES */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feat {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: 26px;
  transition: border-color var(--dur-base) var(--ease);
}
.feat:hover { border-color: var(--ink-line-strong); }
.feat .icon {
  width: 42px; height: 42px; border-radius: var(--r-pill);
  background: var(--signal-soft); border: 1px solid rgba(138, 82, 0, .25);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat .icon.ember { background: var(--ember-soft); border-color: rgba(193, 74, 43, .25); }
.feat h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; margin: 0 0 8px; letter-spacing: -0.01em; }
.feat p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.feat p .dv { color: var(--ink); }

/* STORY */
.story {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-sheet); padding: 68px 56px;
  position: relative; overflow: hidden;
}
.story h2 { color: var(--paper); }
.story p { font-size: 18px; line-height: 1.6; color: rgba(239, 235, 224, .74); max-width: 600px; margin: 0 0 18px; }
.story p strong { color: var(--paper); font-weight: 600; }
.story p .dv, .story h2 .dv { color: var(--signal); }
.story .accent-note {
  position: absolute; top: 30px; right: 44px;
  font-family: var(--font-hand); font-size: 26px; color: var(--signal); transform: rotate(-4deg);
}
.story .sanskrit {
  font-family: 'Tiro Devanagari Hindi', serif; font-size: 22px; color: var(--signal);
  margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(239, 235, 224, .16); line-height: 1.5;
}
.gloss { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; max-width: 620px; }
.gloss .g {
  background: var(--dark-bg-2); border: 1px solid var(--dark-line);
  border-radius: var(--r-md); padding: 16px 18px;
}
.gloss .g .t { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--paper); }
.gloss .g .t .dv { color: var(--signal); font-size: 16px; margin-left: 6px; }
.gloss .g .d { font-size: 13px; color: rgba(239, 235, 224, .6); margin-top: 4px; }
@media (max-width: 700px) {
  .story { padding: 48px 26px; }
  .story .accent-note { display: none; }
  .gloss { grid-template-columns: 1fr; }
}

/* PROCESS */
.craft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; margin-bottom: 20px; }
@media (max-width: 880px) { .craft-grid { grid-template-columns: 1fr; } }
.craft-video {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--ink-line);
  box-shadow: var(--shadow-2); position: relative; min-height: 300px; background: var(--dark-bg);
}
.craft-video video, .craft-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.craft-video .vtag {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em;
  background: rgba(20,19,15,.72); color: var(--dark-ink); padding: 6px 11px; border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.craft-grid .steps { grid-template-columns: 1fr 1fr; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps, .craft-grid .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: 24px; position: relative;
}
.step .sn { font-family: var(--font-poster); font-size: 40px; color: var(--signal-deep); line-height: .8; }
.step h4 { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin: 16px 0 8px; letter-spacing: -.01em; }
.step h4 .dv { color: var(--signal-deep); }
.step p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.step .tline { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-top: 14px; }

/* DOSAGE */
.who { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .who { grid-template-columns: 1fr; } }
.who-card {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.who-card .tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--signal-deep); }
.who-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 23px; letter-spacing: -.01em; margin: 0; }
.who-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; flex: 1; }
.who-card .dose { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--ink-line); }
.who-card .dose .spoons { display: flex; gap: 5px; }
.who-card .dose .sp { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-line-strong); }
.who-card .dose .sp.on { background: var(--signal-deep); }
.who-card .dose .lbl { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); }

/* INGREDIENTS */
.ings { display: grid; grid-template-columns: repeat(auto-fill, minmax(142px, 1fr)); gap: 10px; }
.ing {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-md); padding: 14px 14px 16px;
  transition: background var(--dur-base) var(--ease);
}
.ing:hover { background: var(--signal-soft); border-color: rgba(138, 82, 0, .25); }
.ing .dv { font-size: 21px; color: var(--signal-deep); line-height: 1; }
.ing .nm { font-family: var(--font-display); font-weight: 500; font-size: 15px; margin-top: 8px; letter-spacing: -.01em; line-height: 1.1; }
.ing .fn { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-top: 6px; }
.ing .icglyph {
  display: block; width: 26px; height: 26px;
  color: var(--ink-2); margin-bottom: 8px;
  transition: transform var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}
.ing:hover .icglyph { color: var(--signal-deep); transform: rotate(-8deg) scale(1.12); }
.eyebrow .ebnut { width: 16px; height: 16px; color: var(--signal-deep); }

/* SCIENCE ACCORDION */
.sci { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
.sci details {
  background: var(--paper); border: 1px solid var(--ink-line); border-radius: var(--r-lg);
  overflow: hidden;
}
.sci summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sci summary::-webkit-details-marker { display: none; }
.sci summary .ttl { font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: -.01em; }
.sci summary .ttl .dv { color: var(--signal-deep); font-size: 17px; margin-left: 6px; }
.sci summary .mk { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); flex: none; }
.sci details[open] summary .mk { color: var(--signal-deep); }
.sci .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 24px 22px; }
@media (max-width: 640px) { .sci .cols { grid-template-columns: 1fr; } }
.sci .col { border-radius: var(--r-md); padding: 14px 16px; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.sci .col.trad { background: var(--signal-soft); }
.sci .col.scnc { background: var(--paper-2); }
.sci .col .lab { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--signal-deep); margin-bottom: 6px; }

/* JARS */
.jars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .jars { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.plan {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.plan:hover { transform: translateY(-4px); border-color: var(--ink-line-strong); }
.plan.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.plan .ph { aspect-ratio: 1; margin-bottom: 20px; border-radius: var(--r-md); overflow: hidden; background: var(--paper-3); }
.plan.featured .ph { background: var(--dark-bg-2); }
.plan .code { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--signal-deep); }
.plan.featured .code { color: var(--signal); }
.plan .nm { font-family: var(--font-display); font-weight: 500; font-size: 24px; letter-spacing: -.01em; margin: 6px 0 6px; }
.plan .ds { font-size: 14px; color: var(--ink-2); line-height: 1.5; min-height: 42px; }
.plan.featured .ds { color: rgba(239, 235, 224, .66); }
.plan .price { font-family: var(--font-display); font-weight: 500; font-size: 44px; letter-spacing: -.02em; line-height: 1; margin: 20px 0 4px; }
.plan .price span { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); letter-spacing: 0; }
.plan.featured .price span { color: rgba(239, 235, 224, .5); }
.plan .go { margin-top: 22px; }
.plan .go .btn-cta { width: 100%; justify-content: center; }
.plan .badge {
  align-self: flex-start; font-family: var(--font-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--signal); color: var(--ink);
  padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.shop-trust { display: flex; gap: 8px; margin-top: 26px; flex-wrap: wrap; }

/* Out of stock */
.plan.soldout { opacity: .82; }
.plan.soldout .ph { filter: grayscale(.5) brightness(.97); }
.plan.soldout .price { color: var(--ink-3); }
.badge.soldout-badge {
  align-self: flex-start; font-family: var(--font-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--ink-wash); color: var(--ink-3);
  border: 1px solid var(--ink-line); padding: 5px 11px;
  border-radius: var(--r-pill); margin-bottom: 16px;
}
.btn-cta.disabled {
  background: var(--ink-wash); color: var(--ink-3);
  border: 1px solid var(--ink-line); cursor: not-allowed;
  pointer-events: none; box-shadow: none;
}

/* GIFTS */
.gifts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .gifts { grid-template-columns: 1fr; } }
.gift {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.gift:hover { transform: translateY(-4px); border-color: var(--ink-line-strong); }
.gift .ph { aspect-ratio: 16/8; position: relative; background: var(--paper-3); }
.gift .ph .badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em;
  background: var(--signal); color: var(--ink); padding: 5px 11px; border-radius: var(--r-pill);
}
.gift .bd { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.gift .tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--signal-deep); }
.gift h4 { font-family: var(--font-display); font-weight: 500; font-size: 25px; letter-spacing: -.01em; margin: 8px 0 8px; }
.gift > .bd > p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0 0 16px; }
.gift ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 7px; }
.gift ul li { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .03em; color: var(--ink-3); }
.gift .row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--ink-line); }
.gift .pr .a { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1; }
.gift .pr .l { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); }

/* MAKER */
.maker-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.maker-wrap .ph { aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow-3); overflow: hidden; }
.maker-stats { display: flex; gap: 36px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--ink-line); flex-wrap: wrap; }
.maker-stats .v { font-family: var(--font-display); font-weight: 500; font-size: 30px; letter-spacing: -.02em; }
.maker-stats .v .accent { color: var(--signal-deep); }
.maker-stats .k { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); }
.maker-cred { margin-top: 26px; }
.maker-cred .nm { font-family: var(--font-display); font-weight: 500; font-size: 22px; }
.maker-cred .lo { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); margin-top: 3px; }
@media (max-width: 860px) {
  .maker-wrap { grid-template-columns: 1fr; }
  .maker-wrap .ph { order: -1; max-width: 380px; }
}

/* HERITAGE */
.heritage {
  background: var(--ember); color: #FBEFE9;
  border-radius: var(--r-sheet); padding: 64px 56px;
  position: relative; overflow: hidden;
}
.heritage::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--signal);
}
.heritage h2 { color: #FFF4EE; }
.heritage h2 .accent { color: var(--signal); }
.heritage p { color: rgba(251, 239, 233, .85); font-size: 17px; line-height: 1.6; max-width: 540px; }
.heritage .hwrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.heritage .dvbig { font-family: 'Tiro Devanagari Hindi', serif; font-size: clamp(56px, 9vw, 104px); color: var(--signal); line-height: .88; text-align: right; }
.heritage .accent-note { font-family: var(--font-hand); font-size: 24px; color: var(--signal); transform: rotate(-3deg); display: inline-block; margin-top: 18px; }
@media (max-width: 780px) {
  .heritage { padding: 44px 26px; }
  .heritage .hwrap { grid-template-columns: 1fr; }
  .heritage .dvbig { text-align: left; }
}

/* REVIEWS */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { color: var(--signal-deep); letter-spacing: 2px; font-size: 14px; }
.review .q { font-family: var(--font-display); font-weight: 500; font-size: 20px; line-height: 1.3; letter-spacing: -.01em; }
.review .who-row { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review .who-row .av { width: 34px; height: 34px; border-radius: 50%; background: var(--signal-soft); border: 1px solid rgba(138, 82, 0, .25); }
.review .who-row .nm { font-size: 13.5px; font-weight: 600; }
.review .who-row .h { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.press { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--ink-line); }
.press .pl { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.press .pn { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink-2); }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .faq-wrap { grid-template-columns: 1fr; gap: 24px; } }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--paper); border: 1px solid var(--ink-line);
  border-radius: var(--r-lg); overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: -.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .mk { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); flex: none; }
.faq-list details[open] summary .mk { color: var(--signal-deep); }
.faq-list details p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 0; padding: 0 24px 22px; max-width: 60ch; }

/* FINAL CTA */
.cta-sheet {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-sheet); padding: 68px 56px;
  position: relative; overflow: hidden;
}
.cta-sheet h2 { color: var(--paper); }
.cta-sheet .sec-lead { color: rgba(239,235,224,.7); }
.cta-sheet .accent-note {
  position: absolute; top: 30px; right: 44px;
  font-family: var(--font-hand); font-size: 26px; color: var(--signal); transform: rotate(-4deg);
}
.cta-sheet .row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.cta-sheet .micro { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(239,235,224,.14); }
.cta-sheet .micro span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(239,235,224,.55); }
@media (max-width: 700px) {
  .cta-sheet { padding: 48px 26px; }
  .cta-sheet .accent-note { display: none; }
}

/* NEWSLETTER */
.news {
  background: var(--signal-soft); border: 1px solid rgba(138, 82, 0, .22);
  border-radius: var(--r-sheet); padding: 56px; text-align: center;
}
.news h2 { margin-bottom: 10px; }
.news p { font-size: 16px; color: var(--ink-2); max-width: 440px; margin: 0 auto 26px; }
.news form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.news .input { background: var(--paper-bleach); }
.news .fine { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 14px; }
@media (max-width: 560px) {
  .news { padding: 40px 24px; }
  .news form { flex-direction: column; }
}

/* FOOTER */
.footer { padding: 64px 0 44px; border-top: 1px solid var(--ink-line); position: relative; z-index: 2; }
.f-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.f-brand .wm { font-family: var(--font-poster); font-size: 38px; line-height: .8; }
.f-brand .dv { color: var(--signal-deep); font-size: 20px; margin-left: 6px; }
.f-brand p { font-size: 14.5px; color: var(--ink-2); max-width: 30ch; margin-top: 14px; line-height: 1.5; }
.footer h5 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin: 0 0 16px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { color: var(--ink-2); text-decoration: none; font-size: 14px; }
.footer ul a:hover { color: var(--ink); }
.f-bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--ink-line); }
.f-bot .cp { font-size: 13px; color: var(--ink-3); }
.f-bot .hand { font-size: 17px; transform: rotate(-2deg); display: inline-block; }
@media (max-width: 820px) { .f-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .f-top { grid-template-columns: 1fr; } }

/* MOBILE HARDENING */
@media (max-width: 600px) {
  .section { padding: 62px 0; }
  .sec-head { margin-bottom: 34px; }
  .hero { padding-top: 40px; padding-bottom: 28px; }
  .hero-h { font-size: clamp(38px, 11.5vw, 58px); }
  .hero-sub { font-size: 16.5px; margin-top: 22px; }
  .hero-row { margin-top: 28px; }
  .logo img { height: 70px; }
  .logo .wm { font-size: 27px; }
  .logo .dv { display: none; }
  .jar-card { transform: none; padding: 14px; }
  .price-bubble { width: 70px; height: 70px; left: auto; right: -6px; bottom: -10px; }
  .price-bubble .a { font-size: 22px; }
  .story .sanskrit { font-size: 18px; }
  .maker-stats { gap: 22px; }
  .ings { grid-template-columns: repeat(auto-fill, minmax(46%, 1fr)); }
  .gift .bd { padding: 22px; }
  .reviews .review { padding: 24px; }
}
@media (max-width: 380px) {
  .hero-h { font-size: 36px; }
  .btn-cta.sm { padding: 0 14px; }
  .news { padding: 34px 20px; }
}
