/* ============================================
   Aevique — Of the Eternal
   Shared stylesheet
   Palette: warm cream + deep navy + brand gold
   ============================================ */

:root {
  --cream: #FFFDF8;
  --cream-2: #FFFAEF;
  --white: #FFFFFF;
  --navy: #0E2A39;
  --navy-2: #1A3A4D;
  --text: #374B57;
  --text-mute: #6B7C85;
  --gold: #B79556;
  --gold-dark: #9B7B43;
  --gold-soft: #E6D6B0;
  --green: #3F8F6F;
  --green-soft: #E8F2EC;
  --border: #E8E0D2;
  --shadow-sm: 0 1px 2px rgba(14, 42, 57, 0.04);
  --shadow-md: 0 4px 16px rgba(14, 42, 57, 0.06);
  --shadow-lg: 0 12px 40px rgba(14, 42, 57, 0.08);
  --radius: 12px;
  --radius-lg: 18px;
  --max-w: 1200px;
  --content-w: 800px;
  --pad: 96px;
  --pad-mobile: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 16px; }
ul { padding-left: 20px; margin: 0 0 16px; }
li { margin-bottom: 6px; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--pad) 0; }
@media (max-width: 768px) {
  section { padding: var(--pad-mobile) 0; }
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 12px;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-intro p { color: var(--text); font-size: 1.05rem; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-block { width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 0.85rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 0;
  line-height: 1;
  text-decoration: none;
}
.brand-logo {
  grid-row: 1 / span 2;
  grid-column: 1;
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.brand > .brand-mark { grid-row: 1; grid-column: 2; align-self: end; }
.brand > .brand-tag  { grid-row: 2; grid-column: 2; align-self: start; margin-top: 4px; }
.footer-logo { width: 36px; height: 36px; margin-bottom: 8px; }
.footer-brand { display: flex; flex-direction: column; }
.brand-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--navy);
}
.brand-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}
.nav a:hover { color: var(--gold-dark); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
}
.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--navy);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.18s ease;
}
.cart-btn:hover { border-color: var(--gold); }
.cart-btn svg { stroke: currentColor; width: 18px; height: 18px; }
.cart-count {
  display: inline-block;
  min-width: 20px;
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}
.cart-count[data-count="0"] { display: none; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 880px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; padding: 16px 24px; background: var(--cream); border-bottom: 1px solid var(--border); }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: 0; }
  .nav.open { display: flex; }
  .menu-toggle {
    display: inline-flex;
    order: 3;            /* push toggle to far-right of single header row */
    margin-left: auto;
  }
  .header-inner {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 12px 16px;
  }
  .brand { order: 1; }
  .cart-btn { order: 2; padding: 6px 12px 6px 10px; font-size: 0.85rem; }
  .cart-btn svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
  .brand-logo { width: 28px; height: 28px; }
  .brand-mark { font-size: 1.25rem; letter-spacing: 0.16em; }
  .brand-tag { font-size: 0.55rem; letter-spacing: 0.18em; }
  .cart-btn span:not(.cart-count) { display: none; }  /* hide 'Cart' label, keep icon + count */
  .cart-btn { padding: 8px 10px; gap: 4px; }
  .header-inner { gap: 8px; padding: 12px 14px; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.95;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(255,253,248,0.85) 40%, rgba(255,253,248,0.2) 70%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hero h1 {
  max-width: 740px;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}
.hero-sub {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* Trust strip — 5 pillars under hero */
.trust-strip {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.trust-pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
  padding-right: 16px;
}
.trust-pillar:last-child { border-right: 0; padding-right: 0; }
.trust-pillar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 600;
}
.trust-pillar-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}
@media (max-width: 880px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-pillar { border-right: 0; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
  .trust-pillar:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ============================================
   How It Works
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-number {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}
.step img { width: 36px; height: 36px; margin: 0 auto 10px; }
.step h3 { margin-bottom: 4px; font-size: 1.15rem; }
.step p { font-size: 0.85rem; line-height: 1.5; margin: 0; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================
   Tier cards
   ============================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tier-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tier-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.tier-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.tier-positioning {
  color: var(--text-mute);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 42px;
}
.tier-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-price-suffix {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mute);
  margin-left: 6px;
}
.tier-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.tier-features { list-style: none; padding: 0; margin: 0 0 28px; }
.tier-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}
.tier-card .btn { margin-top: auto; }
@media (max-width: 880px) {
  .tiers { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
}
.tiers-note {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.92rem;
  margin-top: 32px;
}
.tiers-note a { color: var(--gold-dark); border-bottom: 1px solid var(--gold-soft); }

/* ============================================
   Limited-time Aevum offer
   ============================================ */
.founders-offer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0E2A39 0%, #143343 60%, #1d4459 100%);
  color: #FFFDF8;
  border: 1px solid var(--gold-dark);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 0 auto 40px;
  max-width: 1080px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.founders-offer::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(183,149,86,0.18), transparent 55%);
  pointer-events: none;
}
.founders-offer-tag {
  position: relative;
  z-index: 1;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: flex-start;
}
.founders-offer-body { position: relative; z-index: 1; }
.founders-offer-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: #FFFDF8;
  margin: 0 0 6px;
  line-height: 1.25;
}
.founders-offer-body h3 strong { color: var(--gold); font-weight: 600; }
.founders-offer-body p {
  font-size: 0.92rem;
  color: rgba(255,253,248,0.78);
  margin: 0;
  max-width: 620px;
}
.founders-offer .btn { position: relative; z-index: 1; white-space: nowrap; }
@media (max-width: 880px) {
  .founders-offer {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 22px 20px;
    gap: 14px;
  }
  .founders-offer-tag { font-size: 0.62rem; letter-spacing: 0.12em; padding: 6px 12px; }
  .founders-offer-body h3 { font-size: 1.35rem; }
  .founders-offer-body p { font-size: 0.88rem; }
  .founders-offer .btn { width: 100%; text-align: center; }
}

