@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── Variables ── */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --navy-900: #0A192F;
  --navy-800: #112240;
  --navy-700: #1A365D;
  --navy-100: #CCD6E5;

  --accent:      #2E8FAD;
  --accent-dark: #1F7390;
  --accent-light:#EBF6FA;

  --bg:          #FCFBF9;
  --warm-100:    #F5F5F0;
  --warm-200:    #EBEBE6;
  --warm-300:    #D4D4CF;

  --text:        #4A4A45;
  --text-light:  #6B6B66;
  --border:      #EBEBE6;

  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 16px;

  --shadow-sm: 0 1px 3px rgba(10,25,47,0.04);
  --shadow-md: 0 4px 16px rgba(10,25,47,0.06);
  --shadow-lg: 0 12px 40px rgba(10,25,47,0.08);
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); color: var(--navy-900); line-height: 1.2; }

/* ── Layout helpers ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section {
  padding: 96px 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-900);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--warm-300);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--navy-900); }

/* ── Utility strip ── */
.util-strip {
  background: var(--navy-900);
  color: var(--navy-100);
  font-size: 13px;
  padding: 7px 24px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
.util-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.util-strip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-100);
  transition: color 0.2s;
}
.util-strip a:hover { color: white; }

/* Emergency number — highlighted red pill */
.util-emergency {
  background: #d92d20;
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 6px rgba(217, 45, 32, 0.45);
  animation: util-emergency-pulse 2.4s ease-in-out infinite;
}
.util-emergency:hover { background: #b42318; color: #fff; }
@keyframes util-emergency-pulse {
  0%, 100% { box-shadow: 0 1px 6px rgba(217, 45, 32, 0.45); }
  50%      { box-shadow: 0 1px 10px rgba(217, 45, 32, 0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .util-emergency { animation: none; }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(252,251,249,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(252,251,249,0.97); }
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--navy-900);
}
.navbar-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy-900); }

.nav-cta { font-size: 13px; padding: 9px 18px; }

/* ── Language switcher ── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 7px 10px; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  color: var(--navy-900);
  transition: border-color 0.2s, background 0.2s;
}
.lang-btn:hover { background: var(--warm-100); border-color: var(--navy-300); }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 120px; z-index: 200; overflow: hidden;
}
.lang-option {
  display: block; width: 100%; text-align: left;
  padding: 10px 14px; background: transparent; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 14px; color: var(--navy-900);
  transition: background 0.15s;
}
.lang-option:hover { background: var(--warm-100); }
.lang-option--active { font-weight: 600; color: var(--accent); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}

/* page offset for fixed nav */
.nav-spacer { height: 98px; }

/* ── Mobile menu ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,25,47,0.15);
  backdrop-filter: blur(4px);
  z-index: 1002;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 88%;
  max-width: 360px;
  background: white;
  z-index: 1003;
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.06);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay.open { display: block; }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--navy-900);
}
.mobile-nav-links { flex: 1; display: flex; flex-direction: column; }
.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-900);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: 20px;
}
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  justify-content: center;
}

/* ── Hero ── */
.hero {
  display: flex;
  align-items: center;
  padding: 28px 24px 80px;
  background: var(--bg);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
}
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary { font-size: 16px; padding: 16px 32px; }

.hero-image-desktop { display: block; }
.hero-image-mobile  { display: none; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; }

.hero-photo-wrap {
  width: 100%;
  border-radius: var(--radius-md);
}
.hero-photo-wrap img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

/* ── Stats strip ── */
.stats-strip {
  background: var(--navy-900);
  padding: 56px 24px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 600;
  color: white;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 16px;
  color: var(--navy-100);
  line-height: 1.45;
}

/* ── Leadership card ── */
.leadership-card {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 40px 44px;
  background: var(--warm-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.leadership-photo {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.leadership-photo img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.leadership-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.leadership-title { font-size: 15px; color: var(--text-light); margin-bottom: 14px; }
.leadership-bio { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; max-width: 560px; }
.leadership-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ── Health Library cards ── */
.hl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.hl-header h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 600; margin-bottom: 16px; }
.hl-header p { font-size: 17px; color: var(--text); line-height: 1.75; }
.hl-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-top: 8px;
  white-space: nowrap;
}
.hl-view-all:hover { color: var(--navy-900); }

.hl-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
  background: var(--border);
}
.hl-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: white;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hl-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(10,25,47,0.08); }
.hl-card.dark { background: var(--navy-900); }
.hl-card.dark:hover { transform: none; box-shadow: none; }

.hl-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: var(--warm-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.hl-card.dark .hl-card-icon { background: rgba(255,255,255,0.1); }

.hl-card h3 { font-size: 20px; font-weight: 600; color: var(--navy-900); margin-bottom: 14px; line-height: 1.3; }
.hl-card.dark h3 { color: white; }

.hl-card p { font-size: 15px; color: var(--text); line-height: 1.7; flex: 1; margin-bottom: 28px; }
.hl-card.dark p { color: rgba(255,255,255,0.7); }

.hl-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
}
.hl-card.dark .hl-card-cta { color: rgba(255,255,255,0.5); }

.hl-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border);
}
.hl-card-wide {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 28px;
  background: white;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hl-card-wide:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(10,25,47,0.06); }
.hl-card-wide-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--warm-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hl-card-wide h3 { font-size: 19px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.hl-card-wide p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }

/* ── Patient Stories ── */
.stories-banner {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.stories-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.stories-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.94) 0%, rgba(10,25,47,0.5) 60%, rgba(10,25,47,0.25) 100%);
}
.stories-content {
  position: relative;
  z-index: 1;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: end;
  width: 100%;
}
.stories-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 20px;
}
.stories-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  font-style: italic;
  color: white;
  line-height: 1.45;
}
.stories-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.stories-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Contact CTA ── */
.contact-cta { text-align: center; max-width: 540px; margin: 0 auto; }
.contact-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; margin-bottom: 20px; }
.contact-cta p { font-size: 18px; color: var(--text); line-height: 1.75; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary { font-size: 16px; padding: 16px 32px; }
.contact-note { font-size: 15px; color: var(--text-light); }
.contact-note a { font-weight: 600; color: var(--navy-900); }

/* ── Footer ── */
footer { background: var(--navy-900); color: var(--navy-100); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 64px 24px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: white; display: block; margin-bottom: 16px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item:hover { color: white; }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-socials { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.footer-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 0;
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  color: white;
}
.footer-social-btn:hover { opacity: 0.84; transform: translateY(-1px); color: white; }
.fsb-yt  { background: #FF0000; }
.fsb-ig  { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.fsb-li  { background: #0A66C2; }
.fsb-x   { background: #000; }
.fsb-wa  { background: #25D366; }
.fsb-fb  { background: #1877F2; }

/* ── Floating WhatsApp button (desktop only) ── */
.floating-wa-btn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 95;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 11px 18px 11px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); color: white; }
@media (min-width: 881px) { .floating-wa-btn { display: flex; } }

.footer-apt-btn {
  display: block;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}
.footer-apt-btn:hover { background: var(--accent-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Health Library Hub ── */
.hl-hub-hero { background: var(--navy-900); padding: 80px 24px 96px; text-align: center; }
.hl-hub-hero .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hl-hub-hero h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 600; color: white; margin-bottom: 20px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hl-hub-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.hl-filter-bar {
  position: sticky;
  top: 98px;
  z-index: 30;
  background: rgba(252,251,249,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.hl-filter-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.hl-filter-inner::-webkit-scrollbar { display: none; }
.hl-filter-btn {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  background: var(--warm-100);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.hl-filter-btn:hover { background: var(--warm-200); }
.hl-filter-btn.active { background: var(--accent); color: white; border-color: var(--accent); }

.hl-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}
.article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s;
}
.article-card:hover { border-color: rgba(139,35,50,0.3); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.article-card h3 { font-size: 18px; font-weight: 600; color: var(--navy-900); margin-bottom: 10px; line-height: 1.3; }
.article-card h3:hover { color: var(--accent); }
.article-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.article-meta { display: flex; justify-content: space-between; align-items: center; }
.article-read-time { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.article-read-more { font-size: 12px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }

/* ── Article page ── */
.article-hero { background: var(--navy-900); padding: 60px 24px 80px; }
.article-breadcrumb { max-width: 740px; margin: 0 auto 24px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); }
.article-breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.article-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.article-hero-inner { max-width: 740px; margin: 0 auto; }
.article-hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 600; color: white; margin-bottom: 16px; }
.article-hero-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── Article Body (Editor.js rendered) ──────────────────────────────── */
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.article-body p { margin: 0 0 1.4em; }
.article-body p:last-child { margin-bottom: 0; }

.article-body .article-h { color: var(--navy-900); font-weight: 650; line-height: 1.3; margin: 2em 0 0.6em; }
.article-body h2.article-h { font-size: 22px; }
.article-body h3.article-h { font-size: 18px; font-weight: 600; }

.article-body .article-list { margin: 0 0 1.4em 0; padding-left: 1.6em; }
.article-body .article-list li { margin-bottom: 0.45em; line-height: 1.7; }

.article-body .article-quote {
  border-left: 3px solid var(--accent);
  margin: 2em 0;
  padding: 4px 0 4px 24px;
}
.article-body .article-quote p { font-size: 18px; font-style: italic; color: var(--navy-900); margin-bottom: 0.4em; }
.article-body .article-quote cite { font-size: 13px; color: var(--text-light); font-style: normal; font-weight: 500; }

.article-body .article-img { margin: 2em 0; }
.article-body .article-img img { width: 100%; border-radius: var(--radius-md); display: block; }
.article-body .article-img.bordered img { border: 1px solid var(--border); }
.article-body .article-img.bg-padded { background: var(--warm-100); padding: 16px; border-radius: var(--radius-md); }
.article-body .article-img.stretched { margin-left: -24px; margin-right: -24px; width: calc(100% + 48px); border-radius: 0; }
.article-body .article-img.stretched img { border-radius: 0; }
.article-body figcaption { font-size: 13px; color: var(--text-light); text-align: center; margin-top: 10px; }

.article-body .article-delimiter { text-align: center; margin: 2.5em 0; color: var(--text-light); letter-spacing: 0.4em; font-size: 14px; }

.article-body .article-table-wrap { overflow-x: auto; margin: 1.5em 0; }
.article-body .article-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.article-body .article-table th { background: var(--navy-900); color: white; padding: 10px 14px; text-align: left; font-weight: 500; font-size: 13px; }
.article-body .article-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.article-body .article-table tr:last-child td { border-bottom: none; }
.article-body .article-table tr:hover td { background: var(--warm-100); }

.article-body .article-callout {
  background: var(--accent-light, #EBF6FA);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 1.5em 0;
}
.article-body .article-callout .callout-title { display: block; color: var(--accent-dark, #1F7390); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.article-body .article-callout p { margin: 0; font-size: 15px; }

.article-body mark { background: #fff3b0; border-radius: 2px; padding: 1px 2px; }
.article-body code { background: #f3f4f6; border-radius: 4px; padding: 2px 6px; font-family: monospace; font-size: 0.88em; color: #374151; }

.article-body a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(46,143,173,0.3); }
.article-body a:hover { text-decoration-color: var(--accent); }

.article-body b, .article-body strong { color: var(--navy-900); font-weight: 650; }

/* legacy ql-editor compatibility */
.article-body .ql-editor { padding: 0; }
.article-intro {
  font-size: 18px;
  line-height: 1.8;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  margin-bottom: 56px;
  color: var(--text-light);
}
.article-section { margin-bottom: 44px; }
.article-section h2 { font-size: 22px; font-weight: 600; color: var(--navy-900); margin-bottom: 14px; }
.article-section p { font-size: 16px; color: var(--text); line-height: 1.8; white-space: pre-line; }

.article-cta-box {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  margin-top: 64px;
}
.article-cta-box h3 { font-size: 22px; font-weight: 600; color: white; margin-bottom: 10px; }
.article-cta-box p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.article-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.article-cta-btns .btn-secondary { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.article-cta-btns .btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; }

.article-nav { display: flex; gap: 16px; margin-top: 56px; }
.article-nav-btn {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.article-nav-btn:hover { border-color: rgba(139,35,50,0.35); }
.article-nav-btn.right { text-align: right; }
.article-nav-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.article-nav-btn.right .article-nav-label { justify-content: flex-end; }
.article-nav-title { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--navy-900); line-height: 1.3; }

.back-to-library { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--accent); margin-top: 32px; }
.back-to-library:hover { text-decoration: underline; }

/* ── Bento grid (homepage health library) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 260px 220px;
  gap: 12px;
}
.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}
.bento-card.span2 { grid-column: span 2; }

.bento-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.bento-card:hover .bento-img { transform: scale(1.04); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.88) 0%, rgba(10,25,47,0.3) 60%, transparent 100%);
  transition: background 0.4s;
}
.bento-card:hover .bento-overlay {
  background: linear-gradient(to top, rgba(10,25,47,0.93) 0%, rgba(10,25,47,0.45) 70%, transparent 100%);
}

.bento-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  width: 100%;
}
.bento-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}
.bento-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}
.bento-card.span2 .bento-title { font-size: 28px; }
.bento-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
}
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.bento-card:hover .bento-cta { opacity: 1; transform: translateY(0); }
.bento-cta:hover { background: var(--accent-dark); }

/* ── Article page -- redesigned ── */
.article-stat-section {
  background: var(--warm-100);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.article-stat-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.article-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.article-stat-headline {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  color: var(--navy-900);
  max-width: 640px;
  line-height: 1.3;
  margin-bottom: 32px;
}
.article-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.article-stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.article-stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.article-stat-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.article-stat-card a.source {
  font-size: 11px;
  color: var(--warm-300);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  transition: color 0.2s;
}
.article-stat-card a.source:hover { color: var(--text-light); }

/* stat-card aliases used by custom article pages */
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.stat-card-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}
.stat-card-source { margin-top: 8px; }
.stat-card-source a {
  font-size: 11px;
  color: var(--warm-300);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  text-decoration: none;
}
.stat-card-source a:hover { color: var(--text-light); }

.article-explainer { padding: 72px 24px; background: var(--bg); }
.article-explainer-inner { max-width: 1100px; margin: 0 auto; }
.article-explainer h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.article-explainer .lead { font-size: 18px; color: var(--text-light); line-height: 1.75; max-width: 640px; margin-bottom: 48px; }

.stage-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}
.stage-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.stage-item { text-align: center; position: relative; z-index: 1; }
.stage-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-light);
  transition: all 0.2s;
}
.stage-item.active .stage-dot { background: var(--accent); color: white; border-color: var(--accent); }
.stage-item.warning .stage-dot { background: var(--navy-900); color: white; border-color: var(--navy-900); }
.stage-name { font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.stage-desc { font-size: 12px; color: var(--text-light); line-height: 1.4; max-width: 130px; margin: 0 auto; }
.stage-step { text-align: center; position: relative; z-index: 1; }
.stage-label { font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; margin-top: 14px; }

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.symptoms-col h3 { font-size: 16px; font-weight: 600; color: var(--navy-900); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.symptoms-col.warning h3 { border-color: var(--accent); }
.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--warm-100);
}
.symptom-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--warm-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.symptoms-col.warning .symptom-icon { background: var(--accent-light); }
.symptom-text { font-size: 14px; color: var(--text); line-height: 1.5; }

.treatment-plan { padding: 72px 24px; background: var(--warm-100); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.treatment-plan-inner { max-width: 1100px; margin: 0 auto; }
.treatment-stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.treatment-stage {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.treatment-stage.featured { background: var(--navy-900); border-color: var(--navy-900); }
.treatment-stage-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.treatment-stage.featured .treatment-stage-num { color: rgba(255,255,255,0.4); }
.treatment-stage h3 { font-size: 20px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.treatment-stage.featured h3 { color: white; }
.treatment-stage-sub { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.treatment-stage.featured .treatment-stage-sub { color: rgba(255,255,255,0.5); }
.treatment-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.treatment-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.treatment-stage.featured .treatment-items li { color: rgba(255,255,255,0.75); }
.treatment-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.treatment-stage.featured .treatment-items li::before { background: rgba(255,255,255,0.4); }
.treatment-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--warm-100);
  border-radius: var(--radius-xs);
  border-left: 3px solid var(--border);
}

.brand-confidence { padding: 72px 24px; background: var(--navy-900); }
.brand-confidence-inner { max-width: 1100px; margin: 0 auto; }
.brand-confidence .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.brand-confidence h2 { font-family: var(--font-serif); font-size: clamp(24px,3.5vw,36px); font-weight: 600; color: white; margin-bottom: 40px; max-width: 560px; }
.confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.confidence-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 28px 24px; }
.confidence-num { font-family: var(--font-serif); font-size: 40px; font-weight: 600; color: white; line-height: 1; margin-bottom: 8px; }
.confidence-label { font-size: 14px; color: var(--navy-100); line-height: 1.4; }

/* brand-confidence-grid aliases used by custom article pages */
.brand-confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bc-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 28px 24px; }
.bc-number { font-family: var(--font-serif); font-size: 40px; font-weight: 600; color: white; line-height: 1; margin-bottom: 8px; }
.bc-label { font-size: 14px; color: var(--navy-100); line-height: 1.4; }

.testimonial-section { padding: 72px 24px; background: var(--bg); }
.testimonial-section-inner { max-width: 1100px; margin: 0 auto; }

.article-cta-final { padding: 80px 24px; background: var(--bg); }
.article-cta-final-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.article-cta-final h2 { font-size: clamp(24px,3.5vw,36px); margin-bottom: 16px; }
.article-cta-final p { font-size: 17px; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; }
.cta-options { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-options .btn-primary, .cta-options .btn-secondary { font-size: 15px; padding: 14px 28px; }
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 20px;
}
.cta-whatsapp a { font-weight: 600; color: var(--navy-900); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 900px) {
  .hl-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hl-grid-4 .hl-card:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hl-articles-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-card { min-height: 240px; }
  .bento-card.span2 { grid-column: span 1; }
  .bento-cta { opacity: 1; transform: none; }
  .article-stat-cards { grid-template-columns: 1fr 1fr; }
  .stage-track { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stage-track::before { display: none; }
  .treatment-stages { grid-template-columns: 1fr; }
  .confidence-grid { grid-template-columns: repeat(2,1fr); }
  .brand-confidence-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 24px 20px 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .hero-desc { font-size: 16px; }
  .hero-byline { font-size: 14px; }
  .hero-image-desktop { display: none; }
  .hero-image-mobile { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stories-content { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; }
  .leadership-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .leadership-photo { margin: 0 auto; }
}
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .hl-articles-grid { grid-template-columns: 1fr; }
  .hl-grid-4 { grid-template-columns: 1fr; }
  .hl-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-cta-box { padding: 32px 24px; }
  .article-nav { flex-direction: column; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card { min-height: 240px; }
  .bento-card.span2 { grid-column: span 1; }
  .article-stat-cards { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .confidence-grid { grid-template-columns: 1fr 1fr; }
  .brand-confidence-grid { grid-template-columns: 1fr 1fr; }
  .bento-cta { opacity: 1; transform: none; }
}

/* ── About page ── */
.about-hero {
  background: var(--warm-100);
  padding: 80px 24px 80px;
  border-bottom: 1px solid var(--border);
}
.about-hero-inner { max-width: 1140px; margin: 0 auto; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero-text h1 {
  font-size: 48px;
  font-weight: 500;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.about-hero-title {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.about-hero-affil {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.about-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A66C2;
  color: white;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  margin-bottom: 32px;
  transition: background 0.2s;
}
.about-linkedin-btn:hover { background: #004182; }
.about-social-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.about-social-bar .cplatform-pill { width: auto; }
@media (max-width: 640px) {
  .about-social-bar .cplatform-pill { width: 36px; height: 36px; padding: 0; font-size: 0; gap: 0; }
}
.dr-social-icons { display: flex; gap: 8px; margin-top: 16px; }
.dr-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: var(--radius-xs);
  text-decoration: none; transition: opacity 0.2s, transform 0.2s;
  color: white;
}
.dr-social-icon:hover { opacity: 0.82; transform: translateY(-1px); }
.dsi-yt  { background: #FF0000; }
.dsi-ig  { background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%); }
.dsi-li  { background: #0A66C2; }
.dsi-x   { background: #000; }
.dsi-wa  { background: #25D366; color: #0a2e1a; }
.dsi-fb  { background: #1877F2; }
.about-hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-300);
}
.about-hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-hero-stats .stat-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1;
}
.about-hero-stats .stat-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-bio p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.about-lead { font-size: 18px !important; color: var(--navy-900) !important; font-weight: 500; line-height: 1.7 !important; }

/* ── About highlights ── */
.about-highlights-section {
  background: var(--navy-900);
}
.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-highlight {
  padding: 56px 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-highlight:last-child { border-right: none; }
.about-highlight-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.about-highlight-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.15;
}
@media (max-width: 900px) {
  .about-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-highlight { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 40px 32px; }
  .about-highlight:nth-child(2n) { border-right: none; }
  .about-highlight:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .about-highlights-grid { grid-template-columns: 1fr; }
  .about-highlight { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 24px; }
  .about-highlight:last-child { border-bottom: none; }
}

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--warm-300);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -32px; top: 6px;
  width: 15px; height: 15px;
  background: var(--accent);
  border: 3px solid var(--warm-100);
  border-radius: 50%;
}
.timeline-role {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.timeline-place { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 10px; }
.timeline-note { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 620px; }

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.credential-card {
  background: var(--warm-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.credential-degree {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.credential-school { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 8px; }
.credential-note { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.expertise-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
}
.expertise-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.expertise-card ul { list-style: none; padding: 0; }
.expertise-card li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.5;
}
.expertise-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.firsts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.first-card {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 20px;
}
.first-number {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.first-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: white;
  line-height: 1.4;
  margin-bottom: 10px;
}
.first-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.about-quote {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--warm-100);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-xs);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--navy-900);
  line-height: 1.6;
}
.about-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.snapshot-grid {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.snapshot-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.snapshot-row:last-child { border-bottom: none; }
.snapshot-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.snapshot-value { font-size: 15px; color: var(--navy-900); font-weight: 500; }

@media (max-width: 880px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-text h1 { font-size: 36px; }
  .about-hero-stats { gap: 28px; flex-wrap: wrap; }
  .credential-grid, .expertise-grid, .firsts-grid { grid-template-columns: 1fr; }
  .snapshot-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Contact page ── */
.contact-hero {
  background: var(--warm-100);
  padding: 72px 24px 56px;
  border-bottom: 1px solid var(--border);
}
.contact-hero h1 {
  font-size: 44px;
  font-weight: 500;
  margin: 10px 0 16px;
  letter-spacing: -0.01em;
}
.contact-hero-lead {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}
.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}
.quick-action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.quick-action-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.quick-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}
.quick-title {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 2px;
}
.quick-value {
  font-size: 15px;
  color: var(--navy-900);
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--navy-900);
  font-weight: 500;
}
.contact-form label span { letter-spacing: 0.01em; }
.contact-form .label-opt { font-weight: 400; color: var(--text-light); font-size: 12px; }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--navy-900);
  padding: 11px 14px;
  border: 1px solid var(--warm-300);
  border-radius: var(--radius-xs);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.contact-form textarea { resize: vertical; min-height: 120px; font-family: var(--font-sans); }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B66' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0;
}
.form-consent { margin: 4px 0 8px; }
.consent-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: var(--text) !important;
  line-height: 1.5;
}
.consent-check input { margin-top: 2px; accent-color: var(--accent); }
.form-note {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 4px;
  font-style: italic;
}
.form-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-xs);
  margin-bottom: 24px;
}
.form-alert-ok { background: #F0F9F4; border: 1px solid #BFDECB; color: #1F5A38; }
.form-alert-err { background: var(--accent-light); border: 1px solid #E8BEC3; color: var(--accent-dark); }

.contact-info-wrap { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--warm-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.info-card-urgent {
  background: var(--accent-light);
  border-color: #E8BEC3;
}
.info-card-title {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 10px;
}
.info-card-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}
.info-card-body strong { color: var(--navy-900); font-weight: 600; }
.info-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.info-card-link:hover { color: var(--accent-dark); }

@media (max-width: 880px) {
  .contact-quick-actions { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 32px; }
}

/* ── Your Journey page (editorial v4) ── */
.jy-hero {
  padding: 72px 20px 88px;
  background: var(--warm-100);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.jy-hero-inner { max-width: 760px; margin: 0 auto; }
.jy-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.jy-hero-h {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 22px;
}
.jy-hero-h em { font-style: italic; color: var(--accent); font-weight: 500; }
.jy-hero-lede {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 32px;
}
.jy-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.jy-hero-scroll:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(2px);
}

/* Chapter */
.jy-chapter {
  padding: 56px 20px;
  background: var(--bg);
}
.jy-chapter + .jy-chapter { border-top: 1px solid var(--border); }
.jy-chapter-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.jy-chapter-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--warm-100);
  box-shadow: var(--shadow-md);
}
.jy-chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jy-chapter-num {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(10,25,47,0.78);
  color: white;
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.jy-chapter-num-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.jy-chapter-num-val {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
}
.jy-chapter-body { max-width: 560px; }
.jy-chapter-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.jy-chapter-h {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.012em;
  line-height: 1.18;
  margin-bottom: 14px;
}
.jy-chapter-lede {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 26px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}
.jy-chapter-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jy-chapter-bullets li {
  position: relative;
  padding: 14px 0 14px 26px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.jy-chapter-bullets li:last-child { border-bottom: none; }
.jy-chapter-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 23px;
  width: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

@media (min-width: 880px) {
  .jy-hero { padding: 112px 24px 120px; }
  .jy-hero-h { font-size: 56px; }
  .jy-hero-lede { font-size: 17px; }

  .jy-chapter { padding: 96px 40px; }
  .jy-chapter-inner {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .jy-chapter-flip .jy-chapter-media { order: 2; }
  .jy-chapter-flip .jy-chapter-body  { order: 1; }

  .jy-chapter-h { font-size: 40px; letter-spacing: -0.015em; line-height: 1.12; }
  .jy-chapter-lede { font-size: 20px; padding-left: 18px; line-height: 1.5; }
  .jy-chapter-bullets li { font-size: 16.5px; padding: 18px 0 18px 32px; }
  .jy-chapter-bullets li::before { top: 28px; width: 18px; }

  .jy-chapter-num { bottom: 20px; left: 20px; padding: 9px 16px; }
  .jy-chapter-num-label { font-size: 10.5px; }
  .jy-chapter-num-val { font-size: 16px; }
}

/* Question cards */
.jy-q-wrap {
  padding: 0 20px;
  margin: -8px 0 40px;
  background: var(--bg);
}
.jy-q {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 28px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.jy-q-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.jy-q-kicker::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.jy-q-h {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: 6px;
}
.jy-q-sub {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.jy-q-h + .jy-q-pills,
.jy-q-h + .jy-q-input { margin-top: 16px; }
.jy-q-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jy-q-pill {
  padding: 10px 16px;
  background: var(--warm-100);
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.jy-q-pill:hover { background: var(--warm-200); }
.jy-q-pill.active {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
}
.jy-q-input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1px solid var(--warm-300);
  border-radius: var(--radius-xs);
  background: var(--warm-100);
  color: var(--navy-900);
  transition: border-color 0.2s, background 0.2s;
}
.jy-q-input:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.jy-q-confirm {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.jy-q-confirm.active { opacity: 1; }

/* Capture section (replaces closing, keeps navy editorial feel) */
.jy-capture {
  background: var(--navy-900);
  color: white;
  padding: 72px 20px 88px;
}
.jy-capture-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.jy-closing-h {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.012em;
  margin-bottom: 16px;
  color: white;
}
.jy-closing-lede {
  font-size: 15.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 28px;
}

.jy-capture-summary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}
.jy-capture-summary-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.jy-capture-summary-empty {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-style: italic;
}
.jy-capture-summary-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.jy-capture-summary-row:last-child { border-bottom: none; }
.jy-capture-summary-row-key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  min-width: 110px;
}
.jy-capture-summary-row-val { color: white; font-weight: 500; }

.jy-capture-form {
  display: grid;
  gap: 12px;
}
.jy-capture-field { display: block; }
.jy-capture-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 7px;
}
.jy-capture-optional {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.4);
  margin-left: 2px;
}
.jy-capture-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xs);
  font-family: var(--font-sans);
  font-size: 15px;
  color: white;
  transition: border-color 0.2s, background 0.2s;
}
.jy-capture-input::placeholder { color: rgba(255,255,255,0.35); }
.jy-capture-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.jy-capture-hp { position: absolute; left: -9999px; opacity: 0; }
.jy-capture-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-top: 4px;
  cursor: pointer;
}
.jy-capture-consent input {
  accent-color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.jy-capture-submit {
  margin-top: 10px;
  padding: 14px 22px;
  background: white;
  color: var(--navy-900);
  border: none;
  border-radius: var(--radius-xs);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, opacity 0.2s;
}
.jy-capture-submit:hover:not(:disabled) { transform: translateY(-1px); }
.jy-capture-submit:disabled { opacity: 0.6; cursor: progress; }
.jy-capture-error {
  font-size: 12.5px;
  color: #FFB8B8;
  min-height: 18px;
  line-height: 1.5;
}

/* Success */
.jy-capture-success {
  display: none;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  animation: journey-success-in 0.45s ease both;
}
.jy-capture-success.active { display: block; }
@keyframes journey-success-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.jy-capture-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.jy-capture-success .jy-closing-lede { margin-left: auto; margin-right: auto; }
.jy-capture-success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.jy-closing-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.jy-closing-secondary:hover { color: white; }

@media (min-width: 880px) {
  .jy-q-wrap { margin: -24px 0 56px; padding: 0 40px; }
  .jy-q { padding: 32px 36px 28px; }
  .jy-q-h { font-size: 24px; }
  .jy-q-pill { padding: 11px 18px; font-size: 14px; }

  .jy-capture { padding: 112px 40px 128px; }
  .jy-capture-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .jy-closing-h { font-size: 38px; }
  .jy-closing-lede { font-size: 16.5px; }
  .jy-capture-success-actions { flex-direction: row; justify-content: center; gap: 24px; }
}

/* ── Mobile sticky contact bar (site-wide) ── */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
  gap: 4px;
}
.mbb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  border-radius: var(--radius-xs);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  transition: background 0.2s;
  min-height: 48px;
}
.mbb-btn:active { background: rgba(255,255,255,0.08); }
.mbb-call   { color: #E9F3FF; }
.mbb-wa     { color: #C8F7D4; }
.mbb-book   { color: #F7D9DD; }
@media (max-width: 880px) {
  .mobile-bottom-bar { display: grid; }
  body { padding-bottom: 68px; }
}


/* ── For Referring Physicians page ── */
.rx-hero {
  padding: 72px 20px 64px;
  background: var(--warm-100);
  border-bottom: 1px solid var(--border);
}
.rx-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.rx-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.rx-hero-h {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.rx-hero-h em { font-style: italic; color: var(--accent); font-weight: 500; }
.rx-hero-lede {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 32px;
}
.rx-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rx-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.rx-hero-cta-primary {
  background: var(--navy-900);
  color: white;
}
.rx-hero-cta-primary:hover { background: var(--accent); transform: translateY(-1px); }
.rx-hero-cta-secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--navy-900);
}
.rx-hero-cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

@media (min-width: 720px) {
  .rx-hero { padding: 112px 24px 88px; }
  .rx-hero-h { font-size: 48px; }
  .rx-hero-lede { font-size: 17px; }
  .rx-hero-ctas { flex-direction: row; justify-content: center; gap: 14px; }
}

/* Sections */
.rx-section { padding: 64px 20px; background: var(--bg); }
.rx-section-alt { background: var(--warm-100); }
.rx-section-inner { max-width: 1080px; margin: 0 auto; }

.rx-section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.rx-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.rx-h {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.rx-sub {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

@media (min-width: 720px) {
  .rx-section { padding: 88px 24px; }
  .rx-section-head { margin-bottom: 56px; }
  .rx-h { font-size: 34px; }
  .rx-sub { font-size: 16px; }
}

/* What we treat */
.rx-treat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.rx-treat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 22px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rx-treat-card:hover { border-color: var(--warm-300); box-shadow: var(--shadow-sm); }
.rx-treat-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.rx-treat-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}
@media (min-width: 720px) {
  .rx-treat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .rx-treat-card { padding: 26px 24px 24px; }
  .rx-treat-card h3 { font-size: 20px; }
}

/* How to refer */
.rx-howto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.rx-howto {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  position: relative;
}
.rx-howto-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--warm-300);
  line-height: 1;
}
.rx-howto h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 10px;
  padding-right: 50px;
}
.rx-howto p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 10px;
}
.rx-howto p:last-child { margin-bottom: 0; }
.rx-howto a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(139,35,50,0.25);
  transition: border-color 0.2s;
}
.rx-howto a:hover { border-bottom-color: var(--accent); }
.rx-howto-best {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 14px !important;
}
@media (min-width: 880px) {
  .rx-howto-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Checklist */
.rx-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.rx-checklist-col {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 24px 20px;
}
.rx-checklist-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.rx-checklist ul { list-style: none; padding: 0; margin: 0; }
.rx-checklist li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.rx-checklist li:last-child { border-bottom: none; }
.rx-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
@media (min-width: 720px) {
  .rx-checklist { grid-template-columns: repeat(3, 1fr); }
}

/* Promise */
.rx-promise {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rx-promise-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 22px 20px;
}
.rx-promise-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--warm-100);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
}
.rx-promise-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.rx-promise-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}
@media (min-width: 720px) {
  .rx-promise-item { padding: 26px 28px 24px; gap: 22px; }
  .rx-promise-item h3 { font-size: 20px; }
  .rx-promise-item p { font-size: 15.5px; }
  .rx-promise-num { width: 40px; height: 40px; font-size: 18px; }
}

/* Form section */
.rx-form-section {
  background: var(--navy-900);
  color: white;
  padding: 72px 20px 88px;
}
.rx-form-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.rx-form-intro { max-width: 460px; }
.rx-form-h {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.rx-form-lede {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.rx-form-side-ctas { display: flex; flex-direction: column; gap: 10px; }
.rx-form-side-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.14);
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}
.rx-form-side-cta:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.rx-form-wrap {
  background: white;
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 880px) {
  .rx-form-inner { grid-template-columns: 5fr 7fr; gap: 56px; }
  .rx-form-section { padding: 112px 24px 128px; }
  .rx-form-h { font-size: 36px; }
  .rx-form-wrap { padding: 36px 36px 32px; }
}

.rx-form-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.rx-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (min-width: 640px) {
  .rx-form-row { grid-template-columns: 1fr 1fr; }
}
.rx-form label {
  display: block;
  margin-bottom: 14px;
}
.rx-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.rx-form label > span em {
  color: var(--accent);
  font-style: normal;
  margin-left: 2px;
}
.rx-form .rx-opt {
  color: var(--text-light);
  font-weight: 400;
  font-style: italic;
}
.rx-form input[type="text"],
.rx-form input[type="tel"],
.rx-form input[type="email"],
.rx-form select,
.rx-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--navy-900);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  transition: border-color 0.2s, background 0.2s;
}
.rx-form textarea { resize: vertical; min-height: 110px; }
.rx-form input:focus,
.rx-form select:focus,
.rx-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.rx-form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  background: var(--warm-100);
  padding: 12px 14px;
  border-radius: var(--radius-xs);
  margin: 10px 0 18px !important;
}
.rx-form-consent input { margin-top: 3px; flex-shrink: 0; }
.rx-form-consent span {
  font-size: 13.5px !important;
  color: var(--text) !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  line-height: 1.5;
}
.rx-form-consent em { color: var(--accent); font-style: normal; }
.rx-form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}
.rx-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--navy-900);
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s, transform 0.2s;
}
.rx-form-submit:hover { background: var(--accent); transform: translateY(-1px); }
.rx-form-note {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 16px;
}
.rx-form-err {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(46,143,173,0.2);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 18px;
}
.rx-form-success { text-align: center; padding: 20px 0 8px; }
.rx-form-success h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-900);
  margin: 14px 0 10px;
}
.rx-form-success p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  max-width: 440px;
  margin: 0 auto;
}
.rx-form-success a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(139,35,50,0.25);
}

