/* ============================================
   LUTEAL HEALTH - Global Styles
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── BRAND COLOR TOKENS ──────────────────── */

  /* Primary teals (60% — authority, clinical calm) */
  --teal:           #2D6A6A;
  --teal-dark:      #1E4F4F;   /* footer bg, depth layering */
  --teal-deeper:    #184847;   /* deepest gradient stop */
  --teal-light:     #3A8585;

  /* Accent roses (10% — CTAs, emphasis) */
  --rose:           #B5727A;
  --rose-dark:      #9B5E65;   /* hover / pressed */
  --rose-deeper:    #A95B65;   /* active buttons */
  --rose-light:     #C98D93;

  /* Soft blushes & warm neutrals */
  --blush:          #EAD9DD;   /* soft tags, pill hover */
  --blush-pale:     #F4E8EB;

  /* Creams & sages (30% — surfaces) */
  --cream:          #FBFAF9;   /* body bg */
  --cream-dark:     #F3EDE8;   /* card bg, subtle wash */
  --cream-green:    #E8EDEA;   /* cool cream */
  --sage:           #DDE5DF;   /* sage off-white */
  --sage-deep:      #E8EEE8;   /* brand soft sage */
  --white:          #FFFFFF;

  /* Text (warm-neutral scale) */
  --text-dark:      #3D2F2F;
  --text-body:      #5C4A4A;
  --text-light:     #8A7575;
  --text-muted:     #8C7B77;   /* warm taupe */

  /* Semantic surfaces */
  --fg-1:           var(--text-dark);
  --fg-2:           var(--text-body);
  --fg-3:           var(--text-light);
  --fg-on-teal:     rgba(255, 255, 255, 0.95);
  --fg-on-teal-2:   rgba(255, 255, 255, 0.75);
  --bg-1:           var(--cream);
  --bg-2:           var(--white);
  --bg-3:           var(--cream-dark);
  --border-soft:    rgba(0, 0, 0, 0.06);
  --border-rose:    rgba(181, 114, 122, 0.25);

  /* ── TYPOGRAPHY TOKENS ──────────────────── */
  --font-serif:     'Playfair Display', Palatino, Georgia, 'Times New Roman', serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Lato', sans-serif;

  /* Type scale — display (serif) */
  --fs-display:     clamp(2.8rem, 6vw, 4.5rem);   /* hero */
  --fs-h1:          clamp(2.6rem, 5.5vw, 4rem);
  --fs-h2:          clamp(2rem, 4.5vw, 3.2rem);
  --fs-h3:          clamp(1.3rem, 2.5vw, 1.75rem);
  --fs-h4:          1.2rem;

  /* Type scale — body (sans) */
  --fs-body-lg:     1.1rem;
  --fs-body:        1rem;
  --fs-body-sm:     0.92rem;
  --fs-caption:     0.85rem;
  --fs-eyebrow:     0.72rem;   /* labels, 3px tracking */

  /* Weights */
  --fw-light:       300;
  --fw-regular:     400;
  --fw-medium:      500;
  --fw-semibold:    600;
  --fw-bold:        700;

  /* Line heights */
  --lh-tight:       1.15;      /* serif display */
  --lh-snug:        1.4;
  --lh-body:        1.75;      /* long-form */
  --lh-loose:       1.85;

  /* Letter spacing */
  --ls-display:     -0.02em;
  --ls-eyebrow:     0.18em;    /* ~3px at 12px */

  /* ── SPACING / RADII / SHADOWS / MOTION ── */
  --space-1:        4px;
  --space-2:        8px;
  --space-3:        12px;
  --space-4:        16px;
  --space-5:        24px;
  --space-6:        32px;
  --space-7:        48px;
  --space-8:        64px;
  --space-9:        96px;
  --space-10:       120px;

  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-2xl:     24px;
  --radius-pill:    50px;
  --radius-full:    9999px;

  --shadow-xs:      0 1px 4px rgba(0,0,0,0.04);
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.03);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.04);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.06);
  --shadow-xl:      0 16px 48px rgba(0,0,0,0.09);
  --shadow-rose:    0 8px 24px rgba(181, 114, 122, 0.3);

  --ease:           0.3s ease;
  --ease-out:       0.35s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Layout + legacy */
  --container:      1140px;
  --section-pad:    120px 0;   /* kept for back-compat; prefer --space-10 */
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { opacity: 1; transition: opacity 0.3s ease; }
a { color: var(--rose); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--rose-dark); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--rose);
  margin-bottom: 16px;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

/* Link arrow utility */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose);
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.link-arrow:hover {
  gap: 10px;
  color: var(--rose-dark);
}

/* Eyebrow label (reusable) */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.eyebrow-light {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

/* Selection color */
::selection {
  background: rgba(181, 114, 122, 0.2);
  color: var(--text-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover {
  background: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 114, 122, 0.3);
}
.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-white:hover {
  background: var(--white);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--ease);
}
.btn .arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform var(--ease);
  font-size: 1em;
  line-height: 1;
  vertical-align: middle;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 250, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--ease);
}

.nav.scrolled {
  background: rgba(251, 250, 249, 0.98);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-logo svg { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 450;
  text-decoration: none;
  transition: color var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a.quiz-link {
  color: var(--rose-dark);
  font-weight: 600;
}
.nav-links a.quiz-link:hover {
  color: var(--rose);
}

.nav-links .btn-primary {
  padding: 8px 20px;
  font-size: 0.84rem;
  color: #FFFFFF !important;
  white-space: nowrap;
  align-self: center;
}

/* Dropdown navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 12px 0 8px;
  min-width: 200px;
  list-style: none;
  z-index: 100;
  margin: 0;
}

/* Invisible bridge so hover doesn't break between link and dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: background 0.15s ease;
}

.nav-dropdown-menu li a:hover {
  background: var(--cream-dark);
  color: var(--teal);
}

/* Social links in footer */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 106, 106, 0.1);
  color: var(--teal);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--teal);
  color: white;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: all var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right 30%;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-bg { z-index: 0; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 79, 79, 0.92) 0%, rgba(30, 79, 79, 0.7) 40%, rgba(30, 79, 79, 0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 24px 60px 0;
  margin-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 480px;
}

.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero p.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-trust {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.55) !important;
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-pad);
}

.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark); }
.section-sage { background: var(--cream-green); }
.section-rose-subtle { background: linear-gradient(135deg, rgba(181,114,122,0.04) 0%, rgba(181,114,122,0.08) 100%); }
.section-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.section-teal h2, .section-teal h3, .section-teal p {
  color: var(--white);
}