/* Aevum offer card emphasis */
.tier-card--offer {
  border: 2px solid var(--gold-dark);
  box-shadow: 0 12px 32px rgba(14,42,57,0.12), 0 0 0 4px rgba(183,149,86,0.10);
  position: relative;
  background: linear-gradient(180deg, #FFFDF8 0%, #FAF6EC 100%);
}
.tier-ribbon--offer {
  background: var(--navy);
  color: var(--gold);
  letter-spacing: 0.14em;
}
.tier-features li .tier-feature-value {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 6px;
}
.tier-foot-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin: 12px 0 0;
  text-align: center;
}

/* ============================================
   Rx block (condensed prescriptions)
   ============================================ */
.rx-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: flex-start;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 40px;
  margin: 0 auto;
  max-width: 1080px;
  box-shadow: var(--shadow-sm);
}
.rx-block-icon {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-dark);
  background: #FFFDF8;
  border: 1.5px solid var(--gold-soft);
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rx-block-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.rx-block-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 18px;
}
.rx-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.rx-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  background: #FFFDF8;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
}
.rx-list li strong { color: var(--navy); }
.rx-list-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 400;
}
.rx-list-price {
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
  font-size: 0.9rem;
}
.rx-block-foot {
  font-size: 0.88rem;
  color: var(--text-mute);
  margin: 0 0 18px;
}
@media (max-width: 800px) {
  .rx-block { grid-template-columns: 1fr; padding: 24px; gap: 16px; }
  .rx-block-icon { width: 72px; height: 72px; font-size: 3.4rem; }
  .rx-list li { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Tests link-out row */
.tests-link-row {
  margin: 32px auto 0;
  max-width: 880px;
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
}
.tests-link-row p {
  color: var(--text-mute);
  margin: 0 0 16px;
  font-size: 0.95rem;
}

/* ============================================
   Founders Stack
   ============================================ */
.founders-card {
  background: var(--cream-2);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.founders-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.founders-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.15;
}
.founders-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.founders-price-now {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.founders-price-was {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-mute);
}
.founders-savings {
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.founders-list { list-style: none; padding: 0; margin: 16px 0; }
.founders-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.founders-list li:last-child { border-bottom: 0; }
.founders-list .marker { color: var(--text-mute); font-size: 0.85rem; }
.founders-note {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-style: italic;
  margin-bottom: 20px;
}
@media (max-width: 880px) {
  .founders-card { grid-template-columns: 1fr; padding: 28px; }
}

/* ============================================
   Test menu
   ============================================ */
.tests-banner {
  background: var(--navy);
  color: var(--cream);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tests-banner p { margin: 0; }
.tests-banner a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); font-weight: 600; }
.tests-banner a:hover { color: var(--gold-soft); }

.test-category {
  margin-bottom: 56px;
}
.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.category-header img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.category-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0;
  color: var(--navy);
}
.category-header span {
  display: block;
  color: var(--text-mute);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 2px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.test-card:hover { border-color: var(--gold-soft); transform: translateY(-1px); }
.test-card h4 { font-size: 1rem; margin: 0 0 6px; }
.test-card p { font-size: 0.88rem; color: var(--text-mute); margin: 0 0 16px; line-height: 1.5; flex-grow: 1; }
.test-prices { margin-bottom: 12px; }
.test-price-public {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
.test-price-sub {
  display: block;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 2px;
}
.test-price-sub::before {
  content: "Subscribers ";
  font-weight: 500;
  color: var(--text-mute);
}

/* ============================================
   Guarantee strip
   ============================================ */
.guarantee {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin: 48px 0;
}
.guarantee-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.guarantee h2 {
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto 20px;
}
.guarantee p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.98rem;
}

/* ============================================
   Trust + FAQ
   ============================================ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.trust-item {
  text-align: center;
  padding: 24px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.trust-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
@media (max-width: 880px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}

.faq { max-width: 800px; margin: 0 auto; }
.faq h2 { text-align: center; margin-bottom: 8px; }
.faq-group-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 36px 22px 0;
  text-align: left;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: color 0.18s ease;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 0 22px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}
.faq-a-inner p { margin: 0 0 12px; }
.faq-a-inner p:last-child { margin: 0; }

/* ============================================
   Bottom CTA strip (explainer pages)
   ============================================ */
.cta-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}
.cta-strip-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ============================================
   Page hero (explainer + legal pages)
   ============================================ */
.page-hero {
  padding: 80px 24px 56px;
  text-align: center;
  background: var(--cream-2);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
}

/* ============================================
   Long-form prose (explainer + legal)
   ============================================ */
.prose {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 56px 24px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.prose h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 48px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 32px 0 12px; font-size: 1.15rem; }
.prose ol { padding-left: 24px; }
.prose ol li { margin-bottom: 8px; }
.prose .step-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}
.prose .step-block img { width: 56px; height: 56px; }
.prose .step-block h3 { margin-top: 0; }