/* ── Legal pages ── */
.legal-hero {
  background: var(--warm-100);
  padding: 56px 20px 48px;
  border-bottom: 1px solid var(--border);
}
.legal-hero-inner { max-width: 760px; margin: 0 auto; }
.legal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.legal-h {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 10px;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-light);
}
.legal-body { padding: 48px 20px 72px; background: var(--bg); }
.legal-body-inner {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
}
.legal-placeholder-note {
  display: flex;
  gap: 12px;
  background: var(--warm-100);
  border: 1px solid var(--warm-200);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 36px;
  color: var(--text);
}
.legal-placeholder-note a { color: var(--accent); font-weight: 600; border-bottom: 1px solid rgba(139,35,50,0.3); }
.legal-section-h {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.008em;
  margin: 32px 0 12px;
  line-height: 1.3;
}
.legal-body p {
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: var(--text);
}
.legal-body a { color: var(--accent); border-bottom: 1px solid rgba(139,35,50,0.25); }
.legal-body a:hover { border-bottom-color: var(--accent); }
.legal-contact-box {
  margin-top: 48px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.legal-contact-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
@media (min-width: 720px) {
  .legal-hero { padding: 88px 24px 72px; }
  .legal-h { font-size: 42px; }
  .legal-body { padding: 64px 24px 96px; }
  .legal-section-h { font-size: 26px; margin: 40px 0 14px; }
  .legal-body p { font-size: 16px; }
}

/* ── Patient Stories (list) ── */
.ps-hero {
  background: var(--warm-100);
  padding: 72px 20px 64px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.ps-hero-inner { max-width: 760px; margin: 0 auto; }
.ps-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.ps-hero-h {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.ps-hero-h em { font-style: italic; color: var(--accent); font-weight: 500; }
.ps-hero-lede {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 18px;
}
.ps-hero-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}
@media (min-width: 720px) {
  .ps-hero { padding: 112px 24px 96px; }
  .ps-hero-h { font-size: 48px; }
  .ps-hero-lede { font-size: 17px; }
}

.ps-list {
  padding: 56px 20px 72px;
  background: var(--bg);
}
.ps-list-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.ps-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.ps-card:hover {
  border-color: var(--warm-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ps-card-media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--warm-100);
}
.ps-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.ps-card:hover .ps-card-media img { transform: scale(1.03); }
.ps-card-year {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10,25,47,0.78);
  backdrop-filter: blur(8px);
  color: white;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}
.ps-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.ps-card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.ps-card-h {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ps-card-from {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.ps-card-sum {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.ps-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.ps-card:hover .ps-card-link { gap: 10px; }
.ps-card-placeholder {
  background: var(--warm-100);
  border: 1px dashed var(--warm-300);
  box-shadow: none;
  justify-content: center;
}
.ps-card-placeholder:hover { transform: none; box-shadow: none; border-color: var(--accent); }
@media (min-width: 720px) {
  .ps-list { padding: 80px 24px 96px; }
  .ps-list-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ps-card-h { font-size: 24px; }
}
@media (min-width: 1080px) {
  .ps-list-inner { grid-template-columns: repeat(3, 1fr); }
}

.ps-closing {
  background: var(--navy-900);
  color: white;
  padding: 72px 20px 88px;
  text-align: center;
}
.ps-closing-inner { max-width: 680px; margin: 0 auto; }
.ps-closing-h {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.ps-closing-lede {
  font-size: 15.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 30px;
}
.ps-closing-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.ps-closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ps-closing-cta-primary {
  background: white;
  color: var(--navy-900);
}
.ps-closing-cta-primary:hover { background: var(--accent); color: white; }
.ps-closing-cta-secondary {
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.2);
}
.ps-closing-cta-secondary:hover { color: white; border-color: rgba(255,255,255,0.45); }
@media (min-width: 720px) {
  .ps-closing { padding: 112px 24px 128px; }
  .ps-closing-h { font-size: 40px; }
  .ps-closing-ctas { flex-direction: row; justify-content: center; gap: 18px; }
}

/* ── Patient Story (detail) ── */
.pst-hero {
  background: var(--warm-100);
  padding: 28px 20px 48px;
}
.pst-breadcrumb {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}
.pst-breadcrumb a { color: var(--accent); font-weight: 600; }
.pst-breadcrumb a:hover { text-decoration: underline; }
.pst-breadcrumb span { color: var(--text); }
.pst-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.pst-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pst-hero-h {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.pst-hero-from {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 18px;
}
.pst-hero-sum {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  margin-bottom: 28px;
}
.pst-hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pst-hero-facts > div {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.pst-hero-facts span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.pst-hero-facts strong {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 14.5px;
  text-align: right;
}
.pst-hero-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--warm-100);
  box-shadow: var(--shadow-md);
}
.pst-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 880px) {
  .pst-hero { padding: 40px 24px 80px; }
  .pst-hero-inner { grid-template-columns: 6fr 5fr; gap: 64px; align-items: center; }
  .pst-hero-h { font-size: 48px; }
  .pst-hero-sum { font-size: 20px; padding-left: 18px; }
  .pst-hero-facts { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pst-hero-facts > div { flex-direction: column; align-items: flex-start; text-align: left; padding: 14px 16px; }
  .pst-hero-facts strong { text-align: left; margin-top: 6px; }
}

.pst-pullquote {
  background: var(--bg);
  padding: 48px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pst-pullquote-inner { max-width: 760px; margin: 0 auto; }
.pst-qmark { color: var(--accent); opacity: 0.4; margin-bottom: 18px; display: inline-block; }
.pst-quote-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.008em;
}
.pst-quote-by {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
@media (min-width: 720px) {
  .pst-pullquote { padding: 72px 24px; }
  .pst-quote-text { font-size: 30px; line-height: 1.4; }
}

.pst-body {
  background: var(--bg);
  padding: 48px 20px;
}
.pst-body-inner { max-width: 720px; margin: 0 auto; }
.pst-chapter { margin-bottom: 44px; }
.pst-chapter:last-child { margin-bottom: 0; }
.pst-chapter-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.pst-chapter-num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--warm-300);
  line-height: 1;
}
.pst-chapter-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.pst-chapter-h {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.pst-body p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 16px;
}
.pst-body p:last-child { margin-bottom: 0; }
@media (min-width: 720px) {
  .pst-body { padding: 72px 24px 80px; }
  .pst-chapter { margin-bottom: 56px; }
  .pst-chapter-h { font-size: 30px; }
  .pst-body p { font-size: 17px; }
}

.pst-advice {
  background: var(--warm-100);
  padding: 48px 20px;
}
.pst-advice-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.pst-advice-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.pst-advice-body {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy-900);
}
@media (min-width: 720px) {
  .pst-advice { padding: 72px 24px; }
  .pst-advice-inner { padding: 40px 48px; }
  .pst-advice-body { font-size: 22px; }
}

.pst-cta {
  background: var(--navy-900);
  color: white;
  padding: 64px 20px 80px;
  text-align: center;
}
.pst-cta-inner { max-width: 640px; margin: 0 auto; }
.pst-cta-h {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: white;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pst-cta-lede {
  font-size: 15.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 26px;
}
.pst-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.pst-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pst-cta-btn-primary { background: white; color: var(--navy-900); }
.pst-cta-btn-primary:hover { background: var(--accent); color: white; }
.pst-cta-btn-secondary { color: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.2); }
.pst-cta-btn-secondary:hover { color: white; border-color: rgba(255,255,255,0.45); }
.pst-cta-meta {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
@media (min-width: 720px) {
  .pst-cta { padding: 96px 24px 112px; }
  .pst-cta-h { font-size: 36px; }
  .pst-cta-buttons { flex-direction: row; justify-content: center; gap: 16px; }
}

/* Legal placeholder highlighter */
.legal-ph {
  background: #FFF3B8;
  color: #6B4E00;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ── Mobile safeguards (sub-720 tightening) ── */
@media (max-width: 720px) {
  /* About hero */
  .about-hero { padding: 48px 20px 56px; }
  .about-hero-text h1 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .about-hero-title { font-size: 16px; }
  .about-hero-affil { font-size: 14px; margin-bottom: 24px; }
  .about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
  }
  .about-hero-stats .stat-number { font-size: 26px; }
  .about-hero-stats .stat-label { font-size: 10.5px; letter-spacing: 0.06em; }
  .about-hero-photo { max-height: 440px; }

  /* Contact hero */
  .contact-hero { padding: 48px 20px 40px; }
  .contact-hero h1 { font-size: clamp(26px, 7vw, 32px); line-height: 1.2; }

  /* Home hero */
  .hero { padding: 64px 20px 56px; }

  /* Article hero */
  .article-hero { padding-left: 20px; padding-right: 20px; }
  .article-hero h1 { font-size: clamp(24px, 6.5vw, 30px) !important; line-height: 1.2; }

  /* Universal: long headings should never overflow */
  h1, h2 { overflow-wrap: anywhere; word-break: break-word; }
}

/* Keep util strip + navbar from forcing horizontal scroll */
html, body { overflow-x: hidden; }

/* ── Cookie notice ── */
.cookie-notice {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1200;
  background: var(--navy-900);
  color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
}
.cookie-notice-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cookie-notice-text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.cookie-notice-text a {
  color: white;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.cookie-notice-text a:hover { border-bottom-color: white; }
.cookie-notice-btn {
  background: white;
  color: var(--navy-900);
  border: none;
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.cookie-notice-btn:hover { background: var(--accent); color: white; }
@media (min-width: 720px) {
  .cookie-notice {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 620px;
    padding: 16px 20px;
  }
  .cookie-notice-inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .cookie-notice-text { font-size: 13.5px; }
}
/* Lift mobile bottom bar when cookie notice is visible */
@media (max-width: 880px) {
  .cookie-notice:not([hidden]) ~ .mobile-bottom-bar,
  body:has(.cookie-notice:not([hidden])) .mobile-bottom-bar { bottom: 110px; }
}

/* ── Hero byline ── */
.hero-byline {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  margin-top: -8px;
}

/* ── Meet the Team ── */
.team-section { background: var(--bg); }
.team-header {
  margin-bottom: 40px;
}
.team-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.team-header h2 {
  color: var(--navy-900);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.team-card {
  background: var(--warm-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.team-card-lead {
  background: var(--navy-900);
}
.team-card-photo-lead {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-800);
}
.team-card-photo-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-card-photo-sm {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--warm-200, #ede8df);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-placeholder {
  background: var(--warm-200, #ede8df);
}
.team-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-card-lead .team-card-body { padding: 28px; gap: 10px; }
.team-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 3px 9px;
  border-radius: 100px;
  width: fit-content;
}
.team-card-badge-muted {
  background: rgba(0,0,0,0.08);
  color: var(--text-light);
}
.team-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.2;
}
.team-card-lead .team-card-name { font-size: 24px; color: white; }
.team-card-title {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}
.team-card-lead .team-card-title { color: var(--navy-100); }
.team-card-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 4px 0 0;
}
.team-card-lead .team-card-bio { color: rgba(255,255,255,0.7); font-size: 14.5px; }
.team-card-credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.team-card-credentials span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.team-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.2s;
}
.team-card-link:hover { gap: 10px; }

/* ── Team homepage — Dr. Sahota horizontal card ── */
.team-lead-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--warm-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.team-lead-photo {
  overflow: hidden;
}
.team-lead-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-lead-body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.team-lead-name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.2;
}
.team-lead-title {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}
.team-lead-bio {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 4px 0;
}
.team-lead-creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.team-lead-creds span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-light);
}

/* ── Team bar ── */
.team-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.team-bar:hover { opacity: 0.9; }
.team-bar-avatars {
  display: flex;
  flex-shrink: 0;
}
.team-bar-avatars .team-bar-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--navy-900);
  margin-left: -10px;
  background: rgba(255,255,255,0.1);
}
.team-bar-avatars .team-bar-avatar:first-child { margin-left: 0; }
.team-bar-avatars .team-bar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-bar-body {
  flex: 1;
}
.team-bar-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.team-bar-text {
  font-size: 15px;
  font-weight: 500;
  color: white;
  line-height: 1.4;
}
.team-bar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .team-lead-card { grid-template-columns: 260px 1fr; }
  .team-lead-body { padding: 28px 32px; }
}
@media (max-width: 640px) {
  .team-lead-card { grid-template-columns: 1fr; }
  .team-lead-photo { aspect-ratio: 3/4; max-height: 480px; }
  .team-lead-body { padding: 24px; }
  .team-bar { flex-wrap: wrap; gap: 16px; }
  .team-bar-cta { width: 100%; }
}

