/*
Theme Name:  Fern
Theme URI:   https://tryfern.com
Author:      Fern Health, Inc.
Description: Custom theme for the Fern eczema care landing page.
Version:     1.4.0


Text Domain: fern
*/

/* ── Reset & base ── */
:root {
  --fern:     #1F4A2C;
  --moss:     #3F5E44;
  --sage:     #8AA48D;
  --mist:     #D8E3D5;
  --cream:    #F4EFE6;
  --butter:   #EBD8A8;
  --clay:     #C88F6B;
  --ink:      #1E2A20;
  --bg-cream: #F6F1E8;
  --bg-mist:  #EAF0E6;
  --bg-sage:  #D2DDCF;
  --accent:   #1F4A2C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
}
body {
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2 { font-optical-sizing: auto; }
h3 { font-optical-sizing: auto; }

/* ── Nav ── */
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  position: sticky; top: 0; z-index: 200;
  background: rgba(246,241,232,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
}
.site-nav__left { display: flex; align-items: center; gap: 48px; }
.site-nav__links { display: flex; align-items: center; gap: 32px; font-size: 14px; color: var(--ink); font-weight: 500; }
.site-nav__links a {
  color: inherit; text-decoration: none;
  position: relative; padding-bottom: 2px;
}
.site-nav__links a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 1.5px;
  background: var(--fern);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease-out;
}
.site-nav__links a:hover::after,
.site-nav__links a.is-active::after {
  transform: scaleX(1);
}
.site-nav__links a.is-active { color: var(--fern); }
.site-nav__right { display: flex; align-items: center; gap: 16px; }
.site-nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 100; position: relative;
}
.site-nav__burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 220ms ease, opacity 180ms ease;
}
.site-nav__drawer { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px;
  cursor: pointer; font-family: inherit;
  font-weight: 600; text-decoration: none;
}
.btn--primary {
  background: var(--accent); color: var(--cream);
  padding: 11px 20px; font-size: 14px;
}
.btn--hero {
  background: var(--accent); color: var(--cream);
  padding: 16px 28px; font-size: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 8px 20px rgba(31,74,44,0.2);
}
.btn--outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
  padding: 12px 20px; font-size: 14px;
}
.btn--outline-small {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px; font-size: 15px;
  width: 100%;
}
.btn--outline-fern {
  background: #fff;
  color: var(--fern);
  border: 1.5px solid var(--fern);
}
.btn--cream {
  background: var(--cream); color: var(--fern);
  padding: 18px 34px; font-size: 17px;
}
.btn--cream-sm {
  background: var(--cream); color: var(--fern);
  padding: 16px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}

/* ── Logo ── */
.logo { display: inline-flex; align-items: center; gap: 10px; line-height: 0; color: var(--fern); }
.logo__mark { display: block; }
.logo__text {
  font-family: "Young Serif", serif;
  font-weight: 400; font-size: 38px;
  line-height: 1; letter-spacing: -0.005em;
}

