/* ================================================================
   VERORA — Identidad de marca 2026
   Botánica de hogar · Artesanía mediterránea
   Paleta: pergamino · bosque · cobre · niebla
   ================================================================ */

/* Tipografías del sistema — sin dependencias externas */

:root {
  --forest: #1e3429;
  --forest-mid: #2d4a3e;
  --forest-light: #3d5f50;
  --parchment: #f4efe4;
  --parchment-dark: #e8e0d0;
  --copper: #b87333;
  --copper-light: #d4956a;
  --mist: #faf8f4;
  --ink: #1a1814;
  --text: #3a3832;
  --text-soft: #6b6560;
  --white: #ffffff;
  --line: rgba(30, 52, 41, 0.1);
  --line-strong: rgba(30, 52, 41, 0.18);

  --serif: Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --r: 6px;
  --r-lg: 12px;
  --r-xl: 20px;
  --max: 1120px;
  --header-h: 80px;
  --gutter: clamp(20px, 4vw, 32px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--sans);
  background: var(--mist);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }

/* ── AD ── */
.ad-bar {
  background: var(--forest);
  color: rgba(244, 239, 228, 0.55);
  text-align: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* ── BRAND LOCKUP ── */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--forest);
}
.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  line-height: 1;
}
.brand-name em {
  font-style: italic;
  color: var(--copper);
  letter-spacing: 0.12em;
}
.brand-tagline {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 2px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(30, 52, 41, 0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--forest); }
.header-cta {
  background: var(--forest);
  color: var(--parchment);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.25s;
}
.header-cta:hover { background: var(--forest-mid); }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  color: var(--forest);
  font-size: 1.1rem;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 var(--gutter) 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.85rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-forest { background: var(--forest); color: var(--parchment); }
.btn-forest:hover { background: var(--forest-mid); }
.btn-copper { background: var(--copper); color: var(--white); }
.btn-copper:hover { background: var(--copper-light); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--forest); background: var(--white); }
.btn-block { width: 100%; }

/* Aliases */
.btn-lime, .btn-primary { background: var(--forest); color: var(--parchment); }
.btn-lime:hover, .btn-primary:hover { background: var(--forest-mid); }
.btn-outline { background: transparent; color: var(--forest); border: 1px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--forest); }
.btn-rust, .btn-dark { background: var(--copper); color: var(--white); }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.headline em { font-style: italic; color: var(--forest-mid); }
.headline-sm { font-size: clamp(1.65rem, 3vw, 2.15rem); }
.headline.light { color: var(--parchment); }
.headline.light em { color: var(--copper-light); }
.lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 520px;
}
.lead.light { color: rgba(244, 239, 228, 0.65); }
.divider {
  width: 48px;
  height: 1px;
  background: var(--copper);
  margin: 2rem 0;
}

/* ── HERO ── */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: min(640px, 70vw);
  height: min(640px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 74, 62, 0.05) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero .reveal,
.hero .hero-grid {
  opacity: 1;
  transform: none;
}
.hero-copy { text-align: left; min-width: 0; }
.hero-copy .lead { margin: 0 0 2rem; max-width: 34rem; }
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  justify-self: end;
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 56px rgba(30, 52, 41, 0.1);
}
.hero-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.85rem 1.1rem;
  border-radius: var(--r);
  text-align: left;
  box-shadow: 0 8px 24px rgba(30, 52, 41, 0.08);
}
.hero-badge small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.15rem;
}
.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--copper);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem clamp(1rem, 3vw, 2rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 34rem;
}
.hero-stats div { text-align: left; }
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
}
.hero-stats span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.2rem;
}

/* legacy hero aliases */
.hero-inner { position: relative; z-index: 1; }

