:root {
  --ink: #0a1733;
  --navy: #071a3d;
  --blue: #0c2d69;
  --blue-soft: #eaf0f8;
  --green: #087a54;
  --green-bright: #39c18a;
  --white: #ffffff;
  --paper: #f6f8fb;
  --line: #d9e1ec;
  --muted: #5b6678;
  --shadow: 0 24px 70px rgba(3, 20, 53, 0.16);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 98px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -100px; z-index: 1000; padding: .75rem 1rem;
  background: var(--white); color: var(--navy); border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.service-bar { background: var(--navy); color: #dce8ff; font-size: .875rem; }
.service-bar__inner {
  min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.service-bar p { margin: 0; display: flex; align-items: center; gap: .55rem; }
.service-bar a { font-weight: 750; text-decoration: none; color: var(--white); }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(57, 193, 138, .16);
}

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(10, 23, 51, .08); backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; min-width: 225px; }
.brand img { width: 48px; height: 54px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.2; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; letter-spacing: -.01em; }
.brand small { margin-top: .25rem; color: var(--muted); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.main-nav a { font-size: .9rem; font-weight: 680; text-decoration: none; color: #344058; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--green); }

.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.3rem; border: 1px solid transparent; border-radius: .35rem;
  font-weight: 760; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--compact { min-height: 42px; padding: .65rem 1rem; background: var(--green); color: var(--white); font-size: .88rem; }
.button--primary { background: var(--green-bright); color: #041f17; }
.button--primary:hover { background: #56d59f; }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.button--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.button--light { background: var(--white); color: var(--navy); margin-top: 1.5rem; }

.menu-toggle { display: none; background: transparent; border: 0; padding: .6rem; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--navy); }

.hero {
  min-height: 660px; position: relative; overflow: hidden; display: flex; align-items: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(42,113,171,.26), transparent 34%),
    linear-gradient(126deg, #061631 0%, #0a2454 58%, #0a315f 100%);
  color: var(--white);
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -220px; bottom: -300px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018);
}
.hero-grid {
  position: absolute; inset: 0 0 0 50%;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent, black);
}
.hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 7%; align-items: center; padding: 90px 0; }
.eyebrow { margin: 0 0 1rem; color: #8fe0bd; font-size: .79rem; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow--dark { color: var(--green); }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.04; }
h1 { max-width: 720px; font-size: clamp(3rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2.3rem, 4.6vw, 4.25rem); }
.hero__lead { max-width: 660px; margin: 1.6rem 0 0; color: #cfdaeb; font-size: 1.18rem; line-height: 1.65; }
.hero__actions { display: flex; gap: .75rem; margin-top: 2rem; }
.hero__location { margin-top: 2.4rem; display: flex; align-items: center; gap: .75rem; color: #bac7da; font-size: .9rem; }
.hero__location span { color: var(--green-bright); font-size: 1.4rem; }
.hero__location p { margin: 0; }

.care-panel {
  position: relative; padding: 1.5rem; color: var(--ink); background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.6); border-radius: .7rem; box-shadow: var(--shadow);
}
.care-panel::before { content: ""; position: absolute; left: -1px; top: 80px; bottom: 80px; width: 5px; background: var(--green); }
.care-panel__top { display: flex; justify-content: space-between; padding-bottom: 1rem; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.care-panel__logo { display: flex; align-items: center; gap: 1rem; padding: 1.35rem 0; }
.care-panel__logo img { width: 52px; height: 60px; object-fit: contain; }
.care-panel__logo div { display: flex; flex-direction: column; }
.care-panel__logo small { color: var(--muted); }
.care-panel__logo strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; }
.care-route { list-style: none; margin: 0; padding: 0; }
.care-route li { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: .85rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.care-route span { color: var(--green); font-size: .75rem; font-weight: 850; letter-spacing: .08em; }
.care-route strong { font-size: 1rem; }
.care-panel__footer { margin: .9rem -1.5rem -1.5rem; padding: 1rem 1.5rem; border-radius: 0 0 .7rem .7rem; background: var(--blue-soft); color: var(--blue); }
.care-panel__footer p { margin: 0; font-size: .8rem; font-weight: 780; letter-spacing: .03em; }

.proof { position: relative; z-index: 5; background: var(--white); border-bottom: 1px solid var(--line); }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof__grid div { min-height: 122px; display: flex; flex-direction: column; justify-content: center; padding: 1.4rem 2rem; border-right: 1px solid var(--line); }
.proof__grid div:first-child { border-left: 1px solid var(--line); }
.proof strong { color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-size: 2.25rem; line-height: 1; }
.proof span { margin-top: .55rem; color: var(--muted); font-size: .84rem; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8%; align-items: end; margin-bottom: 3rem; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { margin: 0 0 .4rem; color: var(--muted); font-size: 1.05rem; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { min-height: 250px; padding: 1.6rem; background: var(--white); display: flex; flex-direction: column; }
.service-card__number { color: var(--green); font-size: .76rem; font-weight: 850; letter-spacing: .1em; }
.service-card h3 { margin: auto 0 .7rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; line-height: 1.16; }
.service-card p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.55; }
.service-card--feature { grid-column: span 2; color: var(--white); background: var(--blue); }
.service-card--feature .service-card__number, .service-card--feature .service-card__tag { color: #8fe0bd; }
.service-card--feature h3 { margin: .5rem 0; font-size: 2.1rem; }
.service-card--feature p { color: #dbe5f4; max-width: 620px; }
.service-card--feature a { margin-top: auto; padding-top: 1.4rem; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.2); color: var(--white); font-weight: 750; text-decoration: none; }
.service-card__tag { margin: 0 !important; font-size: .73rem !important; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.clinical { color: var(--white); background: var(--navy); }
.clinical__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: start; }
.clinical__statement { position: sticky; top: 125px; }
.clinical__statement p:not(.eyebrow) { max-width: 570px; margin: 1.7rem 0; color: #bfcce0; font-size: 1.05rem; }
.text-link { display: inline-flex; gap: .6rem; padding-bottom: .3rem; color: var(--white); font-weight: 760; text-decoration: none; border-bottom: 1px solid #7290ba; }
.clinical__details { border-top: 1px solid rgba(255,255,255,.22); }
.clinical__details article { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.clinical__details article > span { width: 40px; height: 40px; display: grid; place-items: center; color: #8fe0bd; border: 1px solid rgba(143,224,189,.55); border-radius: 50%; font-size: .8rem; font-weight: 850; }
.clinical__details h3 { margin: 0 0 .45rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; }
.clinical__details p { margin: 0; color: #bfcce0; }

.legacy { overflow: hidden; background: var(--white); }
.legacy__layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9%; align-items: center; }
.legacy__mark { min-height: 500px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; background: var(--blue-soft); border-left: 7px solid var(--green); }
.legacy__mark::before { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(12,45,105,.15); }
.legacy__mark span { position: relative; color: var(--green); font-size: .8rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.legacy__mark strong { position: relative; color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.5rem, 9vw, 8rem); line-height: .86; letter-spacing: -.07em; }
.legacy__lead { margin: 1.8rem 0 2.2rem; color: var(--muted); font-size: 1.08rem; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; border-top: 1px solid var(--line); }
.values div { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.values strong { display: block; margin-bottom: .3rem; color: var(--blue); }
.values p { margin: 0; color: var(--muted); font-size: .9rem; }

.corporate { color: var(--white); background: var(--green); }
.corporate__layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; align-items: end; }
.corporate .eyebrow { color: #c8f7e4; }
.corporate p { margin: 0; color: #d9f5e9; font-size: 1.05rem; }

.contact { background: var(--paper); }
.contact__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; }
.contact__intro p:last-child { color: var(--muted); font-size: 1.03rem; }
.contact__cards { display: grid; gap: .8rem; }
.contact__cards a { position: relative; display: grid; grid-template-columns: 120px 1fr auto; gap: 1rem; align-items: center; min-height: 102px; padding: 1.25rem 1.5rem; background: var(--white); border: 1px solid var(--line); text-decoration: none; transition: border .2s, transform .2s; }
.contact__cards a:hover { transform: translateX(4px); border-color: #9babc1; }
.contact__cards small { color: var(--green); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact__cards strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }
.contact__cards span { color: var(--blue); font-size: .88rem; font-weight: 750; }

.footer { padding: 3.2rem 0 1.4rem; color: #b8c4d7; background: #041127; }
.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding-bottom: 2.3rem; }
.brand--footer { color: var(--white); }
.brand--footer small { color: #91a1ba; text-transform: none; letter-spacing: 0; }
.footer__top > p { max-width: 360px; margin: 0; text-align: right; }
.footer__bottom { padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer__bottom p { margin: 0; }

.floating-contact {
  position: fixed; z-index: 90; right: 20px; bottom: 20px; display: flex; flex-direction: column;
  padding: .75rem 1rem .7rem; min-width: 150px; color: var(--white); background: var(--green);
  border: 1px solid rgba(255,255,255,.28); border-radius: .5rem; box-shadow: 0 12px 38px rgba(2,31,22,.26); text-decoration: none;
}
.floating-contact span { font-size: .7rem; opacity: .82; letter-spacing: .07em; text-transform: uppercase; }
.floating-contact strong { font-size: .9rem; }

:focus-visible { outline: 3px solid #79e6b9; outline-offset: 3px; }

@media (max-width: 1050px) {
  .nav-cta { display: none; }
  .main-nav { gap: 1.15rem; }
  .hero__layout { grid-template-columns: 1fr 420px; gap: 4%; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 84px 0; }
  .service-bar__inner { min-height: 42px; }
  .service-bar p { font-size: .78rem; }
  .service-bar a { font-size: .78rem; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem 16px 1rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(5,22,49,.1);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .9rem .5rem; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; }
  .hero__layout { grid-template-columns: 1fr; gap: 3rem; padding: 76px 0; }
  .hero__copy { max-width: 700px; }
  .care-panel { max-width: 580px; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__grid div:nth-child(odd) { border-left: 1px solid var(--line); }
  .proof__grid div { border-bottom: 1px solid var(--line); }
  .section-heading, .clinical__layout, .legacy__layout, .corporate__layout, .contact__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .clinical__statement { position: static; }
  .legacy__mark { min-height: 330px; max-width: 560px; }
  .contact__cards a { grid-template-columns: 100px 1fr; }
  .contact__cards span { grid-column: 2; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .service-bar__inner { justify-content: center; }
  .service-bar p { display: none; }
  .brand { min-width: 0; }
  .brand img { width: 42px; height: 47px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .64rem; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .hero__layout { padding: 62px 0; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__location { align-items: flex-start; }
  .care-panel { padding: 1.2rem; }
  .care-panel__footer { margin: .9rem -1.2rem -1.2rem; padding: 1rem 1.2rem; }
  .proof__grid { margin-inline: 0; width: 100%; }
  .proof__grid div { min-height: 100px; padding: 1rem; }
  .proof strong { font-size: 1.8rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card--feature { grid-column: auto; }
  .service-card { min-height: 225px; }
  .values { grid-template-columns: 1fr; }
  .legacy__mark { min-height: 260px; }
  .contact__cards a { grid-template-columns: 1fr; }
  .contact__cards span { grid-column: auto; }
  .footer__top, .footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer__top > p { text-align: left; }
  .floating-contact { left: 12px; right: 12px; bottom: 12px; min-width: 0; flex-direction: row; justify-content: space-between; align-items: center; }
  .footer { padding-bottom: 6.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