/* ── Hero ── */
.hero { padding: max(72px, 10vh) 48px 72px; max-width: 1400px; margin: 0 auto; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero__title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400; line-height: 1.02;
  letter-spacing: -0.025em; color: var(--ink);
  margin: 0 0 28px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__body {
  font-size: 19px; line-height: 1.55; color: #4a4e48;
  max-width: 520px; margin: 0 0 28px;
}
.hero__perks { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero__perk {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: var(--cream);
  border: 1px solid var(--sage); border-radius: 999px;
}
.hero__perk-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.hero__perk-sub { font-size: 12px; color: #6b6b66; }
.hero__actions { display: flex; gap: 12px; align-items: center; margin-bottom: 32px; }
.hero__actions-note { font-size: 13px; color: #6b6b66; line-height: 1.4; }
.hero__actions-note span { color: var(--moss); }

/* Hero image */
.hero__image-wrap { position: relative; }
.hero__image {
  width: 100%; height: auto; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 24px;
}
.hero__badge {
  position: absolute; bottom: 16px; left: -20px;
  background: var(--cream); padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
  max-width: 280px;
}
.hero__badge-icon {
  width: 44px; height: 44px; border-radius: 22px;
  background: var(--bg-mist);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__badge-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.hero__badge-sub { font-size: 12px; color: #6b6b66; }

/* ── Section head ── */
.section-head__kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-head__title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -1px; color: var(--ink);
  margin: 0 0 20px;
}
.section-head__body {
  font-size: 18px; line-height: 1.55; color: #4a4e48; margin: 0;
}
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head--left { max-width: 620px; }

/* ── How it works ── */
.how { padding: 96px 48px; background: var(--bg-cream); }
.how__inner { max-width: 1400px; margin: 0 auto; }
.how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 72px; }
.how__step-image {
  width: 100%; height: auto; aspect-ratio: 1/1;
  object-fit: cover; border-radius: 16px; margin-bottom: 20px;
}
.how__step-num {
  font-family: "Source Serif 4", serif; font-optical-sizing: auto;
  font-size: 14px; color: var(--accent); margin-bottom: 10px; letter-spacing: 0.5px;
}
.how__step-title {
  font-family: "Source Serif 4", serif; font-optical-sizing: auto;
  font-size: 22px; font-weight: 500; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.4px; line-height: 1.2;
}
.how__step-body { font-size: 14px; line-height: 1.6; color: #5a5a55; }

/* ── Treatments ── */
.treatments { padding: 120px 48px; background: var(--ink); color: var(--cream); }
.treatments__inner { max-width: 1400px; margin: 0 auto; }
.treatments__intro { max-width: 720px; }
.treatments__kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
}
.treatments__title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1.05; letter-spacing: -1px;
  margin: 0 0 20px; color: var(--cream);
}
.treatments__body {
  font-size: 18px; line-height: 1.55; color: #c4c9c3;
  margin: 0; max-width: 620px;
}
.treatments__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-top: 64px; align-items: start; }

.treatments__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px;
}
.treatments__card-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.treatments__card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--sage);
}
.treatments__card-note { font-size: 12px; color: #8a948b; }
.treatments__potency-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 32px; row-gap: 20px; }
.treatments__potency-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.1px;
  text-transform: uppercase; color: #8a948b;
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.treatments__med-list { display: flex; flex-direction: column; gap: 10px; }
.treatments__med-name {
  font-family: "Source Serif 4", serif; font-optical-sizing: auto;
  font-size: 17px; font-weight: 400; color: var(--cream);
  letter-spacing: -0.2px; line-height: 1.2;
}
.treatments__med-note { font-size: 12px; color: #a8b0a9; margin-top: 2px; }

.treatments__side-cards { display: flex; flex-direction: column; gap: 20px; }
.treatments__side-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.treatments__count-note { margin-top: 28px; font-size: 13px; color: #a8b0a9; }
.treatments__med-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 150ms;
}
.treatments__med-link:hover {
  text-decoration-color: var(--sage);
}

/* Roadmap */
.treatments__roadmap {
  margin-top: 64px; padding: 40px 36px; border-radius: 20px;
  border: 1px dashed rgba(200,212,188,0.35);
  background: rgba(200,212,188,0.04);
}
.treatments__roadmap-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.treatments__roadmap-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--sage); margin-bottom: 14px;
}
.treatments__roadmap-title {
  font-family: "Source Serif 4", serif; font-optical-sizing: auto;
  font-size: 32px; font-weight: 400; color: var(--cream);
  letter-spacing: -0.6px; line-height: 1.1;
}
.treatments__roadmap-body {
  font-size: 14px; line-height: 1.6; color: #a8b0a9;
  margin-top: 14px; max-width: 360px;
}
.treatments__roadmap-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.treatments__roadmap-item {
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.treatments__roadmap-item-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.treatments__roadmap-item-name {
  font-family: "Source Serif 4", serif; font-optical-sizing: auto;
  font-size: 19px; font-weight: 400; color: var(--cream); letter-spacing: -0.2px;
}
.treatments__roadmap-item-generic { font-size: 12px; color: #8a948b; font-style: italic; }
.treatments__roadmap-item-kind { font-size: 12px; color: #a8b0a9; }

/* ── Pricing ── */
.pricing { padding: 120px 48px 80px; }
.pricing__inner { max-width: 1100px; margin: 0 auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 64px; }
.pricing__card {
  border-radius: 20px; padding: 36px 32px; position: relative;
}
.pricing__card--default { background: var(--bg-sage); border: 1px solid var(--sage); }
.pricing__card--featured { background: var(--ink); border: 2px solid var(--ink); }
/* Dark green featured card — text overrides */
.pricing__card--featured .pricing__plan-name,
.pricing__card--featured .pricing__price,
.pricing__card--featured .pricing__feature { color: var(--cream); }
.pricing__card--featured .pricing__price-sub,
.pricing__card--featured .pricing__detail,
.pricing__card--featured .pricing__tacrolimus-note { color: rgba(244,239,230,0.65); }
.pricing__card--featured .pricing__section-label { color: var(--sage); }
.pricing__card--featured .pricing__formulary {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--cream);
}
.pricing__card--featured .pricing__card-badge { background: var(--butter); color: var(--ink); }
.pricing__card--featured .btn--primary { background: var(--cream); color: var(--ink); }
.pricing__card--featured .check-icon { color: var(--sage); }

.pricing__card-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--cream);
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.pricing__plan-name {
  font-family: "Source Serif 4", serif;
  font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px;
}
.pricing__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pricing__price {
  font-family: "Source Serif 4", serif;
  font-size: 60px; font-weight: 400; color: var(--ink); letter-spacing: -2px;
}
.pricing__price-sub { font-size: 16px; color: #6b6b66; }
.pricing__detail { font-size: 13px; color: #6b6b66; margin-bottom: 22px; line-height: 1.4; }
.pricing__formulary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: var(--bg-mist); border: 1px solid var(--sage);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 22px;
}
.pricing__section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.pricing__features { margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.pricing__feature {
  display: flex; align-items: start; gap: 10px;
  font-size: 14px; color: var(--ink); line-height: 1.5;
}
.pricing__tacrolimus-note {
  font-size: 12px; color: #8a8a80; line-height: 1.4;
  margin-bottom: 16px; padding-top: 4px;
}
.pricing__card-cta { width: 100%; padding: 14px 20px; font-size: 15px; }

/* OTC add-on */
.pricing__addon {
  margin-top: 40px; background: var(--bg-mist);
  border: 1px solid var(--sage); border-radius: 20px;
  padding: 32px 36px; display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.pricing__addon-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.pricing__addon-title {
  font-family: "Source Serif 4", serif;
  font-size: 28px; font-weight: 400; color: var(--ink);
  letter-spacing: -0.5px; margin-bottom: 8px; line-height: 1.15;
}
.pricing__addon-body { font-size: 15px; color: #4a4e48; line-height: 1.55; max-width: 560px; }
.pricing__addon-right { text-align: right; }
.pricing__footer { text-align: center; margin-top: 28px; font-size: 13px; color: #6b6b66; }

/* ── FAQ ── */
.faq { padding: 120px 48px; background: var(--bg-cream); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq__list { margin-top: 56px; border-top: 1px solid var(--mist); }
.faq__item { border-bottom: 1px solid var(--mist); }
.faq__question {
  width: 100%; background: transparent; border: none;
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; text-align: left;
  font-family: inherit;
}
.faq__question-text {
  font-family: "Source Serif 4", serif;
  font-size: 21px; font-weight: 500; color: var(--ink); letter-spacing: -0.3px;
}
.faq__toggle {
  width: 32px; height: 32px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; margin-left: 20px;
  transition: all 180ms;
  border: 1px solid var(--sage); background: transparent; color: var(--ink);
}
.faq__item.is-open .faq__toggle {
  background: var(--accent); border-color: var(--accent); color: var(--cream);
}
.faq__answer {
  display: none; padding: 0 0 28px; max-width: 680px;
  font-size: 16px; line-height: 1.6; color: #4a4e48;
}
.faq__answer p {
  margin: 0 0 10px;
}
.faq__answer p:last-child { margin-bottom: 0; }
.faq__item.is-open .faq__answer { display: block; }

/* ── Blog section ── */
.blog-section { padding: 120px 48px; background: var(--bg-mist); }
.blog-section__inner { max-width: 1400px; margin: 0 auto; }
.blog-section__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: 56px;
}
.blog-section__all-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--fern);
  padding: 12px 20px; border: 1px solid var(--sage);
  border-radius: 999px; background: var(--cream);
}
.blog-section__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; width: 100%;
  background: var(--cream); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--mist);
  text-decoration: none;
}
.blog-card__placeholder { aspect-ratio: 3/2; width: 100%; }
.blog-card__thumb { width: 100%; overflow: hidden; flex-shrink: 0; aspect-ratio: 3/2; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Featured card image fills full height on desktop */
.blog-listing__featured-thumb { aspect-ratio: unset; height: 100%; min-height: 320px; border-radius: 0; }
.blog-listing__featured-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.blog-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--moss);
}
.blog-card__meta-dot { width: 3px; height: 3px; border-radius: 2px; background: var(--sage); }
.blog-card__meta-date { color: #9a988f; letter-spacing: 0.4px; }
.blog-card__title {
  font-family: "Source Serif 4", serif;
  font-size: 22px; font-weight: 400; line-height: 1.15;
  letter-spacing: -0.4px; color: var(--ink); margin: 0;
}
.blog-card__lede { font-size: 15px; line-height: 1.55; color: #5c5f58; margin: 0; flex: 1; }
.blog-card__read {
  margin-top: auto; padding-top: 8px;
  font-size: 14px; font-weight: 500; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Photo placeholder gradients */
.photo-placeholder { position: relative; overflow: hidden; border-radius: 4px; }
.photo-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15), transparent 50%);
  mix-blend-mode: overlay;
}
.photo-placeholder--warm  { background: radial-gradient(ellipse 80% 60% at 30% 30%, #F0D8B8 0%, #D4A67E 40%, #8F6848 100%); }
.photo-placeholder--sage  { background: radial-gradient(ellipse 70% 70% at 60% 40%, #C8D4BC 0%, #8FA68C 45%, #4E6650 100%); }
.photo-placeholder--skin  { background: radial-gradient(ellipse 60% 50% at 40% 35%, #F4DFC8 0%, #E0BFA1 50%, #A88264 100%); }
.photo-placeholder--cream { background: radial-gradient(ellipse 80% 70% at 50% 40%, #F4EFE6 0%, #D9CDB8 60%, #9A8B70 100%); }
.photo-placeholder--moss  { background: radial-gradient(ellipse 70% 60% at 50% 40%, #7F9A7F 0%, #4E6650 50%, #2F4434 100%); }

/* ── Final CTA ── */
.final-cta { padding: 120px 48px; background: var(--fern); color: var(--cream); }
.final-cta__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.final-cta__title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400; line-height: 1; letter-spacing: -0.025em;
  margin: 0 0 24px; color: var(--cream);
}
.final-cta__title em { font-style: italic; color: var(--butter); }
.final-cta__body {
  font-size: 19px; line-height: 1.5; color: rgba(244,239,230,0.8);
  margin: 0 auto 40px; max-width: 560px;
}

/* ── Final CTA trust line ── */
.final-cta__trust {
  font-size: 13px; color: rgba(244,239,230,0.55);
  margin-top: 16px; letter-spacing: 0.2px;
}

/* ── Problem statement ── */
.problem-statement {
  padding: 60px 48px;
  background: var(--bg-mist);
  border-bottom: 1px solid var(--mist);
}
.problem-statement__inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.problem-statement__kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.problem-statement__text {
  font-family: "Source Serif 4", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.6; color: var(--ink); font-weight: 400;
}

/* ── Stat block ── */
.stat-block {
  padding: 72px 48px;
  background: #fff;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}
.stat-block__inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; text-align: center;
}
.stat-block__number {
  font-family: "Source Serif 4", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; color: var(--fern);
  line-height: 1; margin-bottom: 10px;
}
.stat-block__label {
  font-size: 14px; color: #6b6b66; line-height: 1.4;
}

/* ── Footer ── */
.site-footer { padding: 64px 48px 40px; background: var(--bg-cream); border-top: 1px solid var(--mist); }
.site-footer__inner { max-width: 1400px; margin: 0 auto; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.site-footer__brand { font-size: 13px; color: #6b6b66; line-height: 1.6; max-width: 280px; margin-top: 20px; }
.site-footer__col-title {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.site-footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col-links a { font-size: 14px; color: #5a5a55; }
.site-footer__bottom {
  padding-top: 28px; border-top: 1px solid var(--mist);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 20px; font-size: 12px; color: #9a988f;
}

.site-footer__social {
  display: flex; align-items: center; gap: 12px;
}
.site-footer__social-link {
  display: flex; align-items: center; justify-content: center;
  color: #9a988f; transition: color 0.2s ease;
}
.site-footer__social-link:hover { color: var(--green); }

.site-footer__privacy {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--mist);
  font-size: 11px;
  color: #b0aea6;
  line-height: 1.7;
}
.site-footer__privacy a {
  color: #9a988f;
  text-decoration: underline;
}
.site-footer__certifications {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.site-footer__certifications img {
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.site-footer__certifications img:hover {
  opacity: 1;
}

/* ── Blog listing page ── */
.blog-listing { background: var(--bg-cream); min-height: 100vh; }
.blog-listing__header { max-width: 1400px; margin: 0 auto; padding: 80px 48px 64px; }
.blog-listing__title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400; line-height: 1; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 0 20px;
}
.blog-listing__title em { font-style: italic; color: var(--accent); }
.blog-listing__body {
  font-size: 18px; line-height: 1.55; color: #4a4e48;
  max-width: 560px; margin: 0;
}
.blog-listing__featured { max-width: 1400px; margin: 0 auto; padding: 0 48px 80px; }
.blog-listing__featured-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--cream); border-radius: 16px;
  border: 1px solid var(--mist); overflow: hidden;
  text-decoration: none;
}
.blog-listing__featured-body {
  padding: 56px 52px; display: flex; flex-direction: column;
  justify-content: center; gap: 20px;
}
.blog-listing__rest { max-width: 1400px; margin: 0 auto; padding: 0 48px 100px; }
.blog-listing__rest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Article page ── */
.article-header { max-width: 760px; margin: 0 auto; padding: 72px 48px 0; }
.article-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--moss); margin-bottom: 28px;
}
.article-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; line-height: 1.04; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 0 28px;
}
.article-lede {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-size: 22px; font-weight: 400; font-style: italic; line-height: 1.5;
  color: #4a4e48;
  margin: 0 0 24px;
}
.article-author {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  margin-bottom: 0;
}
.article-author__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--fern); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.article-author__name {
  font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3;
}
.article-author__bio {
  font-size: 12px; color: #7a7a74; letter-spacing: 0.3px;
}
.article-hero-image {
  max-width: 760px; margin: 48px auto 0; padding: 0 48px;
  aspect-ratio: 16/7; overflow: hidden; border-radius: 12px;
}
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 56px 48px 120px; }

/* Article CTA bar */
.article-cta { background: var(--fern); padding: 64px 48px; }
.article-cta__inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.article-cta__title {
  font-family: "Source Serif 4", serif; font-optical-sizing: auto;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 400;
  line-height: 1.1; letter-spacing: -1px;
  color: var(--cream); margin-bottom: 10px;
}
.article-cta__body { font-size: 16px; color: rgba(244,239,230,0.75); }

/* More articles */
.more-articles { background: var(--bg-mist); padding: 80px 48px; }
.more-articles__inner { max-width: 1200px; margin: 0 auto; }
.more-articles__kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 40px;
}
.more-articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.more-article-card {
  background: var(--cream); border-radius: 16px; padding: 28px;
  border: 1px solid var(--mist); display: flex; flex-direction: column;
  gap: 12px; text-decoration: none; /* already 16px — consistent with blog-card */
}
.more-article-card__meta {
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--moss);
}
.more-article-card__title {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-size: 20px; font-weight: 400; line-height: 1.2;
  letter-spacing: -0.4px; color: var(--ink);
}
.more-article-card__read {
  font-size: 13px; font-weight: 500; color: var(--accent); margin-top: 4px;
}

/* Check icon in pricing */
.check-icon { margin-top: 2px; flex-shrink: 0; }

/* ── Prose (article content from markdown) ── */
/* Suppress any duplicate WP-injected author block on WP Engine */
.wp-block-post-author { display: none !important; }

.prose {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  color: #2a2e29;
  font-size: 19px;
  line-height: 1.75;
}
.prose p { margin: 0 0 1.5em; }
.prose a { color: #3f5e44; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: #2a3f2e; }
.prose em { font-style: italic; color: #4a4e48; }
.prose strong { font-weight: 600; color: #1e2a20; }
.prose h2 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.5px; color: #1e2a20;
  margin: 2.4em 0 0.7em;
}
.prose h3 {
  font-family: "Source Serif 4", serif;
  font-size: 22px; font-weight: 500; line-height: 1.2;
  letter-spacing: -0.3px; color: #1e2a20;
  margin: 1.8em 0 0.5em;
}
.prose ul, .prose ol {
  padding-left: 1.4em; margin: 0 0 1.5em;
  display: flex; flex-direction: column; gap: 0.6em;
  list-style: disc;
}
.prose ol { list-style: decimal; }
.prose li { line-height: 1.7; }
.prose li > strong:first-child { display: block; margin-bottom: 0.1em; }
.prose hr { border: none; border-top: 1px solid #d8e3d5; margin: 2.5em 0; }
.prose blockquote {
  border-left: 3px solid #3f5e44;
  padding: 4px 0 4px 20px; margin: 1.6em 0;
  color: #4a4e48; font-style: italic;
}

/* ── Simple footer (used on blog/article pages) ── */
.simple-footer {
  padding: 40px 48px; background: var(--bg-cream);
  border-top: 1px solid var(--mist);
}
.simple-footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 20px; font-size: 12px; color: #9a988f;
}

/* ── Hover states & micro-interactions ── */

/* Base transitions */
.site-nav__links a {
  transition: color 150ms ease-out;
}
.site-nav__links a:hover {
  color: var(--fern);
}

/* Buttons */
.btn {
  transition: transform 150ms ease-out, box-shadow 150ms ease-out,
              background 150ms ease-out, border-color 150ms ease-out,
              color 150ms ease-out;
}
.btn--primary:hover {
  background: #173d22;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31,74,44,0.25);
}
.btn--hero:hover {
  background: #173d22;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 12px 28px rgba(31,74,44,0.28);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn--outline-fern:hover {
  background: var(--fern);
  border-color: var(--fern);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31,74,44,0.25);
}
.btn--outline-small:hover {
  background: var(--fern);
  border-color: var(--fern);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31,74,44,0.25);
}
.btn--cream:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.btn--cream-sm:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Blog cards */
.blog-card {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out,
              border-color 180ms ease-out;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  border-color: var(--sage);
}
.blog-card__thumb img {
  transition: transform 400ms ease-out;
}
.blog-card:hover .blog-card__thumb img {
  transform: scale(1.03);
}

/* Featured card */
.blog-listing__featured-card {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}
.blog-listing__featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
}
.blog-listing__featured-thumb img {
  transition: transform 400ms ease-out;
}
.blog-listing__featured-card:hover .blog-listing__featured-thumb img {
  transform: scale(1.03);
}

/* Blog "All articles" link */
.blog-section__all-link {
  transition: background 150ms ease-out, border-color 150ms ease-out,
              color 150ms ease-out, transform 150ms ease-out;
}
.blog-section__all-link:hover {
  background: var(--fern);
  border-color: var(--fern);
  color: var(--cream);
  transform: translateY(-1px);
}

/* Blog card read link */
.blog-card__read {
  transition: color 150ms ease-out, gap 150ms ease-out;
}
.blog-card:hover .blog-card__read {
  color: var(--fern);
}

/* More article cards */
.more-article-card {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out,
              border-color 180ms ease-out;
}
.more-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: var(--sage);
}

/* FAQ items */
.faq__item {
  transition: background 150ms ease-out;
}
.faq__item:hover {
  background: var(--bg-mist);
}
.faq__question {
  cursor: pointer;
}
.faq__toggle {
  transition: background 180ms ease-out, border-color 180ms ease-out,
              color 180ms ease-out, transform 180ms ease-out;
}
.faq__item:hover .faq__toggle:not(.is-open .faq__toggle) {
  border-color: var(--moss);
}
.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
}

/* Pricing cards */
.pricing__card {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}
.pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

/* Site footer links */
.site-footer__col-links a {
  transition: color 150ms ease-out;
}
.site-footer__col-links a:hover {
  color: var(--fern);
}

/* Logo subtle pulse on hover */
.logo {
  transition: opacity 150ms ease-out;
}
.logo:hover {
  opacity: 0.8;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ── Biologics notify ── */
.biologics-notify { margin-top: 28px; }
.biologics-notify__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
  color: var(--sage); margin-bottom: 10px;
}
.biologics-notify__form { display: flex; gap: 8px; }
.biologics-notify__input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,212,188,0.25);
  border-radius: 9px; padding: 11px 14px;
  font-size: 14px; color: var(--cream);
  outline: none; font-family: inherit;
}
.biologics-notify__input::placeholder { color: rgba(200,212,188,0.4); }
.biologics-notify__btn {
  background: var(--sage); color: var(--ink);
  border: none; border-radius: 9px;
  padding: 11px 18px; font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap; font-family: inherit;
}
.biologics-notify__success {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,212,188,0.2);
  font-size: 14px; color: var(--sage);
}

