/* ============================================================
   DEWORVA 2.0 — cinematic scroll-story brand experience
   ------------------------------------------------------------
   CONTENTS
   1. Design tokens
   2. Reset & base
   3. Typography
   4. Layout utilities
   5. Buttons
   6. Header & navigation (+ mobile drawer)
   7. Story progress rail
   8. Reveal-on-scroll utilities
   9. Hero — cinematic product reveal
   10. Statement transition ("It starts with nature")
   11. Ingredients journey (pinned scrub stage)
   12. Process (pinned scrub stage)
   13. Story timeline
   14. Routine / How to use
   15. Finale product showcase
   16. Trust band
   17. FAQ accordion
   18. Wholesale
   19. Contact
   20. Policies
   21. Footer
   22. Responsive
   23. Reduced motion & no-JS fallbacks
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  --cream: #faf5ea;
  --cream-deep: #f3ead6;
  --pine: #1d4a34;
  --pine-deep: #0e2c20;
  --pine-ink: #122b21;
  --gold: #c2912f;
  --gold-soft: #e8cf8f;
  --clay: #b4552d;
  --ink: #1f2723;
  --ink-soft: #5a645e;
  --line: rgba(29, 74, 52, 0.16);
  --white: #fffdf8;
  --shadow: 0 30px 60px -20px rgba(14, 44, 32, 0.28);
  --shadow-soft: 0 16px 40px -18px rgba(14, 44, 32, 0.22);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-cine: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--pine); color: var(--cream); }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--pine-deep); color: var(--cream);
  padding: 0.7rem 1.2rem; border-radius: 0 0 10px 10px;
  transition: top 0.25s var(--ease-out); text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  color: var(--pine-ink);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 7.2vw, 5.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 600; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 2.4rem; height: 1px; background: var(--clay); opacity: 0.7;
}
.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-soft); max-width: 34rem; }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .lead { margin-top: 1.1rem; }

/* ---------- 4. Layout utilities ---------- */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.dark { background: var(--pine-deep); color: #eef3ea; }
.dark h1, .dark h2, .dark h3 { color: var(--cream); }
.dark .lead { color: rgba(238, 243, 234, 0.72); }
.dark .eyebrow { color: var(--gold-soft); }
.dark .eyebrow::before { background: var(--gold-soft); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1.05rem 2.2rem; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background 0.35s var(--ease-out), color 0.35s var(--ease-out);
  will-change: transform;
}
.btn-primary { background: var(--pine-deep); color: var(--cream); box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow); background: var(--pine); }
.btn-ghost { border-color: var(--pine); color: var(--pine-deep); background: transparent; }
.btn-ghost:hover { transform: translateY(-3px); background: rgba(29, 74, 52, 0.07); }
.btn-light { background: var(--cream); color: var(--pine-deep); }
.btn-light:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.45); }
.btn-outline-light { border-color: rgba(250, 245, 234, 0.5); color: var(--cream); }
.btn-outline-light:hover { transform: translateY(-3px); border-color: var(--cream); background: rgba(250, 245, 234, 0.08); }

