/* Same pairing as thedietarydoctor.com: Lora (display) + Source Sans 3 (UI/body) */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

/* --- Variables (private-practice / editorial luxury — Lora + Source Sans 3 unchanged) --- */
:root {
  /* Cool ivory + umber: gallery paper, not “flat beige” */
  --color-bg: #f2ede4;
  --color-bg-alt: #e6dfd1;
  --color-surface: #fffbf5;
  --color-text: #100f0d;
  --color-text-muted: #5a5550;
  --color-accent: #24554f;
  --color-accent-light: #367a72;
  --color-accent-deep: #123530;
  --color-accent-muted: rgba(36, 85, 79, 0.11);
  /* Brass / champagne (atelier, not “yellow gold”) */
  --color-gold: #5e4e38;
  --color-gold-bright: #b89552;
  --color-warm: #7a563c;
  --color-warm-soft: #b8a78a;
  /* Hairline + elevation */
  --border-faint: rgba(22, 19, 16, 0.065);
  --border-lux: rgba(176, 145, 88, 0.35);
  --section-divider: rgba(32, 28, 24, 0.055);
  --shine-inset: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --shine-top: 0 1px 0 rgba(255, 255, 255, 0.14);
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Lora", Georgia, "Times New Roman", serif;
  --fw-heading: 700;
  --fw-subheading: 600;
  --fw-body: 400;
  --fw-ui: 600;
  --fw-ui-bold: 700;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  /* Deeper, softer spread — “floating” cards */
  --shadow: 0 12px 48px -10px rgba(12, 10, 8, 0.09), 0 4px 18px rgba(12, 10, 8, 0.04);
  --shadow-hover: 0 36px 80px -16px rgba(12, 10, 8, 0.13), 0 10px 32px rgba(12, 10, 8, 0.06);
  --shadow-soft: 0 2px 28px rgba(12, 10, 8, 0.042);
  --shadow-card: var(--shine-inset), 0 16px 44px -8px rgba(12, 10, 8, 0.1), 0 2px 12px rgba(12, 10, 8, 0.04);
  --shadow-card-hover: var(--shine-inset), 0 28px 64px -12px rgba(12, 10, 8, 0.15), 0 4px 20px rgba(12, 10, 8, 0.055);
  --transition: 0.28s cubic-bezier(0.33, 1, 0.68, 1);
  --transition-slow: 0.45s cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  /* Header: espresso + brass trim */
  --header-bg: linear-gradient(180deg, #2f2a27 0%, #24201d 100%);
  --header-bg-solid: #2a2522;
  --header-bg-scrolled: rgba(36, 32, 28, 0.96);
  --header-border: rgba(176, 145, 88, 0.32);
  --header-text: rgba(255, 252, 248, 0.95);
  --header-text-hover: #fff;
  --header-active-underline: rgba(220, 205, 178, 0.95);
  /* Nav CTA: matches primary buttons / accent — reads clearly on espresso bar */
  --header-btn-bg: var(--color-accent);
  --header-btn-bg-hover: var(--color-accent-light);
  --header-btn-text: #fafefd;
  --header-nav-radius: 10px;
  --header-dropdown-edge: rgba(196, 168, 108, 0.16);
  --sidebar-icon-bg: #3a3330;
  --sidebar-icon-bg-hover: #48413d;
  --ring: 0 0 0 3px var(--color-accent-muted);
  --ring-offset: 2px;
  --blur-sm: 10px;
  --blur-md: 16px;
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 1px 2px rgba(12, 10, 8, 0.05), 0 3px 10px rgba(12, 10, 8, 0.04);
  --shadow-md: 0 10px 28px -4px rgba(12, 10, 8, 0.11), 0 2px 10px rgba(12, 10, 8, 0.05);
  --shadow-lg: 0 20px 40px -8px rgba(12, 10, 8, 0.12), 0 4px 16px rgba(12, 10, 8, 0.06);
  --container-max: 1440px;
  --container-padding: clamp(1.35rem, 4.2vw, 3rem);
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero.animate-on-scroll .hero-inner {
    transform: none;
    transition: none;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--fw-body);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 90% 55% at 50% -6%, rgba(180, 148, 90, 0.09) 0%, transparent 48%),
    radial-gradient(ellipse 42% 38% at 0% 15%, rgba(36, 85, 79, 0.05) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(201, 184, 150, 0.06) 0%, transparent 50%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(36, 85, 79, 0.12);
}

b,
strong {
  font-weight: 700;
}

::selection {
  background: rgba(36, 85, 79, 0.15);
  color: var(--color-text);
}

img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover { color: var(--color-accent-light); }
a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
ul { list-style: none; margin: 0; padding: 0; }

/* --- Skip link (accessibility: visible on focus) --- */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* --- Back-to-top button (mobile & desktop) --- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 700;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-accent-light);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }
}

/* --- Safe area insets (notched devices, mobile) --- */
.sidebar-fixed.sidebar-right {
  right: max(0.5rem, env(safe-area-inset-right));
}
.sidebar-fixed.sidebar-left {
  left: max(0.5rem, env(safe-area-inset-left));
}
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}

/* --- Scroll-triggered animation --- */
/* Scroll entrance: subtle right-to-left (Skybyte-style) */
.animate-on-scroll {
  opacity: 0;
  transform: translate(28px, 14px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translate(0, 0);
}
/* Hero: animate slide only (stay visible on load to avoid flash) */
.hero.animate-on-scroll {
  opacity: 1;
  transform: none;
}
.hero.animate-on-scroll .hero-inner {
  transform: translate(28px, 14px);
  transition: transform 0.9s var(--ease-out);
}
.hero.animate-on-scroll.in-view .hero-inner {
  transform: translate(0, 0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.15s; }
.animate-on-scroll.delay-2 { transition-delay: 0.3s; }
.animate-on-scroll.delay-3 { transition-delay: 0.45s; }

/* Staggered list animation: subtle right-to-left */
.animate-on-scroll-stagger > * {
  opacity: 0;
  transform: translate(20px, 12px);
}
.animate-on-scroll.in-view .animate-on-scroll-stagger > * {
  animation: staggerIn 0.85s var(--ease-out) forwards;
}
@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll-stagger > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .animate-on-scroll.in-view .animate-on-scroll-stagger > * {
    animation: none;
  }
}

/* Narrow viewports: vertical-only scroll-in (no translateX - avoids left-edge clipping) */
@media (max-width: 768px) {
  .animate-on-scroll {
    transform: translate(0, 12px);
  }
  .hero.animate-on-scroll .hero-inner {
    transform: translate(0, 12px);
  }
  .animate-on-scroll-stagger > * {
    transform: translate(0, 10px);
  }
}

/* Interactive tap/active feedback (React-style) */
  .btn.is-active,
  .program-plan-cta.is-active {
  transform: scale(0.98);
  transition-duration: 0.1s;
}
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
}
@media (min-width: 901px) {
  .main-nav a.is-active {
    background: rgba(255, 255, 255, 0.16);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn.is-active,
  .program-plan-cta.is-active {
    transform: none;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  /* Safe-area + horizontal padding so text never sits under notch / viewport edge */
  padding-left: calc(var(--container-padding) + env(safe-area-inset-left, 0px));
  padding-right: calc(var(--container-padding) + env(safe-area-inset-right, 0px));
}

/* --- Fixed sidebars: social (left) & contact (right) --- */
.sidebar-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}
.sidebar-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--sidebar-icon-bg);
  color: #faf8f5;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 108, 0.18);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.12);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sidebar-fixed a:hover {
  background: var(--sidebar-icon-bg-hover);
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.14);
  border-color: rgba(201, 168, 108, 0.35);
  color: #fff;
}
.sidebar-fixed svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.sidebar-left {
  left: 0;
}
.sidebar-right {
  right: 0;
}
@media (max-width: 900px) {
  .sidebar-fixed {
    padding: 0.35rem;
  }
  .sidebar-fixed a {
    width: 44px;
    height: 44px;
  }
  .sidebar-fixed svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 600px) {
  .sidebar-left { display: none; }
  .sidebar-right { display: flex; }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: var(--fw-ui-bold);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s var(--ease-out), box-shadow var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s var(--ease-spring), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:active,
.btn.is-active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-sm);
  transition-duration: 0.1s;
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring), var(--shadow-md);
}
.btn-primary {
  background: linear-gradient(180deg, #3c857c 0%, var(--color-accent) 50%, #1e4540 100%);
  color: #fff;
  border-color: var(--color-accent-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 20px rgba(18, 53, 48, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #4a948b 0%, #3a7a73 50%, #24554f 100%);
  border-color: rgba(54, 122, 114, 0.9);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 36px rgba(18, 53, 48, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(38, 90, 84, 0.24);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* --- Header (React-style: backdrop blur when scrolled) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--shine-top), 0 10px 40px -6px rgba(0, 0, 0, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(var(--blur-md)) saturate(1.08);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(1.08);
  box-shadow: var(--shine-top), 0 14px 48px -4px rgba(0, 0, 0, 0.26), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Scroll depth indicator (homepage — injected via js/script.js) */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  max-width: 100%;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
  z-index: 101;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-accent-light) 92%, transparent),
    color-mix(in srgb, var(--color-gold-bright) 85%, white)
  );
  box-shadow: 0 0 12px color-mix(in srgb, var(--color-accent) 35%, transparent);
  transition: width 0.15s ease-out;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Horizontal padding comes from .container only — matches hero / page content */
  padding: 1rem 0 1.1rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--header-text);
  font-weight: var(--fw-heading);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.logo:hover { color: var(--header-text-hover); }

.main-nav a.current {
  color: var(--header-text-hover);
  font-weight: var(--fw-ui-bold);
  border-bottom: 2px solid var(--header-active-underline);
  padding-bottom: 0.25rem;
}
.main-nav a.current:hover { color: var(--header-text-hover); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
}
.nav-toggle:hover { opacity: 0.9; }
.nav-toggle:active { opacity: 0.8; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--header-text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle span { transition: none; }
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 798;
  background: rgba(28, 25, 23, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
body.nav-open { overflow: hidden; }
@media (min-width: 901px) {
  .nav-backdrop { display: none !important; }
}

.main-nav > ul { display: flex; align-items: center; gap: 0.25rem; }
/* Keep Specialisations dropdown vertical; only top-level nav is horizontal */
.main-nav .dropdown {
  display: block;
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
}
.main-nav a {
  font-family: var(--font-body);
  padding: 0.5rem 0.75rem;
  color: var(--header-text);
  font-weight: var(--fw-ui);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--header-nav-radius);
  transition: color 0.2s var(--ease-in-out), background 0.2s var(--ease-in-out);
}
.main-nav a:hover {
  color: var(--header-text-hover);
  background: rgba(255, 255, 255, 0.1);
}
.main-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 168, 108, 0.55);
  border-radius: var(--header-nav-radius);
}

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  border: 1px solid var(--header-dropdown-edge);
  border-top: 2px solid rgba(201, 168, 108, 0.35);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-icon { display: none; }
.dropdown li { margin: 0; }
@media (min-width: 901px) {
  .nav-dropdown-see-all { display: none !important; }
}
.dropdown a {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--fw-ui);
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  color: var(--color-text);
  letter-spacing: 0.01em;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown a:hover {
  background: rgba(201, 168, 108, 0.12);
  color: var(--color-accent);
  padding-left: 1.25rem;
}

.btn-book {
  flex-shrink: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #4a938b 0%, var(--color-accent) 48%, var(--color-accent-deep) 100%) !important;
  color: var(--header-btn-text) !important;
  border: 1px solid rgba(18, 53, 48, 0.88) !important;
  font-weight: var(--fw-ui-bold);
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 4px 18px rgba(18, 53, 48, 0.42);
}
.btn-book:hover {
  background: linear-gradient(180deg, #56a89f 0%, var(--color-accent-light) 45%, var(--color-accent) 100%) !important;
  border-color: rgba(95, 168, 159, 0.95) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 8px 26px rgba(18, 53, 48, 0.38);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-backdrop { display: block; }
  .site-header { z-index: 800; }
  /* Same palette as the top bar: dark espresso + light type (not a separate “teal” mobile theme) */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    background: var(--header-bg);
    border-left: 1px solid var(--header-border);
    padding: 5.25rem 1.25rem 2rem 1.35rem;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 800;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .main-nav > ul > li:last-child { border-bottom: none; }
  .main-nav a {
    display: block;
    color: var(--header-text);
    min-height: 44px;
    padding: 0.8rem 0.5rem;
    line-height: 1.4;
    border-radius: var(--header-nav-radius);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .main-nav a:hover {
    color: var(--header-text-hover);
    background: rgba(255, 255, 255, 0.08);
  }
  .main-nav a:active {
    background: rgba(255, 255, 255, 0.1);
  }
  .main-nav a.current {
    color: var(--header-text-hover);
    font-weight: var(--fw-ui-bold);
    background: rgba(201, 168, 108, 0.14);
    border-bottom: none;
    box-shadow: inset 3px 0 0 var(--header-btn-bg);
  }
  /* Mobile: dropdowns collapsed by default; only open when .has-dropdown has .is-open */
  .main-nav .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0.2rem;
    margin-left: 0;
    border-radius: var(--header-nav-radius);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }
  .main-nav .has-dropdown.is-open .dropdown {
    max-height: min(70vh, 480px);
    padding: 0.4rem 0 0.65rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav .dropdown a {
    color: rgba(255, 252, 249, 0.9);
    font-size: 0.9rem;
    font-weight: var(--fw-ui);
    padding: 0.5rem 0.65rem 0.5rem 0.9rem;
  }
  .main-nav .dropdown a:hover {
    color: var(--header-text-hover);
    background: rgba(201, 168, 108, 0.12);
    padding-left: 1rem;
  }
  .btn-book { display: none; }
  /* + / − expand collapse icon for Specialisations and Programs */
  .main-nav .has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .main-nav .nav-dropdown-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--header-btn-bg);
    transition: transform var(--transition);
  }
  .main-nav .has-dropdown.is-open .nav-dropdown-icon {
    transform: none;
  }
  .main-nav .nav-dropdown-see-all {
    display: block;
  }
  .main-nav .nav-dropdown-see-all a {
    font-weight: var(--fw-ui-bold);
    color: var(--header-btn-bg) !important;
  }
  .main-nav .nav-dropdown-see-all a:hover {
    color: #c5ebe6 !important;
  }
}