/* ── About page ── */
.about-page { background: var(--bg-cream); min-height: 100vh; }
.about-page__hero {
  max-width: 860px; margin: 0 auto; padding: 72px 48px 64px; text-align: center;
}
.about-page__hero-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.about-page__hero-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 400;
  line-height: 1.05; letter-spacing: -1.5px; color: var(--ink);
  margin: 0 0 22px;
}
.about-page__hero-body {
  font-size: 18px; line-height: 1.6; color: #4a4e48;
  max-width: 620px; margin: 0 auto;
}
.about-page__body {
  max-width: 1160px; margin: 0 auto; padding: 0 48px 120px;
  display: flex; gap: 80px; align-items: flex-start;
}
.about-page__sidebar {
  position: sticky; top: 80px; width: 220px; flex-shrink: 0; align-self: flex-start;
}
.about-page__sidebar ul { list-style: none; padding: 0; margin: 0; }
.about-page__sidebar a {
  display: block; padding: 10px 0 10px 14px;
  font-size: 15px; color: #7a7a73; text-decoration: none;
  border-left: 2px solid transparent; transition: all 150ms; line-height: 1.4;
}
.about-page__sidebar a.is-active {
  font-weight: 600; color: var(--ink); border-left-color: var(--accent);
}
.about-page__content { flex: 1; min-width: 0; }
.about-page__divider { border: none; border-top: 1px solid var(--mist); margin: 72px 0; }

