:root {
  /* ── ink / text ── */
  --ink: #162437;
  --ink-soft: #586879;
  /* ── forest scale ── */
  --forest-950: #122f3f;
  --forest-900: #17384a;
  --forest-800: #20485b;
  --forest-700: #2f6f6c;
  --forest-600: #4f817b;
  /* ── navy (legacy alias) ── */
  --navy-950: #122f3f;
  --navy-900: #17384a;
  --navy-800: #20485b;
  /* ── gateway brand ── */
  --gateway-navy:   #102b3a;
  --gateway-navy-2: #17384a;
  --gateway-slate:  #243647;
  --gateway-accent: #315f72;
  --gateway-soft:   #f6f9f9;
  --gateway-line:   #d8e2e4;
  /* ── brand green ── */
  --brand-green: #2f6f6c;
  --brand-green-soft: #edf5f4;
  /* ── sage / surface ── */
  --sage-200: #dbe8e6;
  --sage-100: #eef4f3;
  --sage-50:  #f7f9f9;
  --ivory:    #f7fafa;
  --ivory-2:  #eef5f4;
  --white:    #ffffff;
  --paper:    #ffffff;
  --warm-paper: #fbf9f4;
  /* ── slate ── */
  --slate-900: #152536;
  --slate-800: #233244;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  /* ── structural ── */
  --line:      #d5e0df;
  --line-dark: rgba(255,255,255,.16);
  --danger:    #8a3029;
  --success:   #216c50;
  /* ── shadows ── */
  --shadow-xs: 0 2px 8px rgba(17,75,73,.045);
  --shadow-sm: 0 10px 28px rgba(17,75,73,.075);
  --shadow-md: 0 14px 34px rgba(17,75,73,.09);
  --shadow-lg: 0 20px 48px rgba(17,75,73,.11);
  /* ── radius ── */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  /* ── typography ── */
  --sans:  "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  /* ── layout ── */
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9f9;
  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(--navy-900);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-green);
}

button, input, select, textarea {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--forest-700);
  outline-offset: 3px;
  outline-color: var(--brand-green);
}

::selection {
  background: rgba(23,99,95,.18);
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  background: rgba(255,255,255,.98);
}

.utility {
  min-height: 38px;
  padding: 7px max(18px, calc((100vw - var(--content)) / 2));
  background: var(--gateway-navy);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 850;
}

.utility > span:first-child {
  font-weight: 900;
  color: #fff;
}

.utility-proof {
  color: #c7e6e2;
  font-weight: 800;
  opacity: .9;
  letter-spacing: .01em;
}

.utility-spacer {
  flex: 1;
}

.utility a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.utility a:hover {
  color: #c6ddd8;
}

.utility-region-link {
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.nav {
  max-width: calc(var(--content) + 40px);
  min-height: 88px;
  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;
  color: var(--navy-900);
}

.brand small {
  margin-top: 7px;
  color: var(--brand-green);
  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(--slate-700);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}

.desktop-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 3px;
  background: var(--forest-700);
  transition: right .2s ease;
}

.desktop-links a:hover::after, .desktop-links a.active::after {
  right: 0;
}

.desktop-links a.active {
  color: var(--navy-900);
}

.nav-actions {
  display: none;
  gap: 8px;
  align-items: center;
}

.nav-call {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: #143747;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  border-color: #143747;
}

.nav-call:hover {
  background: #102b3a;
  color: #fff;
}

.nav-call-light {
  background: #fff;
  color: #143747;
  border: 1px solid #cbd5e1;
  border-color: #cbd8dc;
}

.nav-call-light:hover {
  background: #f3f7f7;
  color: #143747;
}

.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(251,249,244,.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(--navy-950);
  color: #fff;
  text-align: center;
}

.mobile-menu .mobile-cta-secondary {
  background: var(--brand-green);
  color: #fff;
}

.mobile-menu .utility-region-link {
  border-left: 0;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--slate-900);
  letter-spacing: 0;
  font-family: var(--sans);
}

h1, h2 {
  font-family: var(--serif);
}

h1 {
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.04;
  font-weight: 800;
  font-family: var(--serif);
}

h2 {
  font-size: clamp(32px, 3.7vw, 52px);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 800;
}

p {
  margin: 0;
  color: var(--slate-600);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-green);
  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;
  margin-bottom: 24px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 940px;
}

.section-head h2 + p {
  margin-top: 16px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: box-shadow .16s ease, background .16s ease;
  letter-spacing: 0;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gateway-navy);
  color: #fff;
  box-shadow: none;
  border-color: var(--gateway-navy);
}

.btn-primary:hover {
  background: var(--gateway-navy-2);
  color: #fff;
  box-shadow: 0 18px 38px rgba(18,102,94,.23);
  border-color: var(--gateway-navy-2);
}

.btn-secondary {
  background: #fff;
  color: var(--gateway-navy);
  border-color: var(--gateway-line);
}

.btn-secondary:hover {
  background: var(--sage-50);
  color: var(--forest-950);
}

.btn-call {
  background: #eef2f5;
  color: var(--navy-950);
  border-color: rgba(11,37,64,.11);
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(120deg,#fff 0%,#f8fbfb 62%,#eef4f5 100%);
  border-bottom: 1px solid var(--line);
}

.home-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -250px;
  border: 54px solid rgba(23,99,95,.09);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
  border-color: rgba(23,99,95,.075);
}

.home-hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  min-height: 0;
  margin: 0 auto;
  padding: 78px 20px 64px;
  display: grid;
  gap: 42px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 56px;
}

.home-hero-copy {
  max-width: 610px;
}

.home-hero .eyebrow {
  color: var(--forest-700);
  max-width: none;
  font-size: 11px;
  letter-spacing: .17em;
}