/* Mid-page teal section with organic curvy line decoration */
.section-teal-mid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #264e4e 35%, #3a5c5c 65%, var(--teal) 100%);
}
/* Rose + cream curvy lines */
.section-teal-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='600' viewBox='0 0 1440 600'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-50 120 C200 60 400 180 650 130 C900 80 1100 200 1490 100' stroke='%23C98D93' stroke-width='2'/%3E%3Cpath d='M-50 250 C180 320 420 200 700 280 C980 360 1200 220 1490 300' stroke='%23F3EDE8' stroke-width='1.5'/%3E%3Cpath d='M-50 420 C250 360 500 480 780 400 C1060 320 1250 450 1490 380' stroke='%23B5727A' stroke-width='2'/%3E%3Cpath d='M-50 530 C150 490 380 560 600 510 C820 460 1050 540 1490 500' stroke='%23DDE5DF' stroke-width='1.5'/%3E%3Ccircle cx='200' cy='80' r='40' stroke='%23C98D93' stroke-width='1.5'/%3E%3Ccircle cx='1200' cy='480' r='55' stroke='%23F3EDE8' stroke-width='1.5'/%3E%3Ccircle cx='900' cy='60' r='25' stroke='%23DDE5DF' stroke-width='1.5'/%3E%3Cpath d='M350 450 C380 410 420 440 405 475 C390 510 345 485 350 450' stroke='%23B5727A' stroke-width='1.5'/%3E%3Cpath d='M1050 150 C1080 110 1120 140 1105 175 C1090 210 1045 185 1050 150' stroke='%23C98D93' stroke-width='1.5'/%3E%3Cpath d='M100 350 Q140 310 180 350 Q220 390 260 350' stroke='%23F3EDE8' stroke-width='1.5'/%3E%3Cpath d='M750 520 Q790 480 830 520 Q870 560 910 520' stroke='%23DDE5DF' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1440px 600px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.section-teal-mid > * {
  position: relative;
  z-index: 1;
}
/* Step cards - brand cream/white on dark background */
.section-teal-mid .step-card {
  background: var(--cream);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.section-teal-mid .step-card:hover {
  background: var(--white);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}
.section-teal-mid .step-card h3 {
  color: var(--text-dark);
}
.section-teal-mid .step-card p {
  color: var(--text-body);
}
.section-teal-mid .step-icon {
  background: linear-gradient(135deg, rgba(181, 114, 122, 0.2) 0%, rgba(201, 141, 147, 0.3) 100%);
  color: var(--rose-light);
}
.section-teal-mid .step-number {
  background: var(--rose);
  color: var(--white);
}

.section-warm {
  background: #C4956A;
  color: var(--white);
}
.section-warm h2, .section-warm h3, .section-warm p {
  color: var(--white);
}

/* ---------- Testimonial Quote ---------- */
.quote-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  color: var(--text-body);
  font-size: 1.35rem;
  line-height: 1.9;
  font-family: var(--font-serif);
  position: relative;
  padding: 24px 0;
}
.quote-block::before,
.quote-block::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--rose-light);
  margin: 0 auto;
}
.quote-block::before { margin-bottom: 28px; }
.quote-block::after { margin-top: 28px; }

/* ---------- Social Proof Bar ---------- */
.social-proof-bar {
  text-align: center;
  padding: 60px 0;
}
.social-proof-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ---------- Diana Health Circular Photo Frame ---------- */
.circle-photo {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}
.circle-photo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--rose-light);
  opacity: 0.25;
  top: 20px;
  left: 20px;
}
.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* ---------- Problem Section Grid with Circle Photo ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-text {
  max-width: 860px;
}
.problem-text h2 {
  margin-bottom: 28px;
}
.problem-text p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ---------- Empathy Section ---------- */
.empathy-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.empathy-text {
  max-width: 860px;
}
.empathy-text h2 {
  margin-bottom: 28px;
}
.empathy-text p {
  font-size: 1.05rem;
  line-height: 1.85;
}
.empathy-bold {
  font-weight: 600;
  color: var(--text-dark);
}

.empathy-img {
  display: none; /* Replaced by section background treatment */
}

/* ---------- Background Image Sections ---------- */
/* Images blend into section backgrounds instead of sitting as standalone photos */
.section-bg-image {
  position: relative;
  overflow: hidden;
}
.section-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  opacity: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 40%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%, black 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.section-bg-image.bg-left::after {
  right: auto;
  left: 0;
  mask-image: linear-gradient(to left, transparent 0%, black 40%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 40%, black 60%, transparent 100%);
}
.section-bg-image > * {
  position: relative;
  z-index: 1;
}
.section-bg-image > .section-curve { z-index: 2; }

/* ---------- Background Accent Textures ---------- */
/* Subtle abstract textures overlaid on colored sections */
.section-bg-accent {
  position: relative;
  overflow: hidden;
}
.section-bg-accent::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: var(--bg-accent-url);
  background-size: cover;
  background-position: center;
  opacity: var(--bg-accent-opacity, 0.30);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}
.section-bg-accent > * {
  position: relative;
  z-index: 1;
}

/* ---------- Reusable Content Classes ---------- */
/* Replaces repeated inline styles across pages */
.body-text {
  font-size: 1.1rem;
  line-height: 1.8;
}
.body-text-sm {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}
.section-intro {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}
.section-intro-light {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.content-narrow {
  max-width: 780px;
  margin: 0 auto;
}
.content-mid {
  max-width: 700px;
  margin: 0 auto;
}
.rose-accent { color: var(--rose); }
.teal-accent { color: var(--teal); }

/* ---------- Checklist ---------- */
.checklist-section h2 {
  margin-bottom: 16px;
}
.checklist {
  list-style: none;
  max-width: 860px;
  margin: 32px auto 32px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  font-size: 1.02rem;
  line-height: 1.6;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.checklist li:hover {
  background: rgba(181, 114, 122, 0.04);
}
.checklist .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--rose-light);
  margin-top: 2px;
}
.checklist-cta {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ---------- Differentiators ---------- */
.diff-list {
  max-width: 720px;
  margin: 0 auto;
}
.diff-item {
  padding: 24px 28px;
  padding-left: 28px;
  border-left: 3px solid var(--rose-light);
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diff-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.diff-item strong {
  color: var(--text-dark);
}

/* Differentiator Circle Grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 48px auto 0;
}
.diff-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.diff-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.diff-circle-teal {
  background: rgba(45, 106, 106, 0.12);
  color: var(--teal);
}
.diff-circle-rose {
  background: rgba(181, 114, 122, 0.12);
  color: var(--rose);
}
.diff-circle-sage {
  background: rgba(90, 138, 106, 0.12);
  color: #5a8a6a;
}
.diff-yes {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.5;
  margin-bottom: 6px;
}
.diff-no {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .diff-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.about-preview-larger {
  grid-template-columns: 1.2fr 1.5fr;
}
.about-preview-larger .about-preview-img img {
  aspect-ratio: 3/4;
}

.about-preview-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
}
.about-preview-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background: var(--rose-light);
  opacity: 0.15;
  z-index: -1;
}
.about-preview-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-preview-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
}
.about-preview-text p {
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.about-preview-text .credentials {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}
.about-preview-text .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose);
  font-weight: 500;
  margin-top: 16px;
}

/* ---------- Book Preview ---------- */
.book-preview {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 700px;
  margin: 40px auto 0;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
}
.book-preview img {
  width: 120px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.book-preview p {
  font-style: italic;
  margin-bottom: 8px;
}

/* ---------- Logo Bar ---------- */
.logo-bar {
  max-width: 960px;
  margin: 0 auto;
}
.logo-section {
  text-align: center;
  margin-bottom: 36px;
}
.logo-section:last-child { margin-bottom: 0; }
.logo-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-light);
  margin-bottom: 14px;
  font-weight: 600;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
}
.logo-row img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity var(--ease), filter var(--ease);
}
.logo-row img:hover { opacity: 1; filter: grayscale(0%); }

