:root {
  --navy: #0d1f35;
  --navy-mid: #162d47;
  --navy-light: #1e3d5c;
  --teal: #2a7f7f;
  --teal-light: #3a9e9e;
  --warm: #c8a97a;
  --warm-light: #e8d5b5;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --text-dark: #0d1f35;
  --text-mid: #4a5f72;
  --text-light: #7a8fa0;
  --white: #ffffff;
  --border: rgba(13,31,53,0.1);
  --border-warm: rgba(200,169,122,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── PAGE SYSTEM ── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 2px solid var(--teal);
  padding: 0 48px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 16px; height: 16px; }
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-logo-text span { color: var(--teal-light); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.nav-links li a:hover { color: var(--navy); background: rgba(42,127,127,0.08); }
.nav-links li a.active { color: var(--teal); }

.nav-cta {
  padding: 9px 20px;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 3px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-circles::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42,127,127,0.12) 0%, transparent 70%);
}
.hero-bg-circles::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 200px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,169,122,0.07) 0%, transparent 70%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(42,127,127,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,127,127,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-left {
  padding: 80px 64px 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--teal-light);
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--warm);
}
.hero-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-primary {
  padding: 14px 28px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-outline {
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }


.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 64px 80px 40px;
  position: relative; z-index: 2;
}
.hero-card-stack { position: relative; width: 100%; max-width: 360px; }
.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(42,127,127,0.2);
  border-radius: 8px;
  padding: 28px;
  position: relative;
}
.hero-card + .hero-card {
  margin-top: 12px;
}
.hero-card-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 10px;
}
.hero-card-title {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-card-body {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.hero-card-accent {
  position: absolute; top: 28px; right: 28px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}

/* ── SECTION SHARED ── */
.section { padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--teal); }
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300; line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-headline em { font-style: italic; color: var(--teal); }
.section-sub {
  font-size: 15px; line-height: 1.8;
  color: var(--text-mid); font-weight: 300;
  max-width: 560px;
}

/* ── HOME: SERVICES STRIP ── */
.services-strip {
  background: var(--navy);
  padding: 80px 0;
}
.services-strip .section-inner { }
.services-strip .section-headline { color: var(--white); }
.services-strip .section-label { color: var(--teal-light); }
.services-strip .section-label::before { background: var(--teal-light); }
.services-strip .section-sub { color: rgba(255,255,255,0.5); max-width: 500px; margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--navy-mid);
  padding: 36px;
  border: 1px solid rgba(42,127,127,0.12);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.service-card:hover {
  background: var(--navy-light);
  border-color: rgba(42,127,127,0.3);
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(42,127,127,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--teal-light); }
.service-name {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ── HOME: ABOUT STRIP ── */
.about-strip { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px;
  color: var(--white);
}
.about-visual-quote {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  line-height: 1.5;
  color: var(--warm-light);
  margin-bottom: 24px;
}
.about-visual-attr {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-light);
}
.about-visual-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--teal);
  border-radius: 4px;
  opacity: 0.15;
}
.about-content .section-sub { margin-bottom: 32px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; }
.about-pillar {
  display: flex; gap: 16px; align-items: flex-start;
}
.about-pillar-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  margin-top: 6px; flex-shrink: 0;
}
.about-pillar-text strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 3px;
}
.about-pillar-text span {
  font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.6;
}

/* ── HOME: TEAM PREVIEW ── */
.team-strip { background: var(--cream-dark); }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(13,31,53,0.1); }
.team-card-photo {
  height: 300px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.team-card-photo-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.team-card-initials {
  position: relative; z-index: 2;
  font-family: 'Fraunces', serif;
  font-size: 48px; font-weight: 300;
  color: rgba(255,255,255,0.2);
}
.team-card-teal-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
}
.team-card-body { padding: 24px; }
.team-card-name {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 400;
  color: var(--text-dark); margin-bottom: 4px;
}
.team-card-role {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
}
.team-card-desc {
  font-size: 13px; line-height: 1.7;
  color: var(--text-mid); font-weight: 300;
}

/* ── HOME: CTA STRIP ── */
.cta-strip {
  background: var(--teal);
  padding: 80px 0;
}
.cta-strip .section-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.cta-strip-headline {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 300;
  color: var(--white); line-height: 1.2;
}
.cta-strip-headline em { font-style: italic; color: var(--warm-light); }
.cta-strip-body {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.7); font-weight: 300;
  max-width: 380px;
}
.cta-strip-actions { display: flex; gap: 14px; flex-shrink: 0; }
.btn-white {
  padding: 14px 28px;
  background: var(--white);
  color: var(--teal);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-white:hover { opacity: 0.9; }
.btn-outline-white {
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border-radius: 3px;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 64px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400; color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,0.4); font-weight: 300;
  max-width: 240px;
}
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; font-weight: 300;
  transition: color 0.2s; cursor: pointer;
}
.footer-links li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.2); max-width: 400px; text-align: right; line-height: 1.5; }