.about-page__kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.about-page__section-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 400;
  line-height: 1.08; letter-spacing: -1px; color: var(--ink);
  margin: 0 0 20px;
}
.about-page__text {
  font-size: 17px; line-height: 1.65; color: #4a4e48; margin: 0 0 20px;
}
.about-page__stat-row {
  display: flex; flex-wrap: wrap; gap: 24px;
  background: var(--bg-mist); border-radius: 16px;
  padding: 32px 36px; margin: 32px 0;
}
.about-page__stat-value {
  font-family: "Source Serif 4", serif;
  font-size: 40px; font-weight: 400; color: var(--fern);
  letter-spacing: -1.5px; line-height: 1;
}
.about-page__stat-label {
  font-size: 13px; color: #6b6b66; margin-top: 6px; line-height: 1.4;
}
.about-page__card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px; margin: 32px 0;
}
.about-page__card {
  background: var(--cream); border: 1px solid var(--mist);
  border-radius: 16px; padding: 24px 22px;
}
.about-page__card-icon { width: 44px; height: 44px; background: var(--mist); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-page__card-icon svg { display: block; }
.about-page__card-title {
  font-family: "Source Serif 4", serif;
  font-size: 18px; font-weight: 400; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.about-page__card-body { font-size: 14px; line-height: 1.6; color: #5a5a55; }
.about-page__checklist { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-page__checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; line-height: 1.55; color: #4a4e48;
}
.about-page__checklist svg { flex-shrink: 0; margin-top: 2px; }
.about-page__dark-callout {
  background: var(--ink); border-radius: 16px;
  padding: 32px 36px; margin: 32px 0; color: var(--cream);
}
.about-page__dark-callout-title {
  font-family: "Source Serif 4", serif;
  font-size: 22px; font-weight: 400; color: var(--cream);
  margin-bottom: 10px; letter-spacing: -0.4px;
}
.about-page__dark-callout-body {
  font-size: 15px; line-height: 1.65; color: rgba(244,239,230,0.82);
}
.about-page__warning {
  background: #FEF9EC; border: 1px solid #FBBF24;
  border-radius: 14px; padding: 20px 24px; margin-top: 24px;
}
.about-page__warning-title { font-size: 14px; font-weight: 600; color: #92400E; margin-bottom: 6px; }
.about-page__warning-body { font-size: 14px; line-height: 1.6; color: #78350F; }

.about-page__comparison { border: 1px solid var(--mist); border-radius: 16px; overflow: hidden; }
.about-page__comparison-header {
  background: var(--bg-mist); padding: 14px 22px;
  font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.2px;
}
.about-page__comparison-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-page__comparison-col { padding: 18px 22px; }
.about-page__comparison-col:first-child { border-right: 1px solid var(--mist); }
.about-page__comparison-col:last-child { background: var(--cream); }
.about-page__comparison-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px;
}
.about-page__comparison-col-text { font-size: 14px; line-height: 1.6; color: #5a5a55; }
.about-page__comparison-col:last-child .about-page__comparison-col-text { color: var(--ink); }

.about-page__step { display: flex; gap: 20px; align-items: flex-start; }
.about-page__step-num {
  width: 40px; height: 40px; border-radius: 20px;
  background: var(--bg-mist); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  font-family: "Source Serif 4", serif; font-size: 13px; color: var(--accent); font-weight: 500;
}
.about-page__step-title {
  font-family: "Source Serif 4", serif;
  font-size: 20px; font-weight: 400; color: var(--ink);
  margin-bottom: 6px; letter-spacing: -0.3px;
}
.about-page__step-body { font-size: 15px; line-height: 1.6; color: #5a5a55; }

.about-page__footer-cta {
  background: var(--fern); padding: 72px 48px; text-align: center;
}
.about-page__footer-cta-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 400;
  line-height: 1.05; letter-spacing: -1.5px; color: var(--cream);
  margin: 0 0 20px;
}
.about-page__footer-cta-body {
  font-size: 17px; line-height: 1.6; color: rgba(244,239,230,0.82);
  margin: 0 auto 36px; max-width: 480px;
}

/* ── Quiz page ── */
.quiz-page { background: var(--bg-cream); min-height: 100vh; display: flex; flex-direction: column; }
.quiz-page__container { max-width: 640px; margin: 0 auto; padding: 64px 48px 120px; }
.mdi-frame { display: block; width: 100%; flex: 1; min-height: 900px; border: none; }

/* About page FAQ */
.about-page__faq-answer { display: none; }
.about-page__faq-item.is-open .about-page__faq-answer { display: block; }
.about-page__faq-item.is-open .about-page__faq-toggle {
  background: var(--accent); border-color: var(--accent); color: var(--cream);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Tablet  ≤ 1024px
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav */
  .site-nav { padding: 18px 28px; }
  .site-nav__links { gap: 20px; }

  /* Hero */
  .hero { padding: 60px 28px 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__image-wrap { max-width: 540px; margin: 0 auto; }

  /* How */
  .how { padding: 80px 28px; }
  .how__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Treatments */
  .treatments { padding: 80px 28px; }
  .treatments__grid { grid-template-columns: 1fr; }
  .treatments__roadmap { padding: 32px 24px; }
  .treatments__roadmap-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Pricing */
  .pricing { padding: 80px 28px; }
  .pricing__addon { grid-template-columns: 1fr; gap: 20px; }
  .pricing__addon-right { text-align: left; }

  /* FAQ */
  .faq { padding: 80px 28px; }

  /* Blog section */
  .blog-section { padding: 80px 28px; }
  .blog-section__grid { grid-template-columns: repeat(2, 1fr); }

  /* Final CTA */
  .final-cta { padding: 80px 28px; }

  /* Footer */
  .site-footer { padding: 56px 28px 32px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }

  /* Blog listing */
  .blog-listing__header { padding: 60px 28px 48px; }
  .blog-listing__featured { padding: 0 28px 60px; }
  .blog-listing__featured-card { grid-template-columns: 1fr 1fr; }
  .blog-listing__featured-body { padding: 40px 36px; }
  .blog-listing__rest { padding: 0 28px 80px; }
  .blog-listing__rest-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card__title { font-size: 22px; }

  /* Article */
  .article-header { padding: 56px 28px 0; }
  .article-hero-image { padding: 0 28px; }
  .article-body { padding: 0 28px 80px; }
  .article-cta { padding: 48px 28px; }
  .more-articles { padding: 60px 28px; }
  .more-articles__grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-page__body { padding: 0 28px 80px; gap: 48px; }
  .about-page__hero { padding: 56px 28px 48px; }
  .about-page__footer-cta { padding: 56px 28px; }

}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile  ≤ 640px
   ═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav — mobile hamburger */
  .site-nav { padding: 16px 20px; }
  .site-nav__links { display: none; }
  .site-nav__left { gap: 0; }
  .site-nav__burger { display: flex; }

  /* Mobile drawer */
  .site-nav__drawer {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream); z-index: 190;
    padding: 88px 28px 40px;
    pointer-events: none; opacity: 0;
    transform: translateX(100%); transition: transform 240ms ease, opacity 200ms ease;
    overflow-y: auto;
  }
  .site-nav__drawer.is-open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .site-nav__drawer a:not(.btn) {
    font-size: 22px; font-weight: 500; color: var(--ink);
    padding: 16px 0; border-bottom: 1px solid var(--mist);
    text-decoration: none;
  }
  .site-nav__drawer a:not(.btn):last-of-type { border-bottom: none; }
  .site-nav__drawer .btn--primary { color: #fff; }
  /* X icon when drawer open */
  .site-nav.drawer-open .site-nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-nav.drawer-open .site-nav__burger span:nth-child(2) { opacity: 0; }
  .site-nav.drawer-open .site-nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .logo__text { font-size: 30px; }

  /* Hero */
  .hero { padding: 40px 20px 64px; }
  .hero__grid { gap: 36px; }
  .hero__body { font-size: 17px; }
  .hero__perks { gap: 8px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__badge { bottom: -12px; left: 12px; max-width: calc(100% - 24px); }

  /* Sections */
  .how { padding: 64px 20px; }
  .how__grid { grid-template-columns: 1fr; gap: 36px; }
  .how__step-image { aspect-ratio: 1/1; }

  .treatments { padding: 64px 20px; }
  .treatments__potency-grid { grid-template-columns: 1fr; }
  .treatments__roadmap { padding: 24px 18px; }
  .treatments__roadmap-items { grid-template-columns: 1fr; }

  .pricing { padding: 64px 20px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__price { font-size: 48px; }

  .faq { padding: 64px 20px; }
  .faq__question-text { font-size: 18px; }

  .blog-section { padding: 64px 20px; }
  .blog-section__grid { grid-template-columns: 1fr; }
  .blog-section__header { flex-direction: column; align-items: flex-start; }

  .final-cta { padding: 64px 20px; }

  /* Footer */
  .site-footer { padding: 48px 20px 28px; }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }

  /* Blog listing */
  .blog-listing__header { padding: 40px 20px 36px; }
  .blog-listing__title { font-size: clamp(32px, 9vw, 48px); letter-spacing: -1px; }
  .blog-listing__featured { padding: 0 20px 40px; }
  .blog-listing__featured-card { grid-template-columns: 1fr; }
  .blog-listing__featured-thumb { height: auto; min-height: unset; aspect-ratio: 16/9; }
  .blog-listing__featured-body { padding: 28px 24px; }
  .blog-listing__rest { padding: 0 20px 60px; }
  .blog-listing__rest-grid { grid-template-columns: 1fr; }
  .blog-card__title { font-size: 22px; }
  .blog-card__body { padding: 20px; gap: 10px; }

  /* Article */
  .article-header { padding: 36px 20px 0; }
  .article-title { letter-spacing: -1px; }
  .article-lede { font-size: 19px; margin-bottom: 24px; }
  .article-hero-image { padding: 0 20px; }
  .article-hero-image img { border-radius: 8px; }
  .article-body { padding: 0 20px 60px; }
  .article-cta { padding: 40px 20px; }
  .article-cta__inner { flex-direction: column; gap: 20px; }
  .more-articles { padding: 48px 20px; }
  .more-articles__grid { grid-template-columns: 1fr; }

  /* Blog section (homepage) */
  .blog-section__all-link { align-self: flex-start; }

  /* About */
  .about-page__hero { padding: 40px 20px 36px; }
  .about-page__body { flex-direction: column; padding: 0 20px 60px; gap: 0; }
  .about-page__sidebar { display: none; }
  .about-page__footer-cta { padding: 48px 20px; }
  .about-page__stat-row { padding: 24px 20px; }
  .about-page__dark-callout { padding: 24px 20px; }
  .about-page__comparison-grid { grid-template-columns: 1fr; }
  .about-page__comparison-col:first-child { border-right: none; border-bottom: 1px solid var(--mist); }

  /* Buttons */
  .btn--hero { padding: 14px 22px; font-size: 15px; }
  .btn--cream { padding: 15px 26px; font-size: 16px; }

  /* Simple footer */
  .simple-footer { padding: 32px 20px; }
  .simple-footer__inner { flex-direction: column; gap: 8px; }
}

/* ─── Drug detail page ─────────────────────────────── */

/* ── Hero ── */
.drug-page__hero {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 48px;
}
.drug-page__hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
/* Image is second in DOM; order:-1 moves it to the left column on desktop */
.drug-page__hero-image { order: -1; }
.drug-page__hero-img-placeholder {
  background: var(--mist);
  border-radius: 16px;
  aspect-ratio: 1/1;
  width: 100%; max-width: 420px;
}
.drug-page__hero-img {
  display: block;
  width: 100%;
  max-width: 581px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
.drug-page__hero-content {
  display: flex; flex-direction: column; gap: 14px;
}
.drug-page__breadcrumb {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--moss);
}
.drug-page__breadcrumb a { color: var(--moss); text-decoration: none; }
.drug-page__breadcrumb a:hover { color: var(--fern); }
.drug-page__h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink);
  margin: 0;
}
.drug-page__subhead { font-size: 16px; color: var(--moss); margin: -4px 0 0; }
.drug-page__hook {
  font-size: 18px; line-height: 1.55;
  color: var(--ink); max-width: 480px; margin: 0;
}
.drug-page__badge {
  display: inline-block;
  background: var(--fern); color: var(--cream);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 100px; padding: 4px 12px;
  align-self: flex-start;
}
.drug-page__commitment { font-size: 12px; color: var(--moss); margin: 0; }
.drug-page__disclaimer-hero { font-size: 12px; color: var(--moss); margin: -4px 0 0; }
.drug-page__hero-cta { align-self: flex-start; margin-top: 6px; }
.drug-page__hero-secondary { font-size: 13px; color: var(--moss); margin: 0; }
.drug-page__secondary-link {
  color: var(--moss); font-size: 14px; text-decoration: none;
}
.drug-page__secondary-link:hover {
  text-decoration: underline; color: var(--fern);
}

/* ── Long-form prose ── */
.drug-page__content { background: #fff; padding: clamp(60px, 8vw, 100px) 24px; }
.drug-page__content-inner { max-width: 720px; margin: 0 auto; }

.drug-page__prose-h2 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 16px;
  padding-top: 48px; border-top: 1px solid var(--mist);
}
.drug-page__prose-h2--first { padding-top: 0; border-top: none; }

.drug-page__prose-h3 {
  font-family: "Source Serif 4", serif;
  font-size: 20px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 32px 0 12px;
}
.drug-page__prose-p {
  font-size: 17px; line-height: 1.7;
  color: #3a4a3c; margin-bottom: 20px;
}

/* ── Mid-content CTA ── */
.drug-page__mid-cta {
  display: flex; gap: 16px; align-items: center;
  margin: 40px 0; flex-wrap: wrap;
}

/* ── FAQ accordion ── */
.drug-page__faq { background: var(--bg-mist); padding: clamp(60px, 8vw, 100px) 24px; }
.drug-page__faq-inner { max-width: 720px; margin: 0 auto; }
.drug-page__faq-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; color: var(--ink);
  letter-spacing: -0.02em; margin: 0 0 40px;
}
.drug-page__faq-list { border-top: 1px solid var(--mist); }
.drug-page__faq-item { border-bottom: 1px solid var(--mist); }
.drug-page__faq-question {
  width: 100%; background: transparent; border: none;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; font-family: inherit;
  font-size: 16px; font-weight: 600; color: var(--ink); gap: 16px;
}
.drug-page__faq-toggle {
  font-size: 20px; color: var(--moss); flex-shrink: 0; line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}
.drug-page__faq-item.is-open .drug-page__faq-toggle {
  transform: rotate(45deg); color: var(--fern);
}
.drug-page__faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 250ms ease;
}
.drug-page__faq-answer p {
  font-size: 15px; line-height: 1.65; color: #3a4a3c;
  padding-bottom: 18px; margin: 0;
}
.drug-page__faq-item.is-open .drug-page__faq-answer { max-height: 600px; }

/* ── Final CTA ── */
.drug-page__cta {
  background: var(--fern);
  padding: clamp(60px, 8vw, 80px) 24px;
  text-align: center;
}
.drug-page__cta-inner {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.drug-page__cta-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400; color: var(--cream);
  letter-spacing: -0.02em; line-height: 1.1; margin: 0;
}
.drug-page__cta-body {
  font-size: 18px; color: rgba(244,239,230,0.75);
  line-height: 1.5; margin: 0;
}
.drug-page__legal {
  font-size: 11px; color: rgba(244,239,230,0.45);
  line-height: 1.5; margin: 4px 0 0;
}

/* ── Drug page responsive ── */
@media (max-width: 768px) {
  .drug-page__hero { padding: clamp(40px, 6vw, 64px) 20px; }
  .drug-page__hero-inner { grid-template-columns: 1fr; gap: 32px; }
  /* Reset order so image appears below content on mobile */
  .drug-page__hero-image { order: 0; }
  .drug-page__h1 { font-size: clamp(28px, 6vw, 40px); }
  .drug-page__hero-cta { width: 100%; justify-content: center; }
  .drug-page__mid-cta { flex-direction: column; align-items: flex-start; }
  .drug-page__mid-cta .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   Help Center page
   ══════════════════════════════════════════════════════════ */
.help-page__hero {
  background: var(--fern);
  padding: clamp(64px, 10vw, 100px) 24px 56px;
  text-align: center;
}
.help-page__hero-inner { max-width: 640px; margin: 0 auto; }
.help-page__kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 14px;
}
.help-page__h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; color: var(--cream);
  letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px;
}
.help-page__subhead {
  font-size: 18px; color: rgba(244,239,230,0.75); margin: 0; line-height: 1.5;
}

/* Cards section */
.help-page__cards { padding: 64px 24px; background: var(--cream); }
.help-page__cards-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.help-page__card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--mist);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.help-page__card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--mist); display: flex; align-items: center;
  justify-content: center; color: var(--fern); flex-shrink: 0;
  margin-bottom: 4px;
}
.help-page__card-category {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage);
}
.help-page__card-title {
  font-family: "Source Serif 4", serif;
  font-size: 22px; font-weight: 400; color: var(--fern);
  letter-spacing: -0.01em; line-height: 1.25; margin: 0;
}
.help-page__card-body {
  font-size: 15px; color: #4a4a45; line-height: 1.65; margin: 0;
}
.help-page__card-email {
  display: inline-block;
  font-size: 16px; font-weight: 600; color: var(--fern);
  text-decoration: none; border-bottom: 1.5px solid var(--mist);
  padding-bottom: 2px; transition: border-color 0.15s;
  margin-top: 4px;
}
.help-page__card-email:hover { border-color: var(--fern); }
.help-page__card-note {
  font-size: 13px; color: #7a7a75; line-height: 1.5; margin: 0;
}