/* --- Mobile: touch-friendly and interactive --- */
@media (max-width: 900px) {
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    -webkit-tap-highlight-color: transparent;
  }
  .program-card,
  .spec-slide,
  .home-course-banner {
    -webkit-tap-highlight-color: transparent;
  }
  .program-card:active {
    transform: translateY(0);
    box-shadow: var(--shadow-soft);
  }
  .spec-slide:active {
    opacity: 0.96;
  }
  .spec-slide a:active { opacity: 1; }
}

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 0 1.25rem;
  overflow: hidden;
}

#home.hero .hero-bg {
  transform: translateZ(0);
}
@media (prefers-reduced-motion: no-preference) {
  #home.hero .hero-bg {
    will-change: transform;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 52% at 6% 0%, rgba(176, 145, 88, 0.11) 0%, transparent 44%),
    radial-gradient(ellipse 75% 58% at 96% 4%, rgba(36, 85, 79, 0.075) 0%, transparent 48%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(201, 184, 150, 0.12) 0%, transparent 52%),
    linear-gradient(168deg, #fffcf6 0%, #f0e9de 38%, var(--color-bg) 70%, #e8e0d3 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 28%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-image {
  flex-shrink: 0;
  width: 48%;
  max-width: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover), 0 0 0 1px var(--border-lux);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.hero-image:hover img {
  transform: scale(1.03);
}

/* Homepage hero: larger photo + balanced vertical padding — portrait stays vertically centered vs copy */
.page-home #home.hero {
  padding: 5.25rem 0 3rem;
}
@media (min-width: 901px) {
  .page-home #home.hero .hero-inner {
    align-items: center;
  }
  .page-home #home.hero .hero-image {
    width: 56%;
    max-width: 680px;
    align-self: center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding: 5rem 0 1rem;
  }
  .page-home #home.hero {
    padding: 5rem 0 2.5rem;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-image {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
  .page-home #home.hero .hero-image {
    max-width: 540px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 4rem 0 0.75rem;
  }
  .page-home #home.hero {
    padding: 4rem 0 2rem;
  }
  .hero-proof { margin-bottom: 0.5rem; }
}

@media (max-width: 640px) {
  .home-why-grid { grid-template-columns: 1fr; }
  .home-quote { padding: 1.75rem 1.5rem 1.75rem 2rem; }
}

.hero-eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  font-weight: var(--fw-ui-bold);
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.35rem);
  font-weight: var(--fw-heading);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 1rem;
}
.hero-title .line { display: block; }

.hero-tagline {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 0.75rem;
}

.hero-proof {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.hero-proof strong { color: var(--color-accent); font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-start; margin-top: 0.35rem; }

/* Homepage: in-page anchor targets below fixed header */
.page-home main section[id],
.page-home main #stats-section {
  scroll-margin-top: calc(4.75rem + env(safe-area-inset-top, 0px));
}

/* Homepage: richer hover / motion on key blocks (respects reduced-motion in JS where needed) */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .page-home .home-why-card:hover .home-why-icon {
    transform: rotate(-8deg) scale(1.08);
    transition: transform 0.35s var(--ease-spring);
  }
  .page-home .home-focus.animate-on-scroll.in-view .home-focus-media {
    animation: pageHomeFocusFloat 8s ease-in-out infinite;
  }
}
.page-home .home-why-icon {
  transition: transform 0.35s var(--ease-out);
}
@keyframes pageHomeFocusFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-focus.animate-on-scroll.in-view .home-focus-media {
    animation: none;
  }
}

.page-home .stats-cta-home .stat-item {
  transition: transform 0.3s var(--ease-out);
}
@media (hover: hover) {
  .page-home .stats-cta-home .stat-item:hover {
    transform: translateY(-4px);
  }
}

.page-home .blog-slider-viewport {
  border-radius: var(--radius-lg);
  transition: box-shadow 0.35s ease;
}
@media (hover: hover) {
  .page-home .blog-slider:hover .blog-slider-viewport {
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(176, 145, 88, 0.12);
  }
}

/* --- Home page sections --- */
.home-intro {
  /* Warmer, slightly darker than white - same family as --color-bg-alt used across index strips */
  background: var(--color-bg-alt);
  padding: 5.75rem 0;
}
@media (max-width: 900px) {
  .home-intro { padding: 3rem 0; }
}
@media (max-width: 640px) {
  .home-intro { padding: 2.25rem 0; }
}
.home-intro-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.home-intro-left {
  flex-shrink: 0;
  width: 48%;
  max-width: 520px;
  min-width: 0;
}
.home-intro-left .home-intro-eyebrow,
.home-intro-left .section-eyebrow {
  margin: 0 0 0.75rem;
  text-align: left;
}
.home-intro-image {
  width: 100%;
  max-width: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-lux);
}
.home-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.home-intro-image:hover img {
  transform: scale(1.03);
}
.home-intro-inner {
  flex: 1;
  min-width: 0;
  max-width: 640px;
}
.home-intro .section-lead {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .home-intro-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .home-intro-left {
    width: 100%;
    max-width: none;
  }
}

/* Home: women's health focus - adapted from landing messaging, index palette */
.home-focus {
  background: var(--color-bg-alt);
  padding: 5.75rem 0;
}
.home-focus-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.home-focus-copy {
  min-width: 0;
}
.home-focus-lead {
  margin-bottom: 1.25rem;
}
.home-focus-checks {
  margin-bottom: 1rem;
}
.home-focus-tags-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 0.65rem;
}
.home-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}
.home-focus-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.95rem;
  font-size: 0.92rem;
  font-weight: var(--fw-ui);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid rgba(44, 41, 37, 0.12);
  border-radius: 999px;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.home-focus-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.home-focus-more {
  margin: 1.5rem 0 0;
  font-weight: 600;
}
.home-focus-more a:hover {
  text-decoration: underline;
}
.home-focus-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-lux);
}
.home-focus-media img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.home-focus-media:hover img {
  transform: scale(1.02);
}
@media (max-width: 960px) {
  .home-focus-inner {
    grid-template-columns: 1fr;
  }
  .home-focus-media {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    order: -1;
  }
}
@media (max-width: 640px) {
  .home-focus {
    padding: 3rem 0;
  }
}

.home-why {
  padding: 5.75rem 0;
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.home-why-card {
  background: linear-gradient(180deg, #fffefa 0%, var(--color-surface) 100%);
  padding: 2.35rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-faint);
  transition: box-shadow var(--transition), transform 0.2s ease, border-color var(--transition);
}
.home-why-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: rgba(176, 145, 88, 0.28);
}
.home-why-icon {
  display: inline-block;
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.home-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-heading);
  color: var(--color-text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.home-why-card p {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.home-programs {
  background: var(--color-bg-alt);
  padding: 5.75rem 0;
}
.home-programs .program-cards {
  margin-top: 2rem;
}

/* Our Programs: image between the two cards */
.program-cards-with-image {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.program-cards-image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  margin: 0 auto;
}
.program-cards-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-out);
}
.program-cards-image:hover img {
  transform: scale(1.03);
}
.program-cards-image-3-4 {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.program-cards-image-3-4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.program-cards-image-3-4:hover img {
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .program-cards-with-image {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .program-cards-image {
    max-width: 320px;
    order: 0;
  }
  .program-cards-with-image .program-card:first-of-type { order: 1; }
  .program-cards-with-image .program-card:last-of-type { order: 2; }
}
@media (max-width: 600px) {
  .program-cards-image {
    max-width: 100%;
  }
  .program-cards-image img {
    max-height: 340px;
  }
}

.home-programs-link {
  text-align: center;
  margin: 1.5rem 0 0;
  font-weight: 600;
}
.home-programs-link a:hover { text-decoration: underline; }

.home-course-banner {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 92, 87, 0.1);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(44, 41, 37, 0.03);
  text-align: center;
  transition: box-shadow 0.25s var(--ease-in-out), transform 0.25s var(--ease-spring), border-color var(--transition);
}
.home-course-banner:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(42, 92, 87, 0.08);
  transform: translateY(-4px);
  border-color: var(--color-accent-muted);
}
.home-course-banner .section-eyebrow { margin-bottom: 0.5rem; }
.home-course-banner .section-title { margin: 0 0 0.75rem; font-size: 1.75rem; }
.home-course-banner p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.home-course-banner .btn {
  margin: 0;
  transition: transform var(--transition);
}
.home-course-banner:hover .btn {
  transform: translateX(2px);
}

.home-spec {
  padding: 5.75rem 0;
  overflow-x: hidden;
}
.spec-grid-home {
  margin-top: 2rem;
}