/* ── ABOUT PAGE ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42,127,127,0.1) 0%, transparent 70%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 64px; position: relative; z-index: 2; }
.page-hero-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 20px;
}
.page-hero-label::before { content: ''; width: 20px; height: 1px; background: var(--teal-light); }
.page-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 300;
  color: var(--white); line-height: 1.1;
}
.page-hero-title em { font-style: italic; color: var(--warm); }
.page-hero-sub {
  font-size: 16px; line-height: 1.8; font-weight: 300;
  color: rgba(255,255,255,0.5); max-width: 580px; margin-top: 20px;
}

.team-full { background: var(--cream); padding: 100px 0; }
.team-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; margin-top: 56px;
}
.team-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.team-full-photo {
  height: 320px;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.team-full-photo-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
}
.team-full-initials {
  position: relative; z-index: 2;
  font-family: 'Fraunces', serif;
  font-size: 64px; font-weight: 300;
  color: rgba(255,255,255,0.15);
}
.team-full-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--teal); }
.team-full-body { padding: 28px; }
.team-full-name {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 400; color: var(--text-dark); margin-bottom: 4px;
}
.team-full-role {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.team-full-bio {
  font-size: 13px; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-bottom: 20px;
}
.team-full-quals {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.qual-tag {
  padding: 4px 10px;
  background: rgba(42,127,127,0.08);
  color: var(--teal);
  border: 1px solid rgba(42,127,127,0.2);
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  border-radius: 2px;
}

.values-strip { background: var(--cream-dark); padding: 100px 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
}
.value-card {
  background: var(--white); padding: 40px 32px;
  border: 1px solid var(--border);
}
.value-num {
  font-family: 'Fraunces', serif;
  font-size: 48px; font-weight: 300;
  color: var(--warm-light); line-height: 1; margin-bottom: 16px;
}
.value-name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400; color: var(--text-dark); margin-bottom: 10px;
}
.value-desc { font-size: 13px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

/* ── SERVICES PAGE ── */
.services-list { background: var(--cream); padding: 100px 0; }
.service-row {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px; align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:first-child { padding-top: 0; }
.service-row-num {
  font-family: 'Fraunces', serif;
  font-size: 64px; font-weight: 300;
  color: var(--cream-dark); line-height: 1;
}
.service-row-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.service-row-name {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 400; color: var(--text-dark); margin-bottom: 16px;
}
.service-row-desc {
  font-size: 14px; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 20px;
}
.service-row-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.service-row-list li {
  font-size: 13px; color: var(--text-mid); font-weight: 400;
  padding-left: 16px; position: relative;
}
.service-row-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--teal);
}

/* ── FOR PATIENTS PAGE ── */
.patients-intro { background: var(--cream); padding: 100px 0; }
.patients-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.patients-faq { margin-top: 56px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 15px; font-weight: 500; color: var(--text-dark); margin-bottom: 10px;
  cursor: pointer;
}
.faq-a { font-size: 14px; line-height: 1.8; color: var(--text-mid); font-weight: 300; }

.patients-cards { display: flex; flex-direction: column; gap: 20px; }
.patients-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 28px;
  border-left: 3px solid var(--teal);
}
.patients-card-title {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 400; color: var(--text-dark); margin-bottom: 8px;
}
.patients-card-text { font-size: 13px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

/* ── REFERRERS PAGE ── */
.referrers-intro { background: var(--cream); padding: 100px 0; }
.referrers-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start;
}
.referral-box {
  background: var(--navy);
  border-radius: 8px; padding: 48px;
  color: var(--white);
}
.referral-box-title {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 12px;
}
.referral-box-sub { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 32px; }
.referral-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.referral-step { display: flex; gap: 16px; align-items: flex-start; }
.referral-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--white);
  flex-shrink: 0; margin-top: 1px;
}
.referral-step-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.referral-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.6; }
.conditions-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.condition-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; font-size: 13px; color: var(--text-dark); font-weight: 400;
}
.condition-item::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}

/* ── CONTACT PAGE ── */
.contact-section { background: var(--cream); padding: 100px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px;
}
.contact-info-block { margin-bottom: 36px; }
.contact-info-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.contact-info-val { font-size: 15px; color: var(--text-dark); font-weight: 400; line-height: 1.6; }
.contact-info-val a { color: var(--teal); text-decoration: none; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 40px; }
.contact-form-title {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 400; color: var(--text-dark); margin-bottom: 4px;
}
.contact-form-sub { font-size: 13px; color: var(--text-mid); font-weight: 300; margin-bottom: 28px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--teal);
}
.form-row textarea { height: 100px; resize: vertical; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: var(--white);
  border: none; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--teal-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.2s; }