.home-hero h1 {
  color: var(--gateway-navy);
  max-width: 780px;
  font-size: clamp(44px,5.3vw,70px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.home-hero h1 em {
  color: var(--brand-green);
  font-style: normal;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-hero .btn-primary {
  background: #143747;
  color: #fff;
  box-shadow: 0 12px 28px rgba(23,99,95,.17);
  border-color: #143747;
}

.home-hero .btn-primary:hover {
  background: #e9f4f3;
  color: var(--navy-900);
}

.home-hero .btn-secondary {
  color: #143747;
  border-color: #cbd8dc;
  background: #fff;
}

.home-hero .btn-secondary:hover {
  background: #0c635d;
  color: #fff;
}

.hero-proof-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  max-width: 680px;
}

.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(--brand-green);
  box-shadow: 0 0 0 4px rgba(23,99,95,.11);
}

.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: border-color .16s ease, box-shadow .16s ease;
}

.pathway-card + .pathway-card {
  margin-top: 10px;
}

.pathway-card:hover {
  transform: translateY(0);
  border-color: var(--forest-700);
  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(--forest-700);
  font-size: 24px;
}

.pathway-card.request {
  border-left: 4px solid var(--forest-700);
  border-left-color: var(--brand-green);
}

.pathway-card.professional {
  border-left: 4px solid var(--forest-600);
  border-left-color: var(--brand-green);
}

.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(--forest-700);
  border-color: var(--brand-green);
}

.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 86px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  gap: 56px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900), #08324f);
  border-bottom: 0;
  border-bottom-color: 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%;
  border-color: rgba(11,37,64,.05);
}

.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;
  max-width: 680px;
}

.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(--navy-900);
  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(--forest-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.request-steps, .contact-steps {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.request-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: 8px;
  background: var(--slate-50);
  border-color: var(--line);
}

.request-steps strong, .contact-steps strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-size: 12px;
}

.request-steps span, .contact-steps span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.local-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.local-proof span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sage-50);
  color: var(--forest-950);
  font-size: 11px;
  font-weight: 800;
  border-color: #cbd5e1;
  border: 1px solid var(--line);
}

.panel-actions {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.band {
  padding: 72px 20px;
  background: #fff;
  padding-top: 78px;
  padding-bottom: 78px;
}

.band.soft {
  background: linear-gradient(180deg,#f8f5ee 0%, #eef4f3 100%);
}

.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,.92);
  font-weight: 500;
}

.care-network-band {
  background: #fff;
}

.care-network-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.care-network-grid .card {
  min-height: 240px;
}

.card-grid {
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 20px;
  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(--forest-700);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-green-soft);
  color: var(--brand-green);
  font-size: 19px;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 28px;
  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(10,61,98,.08);
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.service-card h3 {
  position: relative;
  max-width: 100%;
  letter-spacing: 0;
  color: var(--slate-900);
}

.service-card p {
  position: relative;
  margin-top: 13px;
  color: var(--slate-600);
}

.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(--forest-700);
}

.compact-service-grid .service-card {
  min-height: 255px;
}

.services-index-grid .service-card {
  min-height: 250px;
}

.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);
  padding-top: 78px;
  padding-bottom: 78px;
}

.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: 0;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(11,37,64,.13);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  border-color: var(--line);
}

.audience-card h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  letter-spacing: 0;
  line-height: 1.13;
}

.audience-card > p:not(.audience-label) {
  margin-top: 13px;
  color: var(--slate-600);
}

.audience-label {
  margin: 0 0 13px;
  color: var(--forest-700);
  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;
  margin-bottom: 22px;
}

.audience-card li {
  position: relative;
  padding-left: 22px;
  color: var(--slate-800);
  font-weight: 800;
}

.audience-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
}

.audience-card .btn {
  margin-top: auto;
}

.request-card {
  background: linear-gradient(180deg,#fff 0%,#f8fbfa 100%);
}

.referral-card {
  background: linear-gradient(180deg,#fff 0%,#f8f5ef 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-band {
  padding: 72px 20px;
  background: var(--forest-950);
  color: #fff;
  background-image: radial-gradient(circle at 86% 10%, rgba(23,99,95,.22), transparent 25%);
}

.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: #e5f0ed;
  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(--forest-700);
  background: #fff;
  border-left-color: var(--brand-green);
}

.proof-grid strong {
  display: block;
  color: var(--forest-950);
}

.proof-grid span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 13px;
}

.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: 8px;
  background: #fff;
  box-shadow: none;
  border-color: var(--line);
}

.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: 48px;
  align-items: start;
}

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(11,37,64,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  border-color: var(--line);
  align-self: start;
}

.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(--sans);
  font-size: clamp(30px,3vw,44px);
  letter-spacing: 0;
  color: var(--slate-900);
  font-weight: 800;
}

.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;
  color: var(--forest-900);
  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: #f7fafa;
}

.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(--forest-700);
}

.location-cloud.large a {
  font-size: 14px;
}

.coverage-columns {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.coverage-panel {
  padding: 30px 32px;
  border: 1px solid rgba(11,37,64,.13);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  height: 100%;
}

.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(--forest-700);
}

.coverage-list li:last-child a {
  border-bottom: 0;
}

.region-network {
  display: grid;
  gap: 18px;
}

.region-card {
  padding: 24px;
  border: 1px solid rgba(11,37,64,.13);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.region-card strong {
  display: block;
  color: var(--navy-900);
  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-split {
  padding: 72px 20px;
  display: grid;
  gap: 48px;
  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(--forest-700);
  border-radius: var(--radius-md);
  background: var(--slate-50);
  box-shadow: var(--shadow-sm);
  border-top-color: var(--brand-green);
  border-color: var(--line);
}

.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(--forest-700);
}

.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 0 18px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.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: 900;
  padding: 0 8px;
}

.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: 8px;
  background: #fcfdfc;
  color: var(--ink);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
  border-color: #cbd5e1;
}

.gateway-form textarea {
  min-height: 125px;
  resize: vertical;
}

.gateway-form input:focus, .gateway-form select:focus, .gateway-form textarea:focus {
  border-color: var(--brand-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,118,110,.13);
}

.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;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.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: 13px;
}

.form-notice-box {
  padding: 17px;
  border-left: 4px solid var(--forest-700);
  border-radius: 8px;
  background: #f7fafa;
  color: #536473;
  font-size: 13px;
  border-left-color: #d5e1e3;
  border-color: #cbd5e1;
}

.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;
  align-items: stretch;
}

.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(--forest-700);
  font-size: 26px;
}

.form-choice-card:hover {
  border-color: var(--forest-700);
  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;
}

