/*
 * Panstellar Custom — shared base CSS
 * Extracted from the shared 'chrome' inlined on all 28 source pages
 * (nav, footer, design tokens, base layout, responsive).
 * ~449 of 999 CSS rules are common to ALL pages (see 08_REPORTS/01_html_audit.md).
 * Page-specific CSS (product pages, home hero/particles) is added per-page in Phase 4 (Elementor).
 * Source: 01_HTML_SOURCE/site-wordpress/ — do not hand-edit blindly; re-extract if source changes.
 */

/* =================================================================
   GLOBAL TOKENS
   ================================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bone: #F5F1E8;
  --stone: #ECE6D7;
  --ink: #1A1816;
  --ink-soft: rgba(26, 24, 22, 0.65);
  --gold: #C9A84C;
  --gold-bright: #E5C56C;
  --gold-deep: #6B5320;
  --green-deep: #1F2D26;
  --green-darker: #14201A;
  --green-darkest: #0E1612;
  --obsidian: #0A0A0A;
  --obsidian-2: #141414;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Söhne', 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
button { background: none; border: none; font-family: inherit; color: inherit; cursor: pointer; padding: 0; font-size: inherit; }
sup.tm { font-size: 0.5em; vertical-align: super; }

.italic-serif {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

/* =================================================================
   PROMO MARQUEE (announcement bar)
   ================================================================= */
.promo-marquee {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.promo-marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.promo-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.promo-marquee__item::after {
  content: '●';
  color: var(--gold);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================================================================
   NAV (adapted from dev's Prestige bundle)
   ================================================================= */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid rgba(26, 24, 22, 0.06);
  transition: transform 0.4s var(--ease);
}

.nav-bar.is-hidden { transform: translateY(-100%); }

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: var(--ink);
  text-decoration: none;
  justify-self: center;
}

.nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-self: start;
  align-items: center;
}

.nav-item { position: relative; }

.nav-link {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 0;
}

.nav-link:hover { color: var(--gold); }
.nav-link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  opacity: 0.5;
}
.nav-link.no-arrow::after { display: none; }

.nav-right {
  display: flex;
  gap: 12px;
  justify-self: end;
  align-items: center;
}

.nav-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(26, 24, 22, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.nav-icon:hover { border-color: var(--gold); color: var(--gold); }
.nav-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--ink);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.nav-burger svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* DROPDOWN PANELS */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bone);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 14px;
  padding: 24px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 50;
  box-shadow: 0 20px 60px rgba(26, 24, 22, 0.1);
  pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown ul { list-style: none; }
.nav-dropdown li { margin-bottom: 4px; }
.nav-dropdown li:last-child { margin-bottom: 0; }

.nav-dropdown a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-dropdown a:hover { background: var(--stone); color: var(--ink); }

.nav-dropdown-title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
  text-decoration: none;
  font-weight: 500;
}

.nav-dropdown-title:hover { color: var(--gold-deep); }

/* SCIENCE DROPDOWN with hover images (PC only) */
.nav-dropdown-science {
  display: grid;
  grid-template-columns: 200px 220px;
  gap: 24px;
  min-width: 460px;
  padding: 28px;
}

.science-items ul { display: flex; flex-direction: column; gap: 2px; }

.science-image-panel {
  position: relative;
  background: var(--stone);
  border-radius: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.science-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--obsidian) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(245, 241, 232, 0.4);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.science-image.visible { opacity: 1; }
.science-image[data-key="default"] { opacity: 1; }

/* PRODUCTS MEGA MENU */
.nav-dropdown-products {
  min-width: 540px;
  padding: 28px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.product-mini-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease;
}

.product-mini-card:hover { transform: translateY(-3px); }

.product-mini-img {
  width: 100%;
  aspect-ratio: 1/1.1;
  background: linear-gradient(135deg, var(--stone) 0%, #C8BFAA 100%);
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  font-size: 8px;
  color: rgba(26, 24, 22, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}

.product-mini-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.product-mini-sub {
  font-size: 11px;
  color: var(--ink-soft);
}

.product-coming-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 8px;
  padding: 3px 8px;
  background: rgba(245, 241, 232, 0.9);
  border-radius: 999px;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  font-weight: 500;
}

/* MOBILE OVERLAY MENU */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-overlay.is-open { transform: translateX(0); }

.mobile-overlay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.mobile-overlay__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-overlay__close svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; }

.mobile-overlay__nav {
  flex: 1;
  padding: 20px;
}