.hero-body { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */


/* ── UPGRADE PACK: MOBILE NAV, ACCESSIBILITY, SEO LANDING BLOCKS ── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(58,158,158,0.55);
  outline-offset: 3px;
}
.skip-link {
  position: fixed; top: -80px; left: 16px; z-index: 1000;
  background: var(--white); color: var(--navy); padding: 10px 14px;
  border-radius: 4px; box-shadow: 0 8px 24px rgba(13,31,53,0.18);
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
.mobile-menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid rgba(13,31,53,0.25);
  border-radius: 4px; background: transparent; color: var(--navy); cursor: pointer;
  align-items: center; justify-content: center;
}
.mobile-menu-toggle span, .mobile-menu-toggle span::before, .mobile-menu-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; position: relative;
}
.mobile-menu-toggle span::before { position: absolute; top: -6px; }
.mobile-menu-toggle span::after { position: absolute; top: 6px; }
.mobile-menu-toggle[aria-expanded="true"] span { background: transparent; }
.mobile-menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
/* mobile menu — see #mobile-menu */
.mobile-action-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 98;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.mobile-action-bar a {
  flex: 1; text-align: center; text-decoration: none; border-radius: 4px;
  padding: 12px 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.mobile-action-bar .call { background: var(--white); color: var(--teal); }
.mobile-action-bar .refer { background: var(--teal); color: var(--white); }
.trust-strip {
  background: var(--cream-dark); border-bottom: 1px solid var(--border); border-top: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.trust-item { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.trust-item strong { display: block; color: var(--text-dark); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.quick-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.quick-link-card { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--teal); padding: 24px; border-radius: 6px; }
.quick-link-card h3 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 400; margin-bottom: 8px; }
.quick-link-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.checklist-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; margin-top: 36px; }
.checklist-card h3, .access-card h3, .privacy-card h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400; margin-bottom: 14px; }
.checklist-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 22px; margin-top: 18px; }
.checklist-grid li { list-style: none; position: relative; padding-left: 22px; font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.checklist-grid li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.referral-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 22px; }
.referral-actions a { text-align: center; }
.condition-landing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 46px; }
.condition-landing-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 26px; }
.condition-landing-card h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.condition-landing-card p { font-size: 13px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.access-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.access-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 26px; }
.access-card p { font-size: 13px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.map-placeholder { margin-top: 30px; background: var(--navy); border-radius: 8px; padding: 34px; color: var(--white); }
.map-placeholder p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.7; margin-top: 8px; }
.legal-section { background: var(--cream); padding: 100px 0; }
.privacy-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 34px; margin-bottom: 22px; }
.privacy-card p, .privacy-card li { font-size: 14px; line-height: 1.8; color: var(--text-mid); font-weight: 300; }
.privacy-card ul { margin: 14px 0 0 18px; }
.page.active { animation: fadeUp 0.25s ease both; }
@media (max-width: 1024px) {
  .trust-strip-inner { padding: 0 32px; grid-template-columns: repeat(2,1fr); }
  .quick-links-grid, .access-grid { grid-template-columns: 1fr; }
  .condition-landing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { padding-bottom: 74px; }
  .mobile-menu-toggle { display: flex; }
  .mobile-action-bar { display: flex; }
  .nav-logo-text { font-size: 15px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .referral-actions { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .page-hero { padding: 120px 0 64px; }
}

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .section-inner, .footer-inner, .page-hero-inner { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 32px; }
  .about-grid, .patients-grid, .referrers-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .team-grid, .team-full-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-strip .section-inner { flex-direction: column; }
  .service-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .services-grid, .team-grid, .team-full-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row-2col { grid-template-columns: 1fr; }
  .cta-strip-actions { flex-direction: column; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* ── MOBILE NAV DRAWER ── */
#mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-nav-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 32px;
}
.mobile-nav-links li a {
  display: block;
  padding: 14px 16px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  background: rgba(42,127,127,0.15);
  color: var(--white);
}
.mobile-nav-cta {
  display: block;
  padding: 16px;
  background: var(--teal);
  color: var(--white) !important;
  text-align: center;
  border-radius: 4px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.mobile-nav-cta:hover { background: var(--teal-light) !important; }
.mobile-nav-contact {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav-contact a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; font-weight: 300;
}
.mobile-nav-contact a:hover { color: var(--white); }

/* ── Related internal links ── */
.related { padding: 76px 0; background: var(--cream-dark); border-top: 1px solid var(--border); }
.related .section-label { margin-bottom: 34px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(13,31,53,0.08); border-color: var(--teal); }
.related-card .rc-eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.related-card .rc-title { font-family: 'Fraunces', serif; font-size: 21px; color: var(--navy); margin: 10px 0 8px; line-height: 1.25; }
.related-card .rc-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.55; }
.related-card .rc-arrow { color: var(--teal); font-weight: 600; font-size: 14px; margin-top: 16px; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } .related { padding: 56px 0; } }

/* Conditions index (Services page) */
.conditions-cols { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.conditions-cols ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.conditions-cols a { color:var(--navy); text-decoration:none; font-size:15.5px; line-height:1.4; }
.conditions-cols a:hover { color:var(--teal); }
.conditions-group-label { font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--teal); font-weight:600; margin-bottom:16px; }
@media (max-width:760px){ .conditions-cols { grid-template-columns:1fr; gap:32px; } }