/* Pharmacy section */
.help-page__pharmacy { padding: 56px 24px; background: #fff; }
.help-page__pharmacy-inner {
  max-width: 720px; margin: 0 auto;
}
.help-page__pharmacy-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 12px;
}
.help-page__pharmacy-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 400;
  color: var(--fern); letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 14px;
}
.help-page__pharmacy-body {
  font-size: 15px; color: #4a4a45; line-height: 1.65; margin: 0 0 28px;
}
.help-page__pharmacy-details {
  display: flex; flex-direction: column; gap: 12px;
}
.help-page__pharmacy-detail {
  display: flex; gap: 16px; align-items: baseline;
  font-size: 15px; color: #1e2a20;
}
.help-page__pharmacy-detail-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sage);
  min-width: 60px; flex-shrink: 0;
}
.help-page__pharmacy-detail a {
  color: var(--fern); text-decoration: none;
  border-bottom: 1.5px solid var(--mist); padding-bottom: 1px;
  transition: border-color 0.15s;
}
.help-page__pharmacy-detail a:hover { border-color: var(--fern); }

/* Emergency notice */
.help-page__emergency {
  background: #fef3f2; border-top: 1px solid #fecaca;
  padding: 28px 24px;
}
.help-page__emergency-inner {
  max-width: 720px; margin: 0 auto;
}
.help-page__emergency p {
  font-size: 13px; color: #7f1d1d; line-height: 1.6; margin: 0; text-align: center;
}
.help-page__emergency strong { color: #991b1b; }

/* Help page responsive */
@media (max-width: 680px) {
  .help-page__cards-inner { grid-template-columns: 1fr; }
  .help-page__card { padding: 28px 22px; }
  .help-page__pharmacy-detail { flex-direction: column; gap: 2px; }
}

/* ══════════════════════════════════════════════════════════
   Treatment Quiz page  (.tquiz)
   ══════════════════════════════════════════════════════════ */

/* Progress bar */
.tquiz__progress-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
.tquiz__progress-track {
  height: 3px;
  background: var(--mist);
  border-radius: 2px;
  overflow: hidden;
}
.tquiz__progress-fill {
  height: 100%;
  background: var(--fern);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.tquiz__progress-label {
  font-size: 12px;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

/* Screens */
.tquiz__screen {
  display: none;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  flex-direction: column;
  align-items: stretch;
}
.tquiz__screen.is-active {
  display: flex;
}
.tquiz__screen--result {
  max-width: 680px;
  padding-top: 52px;
  align-items: center;
  text-align: center;
}

/* Kicker & question */
.tquiz__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.tquiz__question {
  font-family: "Source Serif 4", serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  color: var(--fern);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* Options */
.tquiz__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tquiz__option {
  border: 1.5px solid var(--mist);
  border-radius: 12px;
  padding: 17px 22px;
  font-size: 16px;
  font-weight: 400;
  color: var(--fern);
  cursor: pointer;
  background: #fff;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
  line-height: 1.4;
}
.tquiz__option strong { font-weight: 600; }
.tquiz__option:hover {
  border-color: var(--sage);
  background: var(--cream);
}
.tquiz__option.is-selected {
  border-color: var(--fern);
  background: #EAF0E6;
}

/* Continue / Next button */
.tquiz__next {
  margin-top: 24px;
  background: var(--fern);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: none;
  width: fit-content;
  align-self: flex-start;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}
.tquiz__next.is-visible { display: block; }
.tquiz__next:hover { background: var(--moss); }
.tquiz__next:active { transform: scale(0.98); }

/* Back button */
.tquiz__back {
  background: none;
  border: none;
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-bottom: 28px;
  font-family: inherit;
  transition: color 0.15s;
}
.tquiz__back:hover { color: var(--fern); }
.tquiz__back svg { width: 14px; height: 14px; }

/* Result screen */
.tquiz__result-headline {
  font-family: "Source Serif 4", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--fern);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 6px 0 12px;
}
.tquiz__result-subtext {
  font-size: 15px;
  color: #6b6b66;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* Primary result card */
.tquiz__result-card {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(31,74,44,0.07);
  margin-bottom: 14px;
}
.tquiz__result-badge {
  display: inline-block;
  background: var(--fern);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.tquiz__result-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.tquiz__result-name {
  font-family: "Source Serif 4", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--fern);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.tquiz__result-desc {
  font-size: 15px;
  color: #4a4a45;
  line-height: 1.65;
  margin: 0 0 16px;
}
.tquiz__result-learn {
  font-size: 13px;
  font-weight: 600;
  color: var(--fern);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--mist);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.tquiz__result-learn:hover { border-color: var(--fern); }
.tquiz__result-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Add-on card */
.tquiz__addon-card {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--mist);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 14px;
}
.tquiz__addon-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.tquiz__addon-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.tquiz__addon-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--fern);
  margin-bottom: 6px;
}
.tquiz__addon-desc {
  font-size: 14px;
  color: #4a4a45;
  line-height: 1.6;
  margin: 0 0 12px;
}

/* Divider */
.tquiz__result-divider {
  width: 100%;
  max-width: 480px;
  border: none;
  border-top: 1px solid var(--mist);
  margin: 28px 0;
}
.tquiz__result-fallback {
  font-size: 14px;
  color: #6b6b66;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 20px;
}
.tquiz__disclaimer {
  font-size: 11px;
  color: #a0a09a;
  line-height: 1.6;
  max-width: 520px;
  margin-top: 20px;
}
.tquiz__restart {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--sage);
  cursor: pointer;
  margin-top: 16px;
  font-family: inherit;
  transition: color 0.15s;
}
.tquiz__restart:hover { color: var(--fern); }

/* ── Quiz link in nav ── */
.site-nav__quiz-link {
  background: var(--mist);
  color: var(--fern) !important;
  border-radius: 50px;
  padding: 6px 14px !important;
  padding-bottom: 6px !important; /* override base nav link's padding-bottom:2px */
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s;
}
.site-nav__quiz-link::after { display: none !important; } /* suppress underline animation */
.site-nav__quiz-link:hover,
.site-nav__quiz-link.is-active { background: var(--sage); color: #fff !important; }

/* ── Hero quiz bubble — no underline, animation handles hover ── */
.hero__quiz-bubble { text-decoration: none; }

/* ── Homepage quiz bubble ── */
.hero__quiz-bubble {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  border: 1.5px solid var(--mist);
  border-radius: 50px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  width: fit-content;
}
.hero__quiz-bubble:hover {
  border-color: var(--sage);
  color: var(--fern);
  background: rgba(255,255,255,0.9);
}
.hero__quiz-bubble svg { flex-shrink: 0; color: var(--sage); }

/* Treatment quiz responsive */
@media (max-width: 640px) {
  .tquiz__result-card { padding: 24px 20px; }
  .tquiz__addon-card { padding: 20px; }
  .tquiz__result-actions { flex-direction: column; }
  .tquiz__result-actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   Doctor quote section
   ══════════════════════════════════════════════════════════ */
.doctor-quote {
  background: var(--fern);
  padding: 100px 40px;
}
.doctor-quote__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.doctor-quote__image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.doctor-quote__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}
.doctor-quote__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.doctor-quote__blockquote { margin: 0; }
.doctor-quote__text {
  font-family: "Source Serif 4", serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
}
.doctor-quote__attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(216,227,213,0.25);
}
.doctor-quote__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.doctor-quote__title {
  font-size: 13px;
  color: var(--sage);
  font-weight: 500;
}

@media (max-width: 720px) {
  .doctor-quote__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .doctor-quote__image-wrap {
    max-width: 220px;
  }
}

/* ══════════════════════════════════════════════════════════
   Meet Our Clinicians page
   ══════════════════════════════════════════════════════════ */
.clinicians-page__hero {
  background: var(--fern);
  padding: clamp(64px, 10vw, 100px) 24px 56px;
  text-align: center;
}
.clinicians-page__hero-inner { max-width: 680px; margin: 0 auto; }
.clinicians-page__kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
}
.clinicians-page__h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400; color: var(--cream);
  letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 18px;
}
.clinicians-page__subhead {
  font-size: 17px; color: rgba(244,239,230,0.75); line-height: 1.65; margin: 0;
}