.mobile-accordion-item { border-bottom: 1px solid rgba(26, 24, 22, 0.08); }
.mobile-accordion-item summary {
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.mobile-accordion-item summary::-webkit-details-marker { display: none; }
.mobile-accordion-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.mobile-accordion-item[open] summary::after { transform: rotate(45deg); }

.mobile-accordion-content {
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-accordion-content a {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
}

.mobile-accordion-content a:hover { color: var(--ink); }

.mobile-overlay__cta {
  padding: 20px;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
}

.mobile-overlay__cta-btn {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--bone);
  padding: 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =================================================================
   BLOCK 1: HERO
   ================================================================= */
.hero {
  min-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 120px;
  background: var(--bone);
  position: relative;
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(10px);
  animation: hero-fade 0.9s 0.1s var(--ease) forwards;
}

.hero-tagline {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade 1.1s 0.3s var(--ease) forwards;
}

.hero-visual {
  width: clamp(240px, 26vw, 340px);
  height: clamp(280px, 28vw, 380px);
  position: relative;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade 1.1s 0.6s var(--ease) forwards;
}

.hero-bottle {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(184, 154, 64, 0.04) 0%, rgba(26, 24, 22, 0.12) 100%);
  border-radius: 24px 24px 18px 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  box-shadow: 0 24px 60px rgba(26, 24, 22, 0.12), inset 0 0 0 1px rgba(184, 154, 64, 0.1);
}

.hero-bottle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 18%;
  background: linear-gradient(180deg, #4a4035 0%, #2a241d 100%);
  border-radius: 6px 6px 4px 4px;
}

.hero-bottle-label {
  background: var(--bone);
  width: 80%;
  padding: 20px 18px;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.18em;
  font-size: 9px;
  text-transform: uppercase;
  border: 1px solid rgba(26, 24, 22, 0.08);
}

.hero-bottle-label .brand { font-size: 11px; letter-spacing: 0.32em; color: var(--gold); margin-bottom: 4px; font-weight: 500; }
.hero-bottle-label .product { font-size: 13px; letter-spacing: 0.1em; margin-bottom: 4px; color: var(--ink); font-weight: 500; }
.hero-bottle-label .meta { font-size: 8px; letter-spacing: 0.15em; color: rgba(26, 24, 22, 0.5); }

.hero-cta {
  display: inline-block;
  padding: 18px 48px;
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade 1.1s 0.9s var(--ease) forwards;
}

.hero-cta:hover { background: var(--gold); transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: hero-fade 1.1s 1.5s var(--ease) forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(26, 24, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scroll-fall 2s var(--ease) infinite;
}

@keyframes hero-fade {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-fall {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* =================================================================
   BLOCK 2: OUTCOMES v4 (museum aesthetic)
   ================================================================= */
.outcomes-section {
  padding: 100px 32px;
  background: var(--bone);
}

.outcomes-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }

.outcomes-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 22px;
}

.outcomes-title {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}

.outcomes-sub { font-size: 16px; color: var(--ink-soft); }

.outcomes-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 4px 0;
}

.outcomes-track {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.6s var(--ease);
}

.outcome-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background: linear-gradient(180deg, var(--obsidian-2) 0%, var(--obsidian) 100%);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: width 0.6s var(--ease), flex-basis 0.6s var(--ease), border-color 0.4s var(--ease), aspect-ratio 0.6s var(--ease), min-height 0.6s var(--ease);
  isolation: isolate;
}

.outcome-card:hover { border-color: rgba(201, 168, 76, 0.16); }

.outcome-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.outcome-visual { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.outcome-halo {
  position: absolute;
  top: 28%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.05) 40%, transparent 70%);
  border-radius: 50%;
}

.outcome-capsule {
  position: absolute;
  top: 28%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 80px;
}