.as-seen-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(181, 114, 122, 0.08) 0%, rgba(181, 114, 122, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  margin-bottom: 24px;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.step-card h3 {
  margin-bottom: 12px;
}

/* ---------- Cost / What Happens ---------- */
.cost-section p {
  max-width: 800px;
  font-size: 1.05rem;
}
.cost-section .highlight {
  font-weight: 600;
  color: var(--text-dark);
}

/* ---------- Outcomes ---------- */
.outcomes-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.outcomes-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.outcomes-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.outcomes-bold {
  font-weight: 600;
}

/* ---------- Testimonial Card (design-system spec) ---------- */
.testimonial-card {
  max-width: 780px;
  margin: 48px auto 0;
  background: linear-gradient(165deg, #F0F5F3 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 48px 40px;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
  text-align: left;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--teal);
  margin-bottom: 10px;
  opacity: 0.9;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-dark);
  letter-spacing: -0.005em;
  margin-bottom: 1.1em;
}
.testimonial-card p:last-of-type {
  margin-bottom: 0;
}
.testimonial-card p:last-of-type::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
  margin-top: 22px;
}
.testimonial-card .attribution {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 18px;
}
.testimonial-card .attribution em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-regular);
  text-transform: none;
  color: var(--text-light);
  letter-spacing: 0;
  margin-left: 8px;
  font-size: 0.95rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: 100px 24px;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-banner .subtext {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.footer ul {
  list-style: none;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--ease);
}
.footer ul a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ---------- Page Header ---------- */
.page-header {
  margin-top: 72px;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(244,235,237,0.5) 50%, rgba(236,223,227,0.3) 100%);
}
.page-header h1 {
  margin-bottom: 12px;
}
.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ---------- Program Page: Hero Grid ---------- */
.program-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}
@media (max-width: 768px) {
  .program-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .program-hero-grid > div:last-child {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ---------- Program Page: Pillar Cards ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border-left: 4px solid var(--rose-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.pillar-card h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
}
.pillar-card .subtitle {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

/* ---------- How It Works Timeline ---------- */
.timeline {
  max-width: 700px;
  margin: 48px auto 0;
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.timeline-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}
.timeline-item h3 {
  margin-bottom: 8px;
}

/* ---------- Pricing Step Cards ---------- */
.pricing-step-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 64px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  max-width: 820px;
  margin: 0 auto 40px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pricing-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}
.pricing-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pricing-step-card .price {
  font-family: var(--font-serif);
  color: var(--rose);
  font-weight: 400;
}
.pricing-step-card .price-detail {
  color: var(--text-light);
}
.pricing-step-card ul {
  list-style: none;
}
.pricing-step-card ul li {
  position: relative;
  line-height: 1.7;
}
.pricing-step-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Legacy pricing-card kept for any remaining uses */
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 52px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  max-width: 700px;
  margin: 0 auto 40px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}
.pricing-card .step-label {
  display: inline-block;
  background: var(--cream-green);
  color: var(--teal);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--rose);
  font-weight: 400;
}
.pricing-card .price-detail {
  color: var(--text-light);
  font-size: 1rem;
  margin-left: 8px;
}
.pricing-card ul {
  list-style: none;
  margin: 24px 0;
}
.pricing-card ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- Patient Agreement ---------- */
.agreement {
  max-width: 700px;
  margin: 48px auto 0;
}
.agreement h3 {
  margin-bottom: 28px;
}
.agreement-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.agreement-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}
/* Dark agreement on teal background */
.agreement-dark h3 {
  color: var(--white);
}
.agreement-dark .agreement-num {
  background: var(--rose);
  color: var(--white);
}
.agreement-dark .agreement-item p {
  color: rgba(255,255,255,0.9);
}
.agreement-dark .agreement-item strong {
  color: var(--white);
}

/* ---------- Article Trust Signals (E-E-A-T) ---------- */
.article-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin: 0 0 32px;
  background: var(--cream-dark);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.article-trust-bar a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.article-trust-bar a:hover {
  text-decoration: underline;
}
.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(0,0,0,0.15);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .article-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .trust-divider {
    display: none;
  }
}

/* ---------- Dark Rose Mid Section ---------- */
.section-rose-mid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8A4F56 0%, #9B5E65 35%, #A8686F 65%, var(--rose) 100%);
  color: var(--white);
}
.section-rose-mid h2, .section-rose-mid h3, .section-rose-mid p {
  color: var(--white);
}
.section-rose-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='600' viewBox='0 0 1440 600'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-50 120 C200 60 400 180 650 130 C900 80 1100 200 1490 100' stroke='%232D6A6A' stroke-width='2'/%3E%3Cpath d='M-50 250 C180 320 420 200 700 280 C980 360 1200 220 1490 300' stroke='%23F3EDE8' stroke-width='1.5'/%3E%3Cpath d='M-50 420 C250 360 500 480 780 400 C1060 320 1250 450 1490 380' stroke='%23DDE5DF' stroke-width='2'/%3E%3Cpath d='M-50 530 C150 490 380 560 600 510 C820 460 1050 540 1490 500' stroke='%232D6A6A' stroke-width='1.5'/%3E%3Ccircle cx='200' cy='80' r='40' stroke='%23F3EDE8' stroke-width='1.5'/%3E%3Ccircle cx='1200' cy='480' r='55' stroke='%23DDE5DF' stroke-width='1.5'/%3E%3Ccircle cx='900' cy='60' r='25' stroke='%232D6A6A' stroke-width='1.5'/%3E%3Cpath d='M350 450 C380 410 420 440 405 475 C390 510 345 485 350 450' stroke='%23F3EDE8' stroke-width='1.5'/%3E%3Cpath d='M1050 150 C1080 110 1120 140 1105 175 C1090 210 1045 185 1050 150' stroke='%23DDE5DF' stroke-width='1.5'/%3E%3Cpath d='M100 350 Q140 310 180 350 Q220 390 260 350' stroke='%232D6A6A' stroke-width='1.5'/%3E%3Cpath d='M750 520 Q790 480 830 520 Q870 560 910 520' stroke='%23F3EDE8' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1440px 600px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.section-rose-mid > * {
  position: relative;
  z-index: 1;
}