.science-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.science-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.science-panel h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.science-panel p { font-size: 0.9rem; margin: 0 0 8px; }
.science-panel ul { padding-left: 16px; font-size: 0.85rem; color: var(--text-mute); margin: 0; }
@media (max-width: 880px) {
  .science-panels { grid-template-columns: 1fr; }
}

/* Legal banner */
.legal-banner {
  background: #FFF4DC;
  border: 1px solid #E0B848;
  border-left: 4px solid #C58F1F;
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 0 auto 32px;
  max-width: var(--content-w);
  font-size: 0.92rem;
  color: #6B4A0E;
}
.legal-banner strong { color: #5C3D00; }
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 24px;
  font-style: italic;
}
.review-flag {
  background: #FFF4DC;
  color: #6B4A0E;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.85em;
  font-weight: 600;
  border: 1px solid #E0B848;
}

/* ============================================
   Cart drawer
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 57, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 { margin: 0; }
.cart-close {
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  padding: 4px 8px;
  line-height: 1;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  text-align: center;
  padding: 56px 16px;
  color: var(--text-mute);
}
.cart-empty p { margin-bottom: 24px; }
.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.cart-item-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.cart-item-meta {
  font-size: 0.82rem;
  color: var(--text-mute);
}
.cart-item-price-was {
  text-decoration: line-through;
  color: var(--text-mute);
  font-size: 0.85rem;
  margin-right: 6px;
}
.cart-item-price {
  font-weight: 700;
  color: var(--navy);
}
.cart-item-price.discounted { color: var(--green); }
.cart-item-remove {
  background: transparent;
  border: 0;
  color: var(--text-mute);
  cursor: pointer;
  padding: 4px;
  font-size: 1rem;
  line-height: 1;
}
.cart-item-remove:hover { color: var(--gold-dark); }
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }
.cart-totals {
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 4px 0;
  color: var(--text);
}
.cart-line.discount { color: var(--green); }
.cart-line.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.cart-line.recurring {
  font-size: 0.82rem;
  color: var(--text-mute);
  font-style: italic;
}
.cart-checkout {
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.cart-checkout .btn { margin-bottom: 8px; }
.cart-checkout-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-align: center;
  margin: 8px 0 0;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 253, 248, 0.78);
  padding: 64px 0 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-mark { color: var(--cream); font-size: 1.4rem; }
.footer-brand .brand-tag { color: var(--gold-soft); }
.footer-brand p { margin-top: 16px; max-width: 320px; line-height: 1.6; }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 253, 248, 0.78); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 253, 248, 0.6);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============ Therapies section ============ */
#therapies { background: var(--cream-2, #FAF6EC); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.therapies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.therapy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(14, 42, 57, 0.04);
}
.therapy-card-featured {
  border: 1px solid var(--gold, #B79556);
  box-shadow: 0 4px 18px rgba(183, 149, 86, 0.12);
}
.therapy-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold, #B79556);
  color: #FFFDF8;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(14, 42, 57, 0.12);
}
.therapy-media {
  background: var(--cream, #FFFDF8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.therapy-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 14px;
}

/* TRT no-image variant */
.therapy-rx-media {
  background: linear-gradient(160deg, #0E2A39 0%, #1a4054 100%);
  color: #FFFDF8;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.therapy-rx-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #B79556);
  margin-bottom: 14px;
}
.therapy-rx-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold, #B79556);
  font-weight: 500;
  margin-bottom: 16px;
  opacity: 0.95;
}
.therapy-rx-caption {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 253, 248, 0.72);
  margin: 0;
  max-width: 240px;
}