/* Home page spec: auto-scroll (Conditions We Help With) */
.spec-slider {
  position: relative;
  margin-top: 2rem;
  padding: 0 3rem;
}
.spec-auto-scroll {
  padding-left: 0;
  padding-right: 0;
}
.spec-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
  min-width: 0;
  touch-action: pan-y;
}
.spec-slider-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  width: max-content;
}
.spec-slider:not(.spec-auto-scroll) .spec-slider-track {
  transition: transform 0.35s ease;
}
/* Smooth infinite auto-scroll: duplicate slides in JS, animate -50% then loop */
.spec-auto-scroll .spec-slider-track {
  animation: spec-auto-scroll 35s linear infinite;
  -webkit-animation: spec-auto-scroll 35s linear infinite;
}
.spec-auto-scroll .spec-slider-viewport:hover .spec-slider-track,
.spec-auto-scroll:hover .spec-slider-track,
.spec-auto-scroll.spec-scroll-paused .spec-slider-track {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
@keyframes spec-auto-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@-webkit-keyframes spec-auto-scroll {
  0%   { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .spec-auto-scroll .spec-slider-track {
    animation: none;
  }
}
.spec-slide {
  flex: 0 0 auto;
  width: 220px;
  min-width: 0;
  background: linear-gradient(180deg, #fffefa 0%, var(--color-surface) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border-faint);
  box-shadow: 0 4px 20px -4px rgba(12, 10, 8, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.25rem;
}
.spec-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.spec-slide:hover img {
  transform: scale(1.03);
}
.spec-slide-title {
  margin: 1rem 1rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-heading);
  text-align: center;
  line-height: 1.3;
}
.spec-slide-btn {
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.spec-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(44, 41, 37, 0.15);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.spec-slider-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.spec-slider-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.spec-slider-prev { left: 0; }
.spec-slider-next { right: 0; }
.spec-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.spec-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(44, 41, 37, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.spec-slider-dots button:hover {
  background: rgba(44, 41, 37, 0.4);
}
.spec-slider-dots button.active {
  background: var(--color-accent);
  transform: scale(1.2);
}
@media (max-width: 900px) {
  .spec-slider:not(.spec-auto-scroll) {
    padding: 0 2.5rem;
  }
  .spec-slide {
    width: 200px;
  }
}
@media (max-width: 600px) {
  .spec-slider:not(.spec-auto-scroll) {
    padding: 0 2.25rem;
  }
  .spec-slide {
    width: 260px;
  }
  .spec-slider-btn {
    width: 40px;
    height: 40px;
  }
  .spec-slider-prev { left: -0.25rem; }
  .spec-slider-next { right: -0.25rem; }
}
/* Mobile: break out of container padding so viewport is wider and strip is more visible */
@media (max-width: 640px) {
  .home-spec .spec-auto-scroll {
    width: calc(100% + 3rem);
    max-width: none;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .home-spec .spec-auto-scroll .spec-slider-viewport {
    border-radius: 0;
  }
}

.home-spec-link {
  text-align: center;
  margin: 1.5rem 0 0;
  font-weight: 600;
}
.home-spec-link a:hover { text-decoration: underline; }

.home-testimonial {
  background: var(--color-bg-alt);
  padding: 5rem 0;
}
.home-testimonial .section-eyebrow {
  margin-bottom: 0.35rem;
}
.home-testimonial-heading {
  margin: 0 0 0.4rem;
}
.home-testimonial .section-title {
  margin-bottom: 0;
}
.home-testimonial .home-testimonial-lead.section-subtitle {
  margin: 0 0 1.25rem;
  max-width: 40rem;
}
/* Featured quote (left) · carousel (centre) · collage (right) */
.home-testimonial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: stretch;
  margin-top: 0.25rem;
}
.home-client-carousel.lp-tf-carousel {
  margin: 0;
  max-width: none;
  padding: 0 2.35rem;
  min-width: 0;
}
.home-client-carousel .lp-tf-viewport {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.home-client-carousel .lp-tf-card {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  row-gap: 0;
  min-height: 0;
}
.home-client-carousel .lp-tf-card-media {
  min-height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}
.home-client-carousel .lp-tf-card-body {
  padding: 0 1rem 1rem;
  margin: 0;
}
.home-client-carousel .lp-tf-card-body::before {
  font-size: 2.25rem;
  top: 0.15rem;
  right: 0.75rem;
}
.home-client-carousel .lp-tf-stars {
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.home-client-carousel .lp-tf-google-note {
  margin-bottom: 0.45rem;
}
.home-client-carousel .lp-tf-quote p {
  font-size: 0.88rem;
  line-height: 1.52;
}
.home-client-carousel .lp-tf-name {
  font-size: 1rem;
}
.home-client-carousel .lp-tf-meta {
  font-size: 0.82rem;
}
.home-client-carousel .lp-tf-card-media img {
  min-height: 220px;
  max-height: min(300px, 42vh);
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
  vertical-align: top;
}
@media (max-width: 640px) {
  .home-client-carousel .lp-tf-card-media img {
    min-height: 200px;
    max-height: min(260px, 38vh);
  }
}
.home-testimonial-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.home-testimonial-center .home-testimonial-image {
  margin: 0;
  max-width: min(340px, 32vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.home-testimonial-center .home-testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.home-testimonial-center .home-testimonial-image:hover img {
  transform: scale(1.02);
}
.home-testimonial-aside,
.home-testimonial-quote {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-quote {
  max-width: none;
  margin: 0 0 1rem;
  padding: 1.5rem 1.65rem 1.5rem 1.85rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-soft);
}
.home-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  margin: 0 0 0.5rem;
  line-height: 1.65;
}
.home-quote footer {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.home-testimonial .btn {
  display: inline-block;
  align-self: flex-start;
}
@media (max-width: 1100px) {
  .home-testimonial-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-client-carousel.lp-tf-carousel {
    padding: 0 2.25rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-testimonial-center .home-testimonial-image {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-testimonial-aside,
  .home-testimonial-quote {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .home-client-carousel.lp-tf-carousel {
    padding: 0 2rem;
  }
}

.home-blogs {
  padding: 5rem 0;
}

/* Home index only: alternate strip backgrounds (programs + stats use different tokens so they don’t read as one block). */
main > section.section.stats-cta.stats-cta-home {
  background: var(--color-bg);
}
main > section.section.home-programs + section.section.stats-cta.stats-cta-home {
  border-top: 1px solid rgba(45, 41, 38, 0.1);
}
main > section.section.home-testimonial {
  background: var(--color-bg-alt);
}
main > section.section.stats-cta.stats-cta-home + .home-testimonial {
  border-top: 1px solid rgba(45, 41, 38, 0.1);
}
main > section.section.home-blogs {
  background: var(--color-bg);
}
main > section.section.home-testimonial + .home-blogs {
  border-top: 1px solid rgba(45, 41, 38, 0.08);
}

.home-blogs .section-title {
  margin-bottom: 1.5rem;
}
.home-blogs-link {
  text-align: center;
  margin: 1.5rem 0 0;
  font-weight: 600;
}
.home-blogs-link a:hover {
  text-decoration: underline;
}

/* Home blogs: horizontal auto-scroll slider (left to right) + prev/next */
.blog-slider {
  position: relative;
  margin-top: 2rem;
  padding: 0 3rem;
}
.blog-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  min-width: 0;
  touch-action: pan-y;
}
.blog-slider-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  width: max-content;
  transition: transform 0.35s ease;
}
.home-blogs .blog-slide {
  flex: 0 0 auto;
  width: 300px;
  min-width: 0;
}
.home-blogs .blog-slide .blog-card-image {
  height: 160px;
}
.home-blogs .blog-slide h3 {
  font-size: 1.1rem;
  margin: 1rem 1rem 0.5rem;
}
.blog-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(44, 41, 37, 0.15);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog-slider-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.blog-slider-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.blog-slider-prev { left: 0; }
.blog-slider-next { right: 0; }
@media (max-width: 900px) {
  .blog-slider { padding: 0 2.5rem; }
  .home-blogs .blog-slide { width: 280px; }
}
@media (max-width: 600px) {
  .blog-slider { padding: 0 2.25rem; }
  .home-blogs .blog-slide { width: 260px; }
  .blog-slider-btn { width: 40px; height: 40px; }
  .blog-slider-prev { left: -0.25rem; }
  .blog-slider-next { right: -0.25rem; }
}

.home-cta {
  background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-accent-deep) 52%, #0f2e2a 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 36%),
    radial-gradient(ellipse 100% 120% at 20% 0%, rgba(180, 148, 90, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 90% 100% at 100% 0%, rgba(196, 170, 120, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.home-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 50%, transparent);
  pointer-events: none;
}
.home-cta .container {
  position: relative;
  z-index: 1;
}
.page-lp-meta .home-cta::before,
.page-lp-meta .home-cta::after {
  display: none;
}
/* Override .section:nth-child(even) so CTA keeps teal gradient on all pages (same as homepage) */
.section.home-cta {
  background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-accent-deep) 52%, #0f2e2a 100%) !important;
  color: #fff;
}
.section.home-cta .home-cta-title {
  color: #fff;
}
.section.home-cta .home-cta-text {
  color: rgba(255, 255, 255, 0.9);
}
.section.home-cta .btn-primary {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.section.home-cta .btn-primary:hover {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.home-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.home-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--fw-heading);
  margin: 0 0 0.75rem;
  color: #fff;
}
.home-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.home-cta .btn-primary {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.home-cta .btn-primary:hover {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* --- Sections --- */
.section {
  padding: 5.75rem 0;
}
.section:nth-child(even) { background: var(--color-bg-alt); }

/* Index homepage: `.section:nth-child(even)` stacks the same `--color-bg-alt` on multiple strips because the
   hero is not `.section` - child indices shift so Who we are / Why choose us / Areas we support etc. read as one band.
   Override with alternating `--color-surface`, `--color-bg-alt`, and `--color-bg`. */
main > section.section.home-intro {
  background: var(--color-bg-alt);
}
main > section.section.home-why {
  background: var(--color-bg);
}
main > section.section.home-focus {
  background: var(--color-bg-alt);
}
main > section.section.home-programs {
  background: var(--color-bg-alt);
}
/* Index home-spec only — callprepguide marquee uses .call-prep-marquee-section + pink LP overrides */
main > section.section.home-spec:not(.call-prep-marquee-section) {
  background: var(--color-bg);
}
main > section.section.home-intro + section.home-why,
main > section.section.home-why + section.home-focus,
main > section.section.home-focus + section.home-spec,
main > section.section.home-spec + section.home-programs {
  border-top: 1px solid var(--section-divider);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* Inner pages: clear fixed header */
.page-intro {
  padding-top: 6.5rem;
}
.page-intro .section-title { margin-top: 0; }

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  font-weight: var(--fw-ui-bold);
  margin-bottom: 0.65rem;
  opacity: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: var(--fw-heading);
  color: var(--color-text);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.section-lead, .section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0;
}

.section-subtitle { margin-bottom: 2rem; }

/* --- Clinic intro --- */
.clinic-intro .section-lead { margin-bottom: 0; }

/* --- About Me page --- */
.about-me {
  background: var(--color-bg);
}
.container-narrow {
  max-width: 880px;
}

/* Blog post pages: use wider content area to reduce side whitespace */
.blog-post-page .container-narrow {
  max-width: 1120px;
}

/* --- Fertility & Hormone Course page --- */
.course-intro {
  background: var(--color-bg);
}
.course-who {
  background: var(--color-surface);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.course-intro-image {
  margin: 1.5rem 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.course-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.course-intro .course-h2 { margin-top: 1.5rem; }
.course-split {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--color-bg);
}
.course-split:nth-of-type(4) { background: var(--color-bg-alt); }
.course-cta-section {
  background: var(--color-surface);
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.about-panel .course-list { margin-bottom: 0; }
.about-panel .course-list li:last-child { margin-bottom: 0; }
.course-h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-heading);
  color: var(--color-text);
  margin: 2.5rem 0 1rem;
}
.course-h2:first-of-type { margin-top: 0; }
.course-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.course-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.6;
}
.course-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.course-cta-block {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  text-align: center;
}
.course-cta-block .section-title { margin-top: 0; }
.course-cta-text {
  margin: 0 auto 1.5rem;
  max-width: 560px;
  color: var(--color-text);
}
.course-notice {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(42, 92, 87, 0.06);
  border: 1px solid rgba(42, 92, 87, 0.15);
  border-radius: var(--radius);
}
.course-notice-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.75rem;
}
.course-notice-disclosure {
  margin-top: 2.5rem;
}
.course-notice-summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  cursor: pointer;
  padding: 0.35rem 2rem 0.35rem 0;
  position: relative;
  user-select: none;
}
.course-notice-summary::-webkit-details-marker {
  display: none;
}
.course-notice-summary::after {
  content: "";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}
.course-notice-disclosure[open] .course-notice-summary::after {
  transform: translateY(-15%) rotate(225deg);
}
.course-notice-disclosure .course-notice-list {
  margin-top: 0.75rem;
}
.course-notice-list { margin-bottom: 0; }
.course-notice-list li::before { background: var(--color-text-muted); }

.course-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.25rem;
}
.course-photo-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 41, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.course-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.course-photo-caption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}
.course-photo-banner {
  padding: 0.75rem 0 2rem;
  background: var(--color-bg-alt);
}
.course-photo-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.course-photo-banner-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 41, 37, 0.06);
}
.course-photo-banner-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: min(380px, 48vh);
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .course-photo-banner-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .course-photo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.75rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .page-fertility-course .course-photo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}
@media (prefers-reduced-motion: reduce) {
  .course-photo-card {
    transition: none;
  }
}

/* About page: side-by-side sections (split layout) */
.about-split .container {
  max-width: var(--container-max);
}
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.about-panel {
  background: var(--color-surface);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 41, 37, 0.06);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
}
.about-panel-left {
  background: var(--color-surface);
}
.about-panel-highlight {
  background: var(--color-bg-alt);
  border-left-color: var(--color-accent);
  box-shadow: 0 2px 20px rgba(44, 41, 37, 0.06);
}
.about-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-accent-light);
}
.about-panel:focus-within {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-accent-light);
}
.about-panel-icon {
  display: inline-block;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.about-panel .about-h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.about-panel p,
.about-panel .about-list,
.about-panel .about-credentials,
.about-panel .about-mission {
  margin-bottom: 1rem;
}
.about-panel .about-standout {
  margin-bottom: 0.75rem;
}
.about-panel-credentials .about-credentials {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-muted) transparent;
}
.about-panel-credentials .about-credentials::-webkit-scrollbar {
  width: 6px;
}
.about-panel-credentials .about-credentials::-webkit-scrollbar-track {
  background: transparent;
}
.about-panel-credentials .about-credentials::-webkit-scrollbar-thumb {
  background: var(--color-accent-muted);
  border-radius: 3px;
}
@media (max-width: 900px) {
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-panel {
    padding: 1.75rem 1.5rem;
  }
}

.about-intro-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.about-intro-photo {
  flex-shrink: 0;
  width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.about-intro-photo:hover img {
  transform: scale(1.03);
}

.about-intro-text {
  flex: 1;
  min-width: 0;
}

.about-intro-text .section-lead { margin-bottom: 1rem; }

@media (max-width: 640px) {
  .about-intro-block {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-intro-photo {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

.about-me .section-lead { margin-bottom: 1.5rem; }

.about-intro {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.about-belief-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}

.about-belief {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--fw-subheading);
  font-style: italic;
  color: var(--color-accent);
  margin: 0 0 2.5rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--color-accent);
  line-height: 1.4;
}

.about-h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-heading);
  color: var(--color-text);
  margin: 2.5rem 0 1rem;
}

.about-h2:first-of-type { margin-top: 0; }

.about-me p:not(.section-eyebrow) {
  color: var(--color-text);
  margin: 0 0 1rem;
  line-height: 1.65;
}

.about-standout {
  font-weight: 600;
  color: var(--color-text) !important;
}

.about-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.5;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.about-credentials {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.about-credentials li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-credentials li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.about-mission {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.about-mission li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
  line-height: 1.5;
}

.about-mission li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.about-closing {
  margin-top: 1.5rem;
  font-weight: var(--fw-ui);
  color: var(--color-text) !important;
}

/* --- Programs --- */
.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.program-card {
  background: linear-gradient(180deg, #fffefa 0%, var(--color-surface) 100%);
  padding: 2.35rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-faint);
  transition: box-shadow 0.25s var(--ease-in-out), transform 0.25s var(--ease-spring), border-color var(--transition);
}
.program-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(176, 145, 88, 0.28);
}
.program-card a { transition: transform var(--transition); }
.program-card:hover a { transform: translateX(2px); }

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--fw-heading);
  margin: 0 0 0.75rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.program-card p {
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
}

/* --- 1-on-1 Program plans (Standard vs Exclusive) --- */
.one-on-one-plans .section-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.program-plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.program-plan-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(44, 41, 37, 0.04);
  border: 1px solid rgba(44, 41, 37, 0.08);
  position: relative;
  transition: box-shadow 0.25s var(--ease-in-out), transform 0.25s var(--ease-spring), border-color var(--transition);
}
.program-plan-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(42, 92, 87, 0.08);
  transform: translateY(-4px);
  border-color: var(--color-accent-muted);
}
.program-plan-exclusive:hover {
  border-color: rgba(42, 92, 87, 0.35);
  box-shadow: 0 8px 32px rgba(42, 92, 87, 0.12), 0 0 0 1px rgba(42, 92, 87, 0.06);
}

.program-plan-exclusive {
  border-color: rgba(42, 92, 87, 0.2);
  box-shadow: 0 4px 24px rgba(42, 92, 87, 0.08);
}

.program-plan-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 41, 37, 0.08);
}

.program-plan-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: var(--fw-heading);
  margin: 0 0 0.25rem;
  color: var(--color-text);
}

.program-plan-badge {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  font-weight: var(--fw-ui);
}