/* ---------- About Page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.about-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
}
.about-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-text h3 {
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--teal);
}
.about-text p {
  margin-bottom: 14px;
  line-height: 1.8;
}

/* Credentials Grid */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.cred-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cred-card-text {
  flex: 1;
  min-width: 0;
}
.cred-card-logo {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cred-card-logo img {
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.cred-card:hover .cred-card-logo img {
  opacity: 1;
}
.cred-card h4 {
  color: var(--teal);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cred-card ul {
  list-style: none;
}
.cred-card ul li {
  padding: 4px 0;
  font-size: 1rem;
  color: var(--text-body);
}
@media (max-width: 600px) {
  .cred-card-logo {
    width: 56px;
  }
  .cred-card-logo img {
    max-width: 56px;
    max-height: 44px;
  }
}

/* Testimonials Carousel */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  padding: 48px;
  background: linear-gradient(135deg, #F0F5F3 0%, var(--white) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-left: 4px solid var(--teal);
  text-align: left;
}
.testimonial-slide.active { display: block; }
.testimonial-slide p {
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
}
.testimonial-slide .attribution {
  margin-top: 20px;
  font-weight: 600;
  font-style: normal;
  color: var(--teal);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
/* Slider wrapper with arrows */
.testimonials-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonials-slider-wrap .testimonials-slider {
  flex: 1;
  min-width: 0;
}
.slider-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-body);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.slider-arrow:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: scale(1.05);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.slider-nav button {
  background: var(--cream-dark);
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--ease);
}
.slider-nav button.active { background: var(--rose); }

/* Media appearances */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px auto;
  max-width: 900px;
}
.media-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.media-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.media-card .media-logo {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-card .media-logo img {
  height: 48px;
  width: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

/* ---------- Providers Page ---------- */
.provider-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.services-list li {
  list-style: none;
  padding: 10px 16px;
  background: var(--cream-dark);
  border-radius: 8px;
  font-size: 1rem;
}

/* ---------- Provider: What I Address ---------- */
.section-rose-accent {
  background: linear-gradient(135deg, #F9F2F3 0%, #FBF6F4 50%, #F5EDED 100%);
}
.address-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.address-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(181, 114, 122, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.address-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(181, 114, 122, 0.15);
}
.address-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(181, 114, 122, 0.12) 0%, rgba(181, 114, 122, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--rose);
}
.address-icon svg {
  width: 24px;
  height: 24px;
}
.address-item h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.address-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .address-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .address-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .address-item { padding: 24px 16px; }
  .address-item h4 { font-size: 0.82rem; }
}

/* ---------- Quiz Page ---------- */
.quiz-container {
  max-width: 680px;
  margin: 0 auto;
}
.quiz-intro {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}
.quiz-intro .meta {
  color: var(--rose);
  font-size: 0.9rem;
  margin-top: 16px;
}
.quiz-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.quiz-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream-dark);
  border-radius: 10px;
  font-size: 0.92rem;
}
.quiz-cat .icon {
  font-size: 1.2rem;
}

/* Quiz form */
.quiz-question {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: none;
}
.quiz-question.active { display: block; }
.quiz-question h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.quiz-question .category-label {
  font-size: 0.8rem;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--ease);
  font-size: 0.95rem;
}
.quiz-option:hover {
  border-color: var(--rose-light);
  background: rgba(181, 114, 122, 0.04);
}
.quiz-option.selected {
  border-color: var(--rose);
  background: rgba(181, 114, 122, 0.08);
}
.quiz-option input { display: none; }
.quiz-option .radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
  transition: all var(--ease);
}
.quiz-option.selected .radio {
  border-color: var(--rose);
}
.quiz-option.selected .radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--rose);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.quiz-progress {
  height: 4px;
  background: var(--cream-dark);
  border-radius: 4px;
  margin-bottom: 32px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--teal);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

/* Quiz email capture */
.quiz-email-capture {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  text-align: center;
  display: none;
}
.quiz-email-capture h3 {
  margin-bottom: 8px;
}
.quiz-email-capture p {
  color: var(--text-light);
  margin-bottom: 24px;
}
.quiz-email-capture input[type="text"],
.quiz-email-capture input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-sans);
  margin-bottom: 12px;
  transition: border-color var(--ease);
}
.quiz-email-capture input:focus {
  outline: none;
  border-color: var(--teal);
}

/* Quiz results */
.quiz-results {
  display: none;
}
.quiz-results h2 {
  margin-bottom: 24px;
}
.result-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.result-card h3 {
  margin-bottom: 4px;
}
.result-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 16px;
}
.score-bar {
  flex: 1;
  height: 8px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}
.score-low { background: var(--teal-light); }
.score-medium { background: #D4A84B; }
.score-high { background: var(--rose); }
.score-label {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 70px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-img { position: static; max-width: 400px; margin: 0 auto 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }

  .section-bg-image::after {
    display: none;
  }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-toggle { display: block; }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 16px;
    margin-top: 4px;
    display: block;
  }
  .nav-dropdown-menu li a {
    padding: 6px 0;
  }
  .nav-dropdown-menu li a:hover {
    background: transparent;
  }
  .dropdown-arrow { display: none; }

  /* --- Mobile video hero: stacked layout --- */
  .hero.hero-has-video {
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
  }
  .hero.hero-has-video .hero-bg { display: none; }
  .hero.hero-has-video .hero-video {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    z-index: 1;
  }
  .hero.hero-has-video .hero-overlay {
    display: none;
  }
  .hero.hero-has-video .hero-content {
    position: relative;
    z-index: 2;
    background: var(--teal-dark);
    color: var(--white);
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 36px 24px 44px;
  }

  /* Fallback for no-video hero on mobile */
  .hero:not(.hero-has-video) { min-height: 70vh; }
  .hero:not(.hero-has-video) .hero-content { max-width: 100%; margin-left: 24px; padding-right: 24px; }

  .hero h1 { font-size: 2.6rem; }
  .hero p.hero-subtitle { font-size: 0.82rem; line-height: 1.55; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }

  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .circle-photo { width: 280px; height: 280px; margin: 0 auto; }

  .empathy-grid { grid-template-columns: 1fr; gap: 32px; }
  .empathy-img { max-width: 400px; margin: 0 auto; }

  /* Stack grid layouts on mobile */
  .section section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .about-preview { grid-template-columns: 1fr; }
  .about-preview-img { max-width: 300px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .testimonial-card { padding: 32px 24px; }
  .quiz-categories { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .book-preview { flex-direction: column; text-align: center; }
  .slider-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .testimonials-slider-wrap { gap: 8px; }

  .pricing-card { padding: 32px 24px; }
  .pricing-step-card { padding: 36px 28px; }

  /* Program page hero: stack on mobile */
  .page-header .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center !important;
  }
}

/* ---------- FAQ Section ---------- */
.faq-section { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}
.faq-question:hover { color: var(--teal); }
.faq-question:hover .faq-icon { color: var(--teal); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  transition: transform var(--ease);
  color: var(--text-light);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--rose);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* ---------- Section Scribble Background Pattern ---------- */
.section-scribble {
  position: relative;
}
.section-scribble::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Cg fill='none' stroke='%23B5727A' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M60 250 C100 180 160 120 230 150 C300 180 260 260 320 280 C380 300 440 220 480 250'/%3E%3Cpath d='M20 380 C70 330 130 360 180 330 C230 300 200 380 260 400 C320 420 370 370 420 350'/%3E%3Ccircle cx='380' cy='100' r='50'/%3E%3Ccircle cx='120' cy='420' r='30'/%3E%3Cpath d='M100 60 C130 30 170 70 155 110 C140 150 95 125 100 60'/%3E%3Cpath d='M400 430 C425 395 460 420 448 455 C436 485 400 470 400 430'/%3E%3Cpath d='M220 35 Q250 75 280 35'/%3E%3Cpath d='M35 190 Q60 150 85 190 Q110 230 135 190'/%3E%3Cpath d='M310 190 C340 165 365 200 350 225 C335 250 300 225 310 190'/%3E%3Cpath d='M190 440 C215 415 250 440 238 475'/%3E%3Cpath d='M440 150 Q465 125 490 160'/%3E%3Cpath d='M250 250 C260 230 280 240 275 260 C270 280 245 270 250 250'/%3E%3Cpath d='M450 320 C465 305 480 320 475 340'/%3E%3Cpath d='M30 80 C50 55 75 75 65 100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 500px 500px;
  pointer-events: none;
  z-index: 0;
}
.section-scribble > * {
  position: relative;
  z-index: 1;
}