.therapy-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.therapy-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--body, #374B57);
  opacity: 0.7;
  margin-left: 6px;
  letter-spacing: 0.02em;
}
.therapy-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.therapy-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.therapy-lede {
  color: var(--body, #374B57);
  line-height: 1.55;
  margin: 0 0 14px 0;
  font-size: 0.9rem;
}
.therapy-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
.therapy-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--body, #374B57);
  line-height: 1.5;
}
.therapy-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
.therapy-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  margin-bottom: 16px;
}
.therapy-price { display: flex; align-items: baseline; gap: 4px; }
.therapy-price-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--body, #374B57);
  margin-right: 6px;
}
.therapy-price-amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
}
.therapy-price-suffix { font-size: 0.92rem; color: var(--body, #374B57); }
.therapy-price-note {
  font-size: 0.82rem;
  color: var(--body, #374B57);
  opacity: 0.75;
}
.therapy-body .btn { align-self: flex-start; }
.therapies-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--body, #374B57);
  opacity: 0.75;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
/* Showcase strip */
.therapy-showcase {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(14, 42, 57, 0.05);
}
.therapy-showcase-media {
  background: var(--cream, #FFFDF8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
}
.therapy-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.therapy-showcase-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.therapy-showcase-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 8px 0 14px 0;
  line-height: 1.2;
}
.therapy-showcase-body p {
  color: var(--body, #374B57);
  line-height: 1.6;
  margin: 0 0 18px 0;
}

@media (max-width: 1100px) {
  .therapies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .therapies-grid { grid-template-columns: 1fr; gap: 20px; }
  .therapy-showcase { grid-template-columns: 1fr; }
  .therapy-showcase-media { aspect-ratio: 16 / 10; min-height: 0; }
  .therapy-showcase-body { padding: 28px; }
}

/* ============ Hero trust strip ============ */
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
}
.hero-trust li {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--body, #374B57);
  position: relative;
  padding-left: 16px;
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold, #B79556);
  border-radius: 50%;
}
@media (max-width: 720px) {
  .hero-trust { gap: 6px 18px; }
  .hero-trust li { font-size: 0.7rem; padding-left: 14px; }
}

/* ============ Box showcase (real packaging, side-by-side) ============ */
.box-showcase {
  background: var(--cream-2, #FAF6EC);
  padding: 56px 0 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.box-showcase-single {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
}
.box-showcase-single img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  mix-blend-mode: multiply;
}
@media (max-width: 600px) {
  .box-showcase-single { padding: 0 8px; }
}

/* ============================================
   Aevum benefit callout (below tiers / on therapies)
   ============================================ */
.tier-benefit--therapies {
  margin-top: 40px;
  margin-bottom: 16px;
}
.tier-benefit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 56px auto 28px;
  padding: 36px;
  background: var(--cream-2);
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  position: relative;
}
.tier-benefit::before {
  content: "";
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  border-radius: 2px;
}
.tier-benefit-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  mix-blend-mode: multiply;
}
.tier-benefit-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.tier-benefit-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.25;
}
.tier-benefit-lede {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.tier-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.tier-benefit-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 14px;
  background: #FFFDF8;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
}
.tier-benefit-list li strong { color: var(--navy); }
.tier-benefit-list li span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.tier-benefit-foot {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin: 0 0 16px;
  font-style: italic;
}
@media (max-width: 880px) {
  .tier-benefit {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    margin: 40px auto 20px;
  }
  .tier-benefit-body h3 { font-size: 1.4rem; }
  .tier-benefit-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .tier-benefit-list li span { text-align: left; }
}
.box-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.box-showcase-figure {
  margin: 0;
}
.box-showcase-figure img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(14, 42, 57, 0.08);
}
.box-showcase-figure--pen {
  position: relative;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 520px;
  overflow: hidden;
}

.box-showcase-figure--pen img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 95%;
  max-height: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: multiply;
  transform: rotate(-6deg);
  filter: drop-shadow(0 14px 28px rgba(14, 42, 57, 0.18));
}

.box-showcase-caption {
  margin: 28px auto 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy, #0E2A39);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .box-showcase { padding: 36px 0 40px; }
  .box-showcase-grid { grid-template-columns: 1fr; gap: 18px; }
  .box-showcase-figure img { max-height: 380px; }
  .box-showcase-figure--pen { min-height: 280px; padding: 24px; }
  .box-showcase-figure--pen img { max-height: 220px; }
  .box-showcase-caption { font-size: 1.15rem; margin-top: 20px; }
}

/* ============ Hero logo + 4-col therapies + Daily Protocol hero ============ */
.hero-logo {
  display: block;
  margin: 0 0 22px;
  width: 64px;
  height: auto;
  opacity: 0.95;
}
@media (max-width: 720px) {
  .hero-logo { width: 52px; margin-bottom: 14px; }
}

/* Equal-height therapy cards so NAD+ doesn't tower over the ℞ cards */
.therapies-grid-4 .therapy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.therapies-grid-4 .therapy-card .therapy-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.therapies-grid-4 .therapy-card .therapy-body .therapy-price-row,
.therapies-grid-4 .therapy-card .therapy-body > button {
  margin-top: auto;
}
.therapies-grid-4 .therapy-card.therapy-card-rx .therapy-rx-media {
  min-height: 180px;
}
.therapies-grid-4 .therapy-card .therapy-media {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapies-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .therapies-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .therapies-grid-4 { grid-template-columns: 1fr; }
}

/* Full-width foundation hero card */
.therapy-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 32px;
  padding: 32px;
  background: var(--cream, #FFFDF8);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(14, 42, 57, 0.06);
}
.therapy-hero-media {
  background: var(--cream-2, #FAF6EC);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 280px;
}
.therapy-hero-media img {
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  display: block;
}
.therapy-hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.therapy-hero-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 8px 0 12px;
  color: var(--navy);
}
.therapy-hero-body .therapy-lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted, #4a5a66);
  margin-bottom: 16px;
}
.therapy-hero-body .therapy-bullets {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.therapy-hero-body .therapy-bullets li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--navy);
  font-size: 0.98rem;
}
.therapy-hero-body .therapy-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1px;
  background: var(--gold, #B79556);
}
.therapy-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .therapy-hero { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .therapy-hero-media { min-height: 200px; }
  .therapy-hero-body h3 { font-size: 1.8rem; }
}

