:root {
  --ink: #172535;
  --ink-soft: #536273;
  --forest-950: #0b2540;
  --forest-900: #123451;
  --forest-800: #174563;
  --forest-700: #17635f;
  --forest-600: #3f7a73;
  --sage-200: #dde8e7;
  --sage-100: #eef4f3;
  --sage-50: #f5f8f8;
  --gold-600: #9a661c;
  --gold-500: #c99a47;
  --gold-300: #e3c27f;
  --ivory: #f8f5ee;
  --ivory-2: #efe9dd;
  --white: #ffffff;
  --line: #d9e0e4;
  --line-dark: rgba(255,255,255,.16);
  --danger: #8a3029;
  --success: #216c50;
  --shadow-xs: 0 2px 10px rgba(11,37,64,.05);
  --shadow-sm: 0 12px 32px rgba(11,37,64,.09);
  --shadow-md: 0 22px 56px rgba(11,37,64,.13);
  --shadow-lg: 0 34px 90px rgba(11,37,64,.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--forest-700); text-underline-offset: 3px; }
a:hover { color: var(--forest-900); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }
::selection { background: var(--gold-300); color: var(--forest-950); }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--forest-950);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,244,236,.96);
  border-bottom: 1px solid rgba(11,37,64,.11);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(11,37,64,.10); background: rgba(255,255,255,.97); }