/* ── Team page ── */
.team-page-lead-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--warm-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.team-page-lead-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-page-lead-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-page-lead-body {
  padding: 44px 44px 44px 0;
}

.team-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team-page-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.team-page-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-page-card-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.team-page-card-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.team-page-card-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .team-page-lead-card { grid-template-columns: 1fr; }
  .team-page-lead-photo { aspect-ratio: 4/3; }
  .team-page-lead-body { padding: 32px; }
}
@media (max-width: 640px) {
  .team-page-grid { grid-template-columns: 1fr; }
  .team-page-card { flex-direction: column; gap: 12px; }
  .team-page-lead-body { padding: 24px; }
}

/* ── Team photo cards ── */
.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.team-photo-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}
.team-photo-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.team-photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-photo-card-body {
  padding: 20px 24px 24px;
}
.team-photo-card-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.team-photo-card-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .team-photo-grid { grid-template-columns: 1fr; }
}

/* ── Why Trust Liverguru ── */
/* ── Ajooni NGO strip ── */
.ajooni-strip {
  background: var(--warm-100);
  padding: 64px 24px;
}
.ajooni-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 64px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 48px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 56px;
  align-items: center;
}
.ajooni-strip-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ajooni-strip-logo {
  max-height: 56px;
  max-width: 220px;
  width: auto;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.ajooni-strip-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}