/* Grid */
.clinicians-page__grid-section {
  background: var(--cream);
  padding: 72px 24px;
}
.clinicians-page__grid-inner {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.clinicians-page__card {
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 16px;
  padding: 28px 20px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.clinicians-page__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--fern);
  color: var(--cream);
  font-size: 20px; font-weight: 700; letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.clinicians-page__card-name {
  font-size: 15px; font-weight: 600; color: var(--fern); line-height: 1.3;
}
.clinicians-page__card-role {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sage);
}

/* Trust note */
.clinicians-page__trust {
  background: #fff;
  padding: 48px 24px;
  border-top: 1px solid var(--mist);
}
.clinicians-page__trust-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.clinicians-page__trust p {
  font-size: 13px; color: #6b6b66; line-height: 1.7; margin: 0;
}
.clinicians-page__trust a {
  color: var(--fern); text-decoration: none;
  border-bottom: 1px solid var(--mist); padding-bottom: 1px;
}
.clinicians-page__trust a:hover { border-color: var(--fern); }

@media (max-width: 480px) {
  .clinicians-page__grid-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── Browse by medication (drug carousel) ── */
.drug-carousel { padding: 80px 0; background: var(--bg-mist); }
.drug-carousel__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.drug-carousel__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 32px;
}
.drug-carousel__heading {
  font-family: "Source Serif 4", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.5px; color: var(--ink); margin: 0;
}
.drug-carousel__nav { display: flex; gap: 10px; flex-shrink: 0; }
.drug-carousel__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--moss, #c4d3c4); background: #fff;
  color: var(--ink); font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 150ms ease-out, border-color 150ms ease-out;
}
.drug-carousel__arrow:hover { background: var(--bg-cream); border-color: var(--fern); }