/* ============ Tests filter tabs + collapsible categories ============ */
.tests-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px auto 40px;
  max-width: 960px;
  padding: 0 16px;
}
.tests-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--border, #d8d3c5);
  border-radius: 999px;
  background: var(--cream, #FFFDF8);
  color: var(--navy, #0E2A39);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.tests-filter-pill:hover {
  background: var(--navy, #0E2A39);
  color: var(--cream, #FFFDF8);
  border-color: var(--navy, #0E2A39);
  transform: translateY(-1px);
}
.tests-filter-pill--featured {
  background: var(--gold, #B79556);
  border-color: var(--gold, #B79556);
  color: var(--cream, #FFFDF8);
}
.tests-filter-pill--featured:hover {
  background: var(--navy, #0E2A39);
  border-color: var(--navy, #0E2A39);
}

/* Collapsible category */
.test-category--collapsible {
  margin-bottom: 32px;
  border: 1px solid var(--border, #e6e1d3);
  border-radius: 14px;
  background: var(--cream, #FFFDF8);
  overflow: hidden;
  scroll-margin-top: 80px;
}
.test-category--collapsible > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream, #FFFDF8);
  border-bottom: 1px solid transparent;
  transition: background 0.15s;
}
.test-category--collapsible > summary::-webkit-details-marker { display: none; }
.test-category--collapsible > summary:hover { background: var(--cream-2, #FAF6EC); }
.test-category--collapsible[open] > summary { border-bottom-color: var(--border, #e6e1d3); }
.test-category--collapsible > summary > div { flex: 1; }
.test-category--collapsible .category-toggle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold, #B79556);
  font-weight: 300;
  width: 24px;
  text-align: center;
  transition: transform 0.2s ease;
}
.test-category--collapsible[open] .category-toggle { transform: rotate(45deg); }
.test-category--collapsible > .test-grid {
  padding: 24px;
}

/* On desktop, keep all categories open by default (the filter pills are the real navigation) */
@media (min-width: 900px) {
  .test-category--collapsible { 
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .test-category--collapsible > summary { 
    cursor: default;
    padding: 0 0 12px;
    background: transparent;
    border-bottom: 1px solid var(--border, #e6e1d3);
    margin-bottom: 20px;
  }
  .test-category--collapsible > summary:hover { background: transparent; }
  .test-category--collapsible .category-toggle { display: none; }
  .test-category--collapsible[open] > summary { border-bottom-color: var(--border, #e6e1d3); }
  .test-category--collapsible > .test-grid { padding: 0; }
  /* Force all open on desktop regardless of [open] attr */
  .test-category--collapsible > .test-grid { display: grid; }
}
@media (max-width: 899px) {
  .tests-filter { margin: 20px auto 28px; gap: 8px; }
  .tests-filter-pill { padding: 8px 14px; font-size: 0.85rem; }
}

/* ============================================
   Shop page
   ============================================ */
.page-hero {
  padding: 88px 0 32px;
  background: var(--cream);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1;
  margin: 14px auto 18px;
  max-width: 820px;
  color: var(--navy);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}
.page-hero-sub {
  max-width: 720px;
  margin: 0 auto 22px;
  color: var(--navy);
  opacity: 0.78;
  font-size: 1.04rem;
  line-height: 1.6;
}
.page-hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  font-size: 0.86rem;
  color: var(--navy);
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.page-hero-meta strong { color: var(--navy); opacity: 1; font-weight: 600; }
@media (max-width: 720px) {
  .page-hero { padding: 56px 0 24px; }
  .page-hero-meta span[aria-hidden="true"] { display: none; }
  .page-hero-meta { gap: 8px 12px; font-size: 0.82rem; }
}

.shop-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.shop-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.shop-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.18s ease;
}
.shop-chip:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.shop-chip-tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
}
.shop-chip:hover .shop-chip-tag { background: var(--gold); color: var(--navy); }

.shop-product {
  padding: 72px 0;
  background: var(--cream);
}
.shop-product--alt { background: var(--cream-2); }
.shop-product--rx {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}
.shop-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.shop-product-inner--reverse .shop-product-media { order: 2; }
.shop-product-inner--reverse .shop-product-body { order: 1; }

.shop-product-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-product--alt .shop-product-media { background: var(--cream); }
.shop-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.shop-flag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--navy);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.shop-flag--rx {
  background: var(--gold-dark);
  color: var(--cream);
}

.shop-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.shop-product-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--navy);
}
.shop-lede {
  color: var(--navy);
  opacity: 0.82;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.shop-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.shop-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.5;
}
.shop-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1.5px;
  background: var(--gold-dark);
}
.shop-bullets li strong { font-weight: 600; }

.shop-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 16px 0;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  margin: 0 0 22px;
}
.shop-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.shop-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.shop-price-suffix {
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.6;
}
.shop-price-sub {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.86rem;
}
.shop-price-strike {
  text-decoration: line-through;
  color: var(--navy);
  opacity: 0.45;
}
.shop-price-save {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.shop-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.shop-waitlist {
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.shop-product--alt .shop-waitlist { background: var(--cream-2); border-color: var(--gold-soft); }
.shop-waitlist-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.shop-waitlist-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-waitlist-row input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
}
.shop-waitlist-row input[type="email"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.shop-waitlist-row button { flex: 0 0 auto; }
.shop-waitlist-msg {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.shop-foot {
  font-size: 0.78rem;
  color: var(--navy);
  opacity: 0.55;
  line-height: 1.5;
  margin: 0;
}

/* Closing reassurance */
.shop-close {
  background: var(--navy);
  color: var(--cream);
  padding: 72px 0;
}
.shop-close-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.shop-close h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 12px 0 18px;
  color: var(--cream);
}
.shop-close .eyebrow { color: var(--gold); }
.shop-close p {
  color: var(--cream);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 22px;
}
.shop-close .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.shop-close .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}
.shop-close-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.shop-close-list li {
  position: relative;
  padding-left: 26px;
  color: var(--cream);
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.5;
}
.shop-close-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}
.shop-close-list li strong { font-weight: 600; }

@media (max-width: 900px) {
  .shop-product { padding: 48px 0; }
  .shop-product-inner { grid-template-columns: 1fr; gap: 32px; }
  .shop-product-inner--reverse .shop-product-media { order: 1; }
  .shop-product-inner--reverse .shop-product-body { order: 2; }
  .shop-product-media { aspect-ratio: 4 / 3; }
  .shop-close-inner { grid-template-columns: 1fr; gap: 32px; }
  .shop-close { padding: 48px 0; }
}
@media (max-width: 480px) {
  .shop-strip-inner { gap: 6px; }
  .shop-chip { padding: 6px 12px; font-size: 0.78rem; }
  .shop-price-row { gap: 8px 14px; }
  .shop-price-amount { font-size: 1.7rem; }
}

/* ============================================
   Homepage v2 — simplified, tier-led layout
   ============================================ */
/* ============ Hero — centered editorial (Option 6) ============ */
.hero--centered {
  padding: 160px 0 140px;
  background: var(--cream);
  color: var(--navy);
  text-align: center;
  min-height: 860px;
}
.hero--centered .hero-bg {
  opacity: 0.26;
  background-position: center;
}
.hero--centered .hero-bg::after {
  background: radial-gradient(ellipse at center, rgba(255,253,248,0.45) 0%, rgba(255,253,248,0.92) 70%, var(--cream) 100%);
}
.hero--centered .hero-inner {
  max-width: 1100px;
  padding: 0 32px;
}
.hero--centered .hero-logo {
  width: 44px;
  height: 44px;
  margin: 0 auto 32px;
  display: block;
  opacity: 0.85;
}
.hero--centered .hero-eb {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 23px;
  color: var(--gold-dark);
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.hero--centered .hero-eb .em {
  font-style: italic;
  font-weight: 500;
}
.hero--centered .hero-eb-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  font-weight: 500;
  margin: 0 0 40px;
}
.hero--centered h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 36px;
  max-width: none;
}
.hero--centered h1 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.hero--centered h1 .br {
  display: block;
}
.hero--centered .hero-div {
  width: 1px;
  height: 48px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto 36px;
}
.hero--centered .hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  opacity: 0.82;
  max-width: 600px;
  margin: 0 auto 48px;
}
.hero--centered .hero-sub strong {
  font-weight: 600;
  opacity: 1;
  color: var(--navy);
}
.hero--centered .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero--centered .btn {
  padding: 17px 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
}
@media (max-width: 720px) {
  .hero--centered {
    padding: 100px 0 80px;
    min-height: auto;
  }
  .hero--centered .hero-eb { font-size: 19px; }
  .hero--centered .hero-eb-meta { font-size: 10px; letter-spacing: 0.32em; margin-bottom: 28px; }
  .hero--centered h1 { font-size: clamp(42px, 11vw, 64px); margin-bottom: 28px; }
  .hero--centered .hero-div { height: 36px; margin-bottom: 28px; }
  .hero--centered .hero-sub { font-size: 15px; margin-bottom: 36px; }
}

.hero--compact {
  padding-top: 72px;
  padding-bottom: 56px;
}
.hero--compact .hero-inner { max-width: 820px; }
.hero--compact .hero-logo { margin-bottom: 12px; }
.hero--compact h1 { margin-bottom: 14px; }
.hero--compact .hero-sub { max-width: 640px; margin-bottom: 22px; }
@media (max-width: 720px) {
  .hero--compact { padding-top: 48px; padding-bottom: 36px; }
}

.tiers-section {
  background: var(--cream-2);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 64px 0 72px;
}

/* Limited-time offer banner */
.ltd-offer {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0;
}
.ltd-offer-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.ltd-offer-media {
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltd-offer-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}
.ltd-offer-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ltd-offer-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 16px;
}
.ltd-offer-body h2 em {
  font-style: italic;
  color: var(--gold);
}
.ltd-offer-body p {
  color: var(--cream);
  opacity: 0.82;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 560px;
}
.ltd-offer .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.ltd-offer .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}
.ltd-offer-foot {
  margin-top: 14px !important;
  font-size: 0.8rem !important;
  opacity: 0.55 !important;
}
@media (max-width: 900px) {
  .ltd-offer { padding: 48px 0; }
  .ltd-offer-inner { grid-template-columns: 1fr; gap: 28px; }
  .ltd-offer-media { max-width: 460px; margin: 0 auto; padding: 16px; }
  .ltd-offer-media img { max-height: 380px; }
}

/* Slim How It Works strip */
.how-strip {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid var(--gold-soft);
}
.how-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.how-strip-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.how-strip-num {
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
}
.how-strip-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 4px;
  color: var(--navy);
  line-height: 1.1;
}
.how-strip-step p {
  margin: 0;
  color: var(--navy);
  opacity: 0.72;
  font-size: 0.92rem;
  line-height: 1.5;
}
.how-strip-link {
  text-align: center;
  margin: 28px 0 0;
  font-size: 0.92rem;
}
.how-strip-link a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.how-strip-link a:hover { border-bottom-color: var(--gold-dark); }
@media (max-width: 760px) {
  .how-strip { padding: 40px 0; }
  .how-strip-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Not ready to subscribe */
.not-ready {
  background: var(--cream-2);
  padding: 64px 0;
}
.not-ready-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.not-ready h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  margin: 10px 0 14px;
  color: var(--navy);
}
.not-ready p {
  color: var(--navy);
  opacity: 0.78;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 520px;
}
.not-ready-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.not-ready-meta li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.5;
}
.not-ready-meta li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 1.5px;
  background: var(--gold-dark);
}
@media (max-width: 900px) {
  .not-ready { padding: 48px 0; }
  .not-ready-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   INNER-PAGE POLISH — launch-post voice
   ============================================ */

/* Page-hero variants: cream wash with serif italic em */
.page-hero.about-hero,
.page-hero.science-hero,
.page-hero.how-hero,
.page-hero.faq-hero {
  background: var(--cream);
  padding: 88px 0 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero.about-hero h1,
.page-hero.science-hero h1,
.page-hero.how-hero h1,
.page-hero.faq-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 12px 0 16px;
  max-width: 880px;
}
.page-hero.about-hero h1 em,
.page-hero.science-hero h1 em,
.page-hero.how-hero h1 em,
.page-hero.faq-hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
}
.page-hero.about-hero p,
.page-hero.science-hero p,
.page-hero.how-hero p,
.page-hero.faq-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  opacity: 0.7;
  margin: 0;
  max-width: 720px;
  line-height: 1.4;
}
.page-hero.about-hero p em,
.page-hero.science-hero p em,
.page-hero.how-hero p em {
  color: var(--gold-dark);
  font-style: italic;
}

/* About — etymology strip */
.etymology-strip {
  background: var(--cream-2);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.etymology-strip::before {
  content: 'A';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(280px, 38vw, 460px);
  line-height: 1;
  color: var(--navy);
  opacity: 0.05;
  pointer-events: none;
}
.etymology-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--navy);
  margin: 12px 0 6px;
  position: relative;
}
.etymology-name .phonetic {
  font-size: 0.5em;
  font-style: italic;
  color: var(--navy);
  opacity: 0.55;
  margin-left: 8px;
  font-weight: 400;
}
.etymology-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 18px 0 14px;
  position: relative;
  padding-top: 18px;
}
.etymology-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: var(--gold-dark);
}
.etymology-line em {
  font-style: italic;
  color: var(--navy);
  opacity: 0.75;
}
.etymology-body {
  font-size: 1.05rem;
  color: var(--navy);
  opacity: 0.82;
  line-height: 1.6;
  max-width: 540px;
  margin: 0;
  position: relative;
}