.program-plan-everything {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.program-plan-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.program-plan-feature {
  margin-bottom: 1.25rem;
  padding-left: 0;
}

.program-plan-feature:last-child {
  margin-bottom: 0;
}

.program-plan-feature-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.program-plan-feature-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.program-plan-monitored {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.program-plan-cta {
  display: block;
  text-align: center;
  width: 100%;
  transition: transform var(--transition);
}
.program-plan-card:hover .program-plan-cta {
  transform: translateX(2px);
}
.program-plan-cta:active,
.program-plan-cta.is-active {
  transform: scale(0.98);
  transition-duration: 0.1s;
}
.program-plan-card:hover .program-plan-cta:active,
.program-plan-card:hover .program-plan-cta.is-active {
  transform: translateX(2px) scale(0.98);
}

.one-on-one-back {
  text-align: center;
  margin-top: 2.5rem;
  font-weight: var(--fw-ui);
}

.one-on-one-back a:hover {
  text-decoration: underline;
}

/* --- FAQ (How we work) - panels --- */
.faq-section {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.faq-intro {
  margin-bottom: 2rem;
  max-width: 640px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(44, 41, 37, 0.04);
  border: 1px solid rgba(44, 41, 37, 0.06);
  padding: 0 1.25rem;
  transition: background-color 0.25s ease, box-shadow 0.25s var(--ease-in-out), border-color 0.25s ease, transform 0.25s var(--ease-spring);
}
.faq-item:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(44, 41, 37, 0.06);
}
.faq-item:not([open]):hover {
  transform: translateY(-2px);
}

.faq-item[open] {
  background: rgba(201, 168, 108, 0.08);
  border-left: 4px solid var(--header-bg-solid);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(201, 168, 108, 0.12);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.5rem 1rem 0;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--header-bg-scrolled);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  line-height: 1;
}

.faq-question:hover::after {
  color: var(--header-bg-scrolled);
  transform: translateY(-50%) scale(1.15);
}

.faq-item[open] .faq-question::after {
  content: "+";
  transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] .faq-question:hover::after {
  transform: translateY(-50%) rotate(45deg) scale(1.1);
}

/* Smooth expand/collapse for answer */
.faq-answer {
  padding: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
}

.faq-item[open] .faq-answer {
  max-height: 1200px;
  opacity: 1;
  padding: 0 0 1.25rem 0;
}

.faq-answer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  padding-right: 0.5rem;
  animation: faqAnswerIn 0.35s ease forwards;
}

.faq-item[open] .faq-answer p {
  animation: faqAnswerIn 0.4s ease forwards;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

.faq-answer-list {
  list-style: disc;
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
}

.faq-answer-list li {
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.faq-answer-list li:last-child {
  margin-bottom: 0;
}

.faq-answer p + .faq-answer-list {
  margin-top: 0.75rem;
}

/* --- Stats section with image in between (How We Work page, Skybyte-style) --- */
.stats-cta {
  background: var(--color-bg-alt);
  padding: 3.5rem 0;
  color: var(--color-text);
}

.stats-cta .container.stats-cta-inner,
.stats-cta .stats-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 2rem 1.5rem;
  text-align: center;
}

/* Home stats: eyebrow, then title below - left-aligned (matches rest of page) */
.stats-cta-home-head {
  margin: 0 0 1.5rem;
  text-align: left;
}
.stats-cta-home-head .section-eyebrow {
  margin: 0 0 0.4rem;
  text-align: left;
}
.stats-cta-home .stats-cta-heading {
  margin: 0;
  text-align: left;
  max-width: 36rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.25;
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  color: var(--color-text);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: var(--fw-ui);
}

.stats-cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 280px;
  transition: box-shadow var(--transition);
}
.stats-cta-image:hover {
  box-shadow: var(--shadow-hover);
}
.stats-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 260px;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.stats-cta-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .stats-cta .container.stats-cta-inner,
  .stats-cta .stats-cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .stats-cta-image {
    grid-column: 1 / -1;
    max-width: 320px;
    justify-self: center;
  }
  .stats-cta-image img {
    max-height: 240px;
  }
}

@media (max-width: 480px) {
  .stats-cta .container.stats-cta-inner,
  .stats-cta .stats-cta-inner {
    gap: 1.5rem;
  }
  .stats-cta-image {
    max-width: 100%;
  }
  .stats-cta-image img {
    max-height: 220px;
  }
  .stat-number {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}

@media (max-width: 900px) {
  .program-plan-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Specialisations grid --- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* Specialisations page: image tiles */
.spec-grid-tiles {
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.spec-tile-page {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(44, 41, 37, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.spec-tile-page:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}
.spec-tile-page:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.spec-tile-page img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.spec-tile-page .spec-tile-label {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.3;
  color: var(--color-text);
}
.spec-tile-page:hover .spec-tile-label {
  color: var(--color-accent);
}
@media (max-width: 900px) {
  .spec-grid-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .spec-grid-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .spec-tile-page .spec-tile-label {
    font-size: 0.8rem;
    padding: 0.6rem 0.4rem;
  }
}

.spec-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(44, 41, 37, 0.06);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform 0.25s var(--ease-out), border-color var(--transition);
}
.spec-card:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
  border-color: transparent;
}
.spec-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Specialisation programme pages (image left, content right) --- */
.spec-programme {
  padding: 0;
  min-height: 60vh;
}
.spec-programme-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: stretch;
}
.spec-programme-image {
  background: var(--color-bg-alt);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-programme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.spec-programme-image:not(:has(img)) {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-warm-soft) 40%);
}
.spec-programme-content {
  padding: 3rem 2.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg);
}
.spec-programme-content .section-eyebrow {
  margin-bottom: 0.5rem;
}
.spec-programme-content .section-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.spec-programme-tagline {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.spec-programme-body {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.spec-programme-body p {
  margin: 0 0 1rem;
}
.spec-programme-body p:last-child {
  margin-bottom: 0;
}
.spec-programme-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .spec-programme-layout {
    grid-template-columns: 1fr;
  }
  .spec-programme-image {
    aspect-ratio: 1;
  }
  .spec-programme-image:empty::after {
    min-height: 280px;
  }
  .spec-programme-content {
    padding: 2rem 1.5rem;
  }
}

/* --- Testimonials --- */
.testimonials { background: var(--color-bg); }
/* Prevent blank screen on mobile: ensure testimonials section is visible even before scroll-in */
@media (max-width: 768px) {
  .testimonials.animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.testimonial-gallery {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.testimonial-gallery-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonial-gallery-inner img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform 0.3s var(--ease-out);
  background: var(--color-bg-alt);
}

.testimonial-gallery-inner img:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
}

.testimonials-slider {
  margin-top: 2rem;
  overflow: hidden;
}

.testimonials-slider {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  padding: 2rem 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-accent);
  transition: box-shadow var(--transition);
}
.testimonials-slider:hover .testimonial {
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 1rem;
  font-style: italic;
}

.testimonial footer {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-warm-soft);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.slider-dots button:hover { background: var(--color-warm); transform: scale(1.1); }
.slider-dots button.active { background: var(--color-accent); transform: scale(1.2); }
.slider-dots button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Blog preview --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 41, 37, 0.06);
  transition: box-shadow var(--transition), transform 0.25s var(--ease-out), border-color var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--color-accent-muted);
}
.blog-card .link-arrow { transition: transform var(--transition); }
.blog-card:hover .link-arrow { transform: translateX(4px); }

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-warm-soft) 100%);
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-subheading);
  margin: 1.25rem 1.25rem 0.5rem;
  color: var(--color-text);
  line-height: 1.35;
}
.blog-card-date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 1.25rem 0.75rem;
  margin-top: auto;
}

.link-arrow {
  display: inline-block;
  margin: 0 1.25rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.link-arrow::after { content: " →"; }

/* --- Blog post (single article) --- */
/* Intro: title and lead */
.blog-post.page-intro .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: var(--fw-heading);
  line-height: 1.25;
  color: var(--color-text);
}
.blog-post-date {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.blog-post.page-intro .section-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 100%;
}

.blog-post-hero {
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-post-hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

/* Body: readable font size and spacing */
.blog-post .blog-post-body {
  margin: 1.5rem 0 2rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.blog-post .blog-post-body p {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  line-height: 1.75;
  font-family: var(--font-body);
}
.blog-post .blog-post-body p:last-child { margin-bottom: 0; }
.blog-post .blog-post-body p strong {
  font-weight: 600;
  color: var(--color-text);
}

/* Section panels: visual separation between major headings */
.blog-section {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 41, 37, 0.06);
}
.blog-section:last-of-type { margin-bottom: 0; }
@media (max-width: 640px) {
  .blog-section {
    padding: 1.25rem 1.25rem;
  }
  .blog-cta-panel {
    padding: 1.5rem 1.25rem;
  }
}

.blog-post .blog-post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: var(--fw-subheading);
  color: var(--color-text);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.blog-section > h2:first-child { margin-top: 0; }
.blog-post .blog-post-body h2:first-child { margin-top: 0; }
/* Section divider when not using .blog-section */
.blog-post .blog-post-body > h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 41, 37, 0.08);
}
.blog-post .blog-post-body > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.blog-post .blog-post-body h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.35;
}
.blog-post .blog-post-body ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.blog-post .blog-post-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.65;
  font-family: var(--font-body);
}
.blog-post .blog-post-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.blog-post .blog-post-body blockquote,
.blog-post-callout {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--fw-subheading);
  font-style: italic;
  color: var(--color-text);
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.55;
}
.blog-post .blog-post-body blockquote {
  color: var(--color-accent);
}

/* Images: consistent max size, rounded, shadow */
.blog-post-fig {
  margin: 1.25rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}
.blog-post-fig img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
}
/* Two images side by side on wider screens */
.blog-post-fig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
.blog-post-fig-grid .blog-post-fig {
  margin: 0;
}
.blog-post-fig-grid .blog-post-fig img {
  max-height: 280px;
}
@media (max-width: 640px) {
  .blog-post-fig-grid {
    grid-template-columns: 1fr;
  }
  .blog-post-fig img {
    max-height: 320px;
  }
}
.blog-post-fig figcaption {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.6rem 0.75rem;
  background: var(--color-bg-alt);
  font-family: var(--font-body);
}

/* CTA panel at end of post */
.blog-cta-panel {
  background: linear-gradient(135deg, var(--color-accent-muted) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(42, 92, 87, 0.12);
  text-align: center;
}
.blog-cta-panel p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  color: var(--color-text);
}
.blog-cta-panel p:last-child { margin-bottom: 0; }
.blog-cta-panel a {
  font-weight: 600;
}

.blog-post-back {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 41, 37, 0.1);
  font-size: 0.9375rem;
}
.blog-post-back .link-arrow::after { content: ""; }

/* --- Contact --- */
.contact { background: var(--color-bg-alt); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact address, .hours {
  font-style: normal;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.contact address a, .hours { color: var(--color-text); }

.contact-form {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(44, 41, 37, 0.04);
  border: 1px solid rgba(44, 41, 37, 0.06);
  transition: box-shadow 0.25s var(--ease-in-out);
}
.contact-form:focus-within {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(42, 92, 87, 0.1);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--fw-heading);
  margin: 0 0 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: var(--fw-ui);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(44, 41, 37, 0.15);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-muted);
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(44, 41, 37, 0.25);
}

.contact-form button[type="submit"] { margin-top: 0.5rem; }