/* ---------- 6. Header & navigation ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
              height 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}
.site-header.scrolled {
  --header-h: 62px;
  background: rgba(250, 245, 234, 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 32px -18px rgba(14, 44, 32, 0.25);
}
.header-inner {
  width: min(1320px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--pine-deep); color: var(--gold-soft);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  transition: transform 0.4s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(-10deg) scale(1.06); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.22em; color: var(--pine-deep); }
.main-nav { display: flex; align-items: center; gap: 0.2rem; }
.main-nav a {
  position: relative; text-decoration: none; font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink-soft); padding: 0.6rem 0.8rem;
  transition: color 0.3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.35rem; height: 2px;
  background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a:hover { color: var(--pine-deep); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--pine-deep); }
.header-cta { margin-left: 0.6rem; padding: 0.8rem 1.6rem; font-size: 0.82rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.6rem;
  color: var(--pine-deep);
}
.nav-toggle svg { width: 30px; height: 30px; }
/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 120; pointer-events: none;
}
.drawer-scrim {
  position: absolute; inset: 0; background: rgba(14, 44, 32, 0.45);
  opacity: 0; transition: opacity 0.4s var(--ease-out);
}
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 86vw);
  background: var(--cream); padding: 1.2rem 1.6rem 2rem;
  transform: translateX(102%); transition: transform 0.5s var(--ease-cine);
  display: flex; flex-direction: column; gap: 0.2rem; overflow-y: auto;
  box-shadow: -20px 0 60px rgba(14, 44, 32, 0.25);
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { align-self: flex-end; background: none; border: 0; font-size: 1.8rem; cursor: pointer; color: var(--pine-deep); padding: 0.4rem; }
.drawer nav { display: flex; flex-direction: column; margin-top: 0.6rem; }
.drawer nav a {
  text-decoration: none; font-family: var(--font-display); font-size: 1.5rem;
  color: var(--pine-deep); padding: 0.7rem 0; border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 1.6rem; }

/* ---------- 7. Story progress rail ---------- */
.progress-rail {
  position: fixed; right: clamp(0.7rem, 2vw, 1.6rem); top: 50%; z-index: 90;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.rail-item {
  display: flex; align-items: center; gap: 0.6rem; flex-direction: row-reverse;
  text-decoration: none;
}
.rail-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0; transform: translateX(6px);
  transition: opacity 0.3s, transform 0.3s; white-space: nowrap;
}
.rail-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--pine); background: transparent;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.rail-item:hover .rail-label, .rail-item.active .rail-label { opacity: 1; transform: translateX(0); }
.rail-item.active .rail-dot { background: var(--pine); transform: scale(1.35); box-shadow: 0 0 0 5px rgba(29, 74, 52, 0.14); }
.rail-item:hover .rail-dot { transform: scale(1.2); }

/* ---------- 8. Reveal-on-scroll utilities ----------
   Elements are VISIBLE by default. JS adds .armed (initial hidden state)
   only when animation is available, so content never hides without JS. */
.will-reveal.armed { opacity: 0; transform: translateY(36px); }
.will-reveal.armed.in {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.will-reveal.armed[data-delay="1"].in { transition-delay: 0.12s; }
.will-reveal.armed[data-delay="2"].in { transition-delay: 0.24s; }
.will-reveal.armed[data-delay="3"].in { transition-delay: 0.36s; }

/* ---------- 9. Hero — cinematic product reveal ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  background:
    radial-gradient(900px 480px at 85% 12%, rgba(194, 145, 47, 0.14), transparent 60%),
    radial-gradient(760px 520px at 8% 88%, rgba(47, 107, 78, 0.12), transparent 60%),
    var(--cream);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero-inner {
  position: relative; z-index: 1;
  width: min(1320px, 94vw); margin-inline: auto;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 1.6rem; }
.hero-copy h1 { margin-bottom: 1.6rem; }
.hero-copy h1 em { font-style: italic; color: var(--pine); font-weight: 500; }
.hero-copy .lead { margin-bottom: 2.4rem; }
.hero-copy .lead strong { color: var(--pine-deep); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }
.hero-proof { display: flex; gap: clamp(1.4rem, 3vw, 2.6rem); list-style: none; }
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof .num { font-family: var(--font-display); font-size: 1.65rem; color: var(--pine-deep); font-weight: 600; }
.hero-proof .lbl { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.02em; }
/* Product stage */
.product-stage { position: relative; display: grid; place-items: center; perspective: 1200px; }
.product-glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 207, 143, 0.5), transparent 65%);
  filter: blur(10px); z-index: 0;
}
.product-frame {
  position: relative; z-index: 1; width: min(100%, 520px);
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform-style: preserve-3d;
  will-change: transform;
}
.product-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.product-chip {
  position: absolute; z-index: 2;
  background: rgba(255, 253, 248, 0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.6rem 1.15rem; font-size: 0.8rem; font-weight: 700; color: var(--pine-deep);
  box-shadow: var(--shadow-soft); white-space: nowrap;
}
.chip-a { top: 7%; left: -2%; }
.chip-b { bottom: 9%; right: -3%; }
.scroll-cue {
  position: absolute; z-index: 2; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  color: var(--pine-deep); font-size: 1.3rem; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  opacity: 0.75;
}
.scroll-cue small { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; }

/* ---------- 10. Statement transition ---------- */
.statement {
  position: relative; overflow: hidden;
  min-height: 88svh; display: grid; place-items: center; text-align: center;
  color: var(--cream); isolation: isolate;
}
.statement-bg { position: absolute; inset: -12% 0; z-index: 0; }
.statement-bg img { width: 100%; height: 100%; object-fit: cover; }
.statement::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14, 44, 32, 0.62), rgba(14, 44, 32, 0.38) 55%, rgba(14, 44, 32, 0.66));
}
.statement-inner { position: relative; z-index: 2; width: min(900px, 90vw); }
.statement h2 { color: var(--cream); font-size: clamp(2.6rem, 7vw, 5.2rem); margin: 1.2rem 0 1.6rem; }
.statement p { color: rgba(250, 245, 234, 0.82); font-size: clamp(1rem, 1.8vw, 1.25rem); max-width: 36rem; margin-inline: auto; }
.statement .eyebrow { color: var(--gold-soft); justify-content: center; }
.statement .eyebrow::before { background: var(--gold-soft); }