.ajooni-strip-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}
.ajooni-strip-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ajooni-strip-stat {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  color: white;
  line-height: 1.3;
  margin: 0;
}
.ajooni-strip-stat strong { color: var(--accent); }
.ajooni-strip-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}
.ajooni-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
  width: fit-content;
}
.ajooni-strip-cta:hover { gap: 12px; }
@media (max-width: 800px) {
  .ajooni-strip-inner { grid-template-columns: 1fr; gap: 36px; }
  .ajooni-strip-divider { width: 100%; height: 1px; align-self: auto; }
  .ajooni-strip-tagline { max-width: none; }
}

.why-trust-section { background: var(--navy-900); }
.why-trust-header {
  margin-bottom: 40px;
}
.why-trust-header .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.why-trust-header h2 {
  color: white;
  font-size: clamp(28px, 3vw, 40px);
}
.why-trust-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  align-items: stretch;
}
.testimonial-featured {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.testimonial-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
}
.testimonial-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,35,0.97) 0%, rgba(5,15,35,0.75) 50%, rgba(5,15,35,0.45) 100%);
}
.testimonial-featured-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
  flex: 1;
}
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.7;
  user-select: none;
}
.testimonial-featured blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: white;
  font-style: italic;
  margin: 0;
  flex: 1;
}
.testimonial-cite strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.testimonial-cite span {
  font-size: 13px;
  color: var(--navy-100);
}
.testimonial-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.testimonial-read-more:hover { gap: 10px; }
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-small {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-quote-mark-sm {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.6;
  user-select: none;
}
.testimonial-small blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0;
  flex: 1;
}
.testimonial-cite-sm strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: white;
}
.testimonial-cite-sm span {
  font-size: 12px;
  color: var(--navy-100);
}