/* Legacy splash aliases */
.splash { padding: 5rem 0 4rem; background: var(--parchment); }
.splash-bg, .splash-grid, .smoke, .scroll-hint, .splash-float.f3 { display: none; }
.splash-left, .splash-right { all: unset; display: block; }
.splash { display: block; text-align: center; min-height: auto; padding-top: 3rem; }
.splash-left { position: relative; z-index: 1; padding: 0 24px; }
.splash-right { padding: 0 24px 2rem; background: transparent; }
.splash-tag { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; display: inline-block; }
.splash h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.15; color: var(--ink); margin-bottom: 1.25rem; }
.splash h1 span { display: block; font-style: italic; color: var(--forest-mid); }
.splash-lead { font-size: 1rem; font-weight: 300; color: var(--text-soft); max-width: 520px; margin: 0 auto 2rem; line-height: 1.8; }
.splash-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.splash-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.splash-stats div strong { font-family: var(--serif); font-size: 1.5rem; color: var(--forest); display: block; }
.splash-stats div span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); }
.splash-visual { max-width: 360px; margin: 2rem auto 0; position: relative; }
.splash-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 32px 64px rgba(30,52,41,.1); aspect-ratio: 3/4; }
.splash-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.splash-float { position: absolute; background: var(--white); border: 1px solid var(--line); padding: 0.5rem 0.85rem; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); border-radius: var(--r); }
.splash-float.f1 { top: 8%; left: -5%; }
.splash-float.f2 { bottom: 15%; right: -5%; }
.splash-discount { position: absolute; bottom: -10px; right: -10px; background: var(--forest); color: var(--parchment); padding: 0.85rem 1rem; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--r); }
.splash-discount b { font-family: var(--serif); font-size: 1.3rem; display: block; color: var(--copper-light); letter-spacing: 0; text-transform: none; font-weight: 400; }

/* ── MANIFESTO STRIP ── */
.manifesto {
  background: var(--forest);
  color: var(--parchment);
  padding: 3rem 0;
}
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  max-width: 680px;
  line-height: 1.65;
  color: rgba(244, 239, 228, 0.85);
  text-align: left;
}

/* Marquee → manifesto ticker */
.marquee-section { background: var(--forest-mid); padding: 0.85rem 0; overflow: hidden; }
.marquee-section.dark { background: var(--forest); }
.marquee-track { display: flex; gap: 4rem; animation: tick 35s linear infinite; width: max-content; }
.marquee-track span { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; white-space: nowrap; color: rgba(244,239,228,.35); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: clamp(3.5rem, 7vw, 5rem) 0; }
.section-header { margin-bottom: 2.5rem; max-width: 560px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .lead { margin-left: auto; margin-right: auto; }

/* ── PHILOSOPHY ── */
.philosophy { background: var(--white); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.philosophy-list { list-style: none; display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.philosophy-list li {
  padding-left: 1.25rem;
  border-left: 2px solid var(--copper);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.65;
}
.philosophy-list strong { display: block; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; font-size: 0.95rem; }
.philosophy-image { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 24px 48px rgba(30,52,41,.08); }
.philosophy-image img { width: 100%; height: 100%; object-fit: cover; }

/* Timeline / ritual */
.timeline-section, .ritual { background: var(--mist); padding: 5rem 0; }
.timeline-header { margin-bottom: 3rem; max-width: 520px; }
.timeline, .ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.timeline::before { display: none; }
.tl-step, .ritual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: left;
}
.tl-num, .ritual-card::before {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--copper);
  margin-bottom: 1rem;
  display: block;
  width: auto; height: auto;
  border: none; background: none;
  border-radius: 0;
}
.tl-step h3, .ritual-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.tl-step p, .ritual-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-soft); line-height: 1.65; }
.ritual-grid { counter-reset: step; }
.ritual-card::before { counter-increment: step; content: "0" counter(step); }
.ritual-card .rc-icon { display: none; }

/* Threat */
.threat-section, .problem { background: var(--parchment); padding: 5rem 0; }
.threat-grid, .problem-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.threat-cards, .problem-list { display: grid; gap: 0.85rem; }
.threat-cards { grid-template-columns: 1fr 1fr; }
.threat-card, .problem-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.problem-list { list-style: none; }
.problem-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.problem-list .x { color: var(--copper); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; }
.threat-card.wide, .problem-aside {
  grid-column: span 2;
  background: var(--forest);
  color: var(--parchment);
  border-color: transparent;
}
.threat-card h4, .problem-aside h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.threat-card p { font-size: 0.85rem; font-weight: 300; color: var(--text-soft); line-height: 1.6; }
.threat-card.wide h4 { color: var(--copper-light); }
.threat-card.wide p { color: rgba(244,239,228,.65); }
.problem-aside { grid-column: auto; border-radius: var(--r-xl); padding: 2.5rem; }
.problem-aside h3 { color: var(--parchment); font-size: 1.4rem; margin-bottom: 1rem; }
.problem-aside p, .problem-aside .quote { color: rgba(244,239,228,.7); font-size: 0.92rem; }
.problem-aside .quote { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: rgba(244,239,228,.9); }
.section-label, .eyebrow { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 1rem; }
.section-title.dark { color: var(--ink); }
.section-desc { color: var(--text-soft); font-weight: 300; line-height: 1.75; max-width: 480px; }
.section-desc.light { color: rgba(244,239,228,.6); }