/* ---------- 11. Ingredients journey (pinned scrub stage) ---------- */
.ingredients { background: var(--pine-deep); color: #eef3ea; overflow: hidden; }
.ingredients .eyebrow { color: var(--gold-soft); }
.ingredients .eyebrow::before { background: var(--gold-soft); }
.ingredients h2, .ingredients h3 { color: var(--cream); }
.stage-pin { position: relative; }
.stage-viewport {
  position: relative; height: 100svh; min-height: 640px; overflow: hidden;
  display: grid; place-items: center;
}
.stage-heading {
  position: absolute; top: clamp(4.6rem, 9vh, 6.4rem); left: 50%; transform: translateX(-50%);
  z-index: 5; width: min(1200px, 92vw); pointer-events: none;
}
.stage-heading.center { text-align: center; }
.stage-heading .eyebrow { margin-bottom: 0.8rem; }
.stage-heading h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.ing-panel {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; align-content: center;
  width: min(1200px, 92vw); margin-inline: auto;
  padding-top: clamp(7rem, 15vh, 10rem); padding-bottom: 3.5rem;
  visibility: hidden; opacity: 0;
  will-change: transform, opacity;
}
.ing-panel.first { visibility: visible; opacity: 1; }
.ing-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55); }
.ing-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transform: scale(1.12); will-change: transform; }
.ing-num {
  font-family: var(--font-display); font-size: clamp(4rem, 9vw, 7rem); font-style: italic;
  color: transparent; -webkit-text-stroke: 1px rgba(232, 207, 143, 0.55);
  line-height: 1; margin-bottom: 1rem;
}
.ing-copy h3 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; }
.ing-copy p { color: rgba(238, 243, 234, 0.75); max-width: 26rem; font-size: 1.05rem; }
.ing-progress {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 5;
}
.ing-progress span {
  width: 2.6rem; height: 3px; border-radius: 3px; background: rgba(250, 245, 234, 0.22);
  overflow: hidden; position: relative;
}
.ing-progress span i {
  position: absolute; inset: 0; background: var(--gold-soft);
  transform: scaleX(0); transform-origin: left;
}
/* Mobile/static fallback: stacked cards */
.ing-static { display: none; }
.static-mode .stage-viewport, .no-pin .stage-viewport { display: none; }
.static-mode .ing-static, .no-pin .ing-static { display: grid; gap: 2.5rem; margin-top: 3rem; }
.ing-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.6rem; align-items: center;
  background: rgba(250, 245, 234, 0.05); border: 1px solid rgba(250, 245, 234, 0.12);
  border-radius: var(--radius); padding: 1.2rem;
}
.ing-card .ing-media img { aspect-ratio: 1; }
.ing-card h3 { font-size: 1.5rem; margin: 0.3rem 0 0.5rem; }
.ing-card .ing-num { font-size: 2.6rem; margin: 0; }