/* ── Journey Snapshot ── */
:root { --warm-50: #faf8f4; }
.journey-snap-section { background: var(--warm-50); }
.journey-snap-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.journey-snap-header .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.journey-snap-header h2 {
  color: var(--navy-900);
  font-size: clamp(26px, 2.8vw, 36px);
  margin: 0;
}
.journey-snap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.journey-snap-step {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--border);
  margin: -1px;
}
.journey-step-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy-100);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.journey-step-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.journey-step-heading {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
  margin: 0 0 8px;
}
.journey-step-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── Our Workspace ── */
.workspace-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.workspace-photo {
  position: relative;
  min-height: 480px;
}
.workspace-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.workspace-content {
  background: var(--navy-900);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.workspace-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.workspace-content h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  color: white;
  margin: 0;
  line-height: 1.2;
}
.workspace-location-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: -4px;
}
.workspace-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.workspace-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.workspace-pillar {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}
.workspace-pillar i { flex-shrink: 0; margin-top: 1px; color: var(--accent); opacity: 0.8; }

/* ── Responsive: new sections ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card-lead { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .team-card-photo-lead { aspect-ratio: auto; min-height: 320px; }
}
@media (max-width: 880px) {
  .why-trust-grid { grid-template-columns: 1fr; }
  .testimonial-featured-content { padding: 32px; }
  .journey-snap-grid { grid-template-columns: 1fr 1fr; }
  .workspace-feature { grid-template-columns: 1fr; }
  .workspace-photo { min-height: 300px; }
  .workspace-content { padding: 36px 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card-lead { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .team-card-photo-lead { aspect-ratio: auto; min-height: 280px; }
}
@media (max-width: 640px) {
  .journey-snap-grid { grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
  .journey-snap-step { margin: 0; border: none; border-bottom: 1px solid var(--border); border-radius: 0; }
  .journey-snap-step:last-child { border-bottom: none; }
  .workspace-pillars { grid-template-columns: 1fr; }
  .workspace-content { padding: 32px 20px; }
  .team-card-lead { display: block; grid-column: span 2; }
  .team-card-photo-lead { min-height: 280px; aspect-ratio: 4/3; }
  .team-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .stat-number { font-size: 40px; }
  .stats-grid { gap: 24px; }
  .testimonial-featured-content { padding: 24px; }
  .testimonial-featured blockquote { font-size: 18px; }
  .section { padding: 48px 16px; }
  .bento-card { min-height: 200px; }
  .workspace-feature { border-radius: var(--radius-sm); }
}

/* ── Dr. Sahota profile photo ── */
.team-card-photo-lead {
  position: relative;
}
.team-card-photo-lead img {
  object-fit: cover;
  object-position: center top;
}
.team-card-photo-lead::after {
  content: none;
}