.conditional-fields[hidden] {
  display: none;
}

.contact-grid {
  max-width: var(--content);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3,minmax(0,1fr));
  align-items: stretch;
}

.contact-grid .card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-grid .card p {
  color: var(--forest-950);
  font-size: 18px;
  font-weight: 800;
}

.faq {
  padding-top: 52px;
}

.faq-layout {
  max-width: var(--content);
  display: grid;
  gap: 14px;
  align-items: stretch;
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.faq-group {
  padding: 20px;
  border: 1px solid rgba(11,37,64,.12);
  border-radius: 14px;
  background: #fff;
  min-height: 100%;
}

.faq-group h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
}

.faq details {
  margin-bottom: 8px;
  padding: 6px 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  display: block;
}

.faq details:last-child {
  margin-bottom: 0;
}

.faq summary {
  cursor: pointer;
  color: #143747;
  font-weight: 900;
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq summary::before {
  content: "+";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-green-soft);
  color: var(--brand-green);
  font-size: 15px;
  font-weight: 900;
}

.faq details[open] summary::before {
  content: "\2212";
}

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

.faq summary::marker {
  content: "";
}

.faq details p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.article {
  max-width: 860px;
}

.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;
}

.notice {
  padding: 38px 20px;
  background: var(--slate-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-color: var(--line);
}

.notice h2 {
  font-size: 35px;
  color: var(--slate-900);
}

.notice p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.notice-left {
  text-align: left;
}

.form-notice {
  background: #fbf7ed;
}

.cta {
  padding: 68px 20px;
  background: var(--gateway-navy);
  color: #fff;
  text-align: center;
  border-top: 1px solid #d5e1e3;
  border-bottom: 1px solid #d5e1e3;
  padding-top: 48px;
  padding-bottom: 50px;
}

.cta h2 {
  color: #102b3a;
  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: #fff;
  color: var(--gateway-navy);
  box-shadow: none;
  border-color: #fff;
}

.cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}

.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: #fff;
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 800;
  border-color: #cbd5e1;
}

.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(--forest-700);
  font-weight: 900;
}

.footer {
  padding: 62px 20px 100px;
  background: var(--gateway-navy);
  color: rgba(255,255,255,.72);
  padding-top: 48px;
  padding-bottom: 32px;
}

.footer-grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  align-items: start;
  margin-bottom: 8px;
}

.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: #9ee7df;
}

.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;
  line-height: 1;
}

.footer-brand small {
  display: block;
  margin-top: 6px;
  color: var(--sage-200);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-address {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
}

.footer-links {
  display: grid;
  gap: 4px;
}

.footer-region-links {
  margin-top: 16px;
  display: none;
  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;
  border-color: rgba(255,255,255,.16);
}

.footer-bottom {
  max-width: var(--content);
  margin: 16px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 6px;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  align-items: center;
  margin-top: 20px;
  flex-direction: column;
  text-align: center;
}

.footer-bottom span {
  margin: 0;
  color: inherit;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: rgba(255,255,255,.67);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.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(--sage-200);
  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: 8px;
  background: #143747;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.sticky-actions a:last-child {
  background: #102b3a;
  color: #fff;
  border-color: var(--brand-green);
}

.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;
}

.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-visual {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-top: 0;
  align-self: center;
  transform: translateY(-8px);
  justify-self: stretch;
}

.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(--forest-700), 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(--sage-200);
  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.request {
  border-left-color: var(--forest-700);
}

.home-hero .pathway-card.professional {
  border-left-color: var(--brand-green);
}

.home-hero .pathway-contact {
  margin-top: 10px;
  padding-top: 10px;
}

.band.dark-band, .trust-band, .cta {
  background: var(--navy-950);
}

.local-proof span, .location-towns span {
  background: #edf3f1;
  color: var(--brand-green);
}

.hero-panel, .hero-visual {
  border-color: rgba(11,37,64,.12);
}

.dark-band .eyebrow, .trust-band .eyebrow, .cta .eyebrow {
  color: #c4dcd7;
}

.bridge-graphic-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-top: 4px solid #7dd3ca;
  border-radius: 18px;
  background: linear-gradient(180deg,#fff,#f4f8f7);
  box-shadow: 0 18px 42px rgba(18,47,63,.10);
  display: grid;
  border-color: rgba(11,37,64,.1);
}

.bridge-graphic-card picture, .bridge-graphic-card img {
  display: block;
  width: 100%;
}

.bridge-graphic-card img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.bridge-graphic-card figcaption {
  padding: 14px 18px 4px;
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  min-height: 62px;
  margin-top: 10px;
  border-top: 1px solid rgba(15,23,42,.08);
  display: none;
}

.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);
}

.audience-label, .panel-kicker {
  color: var(--brand-green);
}

.cta .btn-primary:hover {
  background: #edf3f1;
  color: var(--navy-950);
}

.cta .btn-secondary:hover {
  background: rgba(255,255,255,.09);
  color: #fff;
}

.footer-brand small, .footer-area-columns strong {
  color: #bcd7d2;
}

.market-ribbon {
  min-height: 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  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;
  border-color: var(--line);
}

.market-ribbon-label {
  padding-right: 12px;
  color: #5d6f7c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 0;
  line-height: 1.2;
}

.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(--slate-800);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
}

.market-ribbon a:hover {
  color: var(--forest-900);
  background: #fff;
}

.continuity-band {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
}

.continuity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.continuity-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy-900);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  border-top-color: var(--brand-green);
}

.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: 100%;
  letter-spacing: 0;
  color: var(--slate-900);
}

.continuity-grid p {
  margin-top: 13px;
  color: var(--slate-600);
}

.continuity-outcome {
  margin-top: 18px;
  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;
}

.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;
}

.btn-stack {
  min-width: min(100%, 260px);
  min-height: 78px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 16px 18px;
  text-align: left;
  border-radius: 8px;
}

.btn-stack strong {
  color: inherit;
  font-size: 14px;
  line-height: 1.15;
}

.btn-stack span {
  color: inherit;
  opacity: .82;
  font-size: 12px;
  line-height: 1.25;
}

.hero-actions-large {
  gap: 12px;
}