/* ---------- 12. Process (pinned scrub stage) ---------- */
.process { background: var(--cream); overflow: hidden; }
.process-viewport { position: relative; height: 100svh; min-height: 660px; overflow: hidden; }
.process-bg {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
  padding-top: clamp(15rem, 30vh, 19rem); padding-bottom: clamp(11rem, 22vh, 14rem);
}
.process-bg img {
  width: min(760px, 90vw); aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
  will-change: transform, opacity, filter;
}
.process-bg picture { position: relative; width: min(760px, 90vw); }
.process-bg picture img { width: 100%; }
.process-step {
  position: absolute; inset: 0; display: grid;
  align-items: end; justify-items: center;
  padding-bottom: clamp(5rem, 11vh, 7rem);
  visibility: hidden; opacity: 0; will-change: transform, opacity;
}
.process-step.first { visibility: visible; opacity: 1; }
.process-card {
  text-align: center; max-width: 40rem; padding: 0 1.5rem;
  background: rgba(250, 245, 234, 0.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2.8rem; box-shadow: var(--shadow-soft);
}
.process-card .step-no {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 0.9rem;
}
.process-card h3 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 0.8rem; }
.process-card p { color: var(--ink-soft); }
.process-hud {
  position: absolute; z-index: 6; left: 50%; bottom: 2rem; transform: translateX(-50%);
  width: min(420px, 80vw); text-align: center;
}
.process-count { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--pine-deep); margin-bottom: 0.6rem; }
.process-bar { height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.process-bar i { display: block; height: 100%; width: 100%; background: var(--pine); transform: scaleX(0); transform-origin: left; }
.process-static { display: none; }
.static-mode .process-viewport, .no-pin .process-viewport { display: none; }
.static-mode .process-static, .no-pin .process-static { display: grid; gap: 1.6rem; margin-top: 3rem; }
.step-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 1.4rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.4rem 1rem 1rem; box-shadow: var(--shadow-soft);
}
.step-row img { width: 120px; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }
.step-row .step-no { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; color: var(--clay); }
.step-row h3 { font-size: 1.3rem; margin: 0.2rem 0 0.35rem; }
.step-row p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- 13. Story timeline ---------- */
.story { background: var(--cream-deep); }
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2.2rem; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 0.6rem; bottom: 0.6rem; width: 2px;
  background: var(--line); border-radius: 2px;
}
.timeline-fill {
  position: absolute; left: 7px; top: 0.6rem; width: 2px; border-radius: 2px;
  background: var(--gold); height: 100%;
  transform: scaleY(0); transform-origin: top;
}
.timeline-item { position: relative; padding: 0 0 3rem 1.6rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.2rem; top: 0.35rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--cream-deep); border: 2px solid var(--gold);
  transition: background 0.4s, box-shadow 0.4s;
}
.timeline-item.lit::before { background: var(--gold); box-shadow: 0 0 0 6px rgba(194, 145, 47, 0.18); }
.timeline-kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.5rem; }
.timeline-item h3 { margin-bottom: 0.6rem; }
.timeline-item p { color: var(--ink-soft); max-width: 38rem; }
.placeholder-note {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--clay); background: rgba(180, 85, 45, 0.09);
  border: 1px dashed rgba(180, 85, 45, 0.5); border-radius: 8px; padding: 0.45rem 0.8rem;
}

/* ---------- 14. Routine / How to use ---------- */
.routine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 1rem; }
.routine-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem; box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  position: relative; overflow: hidden;
}
.routine-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.routine-card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--clay));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out);
}
.routine-card:hover::after { transform: scaleX(1); }
.routine-step { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--gold); margin-bottom: 0.8rem; }
.routine-card h3 { margin-bottom: 0.7rem; }
.routine-card p { color: var(--ink-soft); font-size: 0.98rem; }
.routine-note { margin-top: 2.2rem; color: var(--ink-soft); font-size: 0.92rem; max-width: 44rem; }