/* Form validation: inline errors and error state */
.form-error {
  display: block;
  font-size: 0.85rem;
  color: #c23d3d;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.contact-form .input-error,
input.input-error,
textarea.input-error {
  border-color: #c23d3d !important;
  box-shadow: 0 0 0 2px rgba(194, 61, 61, 0.15);
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form input,
  .contact-form textarea,
  .contact-form button[type="submit"] {
    min-height: 48px;
  }
  .contact-form textarea { min-height: 120px; }
}

/* --- Footer --- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1a1815 0%, #0c0b0a 100%);
  color: rgba(247, 244, 240, 0.93);
  padding: 3.75rem 0 2.25rem;
  border-top: 1px solid rgba(176, 145, 88, 0.3);
  box-shadow: 0 -20px 64px -10px rgba(0, 0, 0, 0.28);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 50%, transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-heading);
  color: #fff;
  margin: 0 0 0.5rem;
}

.site-footer p { margin: 0 0 0.5rem; font-size: 0.95rem; }
.site-footer a {
  color: #e8e6e3;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--color-warm-soft); }
.site-footer ul li {
  margin-bottom: 0.4rem;
  transition: transform var(--transition);
}
.site-footer ul li:hover { transform: translateX(4px); }
.site-footer ul li a { display: inline-block; }

.site-footer h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(196, 184, 162, 0.9);
  margin: 0 0 0.75rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.48); margin: 0; }

/* --- Landing page (landing.html) --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Meta ads LP: rose / pink funnel palette + bold sans */
.page-lp-meta {
  --font-display: "Plus Jakarta Sans", var(--font-body);
  --color-accent: #db2777;
  --color-accent-light: #ec4899;
  --color-accent-muted: rgba(219, 39, 119, 0.16);
  --ring: 0 0 0 3px rgba(219, 39, 119, 0.24);
  --lp-meta-pink-mist: #fdf2f8;
  --lp-meta-pink-blush: #fce7f3;
  --lp-meta-pink-pop: #f472b6;
  /* Funnel-style horizontal rhythm (narrower column + more side padding, cf. typical Meta LP) */
  --lp-meta-content-max: 1180px;
  --lp-meta-section-padding-x: clamp(1.5rem, 5.5vw + 1rem, 4rem);
  -webkit-tap-highlight-color: rgba(219, 39, 119, 0.2);
  background-color: var(--lp-meta-pink-mist);
}

.page-lp-meta .section-title {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-lp-meta .section.home-cta {
  background: linear-gradient(135deg, #f9a8d4 0%, #db2777 38%, #9d174d 72%, #831843 100%) !important;
}

/* Meta LP: wider side padding + capped content width (funnel LP layout) */
.page-lp-meta .container {
  max-width: min(100%, var(--lp-meta-content-max));
  padding-left: calc(var(--lp-meta-section-padding-x) + env(safe-area-inset-left, 0px));
  padding-right: calc(var(--lp-meta-section-padding-x) + env(safe-area-inset-right, 0px));
}

/* landing.html + callprepguide.html: pink-only CTAs (no teal from global .btn-primary) */
.page-lp-meta .btn-primary {
  background: linear-gradient(180deg, #ec4899 0%, #db2777 44%, #be185d 100%);
  color: #fff;
  border-color: #9d174d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 22px rgba(157, 23, 77, 0.38);
}
.page-lp-meta .btn-primary:hover {
  background: linear-gradient(180deg, #f472b6 0%, #ec4899 48%, #db2777 100%);
  border-color: #be185d;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 38px rgba(190, 24, 93, 0.42);
}
.page-lp-meta .btn-primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(219, 39, 119, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 6px 22px rgba(157, 23, 77, 0.38);
}
.page-lp-meta .btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 8px 26px rgba(219, 39, 119, 0.34);
}

/* Call-prep marquee: match pink funnel cards (default .spec-slide uses clinic cream) */
.page-lp-meta .spec-slide {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, #fff5f9 55%, #ffffff 100%);
  border: 1px solid rgba(219, 39, 119, 0.11);
  box-shadow: 0 6px 22px -4px rgba(219, 39, 119, 0.1);
}

/* Meta LP: pink-tinted sections + form shell */
.page-lp-meta .lp-meta-outcomes {
  background: linear-gradient(180deg, #ffffff 0%, var(--lp-meta-pink-mist) 50%, var(--lp-meta-pink-blush) 100%);
  border-block: 1px solid rgba(219, 39, 119, 0.09);
}
.page-lp-meta .lp-meta-outcomes-form .contact-form {
  border-color: rgba(219, 39, 119, 0.16);
  background: linear-gradient(175deg, var(--lp-meta-pink-mist) 0%, #fff5f9 40%, var(--lp-meta-pink-blush) 100%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(219, 39, 119, 0.08);
}
.page-lp-meta .lp-meta-outcomes-form .contact-form:focus-within {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-meta-form-lead {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-accent) 18%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 9%, transparent) 42%,
    rgba(253, 242, 248, 0.98) 100%
  );
  border-color: color-mix(in srgb, var(--color-accent) 28%, transparent);
}
.page-lp-meta .lp-meta-expect {
  background: linear-gradient(165deg, var(--lp-meta-pink-mist) 0%, #fff5f9 50%, var(--lp-meta-pink-blush) 100%);
  border-color: rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-meta-pillars {
  border-top-color: rgba(219, 39, 119, 0.1);
}
.page-lp-meta .lp-meta-pillar-card {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, #fff5f9 55%, var(--lp-meta-pink-blush) 100%);
  border-color: rgba(219, 39, 119, 0.14);
}
.page-lp-meta .lp-meta-spotlight {
  background: linear-gradient(180deg, #fff5f9 0%, var(--lp-meta-pink-mist) 55%, var(--lp-meta-pink-blush) 100%);
  border-block-color: rgba(219, 39, 119, 0.08);
}
.page-lp-meta .lp-meta-spotlight-card {
  background: linear-gradient(180deg, #fff5f9 0%, var(--lp-meta-pink-mist) 55%, #ffffff 100%);
  border-color: rgba(219, 39, 119, 0.14);
  box-shadow: 0 4px 22px rgba(219, 39, 119, 0.08);
}
.page-lp-meta .lp-meta-pain {
  background: linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
  border-block-color: rgba(219, 39, 119, 0.07);
}
.page-lp-meta .lp-meta-hero-media {
  border-color: rgba(219, 39, 119, 0.16);
  box-shadow: 0 14px 44px rgba(219, 39, 119, 0.14);
}
/* Call prep guide: hero without side image - full row width; wider type measure (default 38rem leaves a blank band on the right) */
.page-call-prep .call-prep-hero-inner {
  grid-template-columns: 1fr;
  width: 100%;
}
.page-call-prep .call-prep-hero-inner .lp-meta-hero-copy {
  width: 100%;
  min-width: 0;
}
.page-call-prep .call-prep-hero-inner .lp-meta-hero-title-block {
  max-width: min(54rem, 100%);
}
.page-call-prep .call-prep-hero-inner .lp-meta-hero-checks {
  max-width: min(54rem, 100%);
}
.page-lp-meta .lp-meta-video-embed {
  border-color: rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-meta-stats {
  background: linear-gradient(180deg, #ffffff 0%, var(--lp-meta-pink-mist) 70%, var(--lp-meta-pink-blush) 100%);
}
.page-lp-meta .lp-meta-trap {
  background: linear-gradient(180deg, var(--lp-meta-pink-blush) 0%, var(--lp-meta-pink-mist) 100%);
}
.page-lp-meta .lp-meta-conditions {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f9 100%);
}
.page-lp-meta .lp-meta-avoid {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, #ffffff 100%);
}
.page-lp-meta .lp-meta-stories {
  background: linear-gradient(180deg, #fffafb 0%, var(--lp-meta-pink-mist) 100%);
}
.page-lp-meta .lp-meta-proof-split {
  background: linear-gradient(180deg, #ffffff 0%, var(--lp-meta-pink-mist) 55%, #fff5f9 100%);
  border-block-color: rgba(219, 39, 119, 0.07);
}
.page-lp-meta .lp-meta-consult-block {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, #ffffff 45%, var(--lp-meta-pink-blush) 100%);
  border-block-color: rgba(219, 39, 119, 0.08);
}
.page-lp-meta .lp-meta-faq,
.page-lp-meta .lp-meta-journey {
  background: linear-gradient(180deg, #ffffff 0%, var(--lp-meta-pink-mist) 100%);
  border-block-color: rgba(219, 39, 119, 0.07);
}

/* Meta LP: pink-tinted “white” boxes (cards, strips, success state) */
.page-lp-meta .lp-meta-pain-grid li {
  background: linear-gradient(135deg, var(--lp-meta-pink-mist) 0%, var(--color-bg) 100%);
  border-color: rgba(219, 39, 119, 0.1);
}
.page-lp-meta .lp-meta-pain-grid li.lp-meta-pain-item--white {
  background: linear-gradient(135deg, var(--lp-meta-pink-mist) 0%, #fff5f9 55%, #ffffff 100%);
  border-color: rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-meta-condition-card {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, #fff5f9 100%);
  border-color: rgba(219, 39, 119, 0.11);
}
.page-lp-meta .lp-meta-avoid-card {
  background: linear-gradient(165deg, var(--lp-meta-pink-mist) 0%, #fff5f9 100%);
  border-color: rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-meta-story {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, #ffffff 100%);
  border-color: rgba(219, 39, 119, 0.11);
}
.page-lp-meta .lp-tf-card {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, #fff5f9 100%);
  border-color: rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-tf-card-media {
  background: linear-gradient(180deg, var(--lp-meta-pink-blush) 0%, var(--lp-meta-pink-mist) 100%);
}
.page-lp-meta .lp-gr-box {
  background: linear-gradient(180deg, #fff5f9 0%, var(--lp-meta-pink-mist) 100%);
  border-color: rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-gr-box-top {
  background: linear-gradient(90deg, rgba(253, 242, 248, 0.98), #fff5f9);
  border-bottom-color: rgba(219, 39, 119, 0.1);
}
.page-lp-meta .lp-gr-shot {
  background: linear-gradient(180deg, var(--lp-meta-pink-blush) 0%, var(--lp-meta-pink-mist) 100%);
}
.page-lp-meta .lp-gr-google {
  border-top-color: rgba(219, 39, 119, 0.09);
}
.page-lp-meta .lp-gr-trust-strip {
  background: linear-gradient(135deg, var(--lp-meta-pink-mist) 0%, #fff5f9 100%);
  border-color: rgba(219, 39, 119, 0.12);
}
.page-lp-meta .lp-meta-form-success {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-accent) 18%, transparent) 0%,
    var(--lp-meta-pink-mist) 55%,
    #fff5f9 100%
  );
  border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
}
.page-lp-meta .lp-meta-faq .faq-item {
  background: linear-gradient(180deg, #fff5f9 0%, var(--lp-meta-pink-mist) 100%);
  border-color: rgba(219, 39, 119, 0.1);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(219, 39, 119, 0.06);
}
.page-lp-meta .lp-meta-faq .faq-item:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(219, 39, 119, 0.1);
}
.page-lp-meta .lp-meta-faq .faq-item[open] {
  background: linear-gradient(180deg, var(--lp-meta-pink-mist) 0%, color-mix(in srgb, var(--color-accent) 9%, #ffffff) 100%);
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 0 0 1px rgba(219, 39, 119, 0.1);
}
.page-lp-meta .lp-meta-faq .faq-question:hover {
  color: var(--color-accent);
}
.page-lp-meta .lp-meta-faq .faq-question:hover::after {
  color: var(--color-accent-light);
}

/* Meta LP mobile: no scroll-in slide (global .animate-on-scroll uses translate from the right) */
@media (max-width: 768px) {
  .page-lp-meta .animate-on-scroll,
  .page-lp-meta .animate-on-scroll.in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-lp-meta .animate-on-scroll-stagger > *,
  .page-lp-meta .animate-on-scroll.in-view .animate-on-scroll-stagger > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.lp-meta-form-trust {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.lp-meta-hero-form-hint {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  max-width: 36rem;
}

.lp-meta-form-panel {
  position: relative;
}

.lp-meta-form-success {
  padding: 1.25rem 1.15rem 1.35rem;
  text-align: center;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-accent) 12%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 5%, transparent) 100%
  );
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.lp-meta-form-success-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--fw-heading);
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.lp-meta-form-success-text {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.lp-meta-form-success-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.lp-meta-form-success-note a {
  font-weight: 600;
}
.lp-meta-form-success-reset {
  width: 100%;
  max-width: 280px;
}

#lp-book {
  scroll-margin-bottom: 6rem;
}
@media (min-width: 769px) {
  #lp-book { scroll-margin-bottom: 0; }
}

.page-lp-meta .lp-meta-hero {
  padding: 0 0 clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(
    180deg,
    #fff5f9 0%,
    var(--lp-meta-pink-mist) 24%,
    var(--lp-meta-pink-blush) 52%,
    #fdf4ff 78%,
    #ffffff 100%
  );
}
.lp-meta-hero-strip {
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  padding: 0.65rem 0;
  background: linear-gradient(90deg, #be185d 0%, #db2777 42%, #ec4899 88%, var(--lp-meta-pink-pop) 100%);
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 8px 28px rgba(219, 39, 119, 0.32);
}
.lp-meta-hero-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.page-lp-meta .lp-meta-hero-strip-inner {
  max-width: min(100%, var(--lp-meta-content-max));
  padding-left: calc(var(--lp-meta-section-padding-x) + env(safe-area-inset-left, 0px));
  padding-right: calc(var(--lp-meta-section-padding-x) + env(safe-area-inset-right, 0px));
}
.lp-meta-hero-strip strong {
  font-weight: 800;
  letter-spacing: 0.03em;
}
.lp-meta-hero-strip-sep {
  margin: 0 0.35rem;
  opacity: 0.85;
}
@media (max-width: 520px) {
  .lp-meta-hero-strip-inner {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .lp-meta-hero-strip-sep {
    display: none;
  }
}
.lp-meta-hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 360px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.lp-meta-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9d174d;
  background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%);
  border: 1px solid rgba(219, 39, 119, 0.28);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.page-lp-meta .lp-meta-badge {
  color: #831843;
  border-color: rgba(236, 72, 153, 0.35);
}
.lp-meta-hero-title-block {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  margin: 0 0 1.15rem;
  max-width: 38rem;
}
.lp-meta-hero-line {
  display: block;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.lp-meta-hero-line em {
  font-style: normal;
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.lp-meta-hero-line--accent {
  font-size: clamp(1.05rem, 2.35vw, 1.35rem);
  font-weight: 600;
  line-height: 1.38;
  color: var(--color-text-muted);
}
.lp-meta-hero-line--accent strong {
  color: var(--color-text);
  font-weight: 700;
}
.lp-meta-hero-line--proof {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.45;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-lg);
  background: rgba(253, 242, 248, 0.92);
  border: 1px solid rgba(219, 39, 119, 0.2);
  color: var(--color-text-muted);
}
.page-lp-meta .lp-meta-hero-line--proof {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, #fdf2f8 100%);
  border-color: rgba(236, 72, 153, 0.28);
}
.lp-meta-hero-line--proof strong {
  color: var(--color-accent);
  font-weight: 800;
}
.lp-meta-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
.lp-meta-hero-checks {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}
.lp-meta-hero-checks li {
  position: relative;
  margin-bottom: 0.55rem;
  padding-left: 1.65rem;
}
.lp-meta-hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--color-accent);
  font-size: 1rem;
}
.lp-meta-hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(44, 41, 37, 0.06);
  max-width: 360px;
  width: 100%;
  margin-left: auto;
}
.lp-meta-hero-media img {
  width: 100%;
  height: auto;
  max-height: min(48vh, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 900px) {
  .lp-meta-hero-inner { grid-template-columns: 1fr; }
  .lp-meta-hero-media {
    order: -1;
    max-width: min(320px, 88vw);
    margin-left: auto;
    margin-right: auto;
  }
  .lp-meta-hero-media img { max-height: min(44vh, 380px); }
}

.lp-meta-pain {
  background: var(--color-surface);
  border-block: 1px solid rgba(44, 41, 37, 0.06);
  padding: 2.5rem 0;
}
.lp-meta-pain-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.65rem);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0.85rem 0 0;
}
.lp-meta-pain-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 41, 37, 0.06);
  background: var(--color-bg-alt);
  align-self: start;
  max-height: min(340px, 42vh);
}
.lp-meta-pain-media img {
  width: 100%;
  height: auto;
  max-height: min(340px, 42vh);
  display: block;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 768px) {
  .lp-meta-pain {
    padding: 2rem 0;
  }
  .lp-meta-pain-layout {
    grid-template-columns: 1fr;
    max-width: 34rem;
    gap: 1rem;
  }
  .lp-meta-pain-media {
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
    max-height: none;
  }
  .lp-meta-pain-media img {
    max-height: min(280px, 38vh);
    min-height: 0;
  }
}
.lp-meta-pain-grid {
  display: grid;
  gap: 0.65rem;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-meta-pain-grid li {
  position: relative;
  padding: 0.75rem 0.9rem 0.75rem 2.35rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 37, 0.06);
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}
.lp-meta-pain-grid li::before {
  content: "→";
  position: absolute;
  left: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}
.lp-meta-pain-grid li.lp-meta-pain-item--white {
  background: #fff;
  color: var(--color-text);
  border: 1px solid rgba(44, 41, 37, 0.1);
  box-shadow: var(--shadow-sm);
}

.lp-meta-expect {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-meta-expect-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.lp-meta-expect ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
}
.lp-meta-expect li { margin-bottom: 0.4rem; }

.lp-meta-form-lead {
  margin: 0 0 0.75rem;
  padding: 0.85rem 1rem 0.9rem;
  text-align: center;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-accent) 14%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 7%, transparent) 45%,
    rgba(253, 246, 241, 0.95) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  box-shadow: var(--shadow-sm);
}
.lp-meta-form-lead-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: var(--fw-subheading);
  margin: 0 0 0.3rem;
  color: var(--color-text);
  line-height: 1.2;
}
.page-lp-meta .lp-meta-form-lead-title {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.lp-meta-form-lead-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.lp-meta-form .lp-meta-form-head {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(44, 41, 37, 0.08);
}
.lp-meta-form-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
}
.lp-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.lp-progress-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border: 2px solid rgba(44, 41, 37, 0.12);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.lp-progress-dot.is-done {
  background: var(--color-accent-muted);
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.lp-progress-dot.is-current {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.lp-progress-line {
  flex: 0 0 1.5rem;
  height: 2px;
  background: rgba(44, 41, 37, 0.12);
}
.lp-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--fw-subheading);
  margin: 0 0 0.7rem;
}
.lp-step-hint {
  margin: -0.35rem 0 0.65rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.lp-meta-form .req { color: #c23d3d; font-weight: 600; }
.lp-meta-form .form-group { margin-bottom: 0.15rem; }
.lp-meta-form .form-group label { margin-bottom: 0.28rem; }
.lp-meta-form .form-group input,
.lp-meta-form .form-group select,
.lp-meta-form .form-group textarea {
  margin-bottom: 0.45rem;
}
.lp-meta-form .lp-phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.lp-meta-form .lp-phone-cc {
  flex: 0 1 13.5rem;
  min-width: min(12.5rem, 100%);
  max-width: 100%;
  margin-bottom: 0;
  padding: 0.5rem 0.4rem;
  font-size: 0.88rem;
  line-height: 1.35;
  cursor: pointer;
}
.lp-meta-form .lp-phone-cc.input-error {
  border-color: #c23d3d;
}
.lp-meta-form .lp-phone-row input#lp-phone {
  flex: 1 1 8rem;
  min-width: 0;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .lp-meta-form .lp-phone-cc {
    flex: 1 1 100%;
    min-width: 0;
  }
}
.lp-fieldset {
  border: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.lp-fieldset legend {
  font-weight: var(--fw-ui);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.lp-radio {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  cursor: pointer;
}
.lp-radio input {
  width: auto;
  margin: 0;
  accent-color: var(--color-accent);
}
.lp-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}
.lp-step[data-lp-step="1"] .lp-step-actions { justify-content: flex-end; }

/* Meta LP outcomes column: shorter form card */
.lp-meta-outcomes-form .contact-form {
  padding: 1.25rem 1.1rem;
}
.lp-meta-outcomes-form .contact-form input,
.lp-meta-outcomes-form .contact-form select,
.lp-meta-outcomes-form .contact-form textarea {
  margin-bottom: 0.45rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
}
.lp-meta-outcomes-form .contact-form .lp-phone-cc {
  padding: 0.5rem 0.45rem;
  font-size: 0.88rem;
}
.lp-meta-outcomes-form .contact-form .lp-phone-row input#lp-phone {
  margin-bottom: 0;
}
.lp-meta-outcomes-form .contact-form textarea#lp-notes {
  min-height: 4.25rem;
  margin-bottom: 0.35rem;
}

.lp-meta-final-inner { text-align: center; }
.lp-meta-final-alt {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.lp-meta-final-alt a { font-weight: 600; }
.home-cta.lp-meta-final-cta .lp-meta-final-alt {
  color: rgba(255, 255, 255, 0.88);
}
.home-cta.lp-meta-final-cta .lp-meta-final-alt a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-cta.lp-meta-final-cta .lp-meta-final-alt a:hover {
  color: #fff;
  opacity: 0.92;
}

.lp-meta-sticky-cta-only {
  display: none;
  position: fixed;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 650;
  min-height: 2.85rem;
  padding: 0.75rem 1.5rem;
  max-width: min(100% - 1.5rem, 400px);
  width: auto;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  border: 1px solid color-mix(in srgb, var(--color-accent) 38%, transparent);
  transition: background var(--transition), transform var(--transition), color var(--transition);
  text-align: center;
  text-decoration: none;
}
.lp-meta-sticky-cta-only:hover {
  background: var(--color-accent-light);
  color: #fff;
}
.lp-meta-sticky-cta-only:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .page-lp-meta { padding-bottom: 5.75rem; }
  .page-lp-meta.page-call-prep {
    padding-bottom: 0;
  }
  .lp-meta-sticky-cta-only { display: inline-flex; align-items: center; justify-content: center; }
  .page-lp-meta .lp-meta-sticky-cta-only {
    max-width: min(calc(100vw - 2 * var(--lp-meta-section-padding-x) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)), 400px);
  }
}

.lp-meta-lead-strong { font-size: 1.15rem; max-width: 40rem; }

.lp-meta-outcomes {
  padding: 2rem 0;
  background: var(--color-surface);
  border-block: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-meta-outcomes-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  grid-template-areas: "media form";
  gap: clamp(1rem, 2.25vw, 2.25rem);
  align-items: start;
  text-align: left;
  width: 100%;
}
.lp-meta-outcomes-media {
  grid-area: media;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.35rem);
}
.lp-meta-outcomes-form {
  grid-area: form;
  min-width: 0;
  width: 100%;
  justify-self: stretch;
}
.lp-meta-outcomes-video {
  margin: 0;
  max-width: none;
  text-align: left;
  min-width: 0;
}
@media (max-width: 1149px) {
  /* Form first: fewer scrolls to start filling (mobile + tablet) */
  .lp-meta-outcomes-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "media";
    gap: 1.35rem;
  }
}

/* Feature cards: below “What to expect”, left column (stacked) */
.lp-meta-pillars {
  margin-top: 0;
  padding-top: clamp(0.85rem, 1.75vw, 1.15rem);
  border-top: 1px solid rgba(44, 41, 37, 0.08);
  width: 100%;
}
.lp-meta-pillars-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.5rem, 1.2vw, 0.7rem);
  align-items: stretch;
}
.lp-meta-pillar-card {
  padding: 0.7rem 0.85rem 0.75rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(44, 41, 37, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.lp-meta-pillar-title {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  font-weight: var(--fw-ui);
  line-height: 1.32;
  margin: 0;
  color: var(--color-text);
}
.lp-meta-video-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 41, 37, 0.08);
  background: #0f0f0f;
}
.lp-meta-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Call-prep Wistia: subtler corners than --radius-lg; clip forces iframe/shadow DOM to match */
.page-call-prep .lp-meta-video-embed.call-prep-wistia-web {
  --call-prep-video-radius: 8px;
  aspect-ratio: 2.2748815165876777 / 1;
  border-radius: var(--call-prep-video-radius);
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round var(--call-prep-video-radius));
  -webkit-clip-path: inset(0 round var(--call-prep-video-radius));
}
.page-call-prep .lp-meta-video-embed.call-prep-wistia-web wistia-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--call-prep-video-radius);
  overflow: hidden;
}

/* On-page “screen” chrome around Wistia (callprepguide.html) */
.page-call-prep .call-prep-video-stage {
  position: relative;
  margin-top: 0.25rem;
}
.page-call-prep .call-prep-video-stage::before {
  content: "";
  position: absolute;
  inset: -12px -8px -16px;
  border-radius: 24px;
  background: radial-gradient(
    ellipse 75% 55% at 50% 35%,
    rgba(219, 39, 119, 0.22),
    transparent 68%
  );
  z-index: 0;
  pointer-events: none;
}
.page-call-prep .call-prep-video-stage-bezel {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(168deg, #2c2827 0%, #1c1918 42%, #121110 100%);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 18px 42px -14px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.page-call-prep .call-prep-video-stage-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.55rem 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}
.page-call-prep .call-prep-video-stage-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.page-call-prep .call-prep-video-stage-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(219, 39, 119, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.page-call-prep .call-prep-video-stage-dots span:nth-child(2) {
  background: rgba(244, 114, 182, 0.5);
}
.page-call-prep .call-prep-video-stage-dots span:nth-child(3) {
  background: rgba(251, 207, 232, 0.35);
}
.page-call-prep .call-prep-video-stage-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(253, 242, 248, 0.92);
  text-align: center;
  justify-self: center;
}
.page-call-prep .call-prep-video-stage-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fbcfe8;
  white-space: nowrap;
}
.page-call-prep .call-prep-video-stage-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f472b6;
  box-shadow: 0 0 0 2px rgba(244, 114, 182, 0.35);
  animation: call-prep-playing-pulse 1.6s ease-in-out infinite;
}
@keyframes call-prep-playing-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-call-prep .call-prep-video-stage-pulse {
    animation: none;
    opacity: 0.9;
  }
}
.page-call-prep .call-prep-video-stage-viewport {
  padding: 8px 10px 12px;
}
.page-call-prep .call-prep-video-stage-viewport .lp-meta-video-embed--wistia {
  box-shadow: none;
  border-color: transparent;
}
@media (max-width: 520px) {
  .page-call-prep .call-prep-video-stage-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 0.65rem 0.65rem 0.5rem;
  }
  .page-call-prep .call-prep-video-stage-dots {
    order: 1;
  }
  .page-call-prep .call-prep-video-stage-label {
    order: 2;
  }
  .page-call-prep .call-prep-video-stage-status {
    order: 3;
  }
}

.lp-meta-video-sound-gate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 1rem 1.15rem;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(15, 15, 15, 0.92) 0%,
    rgba(15, 15, 15, 0.35) 42%,
    transparent 72%
  );
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lp-meta-video-sound-btn {
  pointer-events: auto;
  width: 100%;
  max-width: 20rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.lp-meta-video-sound-gate.lp-meta-video-sound-gate--dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .lp-meta-video-sound-gate {
    transition: none;
  }
}

/* Call prep guide (callprepguide.html) */
.page-lp-meta .call-prep-video-lead,
.page-lp-meta .call-prep-checklist-sub {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.page-lp-meta .call-prep-video-embed-slot {
  margin-top: 1.5rem;
}
.page-lp-meta .call-prep-expect-box {
  max-width: 40rem;
  margin: 1.5rem auto 0;
}
.page-call-prep #call-prep-video,
.page-call-prep #call-prep-connect,
.page-call-prep #call-prep-checklist {
  scroll-margin-top: 4.75rem;
}

/* Call prep guide: sticky step nav */
.call-prep-journey {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 242, 248, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 39, 119, 0.14);
  padding: 0.6rem 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.call-prep-journey-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.call-prep-journey-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.call-prep-journey-link:hover {
  color: var(--color-text);
  background: rgba(219, 39, 119, 0.1);
  border-color: rgba(219, 39, 119, 0.12);
}
.call-prep-journey-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, #db2777, #be185d);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 16px rgba(219, 39, 119, 0.38);
}
.call-prep-journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.2rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.07);
  color: inherit;
}
.call-prep-journey-link.is-active .call-prep-journey-num {
  background: rgba(255, 255, 255, 0.28);
}
.call-prep-journey-list > li.call-prep-journey-sep {
  width: 1.35rem;
  height: 2px;
  align-self: center;
  flex-shrink: 0;
  background: rgba(219, 39, 119, 0.22);
  border-radius: 1px;
  list-style: none;
}
@media (max-width: 420px) {
  .call-prep-journey-list > li.call-prep-journey-sep {
    display: none;
  }
}