/* Bento / shield */
.bento-section { background: var(--forest); padding: clamp(3.5rem, 7vw, 5rem) 0; color: var(--parchment); }
.bento-shield {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.bento-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.bento-cell {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem;
  min-height: 0;
}
.bc-head,
.bc-quote { width: 100%; }
.bc-quote { text-align: left; padding: 1.75rem 1.5rem; background: rgba(255,255,255,.03); }
.bento-stat-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.bento-cell h3 { font-family: var(--serif); font-size: 1.02rem; font-weight: 400; color: var(--parchment); margin-bottom: 0.35rem; line-height: 1.3; }
.bento-cell p { font-size: 0.82rem; font-weight: 300; color: rgba(244,239,228,.55); line-height: 1.6; margin: 0; }
.bc-stat { font-family: var(--serif); font-size: 2.2rem; color: var(--copper-light); line-height: 1; margin-bottom: 0.25rem; }
.bc-lbl { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,239,228,.4); }
.bc-quote p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: rgba(244,239,228,.8); max-width: 42rem; margin: 0; line-height: 1.55; }
.bc-quote em { color: var(--copper-light); font-style: italic; }
.bento-disclaimer { margin-top: 1.25rem; font-size: 0.68rem; font-weight: 300; color: rgba(244,239,228,.35); line-height: 1.6; padding-left: 1rem; border-left: 1px solid rgba(184,115,51,.5); }

/* legacy bento grid */
.bento { display: flex; flex-direction: column; gap: 0.85rem; }
.bc-a, .bc-b, .bc-c, .bc-d, .bc-e, .bc-f { grid-column: auto; }

/* Ingredients scroll */
.ing-scroll-section, .ingredients { background: var(--white); padding: clamp(3.5rem, 7vw, 5rem) 0; overflow: hidden; }
.ing-scroll-header { margin-bottom: 1.75rem; }
.ing-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 0.5rem;
  margin: 0 calc(var(--gutter) * -1);
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.ing-scroll::-webkit-scrollbar { display: none; }
.ing-card, .zig {
  flex: 0 0 min(300px, 82vw);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--mist);
}
.ing-card-img, .zig-media { aspect-ratio: 4/3; overflow: hidden; }
.ing-card-img img, .zig-media img { width: 100%; height: 100%; object-fit: cover; }
.ing-card-body, .zig-body { padding: 1.5rem; }
.ing-card-num, .zig-body .num { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.4rem; }
.ing-card h3, .zig-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.ing-card p, .zig-body p { font-size: 0.86rem; font-weight: 300; color: var(--text-soft); line-height: 1.65; margin-bottom: 0.85rem; }
.ing-tags, .zig-body .tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.ing-tags span, .zig-body .tags span { font-size: 0.62rem; letter-spacing: 0.06em; padding: 0.25rem 0.6rem; background: var(--parchment); color: var(--forest-mid); border-radius: var(--r); }

/* Collection / products */
.product-section, .variants { background: var(--parchment); padding: 5rem 0; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.product-tab {
  padding: 0.75rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  cursor: pointer;
  border-radius: 0;
}
.product-tab.active { color: var(--forest); border-bottom-color: var(--copper); }
.product-panel { display: none; }
.product-panel.active { display: block; }
.product-panel h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--ink); }
.product-panel p { font-weight: 300; color: var(--text-soft); line-height: 1.75; margin-bottom: 1.25rem; }
.product-features { list-style: none; display: grid; gap: 0.5rem; }
.product-features li { font-size: 0.88rem; font-weight: 300; color: var(--text); padding-left: 1rem; position: relative; }
.product-features li::before { content: '—'; position: absolute; left: 0; color: var(--copper); }
.product-visual, .variant-card .vc-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1; border: 1px solid var(--line); box-shadow: 0 20px 40px rgba(30,52,41,.07); }
.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.product-badge, .variant-card .vc-badge { position: absolute; top: 14px; left: 14px; background: var(--forest); color: var(--parchment); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r); }
.product-visual { position: relative; }