.drug-carousel__track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.drug-carousel__track::-webkit-scrollbar { height: 6px; }
.drug-carousel__track::-webkit-scrollbar-thumb { background: var(--moss, #c4d3c4); border-radius: 3px; }

.drug-card {
  flex: 0 0 264px; scroll-snap-align: start;
  background: #fff; border-radius: 16px; padding: 24px 22px 26px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}
.drug-card__image-wrap {
  height: 150px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.drug-card__image { max-width: 80%; max-height: 150px; width: auto; height: auto; }
.drug-card__name {
  font-family: "Source Serif 4", serif;
  font-size: 20px; font-weight: 400; line-height: 1.2;
  letter-spacing: -0.3px; color: var(--ink); margin: 0 0 4px;
}
.drug-card__note { font-size: 13px; color: var(--moss-dark, #5c6b5c); margin: 0 0 18px; }
.drug-card__links { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.drug-card__cta { width: 100%; text-align: center; }
.drug-card__more {
  font-size: 14px; color: var(--fern); text-decoration: none;
  font-weight: 500; text-align: center;
}
.drug-card__more:hover { text-decoration: underline; }

/* ── Browse by medication — Mobile ── */
@media (max-width: 768px) {
  .drug-carousel { padding: 56px 0; }
  .drug-carousel__inner { padding: 0 20px; }
  .drug-carousel__nav { display: none; }
  .drug-carousel__track { padding-bottom: 16px; }
  .drug-card { flex-basis: 78%; }
}

/* ══════════════════════════════════════════════════════
   Legal Pages (Terms & Privacy)
   ══════════════════════════════════════════════════════ */
.legal-page { background: var(--bg-cream); min-height: 100vh; }

.legal-page__hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 40px 48px;
}
.legal-page__kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fern); margin-bottom: 12px;
}
.legal-page__title {
  font-family: var(--font-serif); font-size: clamp(28px, 4vw, 40px);
  font-weight: 400; line-height: 1.2; color: var(--ink); margin: 0 0 12px;
}
.legal-page__meta {
  font-size: 14px; color: #888; margin: 0;
}

.legal-page__body {
  display: flex;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 96px;
  align-items: flex-start;
}

/* Sticky sidebar TOC */
.legal-page__toc {
  flex: 0 0 200px;
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 0;
}
.legal-page__toc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #aaa; margin-bottom: 12px;
}
.legal-page__toc ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.legal-page__toc a {
  font-size: 13px; color: #666; text-decoration: none;
  display: block; padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color 0.15s, border-color 0.15s;
}
.legal-page__toc a:hover {
  color: var(--fern);
  border-left-color: var(--fern);
}

/* Main content */
.legal-page__content { flex: 1; min-width: 0; }

.legal-page__intro {
  font-size: 15px; line-height: 1.75; color: #4a4a45; margin-bottom: 0;
}

.legal-page__divider {
  border: none; border-top: 1px solid var(--mist); margin: 52px 0;
}

.legal-page__section { scroll-margin-top: 96px; }

.legal-page__h2 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400; color: var(--ink);
  margin: 0 0 16px; line-height: 1.3;
}
.legal-page__h3 {
  font-size: 15px; font-weight: 600; color: var(--ink);
  margin: 28px 0 10px;
}

.legal-page__section p {
  font-size: 15px; line-height: 1.75; color: #4a4a45; margin: 0 0 14px;
}
.legal-page__section p:last-child { margin-bottom: 0; }

.legal-page__list {
  font-size: 15px; line-height: 1.75; color: #4a4a45;
  margin: 12px 0 14px; padding-left: 24px;
  display: flex; flex-direction: column; gap: 6px;
}

.legal-page__warning-box {
  background: #fef3c7; border: 1px solid #fcd34d;
  border-radius: 10px; padding: 20px 24px; margin-bottom: 36px;
}
.legal-page__warning-box p {
  font-size: 14px; line-height: 1.65; color: #78350f; margin: 0 0 10px;
}
.legal-page__warning-box p:last-child { margin-bottom: 0; }

.legal-page__address {
  font-style: normal; font-size: 15px; line-height: 1.9;
  color: #4a4a45; margin: 16px 0 0;
}

.legal-page__disclaimer {
  margin-top: 32px; padding: 18px 22px;
  background: var(--mist, #f0f0eb); border-radius: 10px;
  font-size: 14px; line-height: 1.65; color: #5a5a55;
}

.legal-page__section a { color: var(--fern); text-decoration: underline; }
.legal-page__section a:hover { text-decoration: none; }

/* Legal pages — Mobile */
@media (max-width: 768px) {
  .legal-page__hero { padding: 48px 20px 32px; }
  .legal-page__body { flex-direction: column; gap: 32px; padding: 0 20px 72px; }
  .legal-page__toc { position: static; max-height: none; flex: none; width: 100%; }
  .legal-page__toc ul { flex-direction: row; flex-wrap: wrap; gap: 4px 0; }
  .legal-page__toc a { border-left: none; border-bottom: 2px solid transparent; padding: 4px 12px 4px 0; }
  .legal-page__toc a:hover { border-left-color: transparent; border-bottom-color: var(--fern); }
}