/* ── Testimonial btn-secondary on dark bg ── */
.why-trust-section .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.why-trust-section .btn-secondary:hover {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.08);
}

/* ── 3-button Reach Out CTA ── */
.reach-out-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.reach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 1.5px solid transparent;
}
.reach-btn:hover { transform: translateY(-1px); }
.reach-btn-wa {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.reach-btn-wa:hover { background: #1fba59; border-color: #1fba59; }
.reach-btn-email {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.reach-btn-email:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.reach-btn-call {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
}
.reach-btn-call:hover { background: #0d2544; border-color: #0d2544; }

@media (max-width: 560px) {
  .reach-out-buttons { flex-direction: column; align-items: center; }
  .reach-btn { justify-content: center; width: 100%; max-width: 300px; }
}

/* ── Articles frontend ── */
.hl-hero {
  background: var(--navy-900, #0a192f);
  padding: 72px 24px 56px;
  text-align: center;
}
.hl-hero-inner { max-width: 720px; margin: 0 auto; }
.hl-hero-title { font-family: Georgia, serif; font-size: 42px; font-weight: 700; color: white; margin-bottom: 12px; }
.hl-hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); }

.hl-articles-section { padding: 60px 24px 80px; }
.hl-articles-inner { max-width: 1080px; margin: 0 auto; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .article-grid { grid-template-columns: 1fr; } }

.article-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  color: inherit;
}
.article-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }

.article-card-img { aspect-ratio: 16/9; overflow: hidden; background: #f3f4f6; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-img-placeholder { background: linear-gradient(135deg, #0a192f 0%, #1e3a5f 100%); }

.article-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.article-card-date { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 7px; }
.article-card-title { font-size: 16px; font-weight: 700; color: #0a192f; line-height: 1.4; margin-bottom: 8px; }
.article-card-excerpt { font-size: 13.5px; color: #6b7280; line-height: 1.6; flex: 1; margin-bottom: 12px; }
.article-card-link { font-size: 13px; font-weight: 600; color: #c0392b; margin-top: auto; }

/* Single article */
.article-single { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.article-hero { margin: 0 -24px 40px; }
.article-hero img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

.article-single-inner { }
.article-single-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; margin-top: 32px; }
.article-back-link { font-size: 13px; color: #6b7280; display: flex; align-items: center; gap: 4px; transition: color .15s; }
.article-back-link:hover { color: #0a192f; }
.article-date { font-size: 12px; color: #9ca3af; }

.article-single-title { font-family: Georgia, serif; font-size: 36px; font-weight: 700; color: #0a192f; line-height: 1.25; margin-bottom: 14px; }
@media (max-width: 600px) { .article-single-title { font-size: 26px; } }
.article-single-excerpt { font-size: 18px; color: #6b7280; line-height: 1.6; margin-bottom: 32px; border-bottom: 1px solid #e5e7eb; padding-bottom: 28px; }

.article-body { font-size: 16px; line-height: 1.8; color: #374151; }
.article-body p { margin-bottom: 18px; }
.article-body h2 { font-family: Georgia, serif; font-size: 24px; font-weight: 700; color: #0a192f; margin: 36px 0 14px; }
.article-body h3 { font-size: 19px; font-weight: 700; color: #0a192f; margin: 28px 0 10px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { margin-bottom: 6px; }
.article-body img { width: 100%; border-radius: 8px; margin: 24px 0; }
.article-body a { color: #c0392b; text-decoration: underline; }

.article-single-footer { margin-top: 48px; padding-top: 36px; border-top: 1px solid #e5e7eb; text-align: center; }
.article-single-footer .reach-out-heading { margin-bottom: 16px; }

/* ── FAQ page ── */
.faq-filter-bar {
  position: sticky;
  top: 98px;
  z-index: 30;
  background: rgba(252,251,249,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.faq-filter-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.faq-filter-inner::-webkit-scrollbar { display: none; }
.faq-filter-btn {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  background: var(--warm-100);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.faq-filter-btn:hover { background: var(--warm-200); }
.faq-filter-btn.active { background: var(--accent); color: white; border-color: var(--accent); }

.faq-section { margin-bottom: 56px; }
.faq-section-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-900);
  font-family: var(--font-sans);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  color: var(--text-light);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), padding-bottom 0.35s;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

@media (max-width: 640px) {
  .faq-question { font-size: 15px; }
}

/* ── Media page ── */
.media-milestones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.media-milestone-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.media-milestone-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.media-milestone-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.media-milestone-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.media-press-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.media-press-placeholder {
  background: white;
  border: 1px dashed var(--warm-300);
  border-radius: var(--radius-md);
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-press-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.media-recognition-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--warm-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.media-recognition-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.media-recognition-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.media-recognition-sub {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}
.media-recognition-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .media-milestones-grid { grid-template-columns: 1fr; }
  .media-recognition-grid { grid-template-columns: 1fr; }
  .media-milestone-card { padding: 20px; }
}

/* ── Google Reviews badge ── */
.reviews-strip {
  background: var(--warm-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.reviews-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews-stars {
  display: flex;
  gap: 4px;
}
.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: #F59E0B;
  color: #F59E0B;
}
.reviews-rating-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1;
}
.reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-count {
  font-size: 14px;
  color: var(--text-light);
}
.reviews-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
}
.reviews-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.reviews-quotes {
  flex: 1;
  min-width: 200px;
  max-width: 480px;
}
.reviews-quote-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--navy-900);
  line-height: 1.55;
  margin-bottom: 8px;
}
.reviews-quote-author {
  font-size: 13px;
  color: var(--text-light);
}
.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius-xs);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.reviews-cta a:hover { background: var(--accent); color: white; }

@media (max-width: 640px) {
  .reviews-strip-inner { flex-direction: column; align-items: flex-start; }
  .reviews-divider { display: none; }
  .reviews-quotes { max-width: 100%; }
}

/* ── Connect with LiverGuru section ── */
.connect-section { background: var(--navy-900); padding: 80px 24px; }
.connect-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
}
.connect-eyebrow { color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.connect-h2 {
  color: white;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
  line-height: 1.2;
}
.connect-sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  max-width: 420px;
  line-height: 1.65;
  margin: 0;
}
.connect-platform-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cplatform-pill {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-xs);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  width: 100%;
}
.cplatform-pill:hover { opacity: 0.86; transform: translateY(-2px); }
.cplatform-youtube   { background: #FF0000; color: white; }
.cplatform-instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.cplatform-linkedin  { background: #0A66C2; color: white; }
.cplatform-x         { background: #000; border: 1px solid rgba(255,255,255,0.18); color: white; }
.cplatform-wa        { background: #25D366; color: #0a2e1a; }
.cplatform-facebook  { background: #1877F2; color: white; }
.yt-channel-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF0000; color: white;
  font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.yt-channel-btn:hover { background: #cc0000; color: white; }
.connect-yt-cta { display: flex; justify-content: center; margin-top: 40px; }
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yt-card {
  display: block; text-decoration: none;
  border-radius: 8px; overflow: hidden;
  background: rgba(255,255,255,0.06);
  transition: transform 0.2s, background 0.2s;
}
.yt-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); }
.yt-thumb-wrap {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: #000;
}
.yt-thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: opacity 0.2s;
}
.yt-card:hover .yt-thumb-wrap img { opacity: 0.85; }
.yt-play-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.yt-card:hover .yt-play-icon { opacity: 1; }
.yt-play-icon svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }
.yt-card-title {
  padding: 14px 16px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85); line-height: 1.45; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 900px) {
  .connect-top { grid-template-columns: 1fr; gap: 32px; }
  .connect-platform-pills { grid-template-columns: repeat(4, auto); justify-content: start; }
  .yt-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .connect-platform-pills { grid-template-columns: 1fr 1fr; }
  .yt-grid { grid-template-columns: 1fr; }
}

/* ── Homepage: patient review cards ── */
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}
.home-review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-review-card--no-photo { justify-content: center; }
.home-review-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.home-review-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.home-review-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0; }
.home-review-quote { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.85); margin: 0; font-style: italic; }
.home-review-name { font-size: 13px; font-weight: 700; color: white; margin: 0; margin-top: auto; padding-top: 6px; }
@media (max-width: 860px) {
  .home-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-reviews-grid { grid-template-columns: 1fr; }
}

/* ── Patient Stories: reviews section ── */
.ps-reviews { background: var(--warm-100); padding: 80px 24px; }
.ps-reviews-inner { max-width: 1100px; margin: 0 auto; }
.ps-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ps-review-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.ps-review-card--has-photo { flex-direction: row; }
.ps-review-photo {
  width: 140px;
  min-height: 160px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.ps-review-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.ps-review-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 0; }
.ps-review-quote { font-size: 14px; line-height: 1.6; color: var(--text); margin: 0; font-style: italic; }
.ps-review-name { font-size: 13px; font-weight: 700; color: var(--navy-900); margin: 0; margin-top: auto; padding-top: 8px; }
@media (max-width: 700px) {
  .ps-reviews-grid { grid-template-columns: 1fr; }
  .ps-review-card--has-photo { flex-direction: column; }
  .ps-review-photo { width: 100%; min-height: 180px; }
}

/* ── Articles (blog) listing ── */
.articles-hero { background: var(--navy-900); padding: 80px 24px 64px; text-align: center; }
.articles-hero-inner { max-width: 640px; margin: 0 auto; }
.articles-hero .eyebrow { color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.articles-hero h1 { color: white; font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.articles-hero-lede { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.65; }
.articles-list { padding: 64px 24px; background: var(--bg); }
.articles-list-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.article-post-card {
  display: flex;
  gap: 28px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
  align-items: flex-start;
  transition: opacity 0.15s;
}
.article-post-card:hover { opacity: 0.85; }
.article-post-card:last-child { border-bottom: none; padding-bottom: 0; }
.article-post-cover {
  width: 180px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.article-post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-post-body { flex: 1; min-width: 0; }
.article-post-meta { font-size: 12px; color: var(--text-light); margin: 0 0 8px; }
.article-post-title { font-size: 20px; font-weight: 700; color: var(--navy-900); margin: 0 0 10px; line-height: 1.35; font-family: var(--font-serif); }
.article-post-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0 0 14px; }
.article-post-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--accent); }
.articles-empty { text-align: center; padding: 80px 0; color: var(--text-light); font-size: 15px; }
@media (max-width: 560px) {
  .article-post-card { flex-direction: column; }
  .article-post-cover { width: 100%; }
}

/* ── About: patient testimonials grid ── */
.about-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.about-testimonial-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.about-testimonial-quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin: 0;
  padding: 0 20px;
}
.about-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  padding: 0 20px 18px;
}
.about-testimonial-name span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .about-testimonials-grid { grid-template-columns: 1fr; }
}

/* Health Library — Related Conditions */
.hl-related { padding: 40px 0; border-top: 1px solid var(--border); background: var(--warm-50, #faf9f7); }
.hl-related-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.hl-related-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hl-related-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--navy-900); text-decoration: none; background: #fff; transition: border-color 0.18s, color 0.18s; }
.hl-related-pill:hover { border-color: var(--accent); color: var(--accent); }