.home-hero::before, .home-hero::after {
  display: none;
}

.home-hero-copy > p:not(.eyebrow):not(.hero-microcopy) {
  max-width: 570px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.66;
}

.home-hero .hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
}

.hero-microcopy {
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}

.bridge-graphic-card picture {
  display: grid;
  place-items: center;
  min-height: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.premium-trust-bar {
  padding: 0 24px;
  background: #fff;
  border-top: 1px solid rgba(7,29,51,.08);
  border-bottom: 1px solid rgba(7,29,51,.09);
  border-color: var(--line);
}

.premium-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4,minmax(0,1fr));
  align-items: stretch;
}

.premium-trust-bar article {
  min-height: 122px;
  padding: 26px 26px;
  display: grid;
  align-content: start;
  gap: 6px;
  border-bottom: 1px solid rgba(7,29,51,.08);
  border-color: var(--line);
  background: #fff;
}

.premium-trust-bar strong {
  color: var(--forest-700);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.premium-trust-bar span {
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.5;
}

.section-head h2 {
  letter-spacing: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  color: var(--gateway-navy);
}

.audience-card, .service-card, .card {
  border-radius: 14px;
  border-color: rgba(7,29,51,.11);
  box-shadow: var(--shadow-xs);
}

.service-card a, .card a {
  color: var(--brand-green);
}

.service-card a::after, .card a::after {
  color: var(--brand-green);
}

.utility > span:first-child, .utility a {
  color: #fff;
}

.btn-primary, .btn-primary {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  box-shadow: none;
}

.btn-primary:hover, .btn-primary:hover {
  background: var(--navy-800);
  color: #fff;
}

.home-hero-copy > p.hero-microcopy {
  color: rgba(255,255,255,.82);
}

.band, .audience-band {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--sage-50);
}

.band.soft, .band.warm, .continuity-band, .audience-band {
  background: var(--slate-50);
}

.eyebrow.dark, .audience-label, .panel-kicker {
  color: var(--brand-green);
  letter-spacing: .16em;
}

.audience-grid, .audience-grid-top {
  align-items: stretch;
  gap: 24px;
}