/* ---------- Section Curve Dividers ---------- */
.section-curve {
  position: relative;
  margin-bottom: -2px;
}
.section-curve svg {
  display: block;
  width: 100%;
  height: 60px;
}
@media (min-width: 768px) {
  .section-curve svg {
    height: 80px;
  }
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered reveal delays for grids */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Section-level reveal for whole blocks */
.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p.hero-subtitle { font-size: 0.78rem; }
  .hero.hero-has-video .hero-content { padding: 28px 20px 36px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   The Endo Breakthrough Series - Pop-up
   ============================================ */
#lh-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(61, 47, 47, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  padding: 20px;
}
#lh-popup-overlay.visible { opacity: 1; }

.lh-popup {
  background: var(--cream);
  border-radius: 16px;
  max-width: 520px; width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh; overflow-y: auto;
}
#lh-popup-overlay.visible .lh-popup { transform: translateY(0); }

.lh-popup-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 28px; color: var(--text-light);
  cursor: pointer; line-height: 1;
  padding: 4px 8px;
  transition: color var(--ease);
}
.lh-popup-close:hover { color: var(--text-dark); }

.lh-popup-badge {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 16px;
}

.lh-popup h2 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.lh-popup p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.lh-popup-lessons {
  list-style: none; padding: 0;
  margin: 0 0 24px 0;
}
.lh-popup-lessons li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}
.lh-popup-lessons li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--teal);
  font-weight: 700;
}

.lh-popup-form {
  display: flex; flex-direction: column; gap: 10px;
}
.lh-popup-form input {
  padding: 14px 16px;
  border: 1.5px solid var(--sage);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--ease);
}
.lh-popup-form input:focus {
  outline: none;
  border-color: var(--teal);
}
.lh-popup-form input::placeholder { color: var(--text-light); }

.lh-popup-form .btn { width: 100%; text-align: center; margin-top: 4px; }

.lh-popup-privacy {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  text-align: center;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

.lh-popup-success { text-align: center; }
.lh-popup-success h2 { margin-bottom: 16px; }

/* ============================================
   Inline Lead Magnet CTA Banner
   ============================================ */
.lh-lead-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: 12px;
  padding: 32px 36px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  color: white;
}
.lh-lead-banner-text { flex: 1; }
.lh-lead-banner-text .lh-lead-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.lh-lead-banner h3 {
  font-family: var(--font-serif);
  color: white;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.lh-lead-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.lh-lead-banner .lh-inline-form {
  display: flex; gap: 8px;
  flex-shrink: 0;
}
.lh-lead-banner .lh-inline-form input {
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  width: 200px;
}
.lh-lead-banner .lh-inline-form input::placeholder { color: rgba(255,255,255,0.5); }
.lh-lead-banner .lh-inline-form input:focus { outline: none; border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.15); }
.lh-lead-banner .lh-inline-form .btn-lead {
  padding: 12px 20px;
  background: var(--rose-dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.lh-lead-banner .lh-inline-form .btn-lead:hover { background: var(--rose); transform: translateY(-1px); }

@media (max-width: 768px) {
  .lh-lead-banner { flex-direction: column; padding: 28px 24px; gap: 20px; }
  .lh-lead-banner .lh-inline-form { width: 100%; flex-direction: column; }
  .lh-lead-banner .lh-inline-form input { width: 100%; }
  .lh-popup { padding: 28px 24px; }
  .lh-popup h2 { font-size: 1.35rem; }
}

/* ============================================
   EmailOctopus Embedded Form Section
   ============================================ */

/* Full-width teal section that wraps the EO form */
.lh-eo-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 56px 24px;
  margin: 0;
  min-height: 180px;
}

/* Center the EO form + all its generated wrappers */
.lh-eo-section .inline-container,
.lh-eo-section > div {
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Make EO's own teal background transparent so our section bg shows */
.lh-eo-section .emailoctopus-form-wrapper {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 720px;
}

.lh-eo-section .emailoctopus-form-wrapper .emailoctopus-form {
  background: transparent !important;
}

/* Override EO form container sizing */
.lh-eo-section .form-container {
  max-width: 720px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

/* Override EO text colors for our teal bg */
.lh-eo-section .emailoctopus-form-wrapper h2,
.lh-eo-section .emailoctopus-form-wrapper h3,
.lh-eo-section .emailoctopus-form-wrapper p,
.lh-eo-section .emailoctopus-form-wrapper label {
  color: white !important;
}

/* Style EO inputs to match site */
.lh-eo-section .emailoctopus-form-wrapper input[type="email"],
.lh-eo-section .emailoctopus-form-wrapper input[type="text"] {
  border-radius: 8px !important;
}

/* Style EO submit button to match site */
.lh-eo-section .emailoctopus-form-wrapper button[type="submit"],
.lh-eo-section .emailoctopus-form-wrapper input[type="submit"] {
  border-radius: 8px !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}
.lh-eo-section .emailoctopus-form-wrapper button[type="submit"]:hover,
.lh-eo-section .emailoctopus-form-wrapper input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .lh-eo-section {
    padding: 40px 16px;
  }
}

/* Global fallback: if EO form hasn't been relocated yet, still center it */
body > div > .inline-container {
  max-width: 720px;
  margin: 0 auto;
}

/* Center all EO form content (text blocks + form fields) */
.eo-form-wrapper [eo-block="text"],
.eo-form-wrapper .text-block {
  text-align: center !important;
}
.eo-form-wrapper .form-container {
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   Blog Styles
   ============================================ */

/* Blog Grid (Index Page) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.blog-card-banner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card-banner svg {
  width: 48px;
  height: 48px;
  opacity: 0.9;
}
.blog-card-banner.banner-teal { background: linear-gradient(135deg, #2D6A6A 0%, #3d8a8a 100%); }
.blog-card-banner.banner-rose { background: linear-gradient(135deg, #C47A7A 0%, #d99a9a 100%); }
.blog-card-banner.banner-sage { background: linear-gradient(135deg, #5a8a6a 0%, #7aaa8a 100%); }
.blog-card-banner.banner-plum { background: linear-gradient(135deg, #7a5a8a 0%, #9a7aaa 100%); }
.blog-card-banner.banner-amber { background: linear-gradient(135deg, #8a7a5a 0%, #aa9a6a 100%); }
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--ease);
}
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.blog-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* Blog Article */
.article-header {
  margin-top: 72px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(244,235,237,0.5) 50%, rgba(236,223,227,0.3) 100%);
}
.article-header .container { max-width: 780px; }
.article-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.article-meta a { color: var(--rose); }
.article-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.article-header .article-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 660px;
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px;
}
.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.article-body h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--teal);
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 16px 0 24px 24px;
}
.article-body li {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 3px solid var(--rose-light);
  margin: 32px 0;
  padding: 20px 28px;
  background: rgba(181,114,122,0.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-body);
}
.article-body .callout {
  background: var(--cream-green);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.article-body .callout strong {
  color: var(--teal);
}

/* Article CTA */
.article-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 48px 0;
  color: var(--white);
}
.article-cta h3 { color: var(--white); margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* References */
.references {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}
.references h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.references ol {
  margin-left: 20px;
}
.references li {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Author card */
.author-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 16px;
  padding: 28px;
  margin: 48px 0;
}
.author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.author-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.author-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; text-align: center; }
  .article-body { padding: 40px 24px; }
}