/* About — problem block (dark navy) */
.problem-block {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0;
}
.problem-block .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
}
.problem-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: var(--cream);
  margin: 16px 0 24px;
  max-width: 820px;
}
.problem-block h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.problem-block p {
  color: var(--cream);
  opacity: 0.75;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 0 14px;
}

/* About — founder letter (cream, serif body) */
.founder-letter {
  background: var(--cream);
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.founder-letter .eyebrow {
  text-align: center;
  letter-spacing: 0.22em;
  margin-bottom: 32px;
  position: relative;
}
.founder-letter .eyebrow::before,
.founder-letter .eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
  vertical-align: middle;
  margin: 0 14px;
}
.founder-letter-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.founder-letter-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 400;
}
.founder-letter-body p em {
  font-style: italic;
}
.founder-letter-note {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.02rem !important;
  font-weight: 400 !important;
  opacity: 0.85;
  line-height: 1.65 !important;
  max-width: 540px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.founder-letter-close {
  color: var(--gold-dark) !important;
  font-style: italic;
  margin-top: 8px !important;
  font-size: 1.25rem !important;
}
.founder-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.founder-monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy) !important;
  color: var(--gold) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
}
.founder-sign > div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.founder-sign strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
}
.founder-sign span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
}

/* About / How It Works — mission strip (centered serif w/ gold em) */
.mission-strip {
  background: var(--cream-2);
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 14px;
}
.mission-strip h2 em {
  font-style: italic;
  color: var(--gold-dark);
}
.mission-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  opacity: 0.7;
  margin: 0;
}