.utility {
  min-height: 36px;
  padding: 7px max(18px, calc((100vw - var(--content)) / 2));
  background: var(--forest-950);
  color: rgba(255,255,255,.84);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.utility > span:first-child { font-weight: 900; color: #fff; }
.utility-proof { color: var(--gold-300); font-weight: 800; }
.utility-spacer { flex: 1; }
.utility a { color: #fff; text-decoration: none; font-weight: 800; }
.utility a:hover { color: var(--gold-300); }
.utility-region-link { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.18); }
.nav {
  max-width: calc(var(--content) + 40px);
  min-height: 84px;
  margin: 0 auto;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--forest-950);
  text-decoration: none;
}
.brand-mark { width: 58px; height: 58px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--serif); font-size: 25px; letter-spacing: -.025em; }
.brand small { margin-top: 7px; color: var(--forest-600); font-size: 9px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.desktop-links { display: none; align-items: center; gap: 18px; margin-left: auto; }
.desktop-links a { position: relative; color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.desktop-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold-500); transition: right .2s ease; }
.desktop-links a:hover::after, .desktop-links a.active::after { right: 0; }
.desktop-links a.active { color: var(--forest-900); }
.nav-actions { display: none; gap: 8px; align-items: center; }
.nav-call {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--forest-950);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.nav-call:hover { background: var(--forest-700); color: #fff; }
.nav-call-light { background: transparent; color: var(--forest-950); border: 1px solid rgba(11,37,64,.2); }
.nav-call-light:hover { background: var(--sage-100); color: var(--forest-950); }
.menu-button {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11,37,64,.18);
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-button span { width: 19px; height: 2px; border-radius: 2px; background: var(--forest-950); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 121px 0 0;
  z-index: 999;
  padding: 18px;
  overflow-y: auto;
  background: rgba(247,244,236,.99);
}
.mobile-menu.open { display: grid; align-content: start; gap: 8px; }
.mobile-menu a { padding: 13px 14px; border: 1px solid rgba(11,37,64,.12); border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-weight: 800; text-decoration: none; }
.mobile-menu .mobile-cta { margin-top: 6px; background: var(--forest-950); color: #fff; text-align: center; }
.mobile-menu .mobile-cta-secondary { background: var(--gold-500); color: var(--forest-950); }
.mobile-menu .utility-region-link { border-left: 0; }

/* Type and shared layout */
h1, h2, h3, h4 { margin: 0; color: var(--forest-950); letter-spacing: -.018em; }
h1, h2 { font-family: var(--serif); }
h1 { font-size: clamp(43px, 6.2vw, 78px); line-height: .98; }
h2 { font-size: clamp(34px, 4.2vw, 54px); line-height: 1.02; }
h3 { font-size: clamp(21px, 2.2vw, 28px); line-height: 1.16; }
p { margin: 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 30px; height: 2px; margin: 0 10px 3px 0; background: currentColor; }
.eyebrow.dark { color: var(--forest-700); }
.hero-text, .section-head > p:not(.eyebrow), .feature-split > div > p, .article p { color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 20px); }
.section-head { max-width: 790px; margin: 0 0 34px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 + p { margin-top: 16px; }
.section-head .eyebrow { margin-bottom: 14px; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--forest-950); color: #fff; box-shadow: 0 10px 24px rgba(11,37,64,.14); }
.btn-primary:hover { background: var(--forest-700); color: #fff; box-shadow: 0 14px 30px rgba(11,37,64,.2); }
.btn-secondary { background: #fff; color: var(--forest-950); border-color: rgba(11,37,64,.19); }
.btn-secondary:hover { background: var(--sage-100); color: var(--forest-950); }
.btn-gold { background: var(--gold-500); color: var(--forest-950); }
.btn-gold:hover { background: var(--gold-300); color: var(--forest-950); }
.btn-call { background: var(--sage-100); color: var(--forest-950); border-color: rgba(11,37,64,.12); }

/* Homepage hero */
.home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(201,154,71,.12), transparent 26%),
    linear-gradient(112deg, #fbf9f4 0%, #f8f5ee 56%, #eef2f5 100%);
}
.home-hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -250px;
  top: -190px;
  border: 58px solid rgba(201,154,71,.12);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}
.home-hero-shell {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  min-height: 700px;
  margin: 0 auto;
  padding: 78px 20px 64px;
  display: grid;
  gap: 34px;
  align-items: center;
}
.home-hero-copy { max-width: 720px; }
.home-hero .eyebrow { color: var(--gold-300); }
.home-hero h1 { color: #fff; max-width: 720px; }
.home-hero h1 em { color: var(--gold-300); font-style: normal; }
.home-hero-copy > p:not(.eyebrow) { max-width: 680px; margin-top: 22px; color: rgba(255,255,255,.78); font-size: clamp(18px, 1.7vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.home-hero .btn-primary { background: var(--gold-500); color: var(--forest-950); }
.home-hero .btn-primary:hover { background: var(--gold-300); color: var(--forest-950); }
.home-hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.07); }
.home-hero .btn-secondary:hover { background: rgba(255,255,255,.13); color: #fff; }
.hero-proof-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.hero-proof-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof-row span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,154,71,.13); }
.hero-pathway {
  position: relative;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.hero-pathway-inner { padding: 27px; border-radius: 22px; background: #f8f5ed; color: var(--ink); }
.hero-pathway-header { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.hero-pathway-header img { width: 58px; height: 58px; object-fit: contain; }
.hero-pathway-header strong { display: block; font-family: var(--serif); color: var(--forest-950); font-size: 25px; line-height: 1; }
.hero-pathway-header span { display: block; margin-top: 5px; color: var(--forest-600); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.pathway-label { margin-bottom: 10px; color: var(--ink-soft); font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.pathway-card { display: block; position: relative; padding: 19px 48px 19px 18px; border: 1px solid rgba(11,37,64,.12); border-radius: var(--radius-md); background: #fff; color: var(--ink); text-decoration: none; box-shadow: var(--shadow-xs); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.pathway-card + .pathway-card { margin-top: 10px; }
.pathway-card:hover { transform: translateY(-2px); border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.pathway-card strong { display: block; color: var(--forest-950); font-size: 17px; }
.pathway-card span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.pathway-card::after { content: "→"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--gold-600); font-size: 24px; }
.pathway-card.patient { border-left: 4px solid var(--gold-500); }
.pathway-card.professional { border-left: 4px solid var(--forest-600); }
.pathway-contact { margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--ink-soft); font-size: 12px; }
.pathway-contact a { color: var(--forest-950); font-weight: 900; text-decoration: none; }

.trust-ribbon { background: #fff; border-bottom: 1px solid var(--line); }
.trust-ribbon-inner { max-width: var(--content); margin: 0 auto; padding: 18px 20px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.trust-ribbon span { min-height: 45px; display: flex; align-items: center; gap: 9px; color: var(--forest-950); font-size: 12px; font-weight: 900; }
.trust-ribbon span::before { content: ""; width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--gold-500); }

/* General page hero */
.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 66px 20px;
  display: grid;
  gap: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(201,154,71,.16), transparent 28%),
    linear-gradient(145deg, var(--sage-50), var(--ivory) 66%);
  border-bottom: 1px solid rgba(11,37,64,.1);
}
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -170px; top: -160px; border: 42px solid rgba(11,37,64,.055); border-radius: 50%; }
.hero > * { position: relative; z-index: 1; }
.hero-copy, .hero-panel, .hero-visual { width: 100%; max-width: 760px; margin: 0 auto; }
.hero-copy { padding: 0; background: none; border: 0; box-shadow: none; border-radius: 0; }
.hero-copy::after { display: none; }
.hero-copy h1 { max-width: 800px; }
.hero-text { margin-top: 20px; max-width: 690px; }
.hero-panel {
  padding: 27px;
  border: 1px solid rgba(11,37,64,.13);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-md);
}
.hero-panel h2 { font-family: var(--serif); font-size: clamp(29px, 3.5vw, 40px); }
.hero-panel > p:not(.panel-kicker) { margin-top: 13px; color: var(--ink-soft); }
.hero-visual { padding: 10px; border: 1px solid rgba(11,37,64,.13); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-md); }
.hero-visual img { width: 100%; border-radius: 21px; }
.panel-wordmark { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.panel-wordmark img { width: 58px; height: 58px; object-fit: contain; }
.panel-wordmark span { display: grid; line-height: 1; }
.panel-wordmark strong { font-family: var(--serif); color: var(--forest-950); font-size: 27px; }
.panel-wordmark small { margin-top: 5px; color: var(--forest-600); font-size: 9px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.panel-kicker { margin-bottom: 9px; color: var(--gold-600); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.intake-steps, .contact-steps { display: grid; gap: 8px; margin-top: 18px; }
.intake-steps div, .contact-steps div { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.intake-steps strong, .contact-steps strong { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-950); color: #fff; font-size: 12px; }
.intake-steps span, .contact-steps span { color: var(--ink); font-size: 13px; font-weight: 800; }
.local-proof { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.local-proof span { padding: 6px 9px; border-radius: 999px; background: var(--sage-100); color: var(--forest-900); font-size: 11px; font-weight: 800; }
.panel-actions { display: grid; gap: 9px; margin-top: 18px; }

/* Sections */
.band { padding: 72px 20px; background: #fff; }
.band.soft { background: var(--sage-50); }
.band.warm { background: var(--ivory); }
.band.dark-band { background: var(--forest-950); color: #fff; }
.band.compact-band { padding-top: 48px; padding-bottom: 48px; }
.band > *, .feature-split > *, .notice > *, .cta > * { max-width: var(--content); margin-left: auto; margin-right: auto; }
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band .section-head > p { color: rgba(255,255,255,.72); }
.platform-band { background: #fff; }
.platform-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.platform-grid .card { min-height: 240px; }

.card-grid { max-width: var(--content); display: grid; grid-template-columns: 1fr; gap: 14px; align-items: stretch; }
.card-grid.two, .card-grid.three, .card-grid.four { grid-template-columns: 1fr; }
.card {
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(11,37,64,.12);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(201,154,71,.55); box-shadow: var(--shadow-sm); }
.card h3 { font-size: 23px; }
.card p { margin-top: 11px; color: var(--ink-soft); }
.card a { margin-top: auto; padding-top: 18px; color: var(--forest-800); font-weight: 900; text-decoration: none; }
.card a::after { content: " →"; color: var(--gold-600); }
.card-icon { width: 42px; height: 42px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-100); color: var(--forest-900); font-size: 19px; font-weight: 900; }

.service-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.service-card { position: relative; min-height: 270px; overflow: hidden; padding: 27px; border: 1px solid rgba(11,37,64,.12); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-xs); }
.service-card::before { content: attr(data-index); position: absolute; right: 18px; top: 13px; color: rgba(11,37,64,.08); font-family: var(--serif); font-size: 64px; font-weight: 800; line-height: 1; }
.service-card h3 { position: relative; max-width: 80%; }
.service-card p { position: relative; margin-top: 13px; color: var(--ink-soft); }
.service-card a { position: relative; display: inline-flex; margin-top: 20px; color: var(--forest-800); font-weight: 900; text-decoration: none; }
.service-card a::after { content: "→"; margin-left: 8px; color: var(--gold-600); }

/* Audience / pathway */
.audience-band { padding: 72px 20px; background: var(--ivory); border-top: 1px solid rgba(11,37,64,.08); border-bottom: 1px solid rgba(11,37,64,.08); }
.audience-band > * { max-width: var(--content); margin-left: auto; margin-right: auto; }
.audience-head { max-width: 780px; margin-bottom: 30px; }
.audience-grid { display: grid; gap: 15px; }
.audience-card { min-height: 100%; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(11,37,64,.13); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.audience-card h3 { font-family: var(--serif); font-size: clamp(29px,3.2vw,42px); }
.audience-card > p:not(.audience-label) { margin-top: 13px; color: var(--ink-soft); }
.audience-label { margin: 0 0 13px; color: var(--gold-600); font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.audience-card ul { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 9px; }
.audience-card li { position: relative; padding-left: 22px; color: var(--forest-900); font-weight: 800; }
.audience-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }
.audience-card .btn { margin-top: auto; }
.patient-card { background: linear-gradient(160deg,#fff 0%,#fbf6ea 100%); }
.referral-card { background: linear-gradient(160deg,#fff 0%,#edf6f2 100%); }
.care-path-strip { margin-top: 14px; display: grid; gap: 8px; }
.care-path-strip span { min-height: 48px; display: flex; align-items: center; justify-content: center; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--forest-950); font-size: 12px; font-weight: 900; text-align: center; }

/* Trust / proof sections */
.trust-band { padding: 72px 20px; background: var(--forest-950); color: #fff; }
.trust-shell { max-width: var(--content); margin: 0 auto; display: grid; gap: 30px; align-items: center; }
.trust-copy h2 { color: #fff; }
.trust-copy p { margin-top: 17px; color: rgba(255,255,255,.72); font-size: 18px; }
.trust-stats { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.trust-stats article { min-height: 120px; padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.trust-stats strong { display: block; color: var(--gold-300); font-family: var(--serif); font-size: 31px; line-height: 1; }
.trust-stats span { display: block; margin-top: 8px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; }
.priority-strip { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: 8px; }
.priority-strip span { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); font-size: 11px; font-weight: 800; }
.proof-band { padding: 38px 20px; background: var(--sage-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { max-width: var(--content); margin: 0 auto; display: grid; gap: 10px; }
.proof-grid article { padding: 19px; border-left: 3px solid var(--gold-500); background: #fff; }
.proof-grid strong { display: block; color: var(--forest-950); }
.proof-grid span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 13px; }

/* Visuals and maps */
.visual-showcase { padding: 62px 20px; background: #fff; }
.visual-showcase > * { max-width: var(--content); margin-left: auto; margin-right: auto; }
.visual-showcase__head { max-width: 770px; margin-bottom: 24px; }
.visual-showcase__head h2 + p { margin-top: 14px; color: var(--ink-soft); font-size: 18px; }
.visual-showcase__figure { margin: 0 auto; padding: 9px; border: 1px solid rgba(11,37,64,.12); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.visual-showcase__scroller { overflow: auto; border-radius: var(--radius-md); }
.visual-showcase__figure img { width: 100%; min-width: 760px; border-radius: var(--radius-md); }
.visual-showcase__figure-wide { max-width: 1280px; }
.map-layout { max-width: var(--content); display: grid; gap: 28px; align-items: center; }
.map-frame { overflow: hidden; border: 1px solid rgba(11,37,64,.12); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.map-frame img { width: 100%; }
.map-frame iframe { display: block; width: 100%; min-height: 380px; border: 0; }
.map-frame > a { display: block; padding: 12px 15px; background: var(--sage-50); color: var(--forest-900); font-weight: 900; text-decoration: none; }
.map-copy h3 { font-family: var(--serif); font-size: clamp(31px,3.6vw,48px); }
.map-copy > p:not(.eyebrow) { margin-top: 14px; color: var(--ink-soft); font-size: 18px; }
.map-cards { margin-top: 20px; }
.map-footnote { margin-top: 15px !important; color: var(--forest-900) !important; font-weight: 800; }
.map-chip-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; padding: 10px; border-top: 1px solid var(--line); background: var(--sage-50); }
.map-chip-row span { min-height: 42px; display: grid; place-items: center; padding: 7px; border-radius: var(--radius-sm); background: #fff; color: var(--forest-950); font-size: 11px; font-weight: 900; text-align: center; }
.location-cloud { max-width: var(--content); display: flex; flex-wrap: wrap; gap: 8px; }
.location-cloud a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--forest-900); font-size: 12px; font-weight: 800; text-decoration: none; }
.location-cloud a:hover { border-color: var(--gold-500); }
.location-cloud.large a { font-size: 14px; }
.coverage-columns { display: grid; gap: 18px; }
.coverage-panel { padding: 27px; border: 1px solid rgba(11,37,64,.13); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.coverage-panel h3 { font-family: var(--serif); font-size: 32px; }
.coverage-panel > p { margin-top: 10px; color: var(--ink-soft); }
.coverage-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.coverage-list a { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--forest-950); font-weight: 900; text-decoration: none; }
.coverage-list a::after { content: "→"; color: var(--gold-600); }
.coverage-list li:last-child a { border-bottom: 0; }
.region-network { display: grid; gap: 12px; }
.region-card { padding: 24px; border: 1px solid rgba(11,37,64,.13); border-radius: var(--radius-md); background: #fff; text-decoration: none; color: var(--ink); }
.region-card strong { display: block; color: var(--forest-950); font-family: var(--serif); font-size: 26px; }
.region-card span { display: block; margin-top: 7px; color: var(--ink-soft); }
.region-card em { display: inline-block; margin-top: 14px; color: var(--forest-700); font-style: normal; font-weight: 900; }

/* Feature layouts */
.feature-split { padding: 72px 20px; display: grid; gap: 26px; background: #fff; }
.feature-split h2 { max-width: 760px; }
.feature-split > div > p { margin-top: 16px; max-width: 760px; }
.feature-split aside { padding: 27px; border: 1px solid rgba(11,37,64,.13); border-top: 5px solid var(--gold-500); border-radius: var(--radius-md); background: var(--sage-50); box-shadow: var(--shadow-sm); }
.feature-split aside h3 { margin-bottom: 14px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 23px; color: var(--ink-soft); font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--forest-700); font-weight: 900; }
.care-setting-grid { max-width: var(--content); display: grid; gap: 9px; }
.care-setting-grid a { min-height: 50px; display: flex; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--forest-950); font-weight: 900; text-decoration: none; }
.care-setting-grid a:hover { border-color: var(--gold-500); }

/* Forms */
.form-page-intro { max-width: var(--content); margin: 0 auto; padding: 34px 20px 0; }
.form-path-label { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; background: var(--sage-100); color: var(--forest-900); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.form-shell { max-width: 1000px; margin: 0 auto; padding: 29px; border: 1px solid rgba(11,37,64,.13); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.gateway-form { display: grid; gap: 22px; }
.gateway-form fieldset { margin: 0; padding: 0; border: 0; }
.gateway-form legend { width: 100%; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-family: var(--serif); color: var(--forest-950); font-size: 26px; font-weight: 700; }
.form-grid { display: grid; gap: 14px; }
.gateway-form label { display: grid; gap: 7px; color: var(--forest-950); font-size: 13px; font-weight: 900; }
.gateway-form label > span { display: flex; justify-content: space-between; gap: 8px; }
.gateway-form label small { color: var(--ink-soft); font-size: 11px; font-weight: 600; }
.gateway-form input, .gateway-form select, .gateway-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid #c8d3cf;
  border-radius: var(--radius-sm);
  background: #fcfdfc;
  color: var(--ink);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.gateway-form textarea { min-height: 125px; resize: vertical; }
.gateway-form input:focus, .gateway-form select:focus, .gateway-form textarea:focus { border-color: var(--forest-600); background: #fff; box-shadow: 0 0 0 4px rgba(36,115,107,.12); }
.gateway-form input[aria-invalid="true"], .gateway-form select[aria-invalid="true"] { border-color: var(--danger); }
.full-field { grid-column: 1/-1; }
.check-field { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; color: var(--ink-soft) !important; font-weight: 700 !important; }
.check-field input { width: 18px; min-height: 18px; margin-top: 3px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.form-submit { min-width: 225px; border: 0; cursor: pointer; }
.form-submit[disabled] { opacity: .65; cursor: wait; }
.form-help { color: var(--ink-soft); font-size: 12px; }
.form-notice-box { padding: 17px; border-left: 4px solid var(--gold-500); border-radius: var(--radius-sm); background: #fbf7ed; color: var(--ink-soft); font-size: 13px; }
.form-notice-box strong { color: var(--forest-950); }
.form-status { min-height: 22px; color: var(--success); font-size: 13px; font-weight: 800; }
.form-choice { max-width: var(--content); display: grid; gap: 12px; margin-bottom: 24px; }
.form-choice-card { position: relative; display: block; min-height: 150px; padding: 24px 50px 24px 24px; border: 1px solid rgba(11,37,64,.13); border-radius: var(--radius-md); background: #fff; color: var(--ink); text-decoration: none; box-shadow: var(--shadow-xs); }
.form-choice-card::after { content: "→"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--gold-600); font-size: 26px; }
.form-choice-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.form-choice-card strong { display: block; color: var(--forest-950); font-family: var(--serif); font-size: 29px; }
.form-choice-card span { display: block; margin-top: 8px; color: var(--ink-soft); }
.honey { display: none !important; }
.conditional-fields[hidden] { display: none !important; }
.contact-grid { max-width: var(--content); display: grid; gap: 12px; }
.contact-grid .card { min-height: 160px; }
.contact-grid .card p { color: var(--forest-900); font-size: 18px; font-weight: 800; }

/* FAQ and articles */
.faq { padding-top: 52px; }
.faq-layout { max-width: var(--content); display: grid; gap: 14px; }
.faq-group { padding: 20px; border: 1px solid rgba(11,37,64,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.86); }
.faq-group h3 { margin-bottom: 14px; font-family: var(--serif); }
.faq details { margin-bottom: 8px; padding: 16px 17px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.faq details:last-child { margin-bottom: 0; }
.faq summary { cursor: pointer; color: var(--forest-950); font-weight: 900; }
.faq details p { margin-top: 10px; color: var(--ink-soft); }
.article { max-width: 860px !important; }
.article h2 { margin-top: 40px; font-size: 37px; }
.article h3 { margin-top: 28px; }
.article p { margin-top: 16px; }
.article ul, .article ol { color: var(--ink-soft); }
.article li + li { margin-top: 7px; }

/* Notices and CTA */
.notice { padding: 38px 20px; background: var(--sage-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notice h2 { font-size: 35px; }
.notice p { margin-top: 10px; color: var(--ink-soft); }
.notice-left { text-align: left; }
.form-notice { background: #fbf7ed; }
.cta { padding: 68px 20px; background: var(--forest-950); color: #fff; text-align: center; }
.cta h2 { color: #fff; max-width: 860px; }
.cta > p:not(.eyebrow) { max-width: 750px; margin-top: 14px; color: rgba(255,255,255,.72); font-size: 18px; }
.cta .hero-actions { justify-content: center; }
.cta .btn-primary { background: var(--gold-500); color: var(--forest-950); }
.cta .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }

/* SEO location page components */
.location-hero-meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.location-hero-meta span { padding: 7px 10px; border: 1px solid rgba(11,37,64,.12); border-radius: 999px; background: #fff; color: var(--forest-900); font-size: 11px; font-weight: 800; }
.location-intro-grid { display: grid; gap: 24px; align-items: start; }
.location-towns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.location-towns span { padding: 8px 11px; border-radius: 999px; background: var(--sage-100); color: var(--forest-900); font-size: 12px; font-weight: 800; }
.local-service-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.local-service-list li { position: relative; padding-left: 24px; color: var(--ink-soft); }
.local-service-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-600); font-weight: 900; }

/* Footer */
.footer { padding: 62px 20px 100px; background: #041f21; color: rgba(255,255,255,.7); }
.footer-grid { max-width: var(--content); margin: 0 auto; display: grid; gap: 31px; }
.footer h3, .footer h4 { color: #fff; }
.footer h4 { margin-bottom: 14px; font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.footer p { color: rgba(255,255,255,.68); }
.footer a, .footer span { display: block; color: rgba(255,255,255,.82); margin: 7px 0; text-decoration: none; }
.footer a:hover { color: var(--gold-300); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; }
.footer-brand img { width: 66px; height: 66px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.18)); }
.footer-wordmark { font-family: var(--serif); font-size: 29px !important; line-height: 1; }
.footer-brand small { display: block; margin-top: 6px; color: var(--gold-300); font-size: 9px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.footer-address { margin-top: 12px !important; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.55) !important; }
.footer-links { display: grid; gap: 4px; }
.footer-region-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.footer-region-links a { margin: 0; padding: 7px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 11px; font-weight: 800; }
.footer-bottom { max-width: var(--content); margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 8px; color: rgba(255,255,255,.48); font-size: 11px; }
.footer-bottom span { margin: 0; color: inherit; }
.footer-bottom a { display: inline; margin: 0; color: rgba(255,255,255,.67); }
.fine { font-size: 12px; }
.related-links a { display: inline; }
.footer-area-columns, .footer-area-grid { display: grid; gap: 5px; }
.footer-area-columns strong { display: block; margin-top: 10px; color: var(--gold-300); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.footer-area-grid a { margin: 3px 0; }

.sticky-actions { position: fixed; inset: auto 0 0; z-index: 900; padding: 9px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-top: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 -8px 28px rgba(11,37,64,.12); }
.sticky-actions a { min-height: 47px; display: grid; place-items: center; border-radius: var(--radius-sm); background: var(--forest-950); color: #fff; font-size: 13px; font-weight: 900; text-decoration: none; text-align: center; }
.sticky-actions a:last-child { background: var(--gold-500); color: var(--forest-950); }

/* Backward-compatible helpers */
.seo-context { position: static; width: auto; height: auto; overflow: visible; padding: 54px 20px; background: var(--ivory); }
.seo-context > * { max-width: var(--content); margin-left: auto; margin-right: auto; }
.seo-context h2 { font-size: 36px; }
.seo-context p { margin-top: 14px; color: var(--ink-soft); }
.feature-plus-one > .card:last-child { grid-column: auto; }
.metro-priority-card { border-color: rgba(201,154,71,.55); }
.gateway-live-map iframe { width: 100%; height: 500px; border: 0; }
.gateway-coverage-image img { width: 100%; }
.approach-visual { background: var(--ivory); }
.faq-hero { display: block; }
.faq-hero .hero-copy { max-width: var(--content); }
.hero-cards { margin-top: 18px; }

@media (min-width: 700px) {
  .trust-ribbon-inner { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .home-hero-shell { padding-left: 28px; padding-right: 28px; }
  .hero-actions { flex-direction: row; }
  .hero { padding-left: 28px; padding-right: 28px; }
  .hero-copy, .hero-panel, .hero-visual { max-width: var(--content); }
  .hero { grid-template-columns: minmax(0,1.14fr) minmax(320px,.86fr); align-items: center; }
  .hero.faq-hero { grid-template-columns: 1fr; }
  .panel-actions { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card-grid.three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card-grid.four { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .platform-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .audience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .care-path-strip { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .trust-shell { grid-template-columns: 1.15fr .85fr; }
  .proof-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .map-layout { grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); }
  .map-chip-row { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .feature-split { grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); align-items: start; }
  .care-setting-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-choice { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .faq-layout { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .coverage-columns { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .region-network { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .location-intro-grid { grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); }
  .footer-grid { grid-template-columns: 1.35fr .7fr .8fr .9fr; }
  .footer-bottom { grid-template-columns: .8fr 1.2fr; }
  .sticky-actions { display: none; }
  .footer { padding-bottom: 62px; }
}

@media (min-width: 980px) {
  .desktop-links, .nav-actions { display: flex; }
  .menu-button { display: none; }
  .mobile-menu { display: none !important; }
  .home-hero-shell { grid-template-columns: minmax(0,1.2fr) minmax(360px,.8fr); gap: 56px; }
  .home-hero-copy { padding-bottom: 18px; }
  .hero { padding-top: 78px; padding-bottom: 78px; }
  .card-grid.three { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .card-grid.four { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .service-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .platform-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 979px) {
  .utility { padding-left: 18px; padding-right: 18px; }
  .utility > span:first-child, .utility-proof, .utility-region-link, .utility a[href^="mailto:"] { display: none; }
  .utility-spacer { display: block; }
  .utility a[href^="tel:"] { margin-left: auto; }
}

@media (max-width: 699px) {
  .utility { min-height: 34px; justify-content: center; }
  .utility .utility-spacer { display: none; }
  .utility a[href^="tel:"] { margin: 0; }
  .nav { min-height: 76px; padding: 9px 15px; }
  .brand-mark { width: 49px; height: 49px; }
  .brand strong { font-size: 21px; }
  .brand small { font-size: 8px; }
  .mobile-menu { inset-top: 110px; }
  .home-hero-shell { min-height: auto; padding-top: 56px; padding-bottom: 50px; }
  .home-hero h1 { font-size: 46px; }
  .home-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .home-hero .btn { width: 100%; }
  .hero-proof-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-pathway-inner { padding: 21px; }
  .hero { padding-top: 48px; padding-bottom: 48px; }
  .hero h1 { font-size: 43px; }
  .hero .btn { width: 100%; }
  .band, .audience-band, .trust-band, .feature-split, .visual-showcase { padding-top: 54px; padding-bottom: 54px; }
  .card, .service-card, .audience-card { padding: 21px; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .map-frame { border-radius: var(--radius-md); }
  .map-frame iframe { min-height: 330px; }
  .form-shell { padding: 19px; border-radius: var(--radius-md); }
  .form-choice-card { min-height: 0; }
  .visual-showcase__figure img { min-width: 690px; }
  .seo-context { padding-top: 48px; padding-bottom: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* ==========================================================================
   V61 palette and homepage refinement
   Navy is the institutional base. Gateway green is reserved for brand accents.
   ========================================================================== */
:root {
  --navy-950: #0b2540;
  --navy-900: #123451;
  --navy-800: #174563;
  --brand-green: #17635f;
  --brand-green-soft: #dfece8;
  --warm-paper: #fbf9f4;
}
.site-header { background: rgba(251,249,244,.97); border-bottom-color: rgba(11,37,64,.11); }
.site-header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 10px 34px rgba(11,37,64,.10); }
.utility { background: var(--navy-950); }
.brand small { color: var(--brand-green); }
.desktop-links a.active { color: var(--navy-900); }
.nav-call { background: var(--navy-950); }
.nav-call:hover { background: var(--navy-800); }
.nav-call-light { background: transparent; color: var(--navy-950); border-color: rgba(11,37,64,.2); }
.nav-call-light:hover { background: #eef2f5; color: var(--navy-950); }
.mobile-menu { background: rgba(251,249,244,.99); }
.mobile-menu .mobile-cta { background: var(--navy-950); }

/* New homepage hero: brighter, warmer, more clinical, less color-heavy. */
.home-hero { color: var(--ink); border-bottom: 1px solid rgba(11,37,64,.1); }
.home-hero::before {
  width: 620px;
  height: 620px;
  right: -260px;
  top: -250px;
  border: 54px solid rgba(23,99,95,.09);
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.home-hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 42px solid rgba(11,37,64,.045);
}
.home-hero-shell { min-height: 675px; padding-top: 68px; padding-bottom: 74px; }
.home-hero-copy { max-width: 700px; }
.home-hero .eyebrow { color: var(--brand-green); }
.home-hero h1 { color: var(--navy-950); max-width: 700px; }
.home-hero h1 em { color: #a46f24; }
.home-hero-copy > p:not(.eyebrow) { color: var(--ink-soft); max-width: 660px; }
.home-hero .btn-primary { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 12px 28px rgba(185,131,47,.18); }
.home-hero .btn-primary:hover { background: var(--gold-300); color: var(--navy-950); }
.home-hero .btn-secondary { background: var(--navy-950); border-color: var(--navy-950); color: #fff; }
.home-hero .btn-secondary:hover { background: var(--navy-800); color: #fff; }
.hero-proof-row { color: var(--ink-soft); }
.hero-proof-row span::before { background: var(--brand-green); box-shadow: 0 0 0 4px rgba(23,99,95,.11); }
.home-hero-visual { position: relative; max-width: 560px; margin: 0 auto; padding: 0 0 74px 22px; }
.clinical-image {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(11,37,64,.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(11,37,64,.17);
}
.clinical-image::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 34px;
  bottom: 34px;
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(var(--gold-500), var(--brand-green));
}
.clinical-image img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 20px; }
.clinical-image figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 14px;
  color: #fff;
  background: rgba(11,37,64,.88);
  box-shadow: 0 14px 34px rgba(11,37,64,.23);
  backdrop-filter: blur(10px);
}
.clinical-image figcaption span { display: block; color: var(--gold-300); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.clinical-image figcaption strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 19px; line-height: 1.18; }
.home-hero .hero-pathway {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 38px;
  bottom: 0;
  padding: 7px;
  border-color: rgba(11,37,64,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 22px 60px rgba(11,37,64,.16);
  backdrop-filter: blur(13px);
}
.home-hero .hero-pathway-inner { padding: 18px; border-radius: 16px; background: rgba(251,249,244,.98); }
.home-hero .hero-pathway-header { margin-bottom: 12px; }
.home-hero .hero-pathway-header img { width: 42px; height: 42px; }
.home-hero .hero-pathway-header strong { color: var(--navy-950); font-size: 21px; }
.home-hero .hero-pathway-header span { color: var(--brand-green); font-size: 8px; }
.home-hero .pathway-label { display: none; }
.home-hero .pathway-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.home-hero .pathway-card { min-height: 92px; padding: 13px 31px 13px 13px; border-color: rgba(11,37,64,.11); box-shadow: none; }
.home-hero .pathway-card + .pathway-card { margin-top: 0; }
.home-hero .pathway-card strong { color: var(--navy-950); font-size: 14px; line-height: 1.25; }
.home-hero .pathway-card span { font-size: 11px; line-height: 1.35; }
.home-hero .pathway-card::after { right: 11px; font-size: 19px; }
.home-hero .pathway-card.patient { border-left-color: var(--gold-500); }
.home-hero .pathway-card.professional { border-left-color: var(--brand-green); }
.home-hero .pathway-contact { margin-top: 10px; padding-top: 10px; }

/* Institutional navy on high-impact surfaces; green remains secondary. */
.band.dark-band, .trust-band, .cta { background: var(--navy-950); }
.footer { background: #081b2f; }
.trust-band { background-image: radial-gradient(circle at 86% 10%, rgba(201,154,71,.12), transparent 24%); }
.btn-primary { background: var(--navy-950); box-shadow: 0 10px 24px rgba(11,37,64,.14); }
.btn-primary:hover { background: var(--navy-800); box-shadow: 0 14px 30px rgba(11,37,64,.2); }
.btn-secondary { color: var(--navy-950); border-color: rgba(11,37,64,.18); }
.btn-secondary:hover { background: #eef2f5; color: var(--navy-950); }
.btn-call { background: #eef2f5; color: var(--navy-950); border-color: rgba(11,37,64,.11); }
.card-icon { background: var(--brand-green-soft); color: var(--brand-green); }
.pathway-card.professional { border-left-color: var(--brand-green); }
.intake-steps strong, .contact-steps strong { background: var(--navy-950); }
.local-proof span, .location-towns span { background: #edf3f1; color: var(--brand-green); }
.band.soft { background: #f5f7f8; }
.notice { background: #eef2f5; }
.sticky-actions { box-shadow: 0 -8px 28px rgba(11,37,64,.12); }
.sticky-actions a { background: var(--navy-950); }

/* Refined general page hero. */
.hero {
  background:
    radial-gradient(circle at 92% 8%, rgba(201,154,71,.13), transparent 26%),
    linear-gradient(145deg, #fbf9f4, #eef2f5 72%);
  border-bottom-color: rgba(11,37,64,.1);
}
.hero::before { border-color: rgba(11,37,64,.05); }
.hero-panel, .hero-visual { border-color: rgba(11,37,64,.12); }

@media (min-width: 980px) {
  .home-hero-shell { grid-template-columns: minmax(0,1.05fr) minmax(430px,.95fr); gap: 72px; }
}
@media (max-width: 979px) {
  .home-hero-visual { width: min(100%, 620px); }
}
@media (max-width: 699px) {
  .home-hero-shell { padding-top: 44px; padding-bottom: 52px; }
  .home-hero h1 { font-size: 44px; line-height: 1.02; }
  .home-hero-visual { padding: 0 0 0 12px; margin-top: 8px; }
  .clinical-image::before { left: -13px; }
  .clinical-image figcaption { left: 20px; right: 20px; bottom: 18px; padding: 13px 14px; }
  .clinical-image figcaption strong { font-size: 16px; }
  .home-hero .hero-pathway { position: relative; left: auto; right: auto; bottom: auto; margin: 14px 0 0 -12px; }
  .home-hero .pathway-options { grid-template-columns: 1fr; }
  .home-hero .pathway-card { min-height: auto; }
  .hero-proof-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   V62 refinement — restore the original Gateway care-model graphic and
   reduce decorative gold to a quiet supporting accent.
   ========================================================================== */
:root {
  --gold-600: #7d694c;
  --gold-500: #aa987c;
  --gold-300: #ddd2c2;
}

:focus-visible { outline-color: var(--brand-green); }
::selection { background: var(--brand-green-soft); color: var(--navy-950); }
.utility-proof { color: #c6ddd8; }
.utility a:hover { color: #c6ddd8; }
.desktop-links a::after { background: var(--brand-green); }
.mobile-menu .mobile-cta-secondary { background: var(--brand-green); color: #fff; }
.eyebrow { color: var(--brand-green); }
.dark-band .eyebrow,
.trust-band .eyebrow,
.cta .eyebrow { color: #c4dcd7; }
.btn-gold { background: var(--brand-green); color: #fff; }
.btn-gold:hover { background: #11524f; color: #fff; }

/* Homepage: editorial copy paired with the original Gateway care-model graphic. */
.home-hero {
  background:
    radial-gradient(circle at 8% 16%, rgba(23,99,95,.07), transparent 27%),
    linear-gradient(118deg, #fbf9f4 0%, #f7f6f1 52%, #f1f5f4 100%);
}
.home-hero::before {
  border-color: rgba(23,99,95,.075);
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.home-hero-shell {
  max-width: 1280px;
  min-height: 650px;
  padding-top: 64px;
  padding-bottom: 68px;
  gap: 48px;
}
.home-hero-copy { max-width: 620px; }
.home-hero h1 { max-width: 650px; }
.home-hero h1 em { color: var(--brand-green); }
.home-hero .btn-primary {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23,99,95,.17);
}
.home-hero .btn-primary:hover { background: #11524f; color: #fff; }
.home-hero .btn-secondary { background: var(--navy-950); border-color: var(--navy-950); color: #fff; }
.home-hero .btn-secondary:hover { background: var(--navy-800); color: #fff; }
.home-hero-visual {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}
.bridge-graphic-card {
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(11,37,64,.13);
  border-top: 4px solid var(--brand-green);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(11,37,64,.14);
}
.bridge-graphic-card picture,
.bridge-graphic-card img { display: block; width: 100%; }
.bridge-graphic-card img { border-radius: 15px; }
.bridge-graphic-card figcaption {
  padding: 13px 13px 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.hero-proof-row span::before { background: var(--brand-green); box-shadow: 0 0 0 4px rgba(23,99,95,.11); }

/* Remove gold from repeated controls and decorative systems. */
.pathway-card:hover,
.location-cloud a:hover,
.care-setting-grid a:hover,
.form-choice-card:hover { border-color: var(--brand-green); }
.pathway-card::after,
.card a::after,
.service-card a::after,
.coverage-list a::after,
.form-choice-card::after,
.local-service-list li::before { color: var(--brand-green); }
.pathway-card.patient { border-left-color: var(--brand-green); }
.trust-ribbon span::before { border-color: var(--brand-green); }
.audience-label,
.panel-kicker { color: var(--brand-green); }
.audience-card li::before { background: var(--brand-green); }
.trust-stats strong { color: #e5f0ed; }
.proof-grid article { border-left-color: var(--brand-green); }
.feature-split aside { border-top-color: var(--brand-green); }
.form-notice-box { border-left-color: var(--brand-green); background: #f0f6f4; }

/* High-impact dark surfaces stay institutional, without gold washes. */
.trust-band {
  background-image: radial-gradient(circle at 86% 10%, rgba(23,99,95,.22), transparent 25%);
}
.hero {
  background:
    radial-gradient(circle at 92% 8%, rgba(23,99,95,.09), transparent 27%),
    linear-gradient(145deg, #fbf9f4, #eef2f5 72%);
}
.cta .btn-primary { background: #fff; color: var(--navy-950); box-shadow: none; }
.cta .btn-primary:hover { background: #edf3f1; color: var(--navy-950); }
.cta .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.cta .btn-secondary:hover { background: rgba(255,255,255,.09); color: #fff; }
.footer-brand small,
.footer-area-columns strong { color: #bcd7d2; }
.footer a:hover { color: #d7e8e4; }
.sticky-actions a:last-child { background: var(--brand-green); color: #fff; border-color: var(--brand-green); }

@media (min-width: 980px) {
  .home-hero-shell { grid-template-columns: minmax(430px,.84fr) minmax(620px,1.16fr); }
}

@media (max-width: 979px) {
  .home-hero-shell { max-width: 760px; }
  .home-hero-copy { max-width: 700px; }
  .home-hero-visual { width: 100%; max-width: 760px; }
}

@media (max-width: 699px) {
  .home-hero-shell { padding-top: 40px; padding-bottom: 46px; gap: 30px; }
  .home-hero h1 { font-size: 43px; }
  .home-hero-visual { padding: 0; margin-top: 0; }
  .bridge-graphic-card { padding: 6px; border-radius: 18px; }
  .bridge-graphic-card img { border-radius: 11px; }
  .bridge-graphic-card figcaption { padding: 11px 9px 5px; font-size: 11px; }
}

/* ==========================================================================
   V63 — integrated care positioning and three-market visibility
   ========================================================================== */

/* Persistent regional visibility on every page. */
.market-ribbon {
  min-height: 42px;
  padding: 5px max(18px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: auto repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-top: 1px solid rgba(11,37,64,.07);
  border-bottom: 1px solid rgba(11,37,64,.10);
}
.market-ribbon-label {
  padding-right: 12px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.market-ribbon a {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-left: 1px solid rgba(11,37,64,.10);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
.market-ribbon a:hover {
  color: var(--brand-green);
  background: #f4f8f7;
}

/* The hero now leads with integrated care; home-based/mobile care is secondary. */
.home-hero-shell { align-items: center; }
.home-hero-copy > p:not(.eyebrow) { max-width: 690px; }
.home-hero .eyebrow { max-width: 640px; }
.hero-proof-row { max-width: 680px; }

/* Institutional explanation of the care-continuity gap. */
.continuity-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
}
.continuity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.continuity-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(11,37,64,.12);
  border-top: 4px solid var(--brand-green);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.continuity-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--brand-green-soft);
  color: var(--brand-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.continuity-grid h3 { max-width: 310px; }
.continuity-grid p {
  margin-top: 13px;
  color: var(--ink-soft);
}
.continuity-outcome {
  margin-top: 18px !important;
  padding: 19px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(11,37,64,.11);
  border-left: 5px solid var(--navy-950);
  border-radius: var(--radius-md);
  background: #eef3f5;
}
.continuity-outcome strong {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.15;
}
.continuity-outcome span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

/* More compact, information-dense first screen on mobile. */
@media (min-width: 700px) {
  .continuity-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 979px) {
  .mobile-menu { inset: 160px 0 0; }
}

@media (max-width: 699px) {
  .market-ribbon {
    min-height: 50px;
    padding: 5px 7px;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0;
  }
  .market-ribbon-label { display: none; }
  .market-ribbon a {
    min-height: 40px;
    padding: 5px 4px;
    font-size: 9px;
    letter-spacing: -.01em;
  }
  .market-ribbon a:first-of-type { border-left: 0; }
  .mobile-menu { inset: 160px 0 0; }
  .home-hero-shell {
    padding-top: 32px;
    padding-bottom: 42px;
    gap: 26px;
  }
  .home-hero .eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .13em;
  }
  .home-hero h1 {
    font-size: 40px;
    line-height: 1.01;
  }
  .home-hero-copy > p:not(.eyebrow) {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.58;
  }
  .home-hero .hero-actions { margin-top: 20px; }
  .home-hero .btn { min-height: 49px; padding: 12px 13px; font-size: 13px; }
  .hero-proof-row {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    font-size: 10px;
  }
  .hero-proof-row span { gap: 7px; }
  .continuity-grid article { min-height: 0; padding: 22px; }
  .continuity-grid article > span { margin-bottom: 17px; }
  .continuity-outcome {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 18px;
  }
  .continuity-outcome strong { font-size: 20px; }
}

/* V63 final polish: keep market visibility above the fold without sacrificing
   usable viewport space after the visitor begins scrolling. */
.market-ribbon {
  max-height: 54px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .2s ease, min-height .2s ease, padding .2s ease, opacity .16s ease, border-color .16s ease;
}
.site-header.is-scrolled .market-ribbon {
  min-height: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  pointer-events: none;
}
.trust-stats article:nth-child(n+3) strong {
  font-size: 24px;
  line-height: 1.05;
}
@media (max-width: 979px) {
  .site-header.is-scrolled .mobile-menu { inset: 120px 0 0; }
}
@media (max-width: 699px) {
  .site-header.is-scrolled .mobile-menu { inset: 110px 0 0; }
}

/* Mobile navigation must be viewport-sized. Backdrop filtering on the sticky
   header creates a containing block for fixed descendants in Chromium. */
@media (max-width: 979px) {
  .site-header { backdrop-filter: none; }
  .mobile-menu .utility-region-link { display: block; }
}


/* ======================================================================
   Metro East Health — Illinois regional adaptation
   ====================================================================== */
:root {
  --brand-green: #2f716f;
  --brand-green-soft: #e5f0ee;
  --navy-950: #0b2540;
  --navy-900: #123451;
  --navy-800: #173d5a;
  --gold-600: #776b5a;
  --gold-500: #9f917c;
  --gold-300: #ddd5c8;
}
body { background: #f8f6f0; }
.utility-proof { color: #d5e8e4; }
.brand strong { font-size: 23px; }
.brand small { color: var(--brand-green); letter-spacing: .14em; }
.market-ribbon { grid-template-columns: auto repeat(4,minmax(0,1fr)); }
.home-hero-shell { max-width: 1280px; grid-template-columns: minmax(430px,.88fr) minmax(610px,1.12fr); }
.home-hero-copy { max-width: 650px; }
.home-hero h1 { max-width: 690px; }
.home-hero h1 em { color: var(--brand-green); }
.bridge-graphic-card { border-top-color: var(--brand-green); }
.bridge-graphic-card figcaption { padding-inline: 18px; }
.region-network.four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.local-ribbon-note { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.network-note {
  padding: 22px 24px; border: 1px solid rgba(11,37,64,.12); border-left: 5px solid var(--brand-green);
  border-radius: var(--radius-md); background: #f2f7f6; color: var(--ink-soft);
}
.network-note strong { color: var(--navy-950); }
.city-grid { display:grid; grid-template-columns:1fr; gap:12px; }
.city-card { padding:22px; border:1px solid rgba(11,37,64,.12); border-radius:var(--radius-md); background:#fff; box-shadow:var(--shadow-xs); }
.city-card h3 { font-size:22px; }
.city-card p { margin-top:10px; color:var(--ink-soft); }
.city-card a { display:inline-flex; margin-top:14px; font-weight:900; text-decoration:none; }
.article-shell { max-width: 900px; margin: 0 auto; }
.article-body { max-width: 820px; margin: 0 auto; padding: 64px 20px 84px; }
.article-body h2 { margin-top: 42px; font-size: clamp(30px,3.6vw,44px); }
.article-body h3 { margin-top: 30px; }
.article-body p, .article-body li { color: var(--ink-soft); font-size: 18px; line-height: 1.72; }
.article-body p { margin-top: 17px; }
.article-body ul, .article-body ol { margin: 16px 0 0; padding-left: 24px; }
.article-body .network-note { margin-top: 30px; }
.breadcrumbs { max-width: var(--content); margin: 0 auto; padding: 14px 20px; color: var(--ink-soft); font-size: 12px; }
.breadcrumbs a { color: var(--brand-green); font-weight:800; text-decoration:none; }
.brand-affiliation { display:inline-flex; align-items:center; gap:8px; color:#d6e7e4; font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.location-hero-meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.location-hero-meta span { padding:7px 10px; border-radius:999px; background:#eaf3f1; color:var(--brand-green); font-size:11px; font-weight:900; }
.home-hero .location-hero-meta span { background:#e7f0ee; color:var(--brand-green); }
.service-note { margin-top: 18px; color:var(--ink-soft); font-size:13px; }
.card .card-kicker, .service-card .card-kicker { display:block; margin-bottom:12px; color:var(--brand-green); font-size:10px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.clean-list { margin:18px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.clean-list li { position:relative; padding-left:22px; color:var(--ink-soft); }
.clean-list li::before { content:'✓'; position:absolute; left:0; color:var(--brand-green); font-weight:900; }
.referral-matrix { display:grid; grid-template-columns:1fr; gap:14px; }
.referral-matrix article { padding:24px; border:1px solid rgba(11,37,64,.12); border-radius:var(--radius-lg); background:#fff; }
.referral-matrix article h3 { font-size:23px; }
.referral-matrix article p { margin-top:10px; color:var(--ink-soft); }
.location-directory { columns:1; column-gap:20px; }
.location-directory a { display:block; break-inside:avoid; margin:0 0 10px; padding:13px 15px; border:1px solid rgba(11,37,64,.11); border-radius:10px; background:#fff; color:var(--navy-950); font-weight:800; text-decoration:none; }
.location-directory a:hover { border-color:var(--brand-green); background:#f5faf9; }
.form-routing-note { margin-top:16px; color:var(--ink-soft); font-size:12px; }
.brand-wide { width:min(360px,100%); height:auto; }
.footer-brand .brand-wide { width:min(310px,100%); }
.site-header .brand-mark { object-fit:contain; }
@media (min-width:700px) {
  .city-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .referral-matrix { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .location-directory { columns:2; }
}
@media (min-width:980px) {
  .city-grid.three { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .referral-matrix.three { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .location-directory { columns:3; }
}
@media (max-width:1100px) {
  .home-hero-shell { grid-template-columns:1fr; max-width:820px; }
  .home-hero-visual { max-width:820px; width:100%; }
  .region-network.four { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:699px) {
  .market-ribbon { grid-template-columns:repeat(2,minmax(0,1fr)); max-height:104px; }
  .market-ribbon a:nth-of-type(3) { border-left:0; border-top:1px solid rgba(11,37,64,.08); }
  .market-ribbon a:nth-of-type(4) { border-top:1px solid rgba(11,37,64,.08); }
  .site-header.is-scrolled .market-ribbon { max-height:0; }
  .mobile-menu { inset: 211px 0 0; }
  .site-header.is-scrolled .mobile-menu { inset:110px 0 0; }
  .home-hero-shell { padding-top:30px; }
  .home-hero h1 { font-size:39px; }
  .home-hero-visual { margin-top:0; }
  .bridge-graphic-card figcaption { font-size:10px; }
  .region-network.four { grid-template-columns:1fr; }
  .location-directory { columns:1; }
  .brand strong { font-size:20px; }
  .brand small { font-size:8px; }
}