/* ================================================ */
/* PROGRAM PAGE JOURNEY CARDS — design-system spec  */
/* ================================================ */

.journey-timeline { max-width: 800px; }
.journey-step { margin-bottom: 20px !important; }

/* Subtler timeline spine */
.journey-timeline::before { opacity: 0.25 !important; }

/* Step marker — serif italic numeral in teal circle (pillar-card vocabulary) */
.journey-step .step-marker { padding-top: 28px !important; }
.journey-step .step-num {
  width: 56px !important;
  height: 56px !important;
  font-family: var(--font-serif) !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  font-style: italic !important;
  background: var(--teal) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Card — clean white, design-system shadow */
.journey-step .step-card {
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  padding: 30px 34px 26px !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-soft) !important;
  transition: transform var(--ease-out), box-shadow var(--ease-out) !important;
}
.journey-step .step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg) !important;
}

/* Eyebrow — fix specificity loss to .step-card p */
.journey-step .step-card p.step-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Connector arrow — softer */
.journey-connector { opacity: 0.3 !important; }

/* ============================================
   Reddit Community Wall (About page)
   ============================================ */
.reddit-wall .reddit-wall-heading {
  color: var(--teal);
  margin-bottom: var(--space-4);
}
.reddit-wall .reddit-wall-intro {
  max-width: 640px;
  margin: 0 auto var(--space-7);
  text-align: center;
  color: var(--text-body);
  font-size: var(--fs-body-lg);
  line-height: 1.7;
}
.reddit-wall .container {
  max-width: 1240px;
}
.reddit-wall .reddit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.reddit-wall .reddit-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.reddit-wall .reddit-card img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 639px) {
  .reddit-wall {
    padding: 48px 0 !important;
  }
  .reddit-wall .reddit-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .reddit-wall .reddit-wall-intro {
    font-size: var(--fs-body);
    padding: 0 var(--space-1);
  }
}

/* ============================================================
   BLOG V2 — scoped under .blog-post-v2 (2026-04-23)
   Per BLOG-DESIGN-SPEC.md — pilot: Cluster A, post #1
   Safe to revert: delete this block.
   ============================================================ */

/* Cluster color mapping — set by adding cluster class to .blog-post-v2 root */
.bp-cluster-surgery-decisions {
  --bp-cluster-bg:        #FBEAF0;
  --bp-cluster-bg-soft:   #FDF2F6;
  --bp-cluster-pill-bg:   #F4C0D1;
  --bp-cluster-pill-ink:  #72243E;
  --bp-cluster-accent:    #D4537E;
  --bp-cluster-ink:       #4B1528;
  --bp-cluster-credit:    #993556;
  --bp-cluster-link:      #9F2B52;
  --bp-cluster-ring:      #ED93B1;
}
.bp-cluster-pain-and-daily-life {
  --bp-cluster-bg:        #FAEEDA;
  --bp-cluster-bg-soft:   #FCF5E6;
  --bp-cluster-pill-bg:   #F4D9A1;
  --bp-cluster-pill-ink:  #633806;
  --bp-cluster-accent:    #B87A2E;
  --bp-cluster-ink:       #3B1F02;
  --bp-cluster-credit:    #7A4A14;
  --bp-cluster-link:      #8A5616;
  --bp-cluster-ring:      #E1BF7A;
}
.bp-cluster-comorbidities-and-medication {
  --bp-cluster-bg:        #E1F5EE;
  --bp-cluster-bg-soft:   #EDF7F3;
  --bp-cluster-pill-bg:   #B9E1D2;
  --bp-cluster-pill-ink:  #085041;
  --bp-cluster-accent:    #2E8C72;
  --bp-cluster-ink:       #082E26;
  --bp-cluster-credit:    #0E6751;
  --bp-cluster-link:      #0E7059;
  --bp-cluster-ring:      #9FCFBD;
}

/* ── Root scope ─────────────────────────────────────────── */
.blog-post-v2 {
  --bp-ink:        #1A1A1A;
  --bp-body:       #2A2A2A;
  --bp-muted:      #6B6360;
  --bp-surface:    #FAFAF7;
  --bp-border:     rgba(0, 0, 0, 0.08);
  --bp-border-soft:rgba(0, 0, 0, 0.05);
  --bp-callout-bg: #FBF7F1;
  --bp-trust-green:#2F7D55;
  --bp-max:        68ch;
  --bp-radius:     12px;
  --bp-radius-sm:  8px;

  background: var(--bp-surface);
  color: var(--bp-body);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  .blog-post-v2 { font-size: 17px; }
}
.blog-post-v2 a { color: var(--bp-cluster-link); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color var(--ease); }
.blog-post-v2 a:hover { color: var(--bp-cluster-ink); text-decoration-thickness: 2px; }
.blog-post-v2 h1, .blog-post-v2 h2, .blog-post-v2 h3, .blog-post-v2 h4 {
  font-family: var(--font-serif);
  color: var(--bp-cluster-ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-weight: 600;
}

/* ── Skip link (accessibility) ─────────────────────────── */
.bp-skip { position: absolute; left: -9999px; }
.bp-skip:focus { position: fixed; top: 12px; left: 12px; z-index: 10000; background: var(--bp-cluster-ink); color: #fff; padding: 10px 14px; border-radius: 6px; }

/* ── Reading progress bar (fixed top) ─────────────────── */
.bp-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 999; pointer-events: none; background: transparent; }
.bp-progress-fill { height: 100%; width: 0; background: var(--bp-cluster-accent); transition: width 0.08s linear; }

/* ── Breadcrumb ───────────────────────────────────────── */
.bp-breadcrumb { max-width: 1100px; margin: 0 auto; padding: 24px 24px 0; font-size: 0.85rem; color: var(--bp-muted); }
.bp-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.bp-breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.bp-breadcrumb li + li::before { content: '/'; color: var(--bp-border); margin-right: 2px; }
.bp-breadcrumb a { color: var(--bp-muted); text-decoration: none; }
.bp-breadcrumb a:hover { color: var(--bp-cluster-ink); }
.bp-breadcrumb li[aria-current="page"] { color: var(--bp-cluster-ink); }

/* ── Hero ─────────────────────────────────────────────── */
.bp-hero { max-width: 1100px; margin: 0 auto; padding: 32px 24px 48px; }
.bp-cluster-tag {
  display: inline-block;
  background: var(--bp-cluster-pill-bg);
  color: var(--bp-cluster-pill-ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-decoration: none;
}
a.bp-cluster-tag:hover { filter: brightness(0.96); }
.bp-h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 700; line-height: 1.15; color: var(--bp-cluster-ink); margin: 0 0 20px; max-width: 20ch; }
@media (max-width: 767px) { .bp-h1 { font-size: 1.8rem; } }
.bp-meta { color: var(--bp-muted); font-size: 0.9rem; display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; }
.bp-meta a { color: var(--bp-muted); font-weight: 500; }
.bp-meta a:hover { color: var(--bp-cluster-ink); }
.bp-meta .sep { color: var(--bp-border); }
.bp-reviewed { display: inline-flex; align-items: center; gap: 5px; }
.bp-reviewed svg { width: 13px; height: 13px; color: var(--bp-trust-green); flex-shrink: 0; }

/* ── Short answer callout ─────────────────────────────── */
.bp-short-answer {
  max-width: 1100px; margin: 0 auto 40px; padding: 0 24px;
}
.bp-short-answer-inner {
  background: var(--bp-callout-bg);
  border-left: 4px solid var(--bp-cluster-accent);
  padding: 24px 28px;
  border-radius: var(--bp-radius);
}
.bp-short-answer-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-cluster-accent);
  margin-bottom: 10px;
}
.bp-short-answer p { font-size: 1.1rem; line-height: 1.6; margin: 0; color: var(--bp-ink); }