.audience-card, .service-card, .card, .region-card, .faq-group, .coverage-panel, .form-shell {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.request-card, .referral-card {
  background: #fff;
}

.service-grid, .compact-service-grid, .services-index-grid {
  gap: 20px;
}

.service-card, .compact-service-grid .service-card {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.service-card a, .card a, .region-card em {
  margin-top: auto;
  color: var(--navy-900);
}

.faq-group h3, details summary {
  color: var(--slate-900);
}

.cta h2, .cta p {
  color: #fff;
}

.cta .eyebrow {
  color: #2f6f69;
}

.footer h4, .footer-wordmark {
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer-bottom, .sticky-actions {
  border-top-color: var(--line);
}

.hero .eyebrow {
  color: #9ee7df;
  letter-spacing: .16em;
}

.hero h1 {
  color: #fff;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.05;
}

.hero .hero-text, .hero-copy p {
  color: rgba(255,255,255,.93);
}

.hero .btn-primary {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}

.hero .btn-primary:hover {
  background: #e9f4f3;
  color: var(--navy-900);
}

.hero .btn-secondary {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

.hero .btn-secondary:hover {
  background: #0c635d;
  color: #fff;
}

.hero-panel, .form-request-panel, .feature-split aside, .notice {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}

.hero-panel, .form-request-panel {
  background: #fff;
  border-color: rgba(255,255,255,.26);
}

.hero-panel h2, .hero-panel h3, .form-request-panel h2, .form-request-panel h3 {
  color: var(--slate-900);
}

.hero-panel p, .form-request-panel p {
  color: var(--slate-600);
}

.care-setting-grid a, .form-choice-card {
  border-radius: 8px;
  border-color: var(--line);
  background: #fff;
  color: var(--slate-800);
}

.care-setting-grid a:hover, .form-choice-card:hover {
  border-color: var(--brand-green);
  color: var(--navy-900);
}

.audience-card h3, .hero-panel h2, .form-request-panel h2, .card h3, .region-card strong, .coverage-panel h3, .gateway-form legend, .form-choice-card strong, .faq-group h3, .map-copy h3, .clinical-image figcaption strong {
  font-family: var(--sans);
}

.utility > span:first-child, .utility-proof, .utility a {
  color: #fff;
  font-weight: 850;
}

.map-frame, .visual-showcase__figure {
  padding: 14px;
  background: linear-gradient(180deg,#fbf9f4,#eef4f3);
  border-color: rgba(11,37,64,.12);
}

.map-frame img, .visual-showcase__figure img {
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(15,23,42,.06);
}

.band.soft .section-head.centered {
  max-width: 940px;
  padding: 38px 48px;
  margin-bottom: 28px;
  border: 1px solid #d7e2e8;
  border-radius: 8px;
  background: #fff;
}

.section-head.centered h2 {
  font-family: var(--sans);
  font-size: clamp(32px,3.8vw,50px);
  font-weight: 800;
  line-height: 1.08;
}

.home-hero .hero-actions-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 620px);
  margin-top: 28px;
}

.home-hero .btn-stack {
  width: 100%;
  min-width: 0;
  min-height: 82px;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 8px;
}

.home-hero .bridge-graphic-card {
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #d5e1e3;
  box-shadow: 0 14px 34px rgba(16,43,58,.08);
  margin: 0;
}

.home-hero .bridge-graphic-card picture {
  min-height: 460px;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
  border: 1px solid rgba(17,75,73,.12);
  box-shadow: none;
  aspect-ratio: 1.48 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-hero .bridge-graphic-card img {
  border-radius: 8px;
  height: 100%;
  object-fit: contain;
  width: 108%;
  max-width: none;
  margin-left: -4%;
}

.home-hero .bridge-graphic-card figcaption {
  display: none;
}

.home-hero .hero-microcopy {
  margin-top: 16px;
  font-size: clamp(17px, 1.4vw, 22px);
}

.region-access-band .section-head.centered {
  max-width: 960px;
  padding: 26px 32px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.region-access-band .section-head.centered h2 {
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.08;
  font-family: var(--sans);
}

.region-access-band .section-head.centered p:not(.eyebrow) {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.region-access-band .region-network {
  max-width: 1020px;
  margin: 0 auto;
  gap: 18px;
  align-items: stretch;
}

.region-access-band .region-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px;
  border-radius: 10px;
  border-color: var(--line);
}

.region-access-band .region-card strong {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
  font-family: var(--sans);
}

.region-access-band .region-card span {
  margin-top: 10px;
  line-height: 1.55;
}

.region-access-band .region-card em {
  margin-top: 18px;
  color: var(--forest-700);
}

.home-hero .btn-stack strong {
  font-size: 15px;
}

.home-hero .btn-stack span {
  font-size: 12.5px;
}

.premium-trust-inner article, .card, .service-card, .audience-card, .coverage-panel, .region-card {
  border-color: rgba(7,29,51,.12);
}

.card-grid, .region-network, .coverage-columns {
  gap: 16px;
}

.footer-verification {
  max-width: var(--content);
  margin: 26px auto 0;
  padding: 18px 20px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.45;
  padding-top: 18px;
  margin-top: 24px;
  grid-template-columns: minmax(0,1.1fr) minmax(0,2fr);
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.footer-verification a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.footer-npi {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing: .03em;
  color: rgba(255,255,255,.72);
}

h2, h3, h4 {
  font-family: var(--sans);
  letter-spacing: -.012em;
}

.utility-proof, .utility a:hover, .footer a:hover, .footer-brand small, .footer-area-columns strong {
  color: var(--sage-200);
}

.btn:hover, .card:hover, .pathway-card:hover, .service-card:hover, .form-choice-card:hover {
  transform: none;
}

.btn-primary, .btn-primary, .home-hero .btn-primary, .mobile-menu .mobile-cta-secondary, .sticky-actions a:last-child {
  background: var(--forest-950);
  color: #fff;
  border-color: var(--forest-950);
  box-shadow: none;
}

.btn-primary:hover, .btn-primary:hover, .home-hero .btn-primary:hover, .mobile-menu .mobile-cta-secondary:hover, .sticky-actions a:last-child:hover {
  background: var(--forest-800);
  color: #fff;
}

.btn-secondary, .home-hero .btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--forest-950);
}

.btn-secondary:hover, .home-hero .btn-secondary:hover {
  background: var(--sage-50);
  color: var(--forest-950);
}

.band.soft, .band.warm, .audience-band {
  background: var(--sage-50);
}

.person-start-band .section-head.centered {
  max-width: 940px;
}

.person-start-band .section-head.centered p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.person-start-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.audience-grid-top {
  align-items: stretch;
}

.audience-card, .card, .coverage-panel, .hero-panel, .form-shell, .map-frame, .feature-split aside {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.market-ribbon-label, .market-ribbon a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  border-color: var(--line);
}

.market-ribbon a:last-child {
  border-right: 1px solid var(--line);
}

body:not(.home-page) .market-ribbon {
  display: none;
}

.phone-plain {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: 850;
}

.service-area-standard {
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.service-area-map-block {
  max-width: min(1320px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.map-frame-wide {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(8px, 1vw, 14px);
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.map-frame-wide img {
  width: 100%;
  border-radius: 8px;
}

.map-copy-below {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.county-bubbles {
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.county-bubbles span {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--forest-950);
  box-shadow: none;
}

.map-actions {
  justify-content: center;
  margin-top: 24px;
}

.gateway-contact-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  background: #fff;
}

.gateway-contact-panel .panel-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-pre-submit {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage-50);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.nav-call, .btn-primary, .mobile-menu .mobile-cta, .sticky-actions a, .home-hero .btn-primary {
  background: var(--forest-900);
  border-color: var(--forest-900);
  color: #fff;
  box-shadow: none;
}

.nav-call:hover, .btn-primary:hover, .mobile-menu .mobile-cta:hover, .sticky-actions a:hover, .home-hero .btn-primary:hover {
  background: var(--forest-950);
  border-color: var(--forest-950);
  color: #fff;
}

.nav-call-light, .btn-secondary, .home-hero .btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--forest-950);
  box-shadow: none;
}

.nav-call-light:hover, .btn-secondary:hover, .home-hero .btn-secondary:hover {
  background: var(--sage-50);
  color: var(--forest-950);
}

.brand strong, h1, h2, h3, h4 {
  color: var(--forest-950);
}

.brand small, .eyebrow, .home-hero .eyebrow, .panel-kicker, .region-card em {
  color: var(--forest-700);
}

.section-head h2, .audience-card h3, .continuity-grid h3, .service-card h3, .faq h2, .faq h3 {
  font-family: var(--sans);
  letter-spacing: -0.01em;
}

.care-network-band .section-head {
  max-width: 880px;
}

.care-network-band .section-head p:not(.eyebrow) {
  max-width: 790px;
  color: var(--ink-soft);
}

.band.white, .section.white, .faq {
  background: #fff;
}

.band.warm, .service-area-standard {
  background: linear-gradient(180deg, #fff 0%, var(--sage-50) 100%);
}

.location-towns span, .county-bubbles span, .local-proof span {
  background: #fff;
  color: var(--forest-950);
  border: 1px solid var(--line);
}

.footer-verification .footer-admin-address {
  color: rgba(255,255,255,.7);
}

.footer-verification .footer-npi {
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: rgba(255,255,255,.82);
}

.desktop-links a::after,.eyebrow:before {
  background: #2f6f69;
}

.eyebrow,.eyebrow.dark,.panel-kicker {
  color: var(--gateway-accent);
}

.market-ribbon-label,.market-ribbon a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #d5e1e3;
  border-right: 0;
  padding: 12px 10px;
  text-align: center;
  color: #26384a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}

.faq-layout>section,.faq-layout>article,.faq-card {
  height: 100%;
}

.card,.service-card,.audience-card,.coverage-panel,.hero-panel,.form-shell,.map-frame,.feature-split aside {
  border-color: #d5e1e3;
  box-shadow: 0 1px 0 rgba(16,43,58,.04);
}

.cta>p:not(.eyebrow) {
  color: rgba(255,255,255,.94);
}

.footer-brand small,.footer-area-columns strong {
  color: #b8d0cf;
}

.footer-bottom,.footer-verification {
  border-top-color: rgba(255,255,255,.16);
}

.local-proof span,.location-towns span,.map-chip-row span {
  background: #fff;
  color: #143747;
  border: 1px solid #d5e1e3;
}

.faq-layout > section {
  display: flex;
  flex-direction: column;
}

.faq-layout > section .faq {
  height: 100%;
  display: grid;
  gap: 12px;
}

.faq details p {
  padding-bottom: 12px;
}

.faq summary::marker {
  color: #2f6f69;
}

.contact-grid .card h3 {
  color: #143747;
}

.hero-panel .local-proof span {
  font-size: 12px;
}

.footer .footer-brand img {
  filter: none;
}

.utility,.footer,.cta,.hero-panel.dark,.dark-band {
  background: var(--forest-950);
  color: #eef7f6;
}

.utility a,.utility span,.utility strong,.footer a,.footer span,.footer p,.footer h3,.footer h4,.cta h2,.cta p,.cta .eyebrow {
  color: #eef7f6;
}

.cta .btn-primary,.footer .btn-primary {
  background: #fff;
  color: var(--forest-950);
  border-color: #fff;
}

.home-hero-copy>p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 690px;
}

.market-ribbon .market-ribbon-label,.market-ribbon a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-left: 1px solid var(--line);
  color: var(--slate-800);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: none;
  background: #fff;
  text-align: center;
}

.market-ribbon .market-ribbon-label:first-child {
  border-left: 0;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--ink-soft);
}

.market-ribbon a:hover,.market-ribbon .market-ribbon-label:hover {
  background: var(--sage-50);
  color: var(--forest-950);
}

.band,.audience-band {
  padding-top: 50px;
  padding-bottom: 50px;
}

.card,.form-choice-card,.coverage-panel,.faq-group,.contact-grid .card,.hero-panel {
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(18,47,63,.04);
  background: #fff;
  min-height: 0;
}

.card h3,.faq-group h3,.coverage-panel h3,.hero-panel h2 {
  color: var(--forest-950);
}

.card p,.hero-panel p,.coverage-panel p {
  color: var(--ink-soft);
}

.home-faq {
  padding-top: 42px;
  padding-bottom: 46px;
}

.home-faq .section-head {
  margin-bottom: 20px;
}

.home-faq .section-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.home-faq .faq-layout {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.home-faq .faq-group {
  padding: 16px;
  min-height: 0;
  height: 100%;
}

.home-faq .faq-group h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
}

.home-faq details {
  padding: 2px 14px;
  margin-bottom: 8px;
}

.home-faq summary {
  min-height: 60px;
}

.home-faq summary {
  font-size: 14px;
  line-height: 1.35;
}

.home-faq details p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-verification span, .footer-verification a {
  margin: 0;
}

.footer-npi-line {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  white-space: nowrap;
  grid-column: 1 / -1;
  flex-wrap: wrap;
}

.footer-npi-line a {
  display: inline;
}

.market-ribbon a,.market-ribbon .market-ribbon-label {
  font-size: 12px;
  min-height: 48px;
  color: var(--gateway-slate);
  background: #fff;
}

.market-ribbon .market-ribbon-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.home-hero-copy>p:not(.eyebrow):not(.hero-microcopy) {
  font-size: 18px;
  line-height: 1.65;
  color: #4f6172;
}

.premium-trust-inner article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 122px;
  padding: 20px 22px;
  background: #fff;
}

.premium-trust-inner strong {
  color: var(--gateway-navy);
}

.premium-trust-inner span {
  color: #526373;
  line-height: 1.45;
}

.audience-grid-top,.form-choice {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
  align-items: stretch;
}

.audience-card,.form-choice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gateway-line);
  border-radius: 14px;
}

.audience-card .btn,.form-choice-card .btn,.service-card a,.card a {
  margin-top: auto;
}

.audience-card h3,.service-card h3,.card h3,.continuity-grid h3 {
  color: var(--gateway-navy);
}

.audience-card p,.service-card p,.card p,.continuity-grid p {
  color: #526373;
  line-height: 1.55;
}

.continuity-grid,.service-grid.compact-service-grid,.card-grid.four {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 20px;
  align-items: stretch;
}

.card,.service-card,.continuity-grid article,.coverage-panel,.hero-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--gateway-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16,43,58,.04);
}