/* Science — dark quote block ("Your bloods are normal.") */
.science-quote-dark {
  background: var(--navy);
  color: var(--cream);
  padding: 88px 0;
  text-align: center;
  position: relative;
}
.science-quote-dark .big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 14px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.science-quote-dark .big-quote-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 32px;
}
.science-quote-dark .big-quote-sub em {
  font-style: italic;
}
.science-quote-dark .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: 0.5;
}
.science-quote-dark p {
  color: var(--cream);
  opacity: 0.78;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 14px;
}
.science-quote-dark .science-quote-pullback {
  color: var(--gold);
  opacity: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 20px;
  max-width: 580px;
}

/* Science — three pillars (Mind. Body. Data.) */
.three-pillars {
  background: var(--cream-2);
  padding: 64px 40px;
  margin: 48px 0;
  text-align: center;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.three-pillars .eyebrow {
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
.three-pillars h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  color: var(--navy);
  margin: 0 0 18px;
}
.three-pillars h3 em {
  font-style: italic;
  color: var(--gold-dark);
}
.three-pillars > p {
  color: var(--navy);
  opacity: 0.75;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.pillars-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pillars-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--navy);
  padding-left: 0 !important;
  opacity: 0.85;
}
.pillars-list li::before {
  display: none !important;
}
.pillars-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin: 24px 0 0 !important;
}
.pillars-close strong {
  color: var(--gold-dark);
  font-weight: 500;
}