/* ---------- 15. Finale product showcase ---------- */
.finale {
  background: radial-gradient(1000px 600px at 50% 0%, rgba(194, 145, 47, 0.16), transparent 60%), var(--pine-deep);
  color: #eef3ea; text-align: center; overflow: hidden;
}
.finale h2 { color: var(--cream); font-size: clamp(2.6rem, 7vw, 5rem); }
.finale .finale-sub { letter-spacing: 0.34em; text-transform: uppercase; font-size: 0.75rem; font-weight: 700; color: var(--gold-soft); margin: 1.2rem 0 2.6rem; }
.finale-stage { position: relative; display: inline-block; margin-bottom: 3rem; perspective: 1200px; }
.finale-stage img {
  width: min(560px, 86vw); aspect-ratio: 1; object-fit: cover; border-radius: 32px;
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(250, 245, 234, 0.16);
  will-change: transform;
}
.finale-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.finale-facts { display: flex; gap: 2.6rem; justify-content: center; flex-wrap: wrap; list-style: none; }
.finale-facts li { display: flex; flex-direction: column; gap: 0.2rem; }
.finale-facts .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-soft); }
.finale-facts .lbl { font-size: 0.82rem; color: rgba(238, 243, 234, 0.65); }

/* ---------- 16. Trust band ---------- */
.trust { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.trust-cell {
  text-decoration: none; text-align: center; padding: 1.6rem 0.6rem;
  border-radius: 16px; transition: background 0.35s, transform 0.35s var(--ease-out);
}
.trust-cell:hover { background: rgba(29, 74, 52, 0.05); transform: translateY(-4px); }
.trust-cell .t-ico { font-size: 1.5rem; display: block; margin-bottom: 0.6rem; }
.trust-cell .t-lbl { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine-deep); }