/* Call prep guide: checklist + progress */
.page-call-prep .lp-meta-expect ul.call-prep-checklist {
  padding-left: 0;
  list-style: none;
}
.page-call-prep .lp-meta-expect ul.call-prep-checklist > li {
  margin-bottom: 0;
}
.page-call-prep .call-prep-checklist li + li {
  border-top: 1px solid rgba(219, 39, 119, 0.1);
}
.call-prep-check-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.65rem 0.15rem 0.65rem 0;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.18s ease;
}
.call-prep-check-item:hover {
  background: rgba(219, 39, 119, 0.06);
}
.call-prep-check-input {
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 1.3rem;
  height: 1.3rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.call-prep-check-ui {
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.12rem;
  border: 2px solid rgba(219, 39, 119, 0.45);
  border-radius: 5px;
  background: #fff;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.call-prep-check-input:checked + .call-prep-check-ui {
  background: linear-gradient(145deg, #db2777, #be185d);
  border-color: #be185d;
  box-shadow: 0 2px 8px rgba(219, 39, 119, 0.35);
}
.call-prep-check-input:checked + .call-prep-check-ui::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  margin: 1px auto 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.call-prep-check-input:focus-visible + .call-prep-check-ui {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.call-prep-check-label {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-text);
  padding-top: 0.02rem;
}
.call-prep-check-input:checked ~ .call-prep-check-label {
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(219, 39, 119, 0.35);
}
.call-prep-checklist-hint {
  min-height: 1.5em;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(190, 24, 93, 0.95);
  margin: 0 0 0.85rem;
}

/* Call prep guide: next steps + marquee (reference: post-booking thank-you flow) */
.page-call-prep .call-prep-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 52rem;
  margin: 1.5rem auto 0;
}
@media (max-width: 768px) {
  .page-call-prep .call-prep-connect-grid {
    grid-template-columns: 1fr;
  }
}
.page-call-prep .call-prep-connect-card {
  background: linear-gradient(165deg, var(--lp-meta-pink-mist) 0%, #fff5f9 50%, var(--lp-meta-pink-blush) 100%);
  border: 1px solid rgba(219, 39, 119, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.page-call-prep .call-prep-connect-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(219, 39, 119, 0.14);
  border-color: rgba(219, 39, 119, 0.22);
}
.page-call-prep .call-prep-connect-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  color: var(--color-text);
}
.page-call-prep .call-prep-connect-card p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.page-call-prep .call-prep-connect-card .btn {
  width: 100%;
  max-width: 20rem;
}
.page-call-prep .call-prep-connect-note {
  margin-bottom: 0 !important;
  font-size: 0.9rem !important;
}
.page-call-prep .call-prep-badge-wrap {
  text-align: center;
  margin-bottom: 0.35rem;
}
.page-call-prep .call-prep-must-watch-badge {
  display: inline-block;
  margin: 0;
}
/* “Your success starts here” - lp-meta-spotlight band + spotlight typography (aligned with reference thank-you flow). */
.page-call-prep .call-prep-success-starts {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.page-call-prep .call-prep-success-starts .section-title {
  margin-bottom: 0.65rem;
}
.page-call-prep .call-prep-emphasis-primary {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
.page-call-prep .call-prep-emphasis-secondary {
  text-align: center;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
/* Success stories marquee: larger cards + gap than default spec strip (220px) */
.page-call-prep .home-spec .spec-slide {
  width: 340px;
}
/* Same perceived scroll speed as index; wider gap between larger slides */
.page-call-prep .home-spec .spec-auto-scroll .spec-slider-track {
  gap: 1.75rem;
  /* Scale duration with slide width (was 280px) so on-screen motion stays similar */
  animation-duration: calc(35s * 26 / 18 * 340 / 280);
}
@media (max-width: 900px) {
  .page-call-prep .home-spec .spec-slide {
    width: 300px;
  }
  .page-call-prep .home-spec .spec-auto-scroll .spec-slider-track {
    animation-duration: calc(35s * 26 / 18 * 300 / 280);
  }
}
@media (max-width: 600px) {
  .page-call-prep .home-spec .spec-slide {
    width: 360px;
  }
  .page-call-prep .home-spec .spec-auto-scroll .spec-slider-track {
    animation-duration: calc(35s * 26 / 18 * 360 / 280);
  }
}
.page-call-prep .call-prep-testimonials-heading {
  text-align: center;
  margin-bottom: 0.35rem;
}
.page-call-prep .call-prep-testimonials-sub {
  text-align: center;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.page-call-prep .call-prep-voices-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .page-call-prep .call-prep-voices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .page-call-prep .call-prep-voices-grid {
    grid-template-columns: 1fr;
  }
}
.page-call-prep .call-prep-voices-grid .lp-gr-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-call-prep .call-prep-voices-grid .lp-gr-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
@media (prefers-reduced-motion: reduce) {
  .page-call-prep .call-prep-connect-card,
  .page-call-prep .call-prep-voices-grid .lp-gr-box {
    transition: none;
  }
  .page-call-prep .call-prep-connect-card:hover,
  .page-call-prep .call-prep-voices-grid .lp-gr-box:hover {
    transform: none;
  }
}
.page-call-prep .home-spec .call-prep-marquee-sub {
  max-width: 40rem;
  margin-bottom: 0.25rem;
}
/* Success stories marquee: pink funnel band (homepage main>section.home-spec rule was overriding — fixed via :not on index) */
.page-call-prep .call-prep-marquee-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--lp-meta-pink-mist) 50%, var(--lp-meta-pink-blush) 100%);
  border-block: 1px solid rgba(219, 39, 119, 0.09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.lp-meta-pain .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
}
.lp-meta-pain .lp-meta-pain-sub.section-subtitle {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.45;
}
.lp-meta-pain-cta {
  text-align: center;
  margin-top: 1.15rem;
}

/* --- Meta LP: four transformation spotlight cards (TF-22–25) --- */
.lp-meta-spotlight {
  background: var(--color-bg);
  border-block: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-meta-spotlight-title { text-align: center; }
.lp-meta-spotlight-intro {
  text-align: center;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.lp-meta-spotlight-intro-lead {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.lp-meta-spotlight-intro-emphasis {
  margin: 0 0 1.15rem;
  font-size: 1.06rem;
  line-height: 1.5;
  color: var(--color-text);
}
.lp-meta-spotlight-intro-emphasis strong {
  font-weight: 700;
}
.lp-meta-spotlight-intro-sub {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: var(--fw-subheading);
  line-height: 1.35;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.lp-meta-spotlight-intro-sub strong {
  font-weight: 700;
}
.lp-meta-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
@media (max-width: 1100px) {
  .lp-meta-spotlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-meta-spotlight-grid { grid-template-columns: 1fr; }
}
.lp-meta-spotlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 37, 0.24);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-width: 0;
}
.lp-meta-spotlight-media {
  margin: 0;
  line-height: 0;
  background: var(--color-bg-alt);
  flex-shrink: 0;
}
.lp-meta-spotlight-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lp-meta-spotlight-body {
  padding: 1.1rem 1rem 1.25rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  line-height: 1.48;
  color: var(--color-text-muted);
  min-height: 0;
}
.lp-meta-spotlight-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--fw-subheading);
  margin: 0 0 0.6rem;
  color: var(--color-text);
  line-height: 1.25;
}
.lp-meta-spotlight-lead {
  margin: 0 0 0.65rem;
}
.lp-meta-spotlight-sub {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.lp-meta-spotlight-list {
  margin: 0 0 0.35rem;
  padding-left: 1.1rem;
}
.lp-meta-spotlight-list li {
  margin-bottom: 0.3rem;
}
.lp-meta-spotlight-outcome {
  margin: 0;
  margin-top: auto;
  padding-top: 0.35rem;
  color: var(--color-text);
  font-weight: var(--fw-ui);
  min-height: 3.2em;
}

.lp-meta-stats { background: var(--color-bg); }
.lp-meta-stats-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  column-gap: clamp(2.75rem, 5.5vw, 4.5rem);
  row-gap: 2.5rem;
  align-items: center;
}
.lp-meta-stats-copy {
  min-width: 0;
}
.lp-meta-stats-subheading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  font-weight: var(--fw-subheading);
  line-height: 1.45;
  color: var(--color-text);
  letter-spacing: 0.01em;
  max-width: none;
}
.lp-meta-stats-subheading strong {
  font-weight: 700;
  color: var(--color-text);
}
.lp-meta-stats-list li.lp-meta-stats-subheading-item {
  padding-left: 0;
  color: var(--color-text);
}
.lp-meta-stats-list li.lp-meta-stats-subheading-item .lp-meta-stats-subheading {
  margin: 0;
}
.lp-meta-stats-copy .section-lead {
  max-width: none;
}
.lp-meta-stats-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}
.lp-meta-stats-list li {
  position: relative;
  padding-left: 0.25rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(44, 41, 37, 0.08);
  color: var(--color-text-muted);
}
.lp-meta-stats-list li:last-child { border-bottom: none; }
.lp-meta-stats-list li.lp-meta-stats-metrics-item {
  padding-left: 0;
}
.lp-meta-stats-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 0.65rem;
  width: 100%;
  text-align: center;
}
.lp-meta-stat-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}
.lp-meta-stat-label {
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-text-muted);
}
.lp-meta-stats-list .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.lp-meta-stats-list .lp-meta-stats-metrics .stat-number {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
}
@media (max-width: 640px) {
  .lp-meta-stats-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 0.75rem;
  }
}
.lp-meta-stats-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 41, 37, 0.06);
  max-width: min(100%, 420px);
  margin-left: auto;
  margin-right: 0;
  justify-self: end;
}
.lp-meta-stats-visual img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 380px);
  display: block;
  object-fit: contain;
  object-position: 58% center;
}
.lp-meta-stats-voices {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 41, 37, 0.08);
}
@media (max-width: 1024px) {
  .lp-meta-stats-voices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
  .lp-meta-stats-inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .lp-meta-stats-inner { grid-template-columns: 1fr; }
  .lp-meta-stats-visual {
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }
  .lp-meta-stats-visual img {
    object-position: center;
  }
}
@media (max-width: 560px) {
  .lp-meta-stats-voices { grid-template-columns: 1fr; }
}
.lp-meta-stats-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin: 1.5rem 0 0;
}