.variant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.variant-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.variant-card .vc-body { padding: 1.5rem; }
.variant-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.4rem; }
.variant-card p { font-size: 0.85rem; font-weight: 300; color: var(--text-soft); line-height: 1.6; }
.variant-card .vc-tag { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.5rem; display: block; }
.variant-card .vc-icon { display: none; }
.variant-card .vc-img { position: relative; aspect-ratio: 4/3; }

/* Compare */
.compare-section, .compare { background: var(--white); padding: 5rem 0; }
.compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.compare-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; }
.compare-card.good { background: var(--parchment); border-color: var(--line-strong); }
.compare-card.bad { opacity: 0.8; }
.compare-card .cc-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 0.85rem; }
.compare-card.bad .cc-label { color: var(--text-soft); }
.compare-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; margin-bottom: 1.25rem; color: var(--ink); }
.compare-list { list-style: none; display: grid; gap: 0.55rem; }
.compare-list li { font-size: 0.86rem; font-weight: 300; color: var(--text-soft); display: flex; gap: 0.5rem; }
.compare-list .icon-yes { color: var(--forest-mid); }
.compare-list .icon-no { color: var(--text-soft); }

/* Voices / testimonials */
.voices-section, .testi { background: var(--mist); padding: clamp(3.5rem, 7vw, 5rem) 0; overflow: hidden; }
.voices-scroll, .testi-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  margin-top: 0.25rem;
}
.voices-scroll::-webkit-scrollbar { display: none; }
.voice-card, .testi-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.voice-card .stars, .testi-card .stars { color: var(--copper); font-size: 0.65rem; letter-spacing: 3px; margin-bottom: 0.85rem; }
.voice-card blockquote, .testi-card p { font-family: var(--serif); font-style: italic; font-size: 0.98rem; line-height: 1.55; color: var(--ink); margin-bottom: 1.25rem; }
.voice-author, .testi-card .who { display: flex; align-items: center; gap: 0.65rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.voice-av, .testi-card .av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--parchment); color: var(--forest);
  display: grid; place-content: center;
  font-family: var(--serif); font-size: 0.8rem;
  border: 1px solid var(--line);
}
.voice-author b, .testi-card .who b { font-size: 0.8rem; font-weight: 500; display: block; }
.voice-author span, .testi-card .who span { font-size: 0.7rem; color: var(--text-soft); }

/* Science */
.science-section, .science { background: var(--parchment); padding: 5rem 0; }
.science-cards, .science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.sci-card, .ref-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.sci-card strong, .ref-card strong { font-family: var(--serif); font-size: 0.98rem; font-weight: 400; color: var(--ink); display: block; margin-bottom: 0.5rem; }
.sci-card p, .ref-card p { font-size: 0.85rem; font-weight: 300; color: var(--text-soft); line-height: 1.65; margin-bottom: 0.75rem; }
.sci-card a, .ref-card a { color: var(--copper); font-size: 0.75rem; letter-spacing: 0.06em; font-weight: 500; }
.sci-note, .science .fineprint { font-size: 0.68rem; font-weight: 300; color: var(--text-soft); line-height: 1.6; margin-top: 1rem; padding: 0.85rem 1rem; background: var(--white); border-left: 2px solid var(--copper); }

/* Stats */
.stats { background: var(--forest); color: var(--parchment); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stats-grid .n { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; line-height: 1; color: var(--copper-light); }
.stats-grid .l { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,239,228,.5); margin-top: 0.4rem; }

/* Order — unified checkout panel */
.order-section, .order { background: var(--parchment); padding: clamp(3.5rem, 7vw, 5rem) 0; }
.order-section .section-header { max-width: none; margin-bottom: 2rem; }

.order-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30, 52, 41, 0.06);
}
.order-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: stretch;
}
.order-form {
  padding: clamp(1.5rem, 3vw, 2rem);
  min-width: 0;
}
.order-aside {
  background: var(--forest);
  color: var(--parchment);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: calc(var(--header-h) + 16px);
  align-self: start;
  max-height: calc(100vh - var(--header-h) - 32px);
  overflow-y: auto;
}

.order-step { margin-bottom: 1.75rem; }
.order-step:last-of-type { margin-bottom: 1.25rem; }
.step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--forest); color: var(--parchment);
  display: grid; place-content: center;
  font-family: var(--serif); font-size: 0.82rem; flex-shrink: 0;
}
.step-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--ink); }