/* ── Layout: 2-col on desktop ─────────────────────────── */
.bp-layout { max-width: 1100px; margin: 0 auto; padding: 0 24px 48px; }
@media (min-width: 1024px) {
  .bp-layout {
    display: grid;
    grid-template-columns: minmax(0, var(--bp-max)) 280px;
    gap: 72px;
    align-items: start;
  }
}

/* ── Main article ─────────────────────────────────────── */
.bp-main { max-width: var(--bp-max); }
.bp-main > * + * { margin-top: 24px; }
.bp-main h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 56px;
  margin-bottom: 0;
  scroll-margin-top: 80px;
}
.bp-main h3 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 0;
  scroll-margin-top: 80px;
}
.bp-main h2 + *, .bp-main h3 + * { margin-top: 16px; }
.bp-main p { margin: 0; }
.bp-main strong { color: var(--bp-ink); font-weight: 600; }
.bp-main ul, .bp-main ol { padding-left: 24px; }
.bp-main li { margin-bottom: 10px; }
.bp-main li:last-child { margin-bottom: 0; }

/* Citation reference links [1] [2] [3] — subtle superscript */
.bp-main sup a, .bp-main a[href^="#ref-"] {
  font-size: 0.75em; padding: 0 2px; text-decoration: none; color: var(--bp-cluster-link);
}
.bp-main sup a:hover, .bp-main a[href^="#ref-"]:hover { text-decoration: underline; }

/* ── Pull quote / blockquote ──────────────────────────── */
.bp-main blockquote:not(.bp-short-answer blockquote) {
  border-left: 3px solid var(--bp-cluster-accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  color: var(--bp-ink);
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: var(--font-serif);
  font-style: italic;
}
.bp-pullquote {
  border-left: 3px solid var(--bp-cluster-accent);
  padding: 12px 0 12px 24px;
  margin: 36px 0;
  color: var(--bp-ink);
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: var(--font-serif);
  font-style: italic;
}

/* ── Sidebar (desktop) ────────────────────────────────── */
.bp-sidebar { display: none; }
@media (min-width: 1024px) {
  .bp-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }
}
.bp-toc-title, .bp-sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-cluster-credit);
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.bp-toc ol { list-style: none; margin: 0; padding: 0; }
.bp-toc li { margin: 0; padding: 6px 0; border-bottom: 1px solid var(--bp-border-soft); }
.bp-toc li:last-child { border-bottom: 0; }
.bp-toc a { color: var(--bp-muted); text-decoration: none; font-size: 0.9rem; line-height: 1.45; display: block; }
.bp-toc a:hover { color: var(--bp-cluster-ink); }
.bp-toc li.bp-toc-sub { padding-left: 16px; }

/* Mobile TOC: <details> accordion */
.bp-toc-mobile {
  display: block;
  margin: 0 auto 32px;
  max-width: 1100px;
  padding: 0 24px;
}
@media (min-width: 1024px) { .bp-toc-mobile { display: none; } }
.bp-toc-mobile details {
  background: var(--bp-cluster-bg-soft);
  border-radius: var(--bp-radius);
  border: 1px solid var(--bp-border-soft);
  overflow: hidden;
}
.bp-toc-mobile summary {
  padding: 14px 18px;
  font-weight: 600;
  color: var(--bp-cluster-ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bp-toc-mobile summary::-webkit-details-marker { display: none; }
.bp-toc-mobile summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--bp-cluster-accent);
  transition: transform 0.2s;
}
.bp-toc-mobile details[open] summary::after { content: '−'; }
.bp-toc-mobile ol { list-style: none; margin: 0; padding: 0 18px 14px; }
.bp-toc-mobile li { padding: 5px 0; }
.bp-toc-mobile li.bp-toc-sub { padding-left: 16px; }
.bp-toc-mobile a { color: var(--bp-body); text-decoration: none; font-size: 0.9rem; }
.bp-toc-mobile a:hover { color: var(--bp-cluster-ink); }

/* ── Sidebar CTA card ─────────────────────────────────── */
.bp-sidebar-cta {
  background: var(--bp-cluster-bg);
  border-radius: var(--bp-radius);
  padding: 22px 20px;
}
.bp-sidebar-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--bp-cluster-ink);
  margin: 0 0 8px;
}
.bp-sidebar-cta p {
  color: var(--bp-cluster-credit);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 14px;
}
.bp-sidebar-cta .bp-btn { width: 100%; justify-content: center; }

/* ── Sidebar mini bio ─────────────────────────────────── */
.bp-mini-bio { display: flex; gap: 12px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--bp-border-soft); }
.bp-mini-bio-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--bp-cluster-ring); }
.bp-mini-bio-text { font-size: 0.85rem; line-height: 1.45; color: var(--bp-body); }
.bp-mini-bio-text strong { color: var(--bp-cluster-ink); display: block; font-size: 0.9rem; margin-bottom: 2px; }
.bp-mini-bio a { color: var(--bp-cluster-link); font-size: 0.82rem; display: inline-block; margin-top: 6px; }