/* How It Works — intro line */
.how-intro {
  background: var(--cream);
  padding: 40px 0 0;
  text-align: center;
}
.how-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  opacity: 0.7;
  max-width: 680px;
  margin: 0 auto;
}
.step-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 6px;
  font-weight: 500;
}
.step-note {
  margin-top: 12px !important;
  padding: 14px 18px;
  background: var(--cream-2);
  border-left: 2px solid var(--gold-dark);
  font-size: 0.92rem !important;
  color: var(--navy) !important;
  opacity: 0.85;
  border-radius: 2px;
}

/* Mobile responsive for new sections */
@media (max-width: 720px) {
  .etymology-strip { padding: 56px 0; }
  .etymology-strip::before { font-size: 240px; right: -60px; opacity: 0.04; }
  .problem-block { padding: 56px 0; }
  .founder-letter { padding: 64px 0; }
  .founder-letter-body p { font-size: 1.2rem; }
  .science-quote-dark { padding: 64px 0; }
  .mission-strip { padding: 56px 0; }
  .three-pillars { padding: 44px 24px; margin: 32px 0; }
  .pillars-list li { font-size: 1.1rem; }
}

/* ============ Therapies page ============ */
.therapies-why {
  padding: 64px 0 24px;
  background: var(--cream);
}
.therapies-why h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 16px;
  line-height: 1.15;
}
.therapies-why h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.therapies-why p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.86;
}

.therapies-grid-section {
  padding: 56px 0 72px;
  background: var(--cream-2);
}
.therapies-grid-section .section-eyebrow {
  text-align: center;
}
.therapies-grid-section .section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 40px;
}
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .therapy-grid { grid-template-columns: 1fr; }
}
.therapy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.therapy-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.therapy-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 10px;
}
.therapy-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.1;
}
.therapy-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-dark);
  margin: 0 0 16px;
}
.therapy-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy);
  opacity: 0.85;
  margin: 0 0 18px;
}
.therapy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.therapy-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy);
  opacity: 0.88;
  margin-bottom: 10px;
}
.therapy-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}
.therapy-card .btn {
  align-self: flex-start;
  margin-top: auto;
}
.therapy-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--navy);
  opacity: 0.6;
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

.therapies-nad {
  padding: 56px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.therapies-nad h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 14px;
}
.therapies-nad h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.therapies-nad p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.85;
}
.therapies-nad a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.therapies-process {
  padding: 64px 0;
  background: var(--navy);
  color: var(--cream);
}
.therapies-process .section-eyebrow {
  color: var(--gold);
  text-align: center;
}
.therapies-process .section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--cream);
  margin: 8px 0 40px;
}
.therapy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .therapy-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .therapy-steps { grid-template-columns: 1fr; }
}
.therapy-step {
  text-align: center;
  padding: 8px;
}
.therapy-step-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.therapy-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 10px;
}
.therapy-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.82;
  margin: 0;
}

.therapies-safety {
  padding: 36px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.therapies-safety p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.82;
  margin: 0;
}
.therapies-safety strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.therapies-cta {
  padding: 72px 0;
  background: var(--cream);
  text-align: center;
}
.therapies-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 16px;
}
.therapies-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.86;
  max-width: 600px;
  margin: 0 auto 28px;
}
.therapies-cta .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ App showcase section (used on Home / How It Works / Science) ============ */
.app-showcase {
  padding: 80px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
}
.app-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .app-showcase-inner { grid-template-columns: 1fr; gap: 32px; }
}
.app-showcase-copy .section-eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}
.app-showcase-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 18px;
}
.app-showcase-copy h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.app-showcase-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.86;
  margin: 0 0 14px;
}
.app-showcase-image {
  position: relative;
}
.app-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ============ Language toggle ============ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.lang-btn {
  background: none;
  border: 0;
  color: var(--navy);
  opacity: 0.55;
  padding: 4px 6px;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  transition: opacity 0.2s;
}
.lang-btn:hover { opacity: 0.85; }
.lang-btn--active {
  opacity: 1;
  color: var(--gold-dark);
  font-weight: 600;
}
.lang-divider {
  color: var(--navy);
  opacity: 0.3;
}
@media (max-width: 720px) {
  .lang-toggle { margin-right: 8px; font-size: 11px; }
  .lang-btn { padding: 4px 4px; }
}