/* Kits — 3 columns in one row */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.15rem 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  background: var(--mist);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 100%;
}
.price-card:hover { border-color: var(--line-strong); background: var(--white); }
.price-card.selected {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--forest);
}
.price-card input { position: absolute; opacity: 0; pointer-events: none; }
.price-card-main { width: 100%; }
.price-card-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.price-card-title { font-weight: 500; font-size: 0.88rem; color: var(--ink); }
.price-card-desc { display: block; font-size: 0.68rem; font-weight: 300; color: var(--text-soft); line-height: 1.4; }
.price-card-prices { margin-top: auto; padding-top: 0.35rem; }
.price-card-amount {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.15;
}
.price-card-old {
  display: block;
  font-size: 0.68rem;
  color: var(--text-soft);
  text-decoration: line-through;
  margin-top: 0.1rem;
}
.radio-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--text-soft);
  position: relative; flex-shrink: 0;
  order: -1;
}
.price-card.selected .radio-dot { border-color: var(--forest); }
.price-card.selected .radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--forest);
}
.ribbon {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 3px;
  line-height: 1.3;
}
.ribbon.alt { background: var(--forest-mid); }

/* Scents — equal row */
.scent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.scent-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.scent-card:hover { border-color: var(--line-strong); }
.scent-card:has(input:checked) {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--forest);
}
.scent-card input { position: absolute; opacity: 0; pointer-events: none; }
.scent-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--parchment);
}
.scent-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.scent-card-body {
  padding: 0.65rem 0.5rem 0.75rem;
  text-align: center;
  background: var(--mist);
  border-top: 1px solid var(--line);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scent-card-body strong {
  font-family: var(--serif);
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.12rem;
  line-height: 1.25;
}
.scent-card-body p {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--copper);
  text-transform: uppercase;
  line-height: 1.3;
}
.scent-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--parchment);
  display: none;
  place-content: center;
  font-size: 0.6rem;
}
.scent-card:has(input:checked) .scent-check { display: grid; }

/* Form fields inside panel */
.order-form .form-group { margin-bottom: 0.75rem; }
.order-form .form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}
.order-form .form-control {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 0.88rem;
  background: var(--mist);
  transition: border-color 0.2s, background 0.2s;
}
.order-form .form-control:focus { outline: none; border-color: var(--forest); background: var(--white); }
.order-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.order-form .form-row-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 0.65rem; }

.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.pay-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  background: var(--mist);
  transition: border-color 0.2s, background 0.2s;
  min-height: 100%;
}
.pay-card:hover { border-color: var(--line-strong); background: var(--white); }
.pay-card:has(input:checked) { border-color: var(--forest); background: var(--white); box-shadow: inset 0 0 0 1px var(--forest); }
.pay-card input { margin-top: 0.1rem; accent-color: var(--forest); flex-shrink: 0; }
.pay-card b { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 0.08rem; }
.pay-card span { font-size: 0.7rem; font-weight: 300; color: var(--text-soft); line-height: 1.4; }
.order-submit { flex-direction: column; gap: 0.15rem; padding: 1rem; margin-top: 0.25rem; }
.order-submit small { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; font-weight: 400; }

/* Sidebar — inside same panel */
.order-aside .cart-box { background: transparent; padding: 0; box-shadow: none; border-radius: 0; }
.cart-head {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  color: var(--parchment);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.cart-photo {
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 0.85rem;
  position: relative;
}
.cart-photo img { width: 100%; height: 140px; object-fit: cover; object-position: center; display: block; }
.cart-photo-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.25rem 0.5rem;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.cart-items { display: grid; gap: 0.45rem; margin-bottom: 0.85rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.5rem 0.6rem;
  border-radius: var(--r);
}
.cart-item-thumb { width: 34px; height: 34px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.cart-item-name { font-size: 0.74rem; font-weight: 500; line-height: 1.25; }
.cart-item-qty { font-size: 0.6rem; opacity: 0.55; }
.cart-item-price { margin-left: auto; font-family: var(--serif); font-size: 0.85rem; flex-shrink: 0; }
.cart-breakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  display: grid;
  gap: 0.35rem;
}
.cart-row { display: flex; justify-content: space-between; font-size: 0.74rem; font-weight: 300; opacity: 0.8; }
.cart-strike { text-decoration: line-through; opacity: 0.5; }
.cart-highlight { color: var(--copper-light); font-weight: 500; }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}
.cart-total span:first-child { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; }
.cart-total span:last-child { font-family: var(--serif); font-size: 1.45rem; color: var(--copper-light); line-height: 1; }
.cart-trust { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.85rem; }
.cart-trust span {
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.9;
}