.outcome-cap-top {
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 35%;
  background: linear-gradient(135deg, #D9B860 0%, var(--gold-deep) 100%);
  border-radius: 999px 999px 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.outcome-cap-bottom {
  position: absolute; bottom: -8px; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 60%;
  background: linear-gradient(135deg, #EAE3D2 0%, #C8BFAA 100%);
  border-radius: 4px 4px 999px 999px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-top: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 2px 3px rgba(255, 255, 255, 0.15);
}

.outcome-particles { position: absolute; inset: 0; }

.outcome-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.5);
}

/* Particle compositional variation per card */
.outcome-card[data-idx="0"] .outcome-particles span:nth-child(1) { top: 14%; left: 28%; opacity: 0.8; }
.outcome-card[data-idx="0"] .outcome-particles span:nth-child(2) { top: 20%; right: 30%; opacity: 0.6; }
.outcome-card[data-idx="0"] .outcome-particles span:nth-child(3) { top: 8%; left: 50%; opacity: 0.5; width: 3px; height: 3px; }
.outcome-card[data-idx="0"] .outcome-particles span:nth-child(4) { top: 36%; right: 24%; opacity: 0.4; width: 3px; height: 3px; }
.outcome-card[data-idx="0"] .outcome-particles span:nth-child(5) { top: 18%; left: 16%; opacity: 0.35; width: 3px; height: 3px; }

.outcome-card[data-idx="1"] .outcome-particles span:nth-child(1) { top: 18%; right: 24%; opacity: 0.8; }
.outcome-card[data-idx="1"] .outcome-particles span:nth-child(2) { top: 32%; right: 18%; opacity: 0.5; }
.outcome-card[data-idx="1"] .outcome-particles span:nth-child(3) { top: 12%; right: 38%; opacity: 0.4; width: 3px; height: 3px; }
.outcome-card[data-idx="1"] .outcome-particles span:nth-child(4) { top: 28%; left: 24%; opacity: 0.6; }
.outcome-card[data-idx="1"] .outcome-particles span:nth-child(5) { top: 16%; left: 38%; opacity: 0.4; width: 3px; height: 3px; }

.outcome-card[data-idx="2"] .outcome-particles span:nth-child(1) { top: 14%; left: 30%; opacity: 0.7; }
.outcome-card[data-idx="2"] .outcome-particles span:nth-child(2) { top: 30%; left: 18%; opacity: 0.4; }
.outcome-card[data-idx="2"] .outcome-particles span:nth-child(3) { top: 18%; right: 28%; opacity: 0.6; }
.outcome-card[data-idx="2"] .outcome-particles span:nth-child(4) { top: 30%; right: 22%; opacity: 0.5; }
.outcome-card[data-idx="2"] .outcome-particles span:nth-child(5) { top: 8%; left: 45%; opacity: 0.3; width: 3px; height: 3px; }

.outcome-card[data-idx="3"] .outcome-particles span:nth-child(1) { top: 16%; left: 35%; opacity: 0.6; }
.outcome-card[data-idx="3"] .outcome-particles span:nth-child(2) { top: 24%; right: 30%; opacity: 0.5; }
.outcome-card[data-idx="3"] .outcome-particles span:nth-child(3) { top: 32%; left: 25%; opacity: 0.4; width: 3px; height: 3px; }
.outcome-card[data-idx="3"] .outcome-particles span:nth-child(4) { top: 10%; right: 42%; opacity: 0.35; width: 3px; height: 3px; }
.outcome-card[data-idx="3"] .outcome-particles span:nth-child(5) { top: 22%; left: 20%; opacity: 0.3; width: 3px; height: 3px; }

.outcome-card[data-idx="4"] .outcome-particles span:nth-child(1) { top: 28%; left: 28%; opacity: 0.7; }
.outcome-card[data-idx="4"] .outcome-particles span:nth-child(2) { top: 18%; left: 38%; opacity: 0.6; }
.outcome-card[data-idx="4"] .outcome-particles span:nth-child(3) { top: 10%; right: 32%; opacity: 0.5; }
.outcome-card[data-idx="4"] .outcome-particles span:nth-child(4) { top: 32%; right: 26%; opacity: 0.4; width: 3px; height: 3px; }
.outcome-card[data-idx="4"] .outcome-particles span:nth-child(5) { top: 22%; right: 18%; opacity: 0.4; width: 3px; height: 3px; }

.outcome-card[data-idx="5"] .outcome-particles span:nth-child(1) { top: 14%; left: 24%; opacity: 0.7; }
.outcome-card[data-idx="5"] .outcome-particles span:nth-child(2) { top: 14%; right: 24%; opacity: 0.7; }
.outcome-card[data-idx="5"] .outcome-particles span:nth-child(3) { top: 28%; left: 38%; opacity: 0.5; }
.outcome-card[data-idx="5"] .outcome-particles span:nth-child(4) { top: 32%; left: 18%; opacity: 0.4; width: 3px; height: 3px; }
.outcome-card[data-idx="5"] .outcome-particles span:nth-child(5) { top: 32%; right: 18%; opacity: 0.4; width: 3px; height: 3px; }

.outcome-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: var(--bone);
}

.outcome-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
}

.outcome-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(245, 241, 232, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone);
  font-weight: 400;
}

.outcome-pill svg { width: 12px; height: 12px; }

.outcome-action-btn {
  width: 32px; height: 32px;
  background: var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.outcome-action-btn:hover { transform: scale(1.08); }

.outcome-action-btn .plus-icon { display: block; }
.outcome-action-btn .close-icon { display: none; }
.outcome-card.is-open .outcome-action-btn .plus-icon { display: none; }
.outcome-card.is-open .outcome-action-btn .close-icon { display: block; }

.outcome-tagline {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin-top: 24px;
}

.outcome-tagline .italic-serif {
  display: block;
  font-size: 24px;
  margin-top: 2px;
  color: var(--gold-bright);
}

.outcome-extended {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.6s var(--ease);
}

.outcome-card.is-open .outcome-extended {
  opacity: 1;
  max-height: 800px;
  transition: opacity 0.5s ease 0.2s, max-height 0.6s var(--ease);
}

.outcome-sub-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.7);
}

.outcome-testimonial {
  background: rgba(245, 241, 232, 0.05);
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
}

.outcome-t-name { font-size: 13px; font-weight: 500; color: var(--bone); margin-bottom: 2px; }
.outcome-t-role { font-size: 11px; color: rgba(245, 241, 232, 0.5); letter-spacing: 0.02em; margin-bottom: 10px; }
.outcome-t-quote {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(245, 241, 232, 0.85);
}