/* ── Inline CTA card ──────────────────────────────────── */
.bp-inline-cta {
  background: var(--bp-cluster-bg);
  border-radius: var(--bp-radius);
  padding: 24px 28px;
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bp-inline-cta h3 { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.35; color: var(--bp-cluster-ink); margin: 0; }
.bp-inline-cta p { margin: 0; color: var(--bp-cluster-credit); font-size: 1rem; line-height: 1.55; }
.bp-inline-cta .bp-btn { align-self: flex-start; }

/* ── Button ───────────────────────────────────────────── */
.blog-post-v2 a.bp-btn,
.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bp-cluster-ink);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: transform var(--ease-out), box-shadow var(--ease-out), background var(--ease);
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
}
.blog-post-v2 a.bp-btn:hover,
.bp-btn:hover {
  background: var(--bp-cluster-accent);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.bp-btn-ghost {
  background: transparent;
  color: var(--bp-cluster-ink);
  border: 1.5px solid var(--bp-cluster-ink);
}
.bp-btn-ghost:hover { background: var(--bp-cluster-ink); color: #fff !important; }

/* ── Key takeaways ────────────────────────────────────── */
.bp-takeaways {
  background: var(--bp-cluster-bg);
  border-radius: var(--bp-radius);
  padding: 28px 32px;
  margin: 56px 0 0;
}
.bp-takeaways-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-cluster-accent);
  margin: 0 0 16px;
}
.bp-takeaways h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--bp-cluster-ink);
  margin: 0 0 16px;
}
.bp-takeaways ul { list-style: none; padding: 0; margin: 0; }
.bp-takeaways li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--bp-ink);
  font-size: 1rem;
  line-height: 1.55;
}
.bp-takeaways li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bp-cluster-accent);
  opacity: 0.9;
  box-shadow: inset 0 0 0 3px var(--bp-cluster-bg);
}

/* ── FAQ accordion (native details) ───────────────────── */
.bp-faq { margin-top: 56px; }
.bp-faq > h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2rem); color: var(--bp-cluster-ink); margin-bottom: 20px; }
.bp-faq details {
  border-top: 1px solid var(--bp-border);
  padding: 0;
}
.bp-faq details:last-of-type { border-bottom: 1px solid var(--bp-border); }
.bp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bp-cluster-ink);
  position: relative;
  font-family: var(--font-sans);
  line-height: 1.4;
}
.bp-faq summary::-webkit-details-marker { display: none; }
.bp-faq summary::after {
  content: '';
  position: absolute;
  right: 4px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--bp-cluster-accent);
  border-bottom: 2px solid var(--bp-cluster-accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}
.bp-faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.bp-faq details > div { padding: 0 0 20px; color: var(--bp-body); }
.bp-faq details > div p { margin: 0 0 10px; }

/* ── End CTA block ────────────────────────────────────── */
.bp-end-cta {
  background: linear-gradient(160deg, var(--bp-cluster-bg) 0%, var(--bp-cluster-bg-soft) 100%);
  border-radius: var(--bp-radius);
  padding: 44px 36px;
  margin: 64px 0 0;
  text-align: center;
}
.bp-end-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--bp-cluster-ink);
  margin: 0 0 14px;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
}
.bp-end-cta p {
  color: var(--bp-cluster-credit);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 52ch;
  margin-left: auto; margin-right: auto;
}
.bp-end-cta .bp-btn { justify-content: center; }

/* ── Author full bio card ─────────────────────────────── */
.bp-author-card {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--bp-border);
  margin-top: 48px;
  align-items: flex-start;
}
.bp-author-card-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--bp-cluster-ring);
}
.bp-author-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--bp-cluster-ink);
  margin: 0 0 6px;
}
.bp-author-card-body .bp-author-credentials {
  font-size: 0.85rem;
  color: var(--bp-muted);
  font-style: italic;
  margin: 0 0 10px;
}
.bp-author-card-body p { margin: 0 0 10px; font-size: 0.95rem; line-height: 1.6; }
.bp-author-card-links { display: flex; gap: 16px; font-size: 0.9rem; }
@media (max-width: 639px) {
  .bp-author-card { flex-direction: column; gap: 16px; }
  .bp-author-card-photo { width: 72px; height: 72px; }
}

/* ── Related posts ────────────────────────────────────── */
.bp-related { margin-top: 64px; }
.bp-related h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--bp-cluster-ink); margin-bottom: 20px; }
.bp-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.bp-related-card {
  display: block;
  background: #fff;
  border-radius: var(--bp-radius);
  padding: 22px;
  border: 1px solid var(--bp-border-soft);
  text-decoration: none !important;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.bp-related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.bp-related-card .bp-cluster-tag { margin-bottom: 12px; font-size: 0.65rem; padding: 4px 10px; }
.bp-related-card h3 { font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.3; color: var(--bp-cluster-ink); margin: 0 0 8px; }
.bp-related-card p { font-size: 0.9rem; color: var(--bp-muted); line-height: 1.5; margin: 0; }

/* ── References ───────────────────────────────────────── */
.bp-references { margin-top: 64px; font-size: 0.88rem; }
.bp-references h2 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--bp-cluster-ink); margin-bottom: 16px; }
.bp-references ol { padding-left: 24px; margin: 0; }
.bp-references li { margin-bottom: 12px; color: var(--bp-muted); line-height: 1.5; scroll-margin-top: 80px; }
.bp-references li a { word-break: break-all; }
@media (max-width: 767px) {
  .bp-references > details summary { cursor: pointer; padding: 12px 0; font-weight: 600; color: var(--bp-cluster-ink); }
  .bp-references > details[open] summary::after { content: ''; }
}

/* ── Medical disclaimer ───────────────────────────────── */
.bp-disclaimer {
  font-size: 0.8rem;
  color: var(--bp-muted);
  line-height: 1.5;
  margin-top: 48px;
  padding: 16px 0;
  border-top: 1px solid var(--bp-border-soft);
  max-width: var(--bp-max);
  font-style: italic;
}

/* ── Cluster landing page specific ────────────────────── */
.bp-cluster-hero {
  background: var(--bp-cluster-bg);
  padding: 72px 24px 56px;
  text-align: center;
}
.bp-cluster-hero-inner { max-width: 720px; margin: 0 auto; }
.bp-cluster-hero .bp-cluster-tag { margin-bottom: 16px; background: #fff; }
.bp-cluster-hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 700; color: var(--bp-cluster-ink); margin: 0 0 16px; line-height: 1.15; }
.bp-cluster-hero p { font-size: 1.1rem; color: var(--bp-cluster-credit); line-height: 1.6; margin: 0; }
.bp-cluster-list { max-width: 900px; margin: 0 auto; padding: 56px 24px; }
.bp-cluster-list-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .bp-cluster-list-grid { grid-template-columns: repeat(2, 1fr); } }
.bp-cluster-other { max-width: 900px; margin: 0 auto 72px; padding: 0 24px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .bp-cluster-other { grid-template-columns: repeat(2, 1fr); } }
.bp-cluster-other-card {
  display: block;
  padding: 24px;
  border-radius: var(--bp-radius);
  text-decoration: none !important;
  transition: transform var(--ease-out);
}
.bp-cluster-other-card:hover { transform: translateY(-2px); }
.bp-cluster-other-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 6px; }
.bp-cluster-other-card p { font-size: 0.9rem; margin: 0; opacity: 0.8; }