.order-aside .info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 1rem;
  box-shadow: none;
}
.order-aside .info-card h4 {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.order-aside .info-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
}
.order-aside .info-row:last-child { border-bottom: none; }
.order-aside .info-row strong { font-weight: 500; color: rgba(244, 239, 228, 0.85); flex-shrink: 0; }
.order-aside .info-row span { color: rgba(244, 239, 228, 0.55); text-align: right; line-height: 1.35; max-width: 55%; }
.order-aside .disclaimer-text {
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(244, 239, 228, 0.4);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.scent-err { display: none; color: var(--copper); font-size: 0.72rem; margin-top: 0.45rem; }

/* Legacy aliases */
.order-shell, .order-layout { display: contents; }
.cart { display: contents; }
.cart-box:not(.order-aside .cart-box) { background: var(--forest); color: var(--parchment); border-radius: var(--r-xl); padding: 1.5rem; }
.form-group { margin-bottom: 0.8rem; }
.form-group label { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.3rem; }
.form-control { width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--line-strong); border-radius: var(--r); font-size: 0.9rem; background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-row-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 0.8rem; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem; }
.info-card h4 { font-family: var(--serif); font-size: 0.95rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--ink); }
.info-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px solid var(--line); font-size: 0.76rem; }
.info-row:last-child { border-bottom: none; }
.info-row strong { font-weight: 500; color: var(--ink); }
.info-row span { font-weight: 300; color: var(--text-soft); text-align: right; }
.disclaimer-text { font-size: 0.65rem; font-weight: 300; color: var(--text-soft); line-height: 1.55; }

/* FAQ */
.faq-section, .faq { background: var(--mist); padding: 5rem 0; }
.faq-grid, .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 2rem; max-width: none; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.faq-item.active { border-color: var(--line-strong); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding: 1.15rem 1.25rem; text-align: left;
  font-family: var(--serif); font-size: 0.95rem; font-weight: 400; color: var(--ink); line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--line-strong); color: var(--text-soft);
  display: grid; place-content: center; font-size: 0.85rem;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--forest); color: var(--parchment); border-color: var(--forest); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s; }
.faq-answer-inner { padding: 0 1.25rem 1.15rem; font-size: 0.84rem; font-weight: 300; color: var(--text-soft); line-height: 1.65; }
.faq-item.active .faq-answer { max-height: 280px; }

/* Footer */
.site-footer, footer { background: var(--forest); color: rgba(244,239,228,.5); padding: 4rem 0 2rem; }
.footer-top, .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo, .footer-brand { font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.15em; text-transform: lowercase; color: var(--parchment); margin-bottom: 0.75rem; }
.footer-logo em, .footer-brand span { font-style: italic; color: var(--copper-light); }
.footer-desc, .footer-p { font-size: 0.84rem; font-weight: 300; line-height: 1.7; color: rgba(244,239,228,.4); }
.footer-col h4, .footer-title { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 0.85rem; font-weight: 500; }
.footer-col ul, .footer-links { list-style: none; display: grid; gap: 0.45rem; }
.footer-col a, .footer-links a { font-size: 0.8rem; font-weight: 300; color: rgba(244,239,228,.4); transition: color 0.2s; }
.footer-col a:hover, .footer-links a:hover { color: var(--parchment); }
.footer-legal, .footer-fine { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; font-size: 0.65rem; font-weight: 300; line-height: 1.65; color: rgba(244,239,228,.3); }
.footer-legal strong, .footer-fine strong { color: rgba(244,239,228,.5); font-weight: 500; }
.footer-legal p, .footer-fine p { margin-bottom: 0.5rem; }