.service-card,.continuity-grid article {
  padding: 22px;
}

.btn,.nav-call,.mobile-cta {
  border-radius: 10px;
}

.cta h2,.cta p,.cta .eyebrow {
  color: #fff;
}

.local-proof,.location-towns,.county-bubbles {
  gap: 9px;
}

.local-proof span,.location-towns span,.county-bubbles span {
  border-radius: 999px;
  color: var(--gateway-navy);
  background: #fff;
  border: 1px solid var(--gateway-line);
}

.footer p,.footer span,.footer a {
  line-height: 1.55;
}

.footer-verification > strong,.footer-npi-line strong,.footer-npi-line a strong {
  color: #fff;
  font-weight: 850;
}

.footer-admin-address {
  grid-column: 2;
}

.footer-legal {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  max-width: 980px;
  margin: 0;
  line-height: 1.65;
  text-align: center;
}

.footer-bottom span:last-child {
  max-width: 980px;
}

.hero-panel.dark,.dark-band,.feature-split aside,.cta,.footer {
  color: #fff;
}

.hero-panel.dark *, .dark-band *, .feature-split aside *, .cta * {
  color: inherit;
}

.card-grid.three {
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.card-grid.feature-plus-one {
  grid-template-columns: repeat(5,minmax(0,1fr));
}

.footer-business-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  max-width: 1120px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}

.footer-business-line strong,.footer-business-line a strong {
  color: #fff;
  font-weight: 800;
}

.footer-business-line a {
  color: #fff;
  text-decoration: none;
}

.footer-business-line a:hover {
  text-decoration: underline;
}

.footer-business-line .footer-admin-address,.footer-business-line,.footer-business-line .footer-npi {
  font-weight: 800;
}