.lp-meta-trap {
  background: var(--color-bg-alt);
  padding: 2.5rem 0;
}
.lp-meta-trap-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}
.lp-meta-trap-copy {
  min-width: 0;
  max-width: none;
}
.lp-meta-trap-copy p { color: var(--color-text-muted); margin-bottom: 1rem; }
.lp-meta-trap-copy p:last-of-type { margin-bottom: 1.5rem; }
.lp-meta-trap-subheading {
  margin: 1.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.lp-meta-trap-subheading strong {
  font-weight: 700;
}
.lp-meta-trap-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: 0;
  justify-self: end;
}
.lp-meta-trap-media img {
  width: 100%;
  height: auto;
  max-height: min(55vh, 420px);
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .lp-meta-trap { padding: 2rem 0; }
  .lp-meta-trap-inner { grid-template-columns: 1fr; }
  .lp-meta-trap-media {
    order: -1;
    max-width: min(100%, 400px);
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }
  .lp-meta-trap-media img { max-height: min(50vh, 360px); }
}

.lp-meta-conditions { background: var(--color-surface); }
.lp-meta-conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .lp-meta-conditions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lp-meta-conditions-grid { grid-template-columns: 1fr; }
}
.lp-meta-condition-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid rgba(44, 41, 37, 0.06);
  box-shadow: var(--shadow-sm);
}
.lp-meta-condition-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.lp-meta-condition-card figcaption {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-text);
}
.lp-meta-conditions-cta { text-align: center; margin-top: 2rem; margin-bottom: 0; }

.lp-meta-avoid { background: var(--color-bg-alt); }
.lp-meta-avoid-cards {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .lp-meta-avoid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-meta-avoid-cards { grid-template-columns: 1fr; }
}
.lp-meta-avoid-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--color-surface);
  border: 1px solid rgba(44, 41, 37, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text);
}
.lp-meta-avoid-card-icon {
  flex-shrink: 0;
  line-height: 1.35;
  font-size: 1.05rem;
}
.lp-meta-avoid-card-text { min-width: 0; }
.lp-meta-avoid-card-text strong { font-weight: 700; color: var(--color-text); }
.lp-meta-avoid-card-aside {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.lp-meta-avoid-extra {
  margin-top: 1.5rem;
  margin-bottom: 0;
  max-width: 48rem;
}
.lp-meta-avoid-follow {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-text);
}
.lp-meta-avoid-meal-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: var(--fw-heading);
  line-height: 1.3;
  color: var(--color-text);
}
.lp-meta-avoid-meal-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.lp-meta-avoid-voices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 41, 37, 0.08);
}
@media (max-width: 1024px) {
  .lp-meta-avoid-voices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-meta-avoid-voices { grid-template-columns: 1fr; }
}

.lp-meta-stories { background: var(--color-bg); }
.lp-meta-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .lp-meta-stories-grid { grid-template-columns: 1fr; }
}
.lp-meta-story {
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 37, 0.06);
  box-shadow: var(--shadow-sm);
}
.lp-meta-story-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-subheading);
  margin: 0 0 0.35rem;
}
.lp-meta-story-meta {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 1rem;
}
.lp-meta-story p { margin: 0 0 0.75rem; font-size: 0.95rem; color: var(--color-text-muted); }
.lp-meta-stories-tf-sub {
  text-align: center;
  max-width: 40rem;
  margin: 2.5rem auto 0;
}
.lp-meta-stories-tf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .lp-meta-stories-tf { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-meta-stories-tf { grid-template-columns: 1fr; }
}
.lp-meta-stories-tf .lp-tf-card {
  grid-template-columns: 1fr;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.lp-meta-stories-tf .lp-tf-card-media {
  min-height: 0;
}
.lp-meta-stories-tf .lp-tf-card-media img {
  min-height: 160px;
  max-height: 220px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.lp-meta-stories-tf .lp-tf-card-body {
  padding: 1rem 1.1rem 1.2rem;
}
.lp-meta-stories-tf .lp-tf-card-body::before {
  font-size: 2.25rem;
  top: 0.35rem;
  right: 0.65rem;
}
.lp-meta-stories-tf .lp-tf-quote p {
  font-size: 0.86rem;
  line-height: 1.55;
}
.lp-meta-stories-tf .lp-tf-program {
  margin-top: 0.5rem;
}
.lp-meta-stories-cta { text-align: center; margin-top: 2rem; margin-bottom: 0; }

.lp-meta-proof-split { background: var(--color-surface); border-block: 1px solid rgba(44, 41, 37, 0.06); }
.lp-meta-proof-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.lp-meta-proof-bullets {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
}
.lp-meta-proof-bullets li { margin-bottom: 0.5rem; }
.lp-meta-proof-split-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.lp-meta-proof-split-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .lp-meta-proof-split-inner { grid-template-columns: 1fr; }
}
.lp-meta-proof-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .lp-meta-proof-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-meta-proof-showcase { grid-template-columns: 1fr; }
}
.lp-meta-proof-showcase .lp-tf-card {
  grid-template-columns: 1fr;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.lp-meta-proof-showcase .lp-tf-card-media {
  min-height: 0;
}
.lp-meta-proof-showcase .lp-tf-card-media img {
  min-height: 140px;
  max-height: 200px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.lp-meta-proof-showcase .lp-tf-card-body {
  padding: 0.95rem 1rem 1.1rem;
}
.lp-meta-proof-showcase .lp-tf-card-body::before {
  font-size: 2rem;
  top: 0.3rem;
  right: 0.55rem;
}
.lp-meta-proof-showcase .lp-tf-quote p {
  font-size: 0.84rem;
  line-height: 1.5;
}
.lp-meta-proof-showcase .lp-tf-program {
  margin-top: 0.45rem;
}
.lp-meta-proof-showcase .lp-gr-shot img {
  max-height: 200px;
}
.lp-meta-proof-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin: 1.5rem 0 0;
}

.lp-meta-consult-block {
  background: var(--color-bg);
  border-block: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-meta-consult-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "eyebrow eyebrow"
    "lead list"
    "trust trust"
    "voices voices"
    "reserve reserve";
  gap: 1.75rem 2.5rem;
  align-items: start;
}
.lp-meta-consult-eyebrow {
  grid-area: eyebrow;
  margin: 0 0 0.35rem;
}
.lp-meta-consult-block-lead {
  grid-area: lead;
}
.lp-meta-consult-block-lead > .section-title {
  margin-top: 0;
}
.lp-meta-consult-list-wrap {
  grid-area: list;
}
@media (min-width: 769px) {
  .lp-meta-consult-list-wrap {
    padding-top: 1.35rem;
  }
}
.lp-meta-consult-trust-row {
  grid-area: trust;
  display: flex;
  justify-content: center;
  width: 100%;
}
.lp-meta-consult-block-inner > .lp-meta-consult-picked-voices {
  grid-area: voices;
  margin: 0;
}
.lp-meta-consult-reserve {
  grid-area: reserve;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .lp-meta-consult-block-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "lead"
      "list"
      "trust"
      "voices"
      "reserve";
    gap: 1.5rem;
  }
}
.lp-meta-consult-list-title {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
.lp-meta-consult-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
}
.lp-meta-consult-list li { margin-bottom: 0.5rem; }
.lp-meta-consult-foot {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.lp-meta-consult-block-lead .lp-meta-consult-foot {
  margin-top: 0.25rem;
}
.lp-meta-consult-block .lp-meta-consult-trust-strip {
  margin: 0;
  width: 100%;
  max-width: 800px;
}
.lp-meta-consult-block .lp-meta-consult-picked-voices.lp-gr-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1100px) {
  .lp-meta-consult-block .lp-meta-consult-picked-voices.lp-gr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .lp-meta-consult-block .lp-meta-consult-picked-voices.lp-gr-grid {
    grid-template-columns: 1fr;
  }
}