.outcome-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

.outcome-stat-num {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.outcome-stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
  font-weight: 500;
}

.outcome-learn {
  background: var(--bone);
  color: var(--ink);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.outcome-learn:hover { background: var(--gold); }

.outcomes-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
}

.outcomes-arrow {
  width: 52px; height: 52px;
  border: 1px solid rgba(26, 24, 22, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s ease;
  background: var(--bone);
}

.outcomes-arrow:hover:not(:disabled) { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.outcomes-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.outcomes-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.outcomes-shop-cta { text-align: center; margin-top: 48px; }

.outcomes-shop-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.outcomes-shop-btn:hover { background: var(--gold); transform: translateY(-2px); }

/* OUTCOMES desktop */
@media (min-width: 1024px) {
  .outcome-card { width: calc((100% - 32px) / 3); aspect-ratio: 3 / 4; }
  .outcomes-carousel:has(.is-open) .outcome-card:not(.is-open) { width: calc((100% - 58% - 32px) / 2); }
  .outcome-card.is-open { width: 58%; aspect-ratio: 5 / 3; }
}

/* OUTCOMES tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .outcome-card { width: calc((100% - 16px) / 2); aspect-ratio: 3 / 4; }
  .outcomes-carousel:has(.is-open) .outcome-card:not(.is-open) { width: calc(100% - 75% - 16px); }
  .outcome-card.is-open { width: 75%; aspect-ratio: 5 / 3; }
}

/* =================================================================
   BLOCK 3: FORMULA v2 (mobile compact)
   ================================================================= */
.formula-section { background: var(--bone); padding: 130px 0; }

.formula-pill {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 60px;
}

.formula-pill::before { content: '●'; margin-right: 10px; color: var(--gold); }

.formula-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.formula-visual {
  background: var(--green-deep);
  border-radius: 28px;
  aspect-ratio: 1/1.1;
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.formula-visual-title {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.02em;
  z-index: 3;
}

.formula-capsule-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1/1.4;
  background: linear-gradient(135deg, #C8BFAA 0%, #8B7F66 100%);
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.formula-capsule-eyebrow {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  z-index: 3;
}

.formula-cards { display: flex; flex-direction: column; gap: 24px; }

.formula-card { background: var(--stone); border-radius: 22px; padding: 32px; position: relative; }
.formula-card.featured { background: linear-gradient(180deg, #ECE6D7 0%, #D9D2C0 100%); border: 1px solid rgba(201, 168, 76, 0.2); }

.formula-card-icon {
  width: 44px; height: 44px;
  background: var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.formula-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.formula-card-title { font-size: 22px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.015em; color: var(--ink); }

.formula-card-outcome {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.formula-card-badges { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

.formula-badge {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 999px;
  font-weight: 500;
}

.formula-badge.star::before { content: '★ '; }

.formula-outcome-strip { margin-top: 56px; text-align: center; padding: 0 32px; }

.formula-outcome-strip p {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.3;
}

.formula-cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--bone);
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.formula-cta:hover { background: var(--ink); color: var(--bone); }

/* =================================================================
   BLOCK 4: DELIVERY v18
   ================================================================= */
.delivery-section { position: relative; background: var(--bone); height: 500vh; }

.block-mobile-header { display: none; }

.delivery-pin {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.delivery-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.delivery-frame {
  flex: 1;
  position: relative;
  background: linear-gradient(180deg, #F5F1E8 0%, #ECE6D7 100%);
  border-radius: 24px;
  height: 78vh;
  padding: 32px;
  overflow: hidden;
}

.delivery-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 5;
}

.silhouette {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  height: calc(78vh - 64px);
  width: auto;
  z-index: 1;
}

.capsule-anchor {
  position: absolute;
  left: 50%; top: 14%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.delivery-capsule { position: relative; width: 22px; height: 56px; }

.delivery-cap-top {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(135deg, #B89A40 0%, #8B6F2E 100%);
  border-radius: 999px 999px 0 0;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.15), 0 2px 6px rgba(107,83,32,0.25);
}

.delivery-cap-bottom {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(135deg, #EAE3D2 0%, #C8BFAA 100%);
  border-radius: 0 0 999px 999px;
  border: 1px solid rgba(107, 83, 32, 0.3);
  border-top: none;
}

.text-anchor {
  position: absolute;
  left: calc(50% + 24px); top: 14%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  pointer-events: none;
}

.loc-label {
  position: relative;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.55);
  font-weight: 500;
  white-space: nowrap;
  min-width: 80px;
  height: 14px;
  flex-shrink: 0;
}

.loc-label span {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  opacity: 0;
}

.phase-text {
  position: relative;
  width: 380px;
  height: 90px;
  flex-shrink: 0;
}

.phase {
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
}

.phase-title {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  white-space: nowrap;
}

.phase-detail { font-size: clamp(13px, 1.1vw, 16px); color: var(--ink-soft); }

.particles-stomach {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  z-index: 9;
  pointer-events: none;
}

.particles-stomach span {
  position: absolute;
  width: 6px; height: 6px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  top: 50%; left: 50%;
}

.particles-stomach span:nth-child(1) { --dx: -36px; --dy: -28px; }
.particles-stomach span:nth-child(2) { --dx: 32px; --dy: -22px; }
.particles-stomach span:nth-child(3) { --dx: -42px; --dy: 4px; }
.particles-stomach span:nth-child(4) { --dx: 38px; --dy: 10px; }
.particles-stomach span:nth-child(5) { --dx: -14px; --dy: 32px; }
.particles-stomach span:nth-child(6) { --dx: 22px; --dy: 36px; }
.particles-stomach span:nth-child(7) { --dx: -4px; --dy: -34px; }
.particles-stomach span:nth-child(8) { --dx: 8px; --dy: -38px; }

.particles-traveling {
  position: absolute;
  top: 42%; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 220px;
  z-index: 9;
  pointer-events: none;
}

.particles-traveling span {
  position: absolute;
  width: 5px; height: 5px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  left: 50%; top: 0;
}

.particles-traveling span:nth-child(1) { --dxr: -3px; }
.particles-traveling span:nth-child(2) { --dxr: 4px; }
.particles-traveling span:nth-child(3) { --dxr: -2px; }
.particles-traveling span:nth-child(4) { --dxr: 3px; }

.particles-intestine {
  position: absolute;
  top: 78%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  z-index: 9;
  pointer-events: none;
}

.particles-intestine span {
  position: absolute;
  width: 5px; height: 5px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  top: 50%; left: 50%;
}

.particles-intestine span:nth-child(1) { --dx: -22px; --dy: -16px; }
.particles-intestine span:nth-child(2) { --dx: 20px; --dy: -12px; }
.particles-intestine span:nth-child(3) { --dx: -26px; --dy: 8px; }
.particles-intestine span:nth-child(4) { --dx: 24px; --dy: 14px; }

.outcome-fixed {
  flex: 0 0 320px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outcome-text {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 18px;
}

.outcome-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.outcome-mobile {
  display: none;
  background: var(--bone);
  padding: 32px 20px 60px;
  text-align: center;
}

/* =================================================================
   BLOCK 5: SCIENCE
   ================================================================= */
.science-section { background: var(--obsidian); color: var(--bone); padding: 130px 0; }

.science-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  text-align: center; margin-bottom: 24px;
}

.science-title {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bone);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.science-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.science-big-card {
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.sci-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.sci-card-title {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.sci-card-sub { font-size: 14px; color: rgba(245, 241, 232, 0.6); line-height: 1.55; }

.sci-phases { display: flex; gap: 24px; margin-top: 32px; }

.sci-phase { flex: 1; }

.sci-phase-num {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.sci-phase-text { font-size: 13px; color: rgba(245, 241, 232, 0.75); }

.sci-phase-detail {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold-bright);
  margin-top: 4px;
  display: block;
}

.science-small-card {
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.science-small-visual {
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 12px;
  font-size: 9px;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.science-small-card h3 {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.science-small-card p { font-size: 13px; color: rgba(245, 241, 232, 0.55); }

.science-trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 56px auto 0;
  padding: 40px 32px 0;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

.trust-cell { text-align: center; }

.trust-cell-num {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 26px;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.trust-cell-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
  font-weight: 500;
}

/* =================================================================
   BLOCK 6: REVIEWS
   ================================================================= */
.reviews-section { background: var(--bone); padding: 130px 0; }

.reviews-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  text-align: center; margin-bottom: 24px;
}

.reviews-title {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 60px;
}

.reviews-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 32px 20px;
  scrollbar-width: thin;
}

.reviews-scroller::-webkit-scrollbar { height: 6px; }
.reviews-scroller::-webkit-scrollbar-track { background: transparent; }
.reviews-scroller::-webkit-scrollbar-thumb { background: rgba(26, 24, 22, 0.2); border-radius: 99px; }

.review-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(26, 24, 22, 0.05);
  scroll-snap-align: start;
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26, 24, 22, 0.08); }

.review-card.has-video::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 36px;
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='4 3 9 6 4 9' fill='%23F5F1E8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38%;
  z-index: 2;
}

.review-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--stone) 0%, #C8BFAA 100%);
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(26, 24, 22, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.review-stars { display: inline-flex; gap: 2px; color: var(--gold); margin-bottom: 14px; }
.review-stars svg { width: 14px; height: 14px; fill: currentColor; }

.review-quote {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 18px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 24, 22, 0.06);
}

.review-name { font-size: 12px; font-weight: 500; color: var(--ink); }
.review-duration { font-size: 11px; color: rgba(26, 24, 22, 0.5); }

/* =================================================================
   BLOCK 7: PRICE CARD
   ================================================================= */
.price-section { background: var(--stone); padding: 140px 0; }

.price-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  text-align: center; margin-bottom: 24px;
}

.price-title {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 60px;
}

.price-card-wrap { max-width: 460px; margin: 0 auto; }

.price-card {
  background: var(--bone);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 14px 50px rgba(26, 24, 22, 0.08);
  transition: all 0.4s var(--ease);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(26, 24, 22, 0.1), 0 0 70px rgba(201, 168, 76, 0.1);
}

.price-bestseller-pill {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bone);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-product-img {
  width: 180px;
  height: 220px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--stone) 0%, #C8BFAA 100%);
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  font-size: 9px;
  color: rgba(26, 24, 22, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-product-name {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}

.price-product-sub {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.price-amount {
  font-family: 'Söhne', 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-period { font-size: 14px; color: var(--ink-soft); }

.price-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 16px;
}

.price-cta:hover { background: var(--gold); transform: translateY(-2px); }

.price-promises {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.price-promises span { display: inline-flex; align-items: center; gap: 5px; }
.price-promises span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.price-downgrade {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}

.price-downgrade a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 24, 22, 0.3);
  padding-bottom: 1px;
  transition: all 0.2s ease;
}

.price-downgrade a:hover { color: var(--gold); border-color: var(--gold); }

/* =================================================================
   BLOCK 8: FOOTER (full)
   ================================================================= */
.footer-top { background: var(--bone); padding: 80px 0 70px; }

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-teaser {
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.4s var(--ease);
}

.product-teaser:hover { transform: translateY(-4px); }

.product-card {
  position: relative;
  background: linear-gradient(135deg, #e8e2d0 0%, #c8bfaa 100%);
  border-radius: 18px;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-card-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.4);
  border: 1px dashed rgba(26, 24, 22, 0.2);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.7);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 11px;
  background: rgba(155, 200, 130, 0.18);
  border: 1px solid rgba(155, 200, 130, 0.5);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #6d9456;
  z-index: 2;
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}

.product-name {
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.2;
  color: var(--ink);
}

.product-arrow { font-size: 16px; color: var(--ink); transition: transform 0.3s ease; }
.product-teaser:hover .product-arrow { transform: translateX(4px); color: var(--gold); }

.email-signup { text-align: center; padding: 0 12px; }

.email-signup h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}

.signup-form-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.signup-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(26, 24, 22, 0.08);
}

.signup-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.signup-form input::placeholder { color: rgba(26, 24, 22, 0.4); }

.signup-form button {
  background: var(--green-deep);
  color: var(--bone);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.signup-form button:hover { background: var(--ink); }

.signup-disclaimer { font-size: 11px; color: rgba(26, 24, 22, 0.5); }

.footer-trust { background: var(--bone); padding: 36px 0 56px; border-top: 1px solid rgba(26, 24, 22, 0.08); }

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.ftrust-item { display: flex; flex-direction: column; align-items: center; text-align: center; }

.ftrust-icon { width: 32px; height: 32px; color: var(--gold); margin-bottom: 12px; }
.ftrust-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.ftrust-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.ftrust-desc { font-size: 12px; color: var(--ink-soft); }

.footer-main {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-darker) 100%);
  color: var(--bone);
  padding: 70px 0 50px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 18px;
  text-align: left;
}

.footer-col-chevron { display: none; width: 16px; height: 16px; position: relative; color: var(--bone); flex-shrink: 0; }
.footer-col-chevron::before, .footer-col-chevron::after { content: ''; position: absolute; background: currentColor; transition: transform 0.3s ease; }
.footer-col-chevron::before { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.footer-col-chevron::after { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.footer-col.expanded .footer-col-chevron::after { transform: translate(-50%, -50%) rotate(90deg); }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col li a {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col li a:hover { color: var(--gold-bright); }

.footer-bottom { background: var(--green-darkest); color: rgba(245, 241, 232, 0.6); padding: 22px 0; font-size: 12px; }

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-links { display: flex; gap: 22px; justify-content: center; }
.legal-links a { color: rgba(245, 241, 232, 0.6); text-decoration: none; transition: color 0.3s ease; }
.legal-links a:hover { color: var(--gold-bright); }

.social-links { display: flex; gap: 18px; justify-content: flex-end; }

.social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(245, 241, 232, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 241, 232, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.social-links svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.fda-disclaimer {
  background: var(--green-darkest);
  color: rgba(245, 241, 232, 0.4);
  padding: 16px 32px;
  font-size: 10px;
  font-style: italic;
  text-align: center;
  border-top: 1px solid rgba(245, 241, 232, 0.05);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1023px) {
  .nav-list { display: none; }
  .nav-burger { display: flex; justify-self: start; }
  .nav-row { grid-template-columns: auto 1fr auto; padding: 14px 16px; }
  .nav-logo { font-size: 18px; letter-spacing: 0.26em; }

  .outcomes-section { padding: 80px 16px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .formula-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .formula-visual { aspect-ratio: 16/10; max-height: 380px; }

  .delivery-content { padding: 0 16px; }
  .delivery-frame { width: 100%; height: 80vh; }
  .outcome-fixed { display: none; }
  .outcome-mobile { display: block; }

  .science-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .science-trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px 16px 0; }

  .reviews-scroller { padding: 0 16px 20px; }

  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 16px; }
  .email-signup { grid-column: 1 / -1; order: -1; padding: 0; }
  .footer-trust-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }

  .footer-columns { grid-template-columns: 1fr; gap: 0; padding: 0 16px; }
  .footer-col { border-bottom: 1px solid rgba(245, 241, 232, 0.12); }
  .footer-col-header {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--bone);
    margin-bottom: 0;
    padding: 22px 4px;
    cursor: pointer;
    user-select: none;
  }
  .footer-col-chevron { display: block; }
  .footer-col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0;
  }
  .footer-col.expanded ul { max-height: 500px; padding: 0 0 22px; }

  .footer-bottom-grid { grid-template-columns: 1fr; gap: 14px; text-align: center; padding: 0 16px; }
  .legal-links, .social-links { justify-content: center; }
}

@media (max-width: 767px) {
  .hero { padding: 60px 16px 100px; }
  .hero-tagline { font-size: clamp(38px, 11vw, 60px); margin-bottom: 40px; }
  .hero-visual { margin-bottom: 40px; }

  .outcomes-section, .reviews-section, .price-section { padding: 80px 0; }
  .outcomes-section, .formula-section, .science-section { padding: 80px 0; }

  /* Outcomes mobile - native scroll, modal-style open */
  .outcomes-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px 16px;
    scrollbar-width: none;
  }
  .outcomes-carousel::-webkit-scrollbar { display: none; }
  .outcomes-track { gap: 12px; transition: none; transform: none !important; padding: 0 4px; }
  .outcome-card { width: calc(100vw - 48px); aspect-ratio: 4 / 5; scroll-snap-align: start; }
  .outcome-card.is-open { width: calc(100vw - 48px); aspect-ratio: auto; min-height: 78vh; }
  .outcome-content { padding: 20px; }
  .outcome-tagline { font-size: 19px; }
  .outcome-tagline .italic-serif { font-size: 21px; }
  .outcome-card.is-open .outcome-tagline { font-size: 22px; margin-top: 16px; margin-bottom: 4px; }
  .outcome-card.is-open .outcome-tagline .italic-serif { font-size: 24px; }
  .outcome-card.is-open .outcome-extended { margin-top: 18px; gap: 16px; }
  .outcome-stat-num { font-size: 28px; }
  .outcomes-controls { display: none; }
  .outcomes-shop-cta { margin-top: 32px; padding: 0 16px; }

  /* Formula mobile compact */
  .formula-section { padding: 60px 0; }
  .formula-pill { margin-bottom: 24px; font-size: 10px; }
  .formula-grid { display: flex; flex-direction: column; gap: 14px; padding: 0 16px; }
  .formula-visual { aspect-ratio: auto; height: 32vh; min-height: 220px; max-height: 280px; padding: 20px; border-radius: 20px; }
  .formula-visual-title { top: 20px; font-size: 22px; line-height: 1.05; }
  .formula-capsule-visual { width: 38%; height: 60%; }
  .formula-capsule-eyebrow { bottom: 16px; font-size: 8.5px; letter-spacing: 0.28em; }
  .formula-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .formula-card { padding: 16px 14px; border-radius: 14px; }
  .formula-card-icon { width: 30px; height: 30px; margin-bottom: 10px; }
  .formula-card-icon svg { width: 15px; height: 15px; }
  .formula-card-title { font-size: 15px; margin-bottom: 6px; line-height: 1.15; }
  .formula-card-outcome { font-size: 12px; line-height: 1.35; margin-bottom: 0; }
  .formula-card-badges { margin-top: 10px; gap: 4px; }
  .formula-badge { font-size: 8.5px; padding: 3px 7px; letter-spacing: 0.12em; }
  .formula-card.featured .formula-badge:not(.star) { display: none; }
  .formula-outcome-strip { margin-top: 20px; padding: 0 16px; }
  .formula-outcome-strip p { font-size: 17px; margin-bottom: 16px; line-height: 1.25; }
  .formula-cta { padding: 12px 24px; font-size: 11.5px; }

  /* Delivery mobile */
  .delivery-section { height: 400vh; }
  .delivery-frame { height: 64vh; padding: 70px 16px 40px; }
  .block-mobile-header {
    display: block; position: absolute;
    top: 24px; left: 16px; right: 16px;
    z-index: 20; text-align: center;
  }
  .block-eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
  }
  .block-title {
    font-family: 'Söhne', 'Newsreader', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #000;
  }
  .silhouette { left: 28%; height: 50vh; max-width: 42vw; }
  .capsule-anchor { left: 28%; }
  .text-anchor { left: calc(28% + 20px); gap: 8px; }
  .loc-label { min-width: 50px; font-size: 9px; letter-spacing: 0.16em; }
  .phase-text { width: 160px; max-width: calc(100vw - 56% - 28px); height: 64px; }
  .phase-title {
    font-family: 'Söhne', 'Manrope', system-ui, sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    line-height: 1.1;
    letter-spacing: -0.005em;
    white-space: normal;
    margin-bottom: 3px;
  }
  .phase-detail { font-size: 11px; color: var(--ink-soft); line-height: 1.3; }
  .particles-stomach { left: 28%; width: 80px; height: 80px; }
  .particles-stomach span { width: 7px; height: 7px; }
  .particles-stomach span:nth-child(1) { --dx: -28px; --dy: -22px; }
  .particles-stomach span:nth-child(2) { --dx: 26px; --dy: -18px; }
  .particles-stomach span:nth-child(3) { --dx: -32px; --dy: 3px; }
  .particles-stomach span:nth-child(4) { --dx: 30px; --dy: 8px; }
  .particles-stomach span:nth-child(5) { --dx: -10px; --dy: 26px; }
  .particles-stomach span:nth-child(6) { --dx: 18px; --dy: 28px; }
  .particles-stomach span:nth-child(7) { --dx: -2px; --dy: -28px; }
  .particles-stomach span:nth-child(8) { --dx: 6px; --dy: -30px; }
  .particles-traveling { left: 28%; height: 180px; }
  .particles-traveling span { width: 6px; height: 6px; }
  .particles-intestine { left: 28%; }
  .particles-intestine span { width: 6px; height: 6px; }
  .delivery-eyebrow { bottom: 14px; left: 16px; font-size: 9px; }
  .outcome-mobile { padding: 36px 20px 64px; }
  .outcome-mobile .outcome-text { font-size: 40px; line-height: 1.05; color: #000; margin-bottom: 16px; }
  .outcome-mobile .outcome-sub { font-size: 11px; color: var(--gold); }

  /* Review mobile */
  .review-card { flex: 0 0 280px; padding: 24px; }

  /* Price mobile */
  .price-card { padding: 36px 28px; }
  .price-amount { font-size: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .delivery-section { height: auto; }
  .delivery-pin { height: auto; padding: 80px 0; }
  .phase { opacity: 1; position: relative; transform: none; margin-bottom: 28px; }
  .capsule-anchor, .text-anchor { position: relative; left: auto; top: auto; }
  .hero-eyebrow, .hero-tagline, .hero-visual, .hero-cta, .hero-scroll {
    opacity: 1; transform: none; animation: none;
  }
  .promo-marquee__track { animation: none; }
}

/* LEGAL PAGES */
.lp { padding:60px 32px 80px; max-width:780px; margin:0 auto; }
.lp-hero { text-align:center; padding:80px 32px 40px; max-width:680px; margin:0 auto; }
.lp-eyebrow { font-size:11px; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:12px; }
.lp-h1 { font-family:'Söhne','Newsreader',Georgia,serif; font-style:italic; font-size:clamp(32px,4vw,46px); font-weight:500; letter-spacing:-0.02em; line-height:1.05; margin-bottom:14px; }
.lp-meta { font-size:12px; color:var(--ink-soft); letter-spacing:0.04em; }
.lp h2 { font-family:'Söhne','Newsreader',Georgia,serif; font-style:italic; font-size:24px; font-weight:500; letter-spacing:-0.01em; margin:36px 0 14px; line-height:1.2; }
.lp h2:first-child { margin-top:8px; }
.lp h3 { font-size:15px; font-weight:700; margin:22px 0 8px; letter-spacing:-0.01em; }
.lp p { font-size:14px; line-height:1.7; color:var(--ink); margin-bottom:14px; }
.lp ul, .lp ol { margin:8px 0 14px 22px; }
.lp li { font-size:14px; line-height:1.7; color:var(--ink); margin-bottom:6px; }
.lp strong { font-weight:700; color:var(--ink); }
.lp a { color:var(--ink); border-bottom:1px solid var(--gold); text-decoration:none; }
.lp a:hover { color:var(--gold); }
.lp-callout { background:var(--stone); border-radius:14px; padding:22px 24px; margin:24px 0; font-size:13px; line-height:1.65; }
.lp-callout strong { display:block; margin-bottom:6px; font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold-deep); }
.lp-divider { height:1px; background:rgba(26,24,22,0.08); margin:40px 0; }
.lp-contact-card { background:var(--stone); border-radius:14px; padding:24px; margin-top:32px; }
.lp-contact-card h4 { font-size:11px; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:10px; font-weight:700; }
.lp-contact-card p { font-size:13px; line-height:1.6; margin-bottom:4px; }

@media (max-width:780px) {
  .lp { padding:36px 18px 48px; }
  .lp-hero { padding:48px 18px 24px; }
  .lp h2 { font-size:20px; }
}