/* ---------- 17. FAQ accordion ---------- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0.2rem; text-align: left;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--pine-ink);
}
.faq-q .faq-icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--pine); color: var(--pine-deep);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 400;
  transition: transform 0.4s var(--ease-out), background 0.4s, color 0.4s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pine); color: var(--cream); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease-cine); }
.faq-a p { padding: 0 0.2rem 1.6rem; color: var(--ink-soft); max-width: 44rem; }
.faq-a p strong { color: var(--pine-deep); }

/* ---------- 18. Wholesale ---------- */
.wholesale { background: var(--pine-deep); color: #eef3ea; }
.wholesale h2 { color: var(--cream); }
.wholesale .lead { color: rgba(238, 243, 234, 0.72); }
.wholesale-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.wholesale-form {
  background: rgba(250, 245, 234, 0.05); border: 1px solid rgba(250, 245, 234, 0.14);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid; gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--cream);
  background: rgba(250, 245, 234, 0.07); border: 1px solid rgba(250, 245, 234, 0.2);
  border-radius: 12px; padding: 0.85rem 1rem; width: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-soft); background: rgba(250, 245, 234, 0.1);
}
.field select option { color: var(--ink); }
.form-note { font-size: 0.85rem; color: rgba(238, 243, 234, 0.6); }
/* Wholesale form validation + fallback (dark section) */
section[id] { scroll-margin-top: 96px; }
.field-error { color: #ff9a86; font-size: 0.85rem; margin: 0.35rem 0 0; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff9a86; }
.form-success {
  margin-top: 1.2rem; padding: 1.4rem;
  background: rgba(250, 245, 234, 0.06); border: 1px solid rgba(250, 245, 234, 0.18);
  border-radius: 16px;
}
.form-success h3 { color: var(--cream); margin: 0 0 0.5rem; font-size: 1.15rem; }
.form-success p { color: rgba(238, 243, 234, 0.75); font-size: 0.92rem; margin: 0; }
.form-success p a { color: var(--gold-soft); }
.form-success textarea {
  width: 100%; margin: 0.9rem 0; font: inherit; font-size: 0.85rem; color: var(--cream);
  background: rgba(250, 245, 234, 0.07); border: 1px solid rgba(250, 245, 234, 0.2);
  border-radius: 12px; padding: 0.85rem 1rem; resize: vertical;
}
/* Mobile drawer: remove tap delay, smooth panel scroll on iOS */
.nav-toggle, .drawer-close { touch-action: manipulation; }
.drawer-panel { -webkit-overflow-scrolling: touch; }

/* ---------- 19. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 1rem; }
.contact-card {
  display: block; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem; box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card .c-kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.8rem; }
.contact-card .c-value { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--pine-deep); word-break: break-all; }
.contact-card .c-hint { margin-top: 0.7rem; font-size: 0.9rem; color: var(--ink-soft); }
.social-row { display: flex; gap: 1rem; margin-top: 2.4rem; }
.social-row a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--pine-deep);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.7rem 1.4rem;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.social-row a:hover { background: rgba(29, 74, 52, 0.06); transform: translateY(-3px); }

/* ---------- 20. Policies ---------- */
.policies-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.policy-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem 1.5rem; }
.policy-card h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.policy-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- 21. Footer ---------- */
.site-footer { background: var(--pine-ink); color: rgba(238, 243, 234, 0.75); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { font-size: 0.92rem; margin-top: 1rem; max-width: 24rem; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-nav h4 { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.footer-nav ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-nav a { text-decoration: none; font-size: 0.92rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(250, 245, 234, 0.14); padding-top: 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(238, 243, 234, 0.5);
}

/* ---------- 22. Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .progress-rail { display: none; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero { padding-top: calc(var(--header-h) + 1rem); }
  .product-stage { order: -1; }
  .product-frame { width: min(100%, 420px); }
  .chip-a { left: 2%; } .chip-b { right: 2%; }
  .hero-proof { flex-wrap: wrap; gap: 1.2rem 2rem; }
  .wholesale-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .routine-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .ing-card { grid-template-columns: 140px 1fr; }
  .step-row { grid-template-columns: 96px 1fr; }
  .step-row img { width: 96px; }
  .scroll-cue { display: none; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .policies-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
  .process-card { padding: 1.8rem 1.4rem; }
}

/* ---------- 23. Reduced motion & no-JS fallbacks ----------
   .static-mode is added by JS when: no animation libs, reduced motion,
   or narrow/touch viewport for pinned sequences. Content is fully
   readable in every case — animation only ever enhances. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
.static-mode .will-reveal.armed { opacity: 1; transform: none; }
.static-mode .product-frame { transform: none !important; }
.no-js .will-reveal.armed { opacity: 1; transform: none; }

/* ============================================================
   24. Multipage subpages — heroes, splits, cards, CTA bands
   (shared design tokens above; same voice as the home page)
   ============================================================ */

/* ---------- subpage hero ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.page-hero h1 { margin-bottom: 1.4rem; }
.page-hero .lead { margin-bottom: 2.2rem; }
.page-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero-media { position: relative; }
.page-hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.page-hero-media figcaption {
  margin-top: 0.9rem; font-size: 0.85rem; color: var(--ink-soft); font-style: italic;
}

/* ---------- alternating image/text split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split + .split { margin-top: clamp(3.5rem, 7vw, 6rem); }
.split.flip > .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split-copy .eyebrow { margin-bottom: 1rem; }
.split-copy h2 { margin-bottom: 1.1rem; }
.split-copy p { color: var(--ink-soft); }
.split-copy p + p { margin-top: 1rem; }
.kicker-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--gold); margin-bottom: 0.6rem; display: block;
}

/* ---------- card grids ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card .routine-step { margin-bottom: 0.7rem; }
.info-card h3 { margin-bottom: 0.7rem; }
.info-card p { color: var(--ink-soft); font-size: 0.98rem; }
.info-card p + p { margin-top: 0.8rem; }

/* ---------- checklist ---------- */
.check-list { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink-soft); }
.check-list li::before {
  content: "✓"; flex: 0 0 auto; width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: rgba(29, 74, 52, 0.1); color: var(--pine);
  font-weight: 800; font-size: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 0.15rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--pine-deep); color: #eef3ea;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(232, 207, 143, 0.14), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--cream); margin-bottom: 1rem; position: relative; }
.cta-band p { color: rgba(238, 243, 234, 0.72); max-width: 36rem; margin: 0 auto 2.2rem; position: relative; }
.cta-band .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- dark content band (hosts the mailto forms) ---------- */
.dark-band { background: var(--pine-deep); color: #eef3ea; }
.dark-band h2 { color: var(--cream); }
.dark-band .lead { color: rgba(238, 243, 234, 0.72); }
.dark-band .eyebrow { color: var(--gold-soft); }
.dark-band .eyebrow::before { background: var(--gold-soft); }

/* ---------- subpage responsive ---------- */
@media (max-width: 960px) {
  .page-hero-grid, .split { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
}