/* FAB */
.fab-cta, .sticky-cta {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  background: var(--forest); color: var(--parchment);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 1.35rem; border-radius: var(--r); border: none;
  box-shadow: 0 8px 24px rgba(30,52,41,.2);
  transform: translateY(80px); opacity: 0; transition: transform 0.4s, opacity 0.4s, background 0.25s;
}
.fab-cta.visible, .sticky-cta.visible { transform: none; opacity: 1; }
.fab-cta:hover { background: var(--copper); }
.sticky-cta { display: flex; justify-content: center; left: 20px; background: rgba(250,248,244,.96); color: var(--forest); border: 1px solid var(--line); backdrop-filter: blur(8px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.active { opacity: 1; transform: none; }
.reveal-d1, .reveal-delay-1 { transition-delay: 0.06s; }
.reveal-d2, .reveal-delay-2 { transition-delay: 0.12s; }
.reveal-d3, .reveal-delay-3 { transition-delay: 0.18s; }

/* Legal pages */
.legal-hero {
  background: var(--forest);
  color: var(--parchment);
  padding: 4rem 0 2.5rem;
  text-align: center;
  margin-top: 0;
}
.legal-hero h1 { font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 400; color: var(--parchment); margin: 0; }
.legal-wrap {
  max-width: 680px; margin: 0 auto;
  padding: 3rem 24px 5rem;
  background: var(--mist);
}
.legal-wrap h1 { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: 1.25rem; color: var(--ink); }
.legal-wrap h2 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin: 1.75rem 0 0.65rem; color: var(--ink); }
.legal-wrap p, .legal-wrap li { font-size: 0.92rem; font-weight: 300; line-height: 1.75; color: var(--text); margin-bottom: 0.7rem; }
.legal-wrap ul { padding-left: 1.25rem; }
.legal-wrap a { color: var(--copper); font-weight: 500; }

/* Legacy nav hide on home */
body.home .site-header ~ .site-header { display: none; }
.site-nav, .menu-overlay, .ad-ribbon { display: none; }
body.home .site-header { display: block; }

/* Legacy container */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Legacy subpage header mapped to site-header styles */
body:not(.home) header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
body:not(.home) .nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); max-width: var(--max); margin: 0 auto; padding: 0 24px;
}
body:not(.home) .brand {
  font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.15em;
  text-transform: lowercase; color: var(--forest); display: flex; align-items: center; gap: 0.5rem;
}
body:not(.home) .brand span { font-style: italic; color: var(--copper); }
body:not(.home) .brand .leaf { width: 28px; height: 28px; color: var(--forest-mid); }
body:not(.home) .desktop-nav { display: flex; align-items: center; gap: 1.75rem; }
body:not(.home) .desktop-nav a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); font-weight: 500; }
body:not(.home) .desktop-nav a:hover { color: var(--forest); }
body:not(.home) .desktop-nav .btn-primary { background: var(--forest); color: var(--parchment); padding: 0.6rem 1.25rem; border-radius: var(--r); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
body:not(.home) .nav-tag { display: none; }
body:not(.home) .mobile-menu-btn { display: none; background: none; border: 1px solid var(--line-strong); width: 38px; height: 38px; border-radius: var(--r); cursor: pointer; }
body:not(.home) .mobile-menu { display: none; flex-direction: column; padding: 0 24px 1rem; background: var(--mist); border-bottom: 1px solid var(--line); }
body:not(.home) .mobile-menu.active { display: flex; }
body:not(.home) .mobile-menu a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { max-width: min(360px, 100%); justify-self: center; margin: 0 auto; }
  .hero-copy .lead { max-width: none; }
  .hero-stats { max-width: none; }
  .philosophy-grid, .threat-grid, .problem-grid, .product-layout, .compare-cards, .science-cards, .science-grid { grid-template-columns: 1fr; }
  .order-panel-inner { grid-template-columns: 1fr; }
  .order-aside { position: static; max-height: none; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.08); order: -1; }
  .product-visual { order: -1; max-width: 340px; margin: 0 auto 1rem; }
  .timeline, .ritual-grid, .variant-grid { grid-template-columns: 1fr; }
  .bento-row { grid-template-columns: 1fr; }
  .threat-card.wide { grid-column: span 1; }
  .threat-cards { grid-template-columns: 1fr; }
  .footer-top, .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid, .faq-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cart { position: static; }
  .header-nav { display: none; }
  .menu-toggle { display: grid; place-content: center; }
}

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .scent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.45rem; }
  .scent-card-body strong { font-size: 0.62rem; }
  .scent-card-body p { font-size: 0.5rem; }
  .price-card-amount { font-size: 1.2rem; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .footer-top, .footer-grid { grid-template-columns: 1fr; }
  .bento-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .fab-cta { left: 16px; right: 16px; text-align: center; }
  body:not(.home) .desktop-nav { display: none; }
  body:not(.home) .mobile-menu-btn { display: block; }
}