.footer-business-line span[aria-hidden="true"] {
  color: rgba(255,255,255,.42);
  font-weight: 700;
}

.footer-bottom span,.footer-bottom a {
  color: inherit;
  max-width: 980px;
}

@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;
    grid-template-columns: minmax(0,1.14fr) minmax(320px,.86fr);
    align-items: center;
  }

  .hero-copy, .hero-panel, .hero-visual {
    max-width: var(--content);
  }

  .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));
  }

  .compact-service-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .services-index-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .care-network-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;
  }

  .continuity-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .premium-trust-inner {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .premium-trust-bar article:nth-child(odd) {
    border-right: 1px solid rgba(7,29,51,.08);
  }

}

@media (min-width: 980px) {
  .desktop-links, .nav-actions {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .home-hero-shell {
    grid-template-columns: minmax(0, .74fr) minmax(640px, 1.26fr);
    gap: 72px;
    align-items: center;
  }

  .home-hero-copy {
    padding-bottom: 18px;
  }

  .hero {
    padding-top: 78px;
    padding-bottom: 78px;
    grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
  }

  .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));
  }

  .compact-service-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

  .services-index-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

  .care-network-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .audience-grid-top {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .compact-service-grid, .services-index-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

  .premium-trust-inner {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

  .premium-trust-bar article {
    border-bottom: 0;
    border-right: 1px solid rgba(7,29,51,.08);
  }

  .premium-trust-bar article:last-child {
    border-right: 0;
  }

  .continuity-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

  .region-access-band .region-network {
    grid-template-columns: repeat(2, 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;
  }

  .home-hero-visual {
    width: 100%;
    max-width: 760px;
    transform: none;
  }

  .home-hero-shell {
    max-width: 760px;
    gap: 30px;
    min-height: 0;
  }

  .home-hero-copy {
    max-width: 720px;
  }

  .mobile-menu {
    inset: 160px 0 0;
  }

  .site-header.is-scrolled .mobile-menu {
    inset: 120px 0 0;
  }

  .site-header {
    backdrop-filter: none;
  }

  .mobile-menu .utility-region-link {
    display: block;
  }

  .region-access-band .section-head.centered {
    padding: 24px;
  }

}

@media (max-width: 699px) {
  .utility {
    min-height: 34px;
    justify-content: center;
    background: var(--navy-900);
  }

  .utility .utility-spacer {
    display: none;
  }

  .utility a[href^="tel:"] {
    margin: 0;
  }

  .nav {
    min-height: 76px;
    padding: 9px 15px;
    width: 100%;
    max-width: 100%;
  }

  .brand-mark {
    width: 49px;
    height: 49px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: .14em;
  }

  .mobile-menu {
    inset-top: 110px;
    inset: 160px 0 0;
  }

  .home-hero-shell {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 36px;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0,1fr);
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.05;
    max-width: 100%;
  }

  .home-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    margin-top: 17px;
    line-height: 1.58;
  }

  .home-hero .btn {
    width: 100%;
    min-height: 49px;
    padding: 12px 13px;
    font-size: 13px;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    margin-top: 20px;
    font-size: 10px;
  }

  .hero-pathway-inner {
    padding: 21px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 48px;
    padding: 54px 20px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(34px,9.4vw,40px);
  }

  .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;
  }

  .home-hero-visual {
    padding: 0;
    margin-top: 0;
  }

  .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;
  }

  .bridge-graphic-card {
    padding: 8px;
    border-radius: 18px;
  }

  .bridge-graphic-card img {
    border-radius: 11px;
    height: 100%;
    object-fit: contain;
  }

  .bridge-graphic-card figcaption {
    padding: 11px 9px 5px;
    font-size: 11px;
    min-height: 0;
  }

  .market-ribbon {
    min-height: 46px;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .market-ribbon-label {
    display: none;
  }

  .market-ribbon a {
    min-height: 46px;
    padding: 0 8px;
    font-size: 11px;
    letter-spacing: -.01em;
  }

  .market-ribbon a:first-of-type {
    border-left: 0;
  }

  .home-hero .eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .13em;
  }

  .home-hero .hero-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .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;
  }

  .site-header.is-scrolled .mobile-menu {
    inset: 110px 0 0;
  }

  html {
    scroll-padding-top: 108px;
  }

  .home-hero-copy > p:not(.eyebrow):not(.hero-microcopy) {
    font-size: 16px;
    line-height: 1.62;
    max-width: 100%;
  }

  .home-hero .btn-primary, .home-hero .btn-secondary {
    width: 100%;
  }

  .bridge-graphic-card picture {
    aspect-ratio: 3 / 2;
    min-height: 0;
  }

  .premium-trust-bar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .premium-trust-bar article {
    padding: 18px 8px;
    min-height: 0;
  }

  .band, .audience-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .audience-card, .service-card, .compact-service-grid .service-card {
    padding: 24px;
  }

  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header, .home-hero, .premium-trust-bar, .band, .audience-band, .cta, .footer {
    max-width: 100%;
    overflow-x: clip;
  }

  .brand {
    min-width: 0;
  }

  .home-hero-copy, .home-hero-visual, .bridge-graphic-card {
    min-width: 0;
    max-width: 100%;
  }

  .btn-stack {
    width: 100%;
  }

  .audience-card {
    min-height: 0;
  }

  .sticky-actions a {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
    line-height: 1.2;
  }

  .home-hero .hero-actions-large {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-hero .btn-stack {
    min-height: 74px;
    padding: 14px 16px;
  }

  .home-hero .bridge-graphic-card {
    padding: 8px;
  }

  .home-hero .bridge-graphic-card picture {
    min-height: 0;
    aspect-ratio: 3 / 2;
    padding: 8px;
  }

  .region-access-band .section-head.centered {
    padding: 22px 18px;
  }

  .region-access-band .region-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .footer-verification {
    display: flex;
    gap: 6px;
  }

  .person-start-actions .btn {
    width: 100%;
  }

  .market-ribbon a:last-child {
    border-right: 0;
  }

  .gateway-contact-panel .panel-actions {
    grid-template-columns: 1fr;
  }

  .service-area-map-block {
    max-width: calc(100vw - 28px);
  }

  .county-bubbles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .county-bubbles span {
    justify-content: center;
    text-align: center;
  }

  .map-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero .bridge-graphic-card img {
    width: 106%;
    margin-left: -3%;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .home-faq .faq-layout {
    grid-template-columns: 1fr;
  }

  .home-faq {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .footer-npi-line {
    white-space: normal;
    display: inline-flex;
    flex-wrap: wrap;
  }

}

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

}

@media (min-width:980px) {
  .home-hero-shell {
    grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr);
    gap: 52px;
    align-items: center;
  }

  .home-hero h1 {
    font-size: clamp(42px,4.4vw,64px);
  }

  .home-hero-copy>p:not(.eyebrow):not(.hero-microcopy) {
    font-size: 18px;
    line-height: 1.62;
  }

  .card-grid,.contact-grid {
    gap: 20px;
  }

}