.lp-meta-faq {
  background: var(--color-bg);
  border-block: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-meta-faq-header {
  margin-bottom: 1.75rem;
  text-align: left;
}
.lp-meta-faq-header .section-title {
  margin-bottom: 0;
}
.lp-meta-faq-header .lp-meta-faq-intro.section-subtitle {
  margin-top: 0.75rem;
  margin-bottom: 0;
  max-width: 52rem;
}
.lp-meta-faq .faq-list.lp-meta-faq-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: start;
  width: 100%;
  max-width: none;
}
@media (max-width: 768px) {
  .lp-meta-faq .faq-list.lp-meta-faq-list {
    grid-template-columns: 1fr;
  }
}
.lp-meta-journey {
  background: var(--color-bg);
  border-block: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-meta-journey-inner {
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  gap: 2.5rem;
  align-items: center;
}
.lp-meta-journey-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  max-height: min(48vh, 360px);
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-meta-journey-copy p { color: var(--color-text-muted); margin-bottom: 1rem; }
@media (max-width: 768px) {
  .lp-meta-journey-inner { grid-template-columns: 1fr; text-align: center; }
  .lp-meta-journey-img { max-width: 260px; max-height: min(42vh, 320px); margin: 0 auto; }
}

/* --- Meta LP: transformation / Google-style testimonial carousel --- */
.lp-tf-section {
  background: linear-gradient(180deg, #fdf6f3 0%, var(--color-bg) 55%);
  border-block: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-tf-eyebrow { color: var(--color-warm); }
.lp-tf-title { text-align: center; }
.lp-tf-sub {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.lp-tf-carousel {
  position: relative;
  max-width: 920px;
  margin: 2rem auto 0;
  padding: 0 3rem;
}
@media (max-width: 640px) {
  .lp-tf-carousel { padding: 0 2.75rem; }
}
.lp-tf-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}
.lp-tf-track {
  display: flex;
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}
.lp-tf-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(200px, 42%) 1fr;
  gap: 0;
  margin: 0;
  background: var(--color-surface);
  border: 1px solid rgba(44, 41, 37, 0.07);
  min-height: 280px;
}
@media (max-width: 700px) {
  .lp-tf-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}
.lp-tf-card-media {
  position: relative;
  background: var(--color-bg-alt);
  min-height: 220px;
}
.lp-tf-card-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .lp-tf-card-media img { min-height: 220px; max-height: 320px; }
}
.lp-tf-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  position: relative;
}
.lp-tf-card-body::before {
  content: "“";
  position: absolute;
  top: 0.65rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(196, 125, 90, 0.2);
  pointer-events: none;
}
.lp-tf-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.35rem;
}
.lp-tf-star {
  color: #e6a317;
  font-size: 1.15rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.lp-tf-google-note {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
}
.lp-tf-quote {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}
.lp-tf-quote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text);
}
.lp-tf-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}
.lp-tf-meta {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.lp-tf-program {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-warm);
}
.lp-tf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 41, 37, 0.12);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lp-tf-nav:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.lp-tf-nav:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.lp-tf-prev { left: 0; }
.lp-tf-next { right: 0; }
.lp-tf-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.lp-tf-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(44, 41, 37, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lp-tf-dots button.is-active {
  background: var(--color-warm);
  transform: scale(1.15);
}
.lp-tf-dots button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.lp-tf-foot {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
}

/* --- Meta LP: Google-style review cards (lp-gr-box, trust strip, grid) --- */
.lp-gr-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 1.75rem auto 2rem;
  padding: 1rem 1.5rem;
  max-width: 800px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 37, 0.08);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.lp-gr-trust-strip span {
  position: relative;
  padding: 0 0.5rem;
}
.lp-gr-trust-strip span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -0.85rem;
  opacity: 0.45;
}
@media (max-width: 520px) {
  .lp-gr-trust-strip span:not(:last-child)::after { display: none; }
}

.lp-gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .lp-gr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-gr-grid { grid-template-columns: 1fr; }
}

.lp-gr-box {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(44, 41, 37, 0.1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-gr-box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(44, 41, 37, 0.08);
  background: linear-gradient(90deg, rgba(253, 244, 240, 0.9), #fff);
}
.lp-gr-brand { color: var(--color-text); }
.lp-gr-tag {
  color: var(--color-warm);
  font-weight: 700;
}
.lp-gr-shot {
  background: #f4f2ef;
  line-height: 0;
}
.lp-gr-shot img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.lp-gr-google {
  padding: 1rem 1rem 1.15rem;
  border-top: 1px solid rgba(44, 41, 37, 0.06);
}
.lp-gr-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}
.lp-gr-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-gr-box:nth-child(3n+2) .lp-gr-avatar { background: #2d6a5a; }
.lp-gr-box:nth-child(3n) .lp-gr-avatar { background: #8a6f54; }
.lp-gr-who { min-width: 0; }
.lp-gr-name { display: block; font-size: 0.95rem; }
.lp-gr-role {
  display: block;
  font-size: 0.78rem;
  font-weight: var(--fw-ui);
  color: var(--color-text-muted);
  margin-top: 0.1rem;
}
.lp-gr-stars-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.55rem;
}
.lp-gr-stars {
  color: #e6a317;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.lp-gr-time {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.lp-gr-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--color-text);
}
.lp-gr-mark {
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(196, 125, 90, 0.75);
  text-underline-offset: 3px;
  font-weight: 600;
}

/* --- Testimonials page: jump nav, story carousel, hover polish --- */
.page-testimonials main {
  padding-top: 5.75rem;
}
.page-testimonials #tf-featured.page-intro {
  padding-top: 0;
}
.page-testimonials .testimonials-jump {
  position: sticky;
  top: 4.5rem;
  z-index: 90;
  background: rgba(255, 252, 249, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 41, 37, 0.08);
  padding: 0.55rem 0;
  margin-bottom: 0;
}
.page-testimonials .testimonials-jump-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-testimonials .testimonials-jump-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-testimonials .testimonials-jump-link:hover {
  color: var(--color-text);
  background: rgba(196, 125, 90, 0.1);
  border-color: rgba(196, 125, 90, 0.12);
}
.page-testimonials .testimonials-jump-link.is-active {
  color: #fff;
  background: var(--color-accent);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 12px rgba(196, 125, 90, 0.35);
}
.page-testimonials #tf-featured,
.page-testimonials #stats-section,
.page-testimonials #tf-more-reviews,
.page-testimonials #tf-journeys,
.page-testimonials #testimonials-cta {
  scroll-margin-top: 7rem;
}
/* Featured quote cards: one row × four columns on large screens */
.page-testimonials .lp-meta-stories-tf.page-testimonials-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.75rem;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .page-testimonials .lp-meta-stories-tf.page-testimonials-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (max-width: 560px) {
  .page-testimonials .lp-meta-stories-tf.page-testimonials-story-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1101px) {
  .page-testimonials .page-testimonials-story-grid .lp-tf-card-body {
    padding: 0.9rem 0.65rem 1.1rem;
  }
  .page-testimonials .page-testimonials-story-grid .lp-tf-quote p {
    font-size: 0.82rem;
    line-height: 1.52;
  }
  .page-testimonials .page-testimonials-story-grid .lp-tf-card-media img {
    aspect-ratio: 3 / 4;
  }
}
.page-testimonials .page-testimonials-story-grid .lp-tf-card {
  grid-template-columns: 1fr;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(44, 41, 37, 0.08);
  box-shadow: 0 4px 22px rgba(44, 41, 37, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-testimonials .page-testimonials-story-grid .lp-tf-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(44, 41, 37, 0.11);
}
.page-testimonials .page-testimonials-story-grid .lp-tf-card-media {
  min-height: 0;
  background: linear-gradient(165deg, #f8f4f0 0%, #ebe6e0 100%);
}
.page-testimonials .page-testimonials-story-grid .lp-tf-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: none;
  height: auto;
  object-fit: cover;
  display: block;
}
.page-testimonials .page-testimonials-story-grid .lp-tf-card-body {
  padding: 1.15rem 1.25rem 1.4rem;
}
.page-testimonials .page-testimonials-story-grid .lp-tf-card-body::before {
  display: none;
}
.page-testimonials .page-testimonials-story-grid .lp-tf-quote {
  margin: 0;
  padding: 0 0 0 0.9rem;
  border-left: 3px solid rgba(196, 125, 90, 0.5);
}
.page-testimonials .page-testimonials-story-grid .lp-tf-quote p {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--color-text);
}
.page-testimonials .page-testimonials-story-grid .lp-tf-google-note {
  margin-bottom: 0.45rem;
}
.page-testimonials .page-testimonials-story-grid .lp-tf-name {
  margin-top: 0.85rem;
}
.page-testimonials .page-testimonials-story-grid .lp-tf-program {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}
.page-testimonials .lp-meta-spotlight-card,
.page-testimonials .lp-gr-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-testimonials .lp-meta-spotlight-card:hover,
.page-testimonials .lp-gr-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.page-testimonials .lp-meta-proof-showcase .lp-tf-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-testimonials .lp-meta-proof-showcase .lp-tf-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
@media (prefers-reduced-motion: reduce) {
  .page-testimonials .lp-meta-spotlight-card,
  .page-testimonials .lp-gr-box,
  .page-testimonials .lp-meta-proof-showcase .lp-tf-card,
  .page-testimonials .page-testimonials-story-grid .lp-tf-card {
    transition: none;
  }
  .page-testimonials .lp-meta-spotlight-card:hover,
  .page-testimonials .lp-gr-box:hover,
  .page-testimonials .lp-meta-proof-showcase .lp-tf-card:hover,
  .page-testimonials .page-testimonials-story-grid .lp-tf-card:hover {
    transform: none;
  }
}

/* --- Fertility & Hormone Course page: jump nav + polish --- */
.page-fertility-course main {
  padding-top: 5.75rem;
}
.page-fertility-course #fhc-intro.course-intro.page-intro {
  padding-top: 0;
}
.page-fertility-course .course-intro-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.22fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.page-fertility-course .course-intro-copy {
  min-width: 0;
}
.page-fertility-course .course-intro-copy .section-eyebrow {
  margin-bottom: 0.5rem;
}
.page-fertility-course .course-intro-copy .section-title {
  margin-bottom: 0.85rem;
  text-wrap: balance;
}
.page-fertility-course .course-intro-lead {
  margin-bottom: 1.35rem;
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-fertility-course .course-intro-copy .course-intro-subheading {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}
.page-fertility-course .course-intro-copy .course-intro-audience {
  margin-bottom: 0;
}
.page-fertility-course .course-intro-hero .course-intro-image {
  margin: 0;
  flex-shrink: 0;
}
.page-fertility-course .course-intro-hero .course-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
@media (max-width: 900px) {
  .page-fertility-course .course-intro-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.page-fertility-course .fhc-jump {
  position: sticky;
  top: 4.5rem;
  z-index: 90;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 41, 37, 0.08);
  padding: 0.55rem 0;
}
.page-fertility-course .fhc-jump-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-fertility-course .fhc-jump-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-fertility-course .fhc-jump-link:hover {
  color: var(--color-text);
  background: rgba(42, 92, 87, 0.09);
  border-color: rgba(42, 92, 87, 0.12);
}
.page-fertility-course .fhc-jump-link.is-active {
  color: #fff;
  background: var(--color-accent);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 12px rgba(42, 92, 87, 0.35);
}
.page-fertility-course #fhc-intro,
.page-fertility-course #fhc-curriculum,
.page-fertility-course #fhc-format,
.page-fertility-course #fhc-enroll {
  scroll-margin-top: 7rem;
}
.page-fertility-course .course-intro-image {
  transition: box-shadow 0.35s ease;
}
.page-fertility-course .course-intro-image img {
  transition: transform 0.45s var(--ease-out);
}
@media (prefers-reduced-motion: no-preference) {
  .page-fertility-course .course-intro-image:hover {
    box-shadow: var(--shadow-hover);
  }
  .page-fertility-course .course-intro-image:hover img {
    transform: scale(1.02);
  }
}

/* === Explicit font stacks (site-wide; matches token fonts if HTML or cache is stale) === */
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
}
.site-header .logo {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.site-header .main-nav a,
.site-header .btn-book {
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.site-header .btn-book {
  font-weight: 600;
}
/* Do not target .section-title on .page-lp-meta (funnel LPs use Plus Jakarta via --font-display) */
body:not(.page-lp-meta) .section-title,
body:not(.page-lp-meta) .hero-title,
body:not(.page-lp-meta) .home-cta-title,
.footer-logo,
p.footer-logo {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 700;
}