@media (max-width:699px) {
  .market-ribbon {
    grid-template-columns: 1fr;
  }

  .market-ribbon-label {
    display: none;
  }

  .home-hero .bridge-graphic-card picture {
    min-height: 0;
    aspect-ratio: 3/2;
  }

  .faq-layout,.contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-shell {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .home-hero h1 {
    font-size: clamp(36px,10.5vw,46px);
  }

  .market-ribbon .market-ribbon-label,.market-ribbon a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .market-ribbon .market-ribbon-label:first-child {
    border-top: 0;
  }

  .band,.audience-band {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .footer-verification {
    display: block;
  }

  .footer-verification span,.footer-verification a {
    margin: 6px 0;
  }

  .footer-business-line {
    gap: 6px 10px;
    font-size: 12px;
  }

  .footer-business-line span[aria-hidden="true"] {
    display: none;
  }

  .footer-business-line strong,.footer-business-line a,.footer-business-line .footer-admin-address,.footer-business-line,.footer-business-line .footer-npi {
    display: block;
    width: 100%;
  }

  .footer-bottom {
    gap: 8px;
  }

}

@media (min-width: 1100px) {
  .home-faq .faq-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (min-width: 700px) and (max-width: 1099px) {
  .home-faq .faq-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width:1180px) {
  .premium-trust-inner,.continuity-grid,.service-grid.compact-service-grid,.card-grid,.card-grid.four {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .card-grid.three {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .card-grid.feature-plus-one {
    grid-template-columns: repeat(5,minmax(0,1fr));
  }

}

@media (max-width:760px) {
  .home-hero-shell {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .premium-trust-inner,.audience-grid-top,.form-choice,.continuity-grid,.service-grid.compact-service-grid,.card-grid,.card-grid.four {
    grid-template-columns: 1fr;
  }

  .market-ribbon {
    grid-template-columns: 1fr;
  }

  .market-ribbon .market-ribbon-label,.market-ribbon a {
    border-left: 0;
    border-top: 1px solid var(--gateway-line);
  }

  .market-ribbon .market-ribbon-label {
    border-top: 0;
  }

  .band,.audience-band {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-verification {
    grid-template-columns: 1fr;
  }

  .footer-admin-address,.footer-npi-line,.footer-legal {
    grid-column: 1;
  }

  .sticky-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width:900px) {
  .card-grid.three,.card-grid.feature-plus-one {
    grid-template-columns: 1fr;
  }

}

/* ═══════════════════════════════════════════════════
   V87 POLISH — v85 design preserved. Surgical fixes only:
   stray off-palette gold hover, hero button hover that
   inverted to light, and small consistency touches.
   ═══════════════════════════════════════════════════ */

.card:hover {
  border-color: rgba(47,111,108,.45);
}

.home-hero .btn-primary:hover {
  background: #0e2836;
  color: #fff;
  border-color: #0e2836;
  box-shadow: 0 14px 30px rgba(20,55,71,.22);
}

.home-hero .btn-secondary:hover {
  background: #f0f6f5;
  color: #143747;
  border-color: #2f6f6c;
}

.pathway-card:hover {
  box-shadow: var(--shadow-sm);
}

.bridge-graphic-card {
  box-shadow: 0 22px 48px rgba(18,47,63,.12);
}

/* ── V87 mobile immediacy layer ── */

.hero-call {
  margin-top: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.hero-call a {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.hero-call a:hover {
  color: var(--forest-950);
}

.hero-microcopy {
  margin-top: 10px;
}

a.phone-plain {
  text-decoration: none;
}

.next-steps {
  max-width: var(--content);
  margin: 26px auto 0;
  display: grid;
  gap: 12px;
}

.next-steps article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sage-50);
}

.next-steps strong {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
}

.next-steps h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-950);
}

.next-steps p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .next-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sticky-actions-3 {
  grid-template-columns: 1fr 1.15fr 0.85fr;
}

.sticky-actions .sticky-call {
  background: var(--brand-green);
  color: #fff;
}

@media (max-width: 380px) {
  .sticky-actions a {
    font-size: 11px;
    padding-left: 4px;
    padding-right: 4px;
  }
}


/* ── V87.2 contrast + symmetry ── */
.dark-band p, .trust-band p, .cta p {
  color: rgba(255,255,255,.92);
}

.dark-band .eyebrow, .trust-band .eyebrow, .cta .eyebrow {
  color: #b8e0da;
}

.footer p {
  color: rgba(255,255,255,.82);
}

.footer a, .footer span {
  color: rgba(255,255,255,.9);
}

.footer-bottom {
  color: rgba(255,255,255,.74);
}

.footer-address {
  color: rgba(255,255,255,.76);
}

.faq-group {
  display: flex;
  flex-direction: column;
}

.hero-call a[href^="mailto:"] {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.lp-band-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}


/* ── V87.3 dark-context legibility: nothing below .9 white on navy ── */
.cta > p:not(.eyebrow),
section.cta p:not(.eyebrow),
.dark-band .section-head > p:not(.eyebrow),
.band.dark-band p:not(.eyebrow),
.trust-band p:not(.eyebrow),
.hero .hero-text,
.hero-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.94);
}

.footer-bottom, .footer-bottom span {
  color: rgba(255,255,255,.8);
}

.footer-address {
  color: rgba(255,255,255,.84);
}
