:root {
  --ink: #123745;
  --ink-soft: #456673;
  --blue: #1688b8;
  --blue-deep: #0b658f;
  --sky: #d9f3fb;
  --mint: #d9f2d7;
  --mint-strong: #9ed39e;
  --paper: #f7fcfd;
  --white: #ffffff;
  --line: rgba(18, 55, 69, 0.13);
  --radius-lg: 42px;
  --radius-md: 28px;
  --shadow: 0 24px 70px rgba(26, 108, 137, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}
a { color: inherit; }
svg { display: block; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  pointer-events: none;
}
.skip-link:focus-visible { transform: translateY(0); pointer-events: auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  column-gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(18, 55, 69, 0.08);
  background: rgba(247, 252, 253, 0.9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
}
.brand-mark svg { width: 27px; fill: none; stroke: var(--blue); stroke-width: 2.3; stroke-linecap: round; }
.brand strong { display: block; font-size: 18px; letter-spacing: .04em; line-height: 1; }
.brand strong span { color: var(--blue); }
.brand small { display: block; margin-top: 4px; color: var(--ink-soft); font-size: 8px; letter-spacing: .24em; }
.site-header nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--blue-deep); }
.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.language-switch button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.language-switch button[aria-pressed="true"] { color: #fff; background: var(--blue-deep); }
.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(22, 136, 184, .22);
}
.header-call svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: clamp(64px, 9vh, 112px) clamp(20px, 6vw, 102px) 82px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 32%, rgba(199, 239, 210, .76), transparent 27%),
    linear-gradient(145deg, #fbfeff 20%, #eaf8fc 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .24;
  background-image: linear-gradient(rgba(18,55,69,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(18,55,69,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, #000, transparent 62%);
}
.hero-copy { position: relative; z-index: 3; max-width: 720px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow > span:first-child { flex: 0 0 26px; width: 26px; height: 2px; border-radius: 2px; background: var(--mint-strong); }
.hero h1, .section-heading h2, .video-copy h2, .contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 720px; font-size: clamp(54px, 7vw, 110px); line-height: .92; }
.hero h1 em { color: var(--blue); font-weight: inherit; }
.hero-lead { max-width: 520px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 16px 36px rgba(22, 136, 184, .25); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.text-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: var(--blue-deep); font-weight: 800; text-underline-offset: 5px; }
.hero-note { margin: 24px 0 0; color: var(--ink-soft); font-size: 14px; }
.signal-stage {
  position: absolute;
  z-index: 2;
  right: clamp(32px, 6vw, 120px);
  top: 50%;
  width: min(38vw, 540px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(22,136,184,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.52);
  box-shadow: inset 0 0 80px rgba(255,255,255,.84), var(--shadow);
}
.signal-ring { position: absolute; border: 1px solid rgba(22,136,184,.18); border-radius: 50%; }
.ring-one { inset: 8%; }
.ring-two { inset: 21%; border-style: dashed; }
.ring-three { inset: 35%; background: rgba(217,242,215,.7); border-color: rgba(70,140,95,.16); }
.signal-tooth { position: absolute; inset: 23% 27%; width: 46%; fill: rgba(255,255,255,.6); stroke: var(--blue-deep); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.signal-tooth .scan-line { fill: none; stroke: rgba(22,136,184,.28); stroke-width: 3; stroke-dasharray: 4 8; }
.signal-label { position: absolute; color: var(--blue-deep); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.label-a { top: 18%; left: 8%; }
.label-b { right: 13%; bottom: 21%; }
.signal-chip { position: absolute; right: 0; top: 18%; display: flex; align-items: baseline; gap: 8px; padding: 14px 18px; border-radius: 18px; background: var(--white); box-shadow: 0 16px 35px rgba(18,55,69,.12); }
.signal-chip strong { font-size: 13px; }
.signal-chip span { color: var(--blue); font-family: Georgia, serif; font-size: 28px; }
.hero-word {
  position: absolute;
  z-index: 0;
  right: -1vw;
  bottom: -4.5vw;
  display: flex;
  color: rgba(22,136,184,.055);
  font-size: clamp(130px, 18vw, 330px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}
.hero-word span:last-child { color: rgba(129,194,132,.11); }

.section-shell { padding: clamp(78px, 10vw, 150px) clamp(20px, 6vw, 102px); scroll-margin-top: 76px; }
.services { background: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 7vw, 110px); align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -8px; }
.section-heading h2, .video-copy h2, .contact-card h2 { font-size: clamp(42px, 5vw, 78px); line-height: 1; }
.section-heading > p:last-child, .video-copy > p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.service-rail { display: grid; grid-template-columns: 1.15fr .9fr .9fr 1.15fr; gap: 16px; margin-top: 54px; }
.care-card { position: relative; min-height: 360px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.care-card--blue { background: var(--sky); }
.care-card--mint { background: var(--mint); }
.care-card--white { background: #fbfefe; }
.care-card--deep { background: var(--blue-deep); color: #fff; }
.service-index { font-size: 12px; font-weight: 900; letter-spacing: .12em; opacity: .66; }
.care-card svg { width: 110px; height: 110px; margin: 34px auto 42px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .78; }
.care-card h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: clamp(24px, 2vw, 34px); font-weight: 500; line-height: 1.05; }
.care-card p { margin: 0; color: inherit; font-size: 14px; line-height: 1.55; opacity: .76; }
.service-disclaimer { margin: 18px 0 0; color: var(--ink-soft); font-size: 12px; }

.clinic {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(42px, 9vw, 140px);
  align-items: center;
  background: linear-gradient(145deg, #effbfe, #f8fdf6);
}
.video-copy { max-width: 540px; }
.video-copy > p { margin-top: 24px; }
.video-copy .text-link { margin-top: 24px; }
.media-composition { display: grid; grid-template-columns: minmax(150px, .58fr) minmax(320px, 1fr); gap: 18px; align-items: center; min-width: 0; }
.photo-stack { display: grid; gap: 16px; min-width: 0; }
.photo-stack img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 7px solid rgba(255,255,255,.9);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(22,104,139,.15);
}
.photo-stack img:first-child { object-position: 50% 50%; }
.photo-stack img:last-child { object-position: 50% 50%; }
.video-stage { position: relative; display: grid; place-items: center; min-height: 720px; }
.video-stage video { position: relative; z-index: 2; display: block; width: min(100%, 405px); aspect-ratio: 9 / 16; border: 10px solid rgba(255,255,255,.88); border-radius: 42px; object-fit: cover; box-shadow: 0 36px 80px rgba(22, 104, 139, .2); background: #dbeaf0; }
.video-orbit { position: absolute; width: min(78%, 530px); aspect-ratio: 1; border: 1px solid rgba(22,136,184,.19); border-radius: 50%; box-shadow: 0 0 0 65px rgba(217,242,215,.28), 0 0 0 130px rgba(217,243,251,.3); }
.video-badge { position: absolute; z-index: 3; right: 7%; bottom: 12%; padding: 13px 17px; border-radius: 999px; background: var(--mint); color: var(--blue-deep); font-size: 12px; font-weight: 900; letter-spacing: .16em; box-shadow: 0 14px 30px rgba(18,55,69,.12); }

.contact { padding-bottom: 36px; background: var(--white); }
.contact-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 8vw, 120px); padding: clamp(32px, 6vw, 82px); border-radius: var(--radius-lg); color: #fff; background: var(--blue-deep); box-shadow: var(--shadow); }
.eyebrow-light { color: #fff; opacity: .84; }
.contact-card > div:first-child > p:last-child { max-width: 520px; margin: 26px 0 0; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.65; }
.contact-actions { display: grid; gap: 12px; align-content: center; }
.contact-line { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 14px; align-items: center; min-height: 78px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; text-decoration: none; background: rgba(255,255,255,.08); }
.contact-line:hover, .contact-line:focus-visible { background: rgba(255,255,255,.14); }
.contact-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--blue-deep); font-size: 21px; }
.contact-line small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.65); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.contact-line strong { display: block; overflow-wrap: anywhere; font-size: 16px; }
.map-card {
  display: grid;
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1fr);
  min-height: 430px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint);
}
.map-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(30px, 5vw, 62px); }
.map-copy h3 { max-width: 440px; margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 3.8vw, 58px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.map-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--ink-soft); line-height: 1.55; }
.button-map { margin-top: 26px; background: var(--white); color: var(--blue-deep); box-shadow: 0 14px 32px rgba(18,55,69,.1); }
.map-card iframe { width: 100%; min-height: 430px; border: 0; background: #dfeceb; }
footer { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding: 30px 6px 0; }
footer p { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.6; text-align: right; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
a:focus-visible, video:focus-visible { outline: 3px solid #77c97d; outline-offset: 4px; }

@media (max-width: 1120px) {
  .hero-copy { max-width: 57vw; }
  .signal-stage { right: 3vw; width: 39vw; }
  .service-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .care-card { min-height: 310px; }
  .clinic { gap: 48px; }
  .media-composition { grid-template-columns: minmax(130px, .5fr) minmax(280px, 1fr); gap: 14px; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto auto; column-gap: 9px; min-height: 68px; padding: 8px 18px; }
  .site-header nav { display: none; }
  .header-call { min-width: 48px; min-height: 48px; padding: 0 14px; }
  .header-call span { display: none; }
  .hero { min-height: auto; padding-top: 52px; }
  .hero-copy { max-width: none; }
  .signal-stage { position: relative; right: auto; top: auto; width: min(86vw, 430px); margin: 48px auto 0; transform: none; }
  .hero-word { bottom: 0; font-size: 27vw; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .clinic { grid-template-columns: 1fr; }
  .video-copy { max-width: 650px; }
  .media-composition { grid-template-columns: minmax(150px, .52fr) minmax(300px, 1fr); }
  .video-stage { min-height: 650px; }
  .contact-card { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .map-card iframe { grid-row: 1; min-height: 390px; }
  .map-copy { grid-row: 2; }
  footer { align-items: flex-start; }
}

@media (max-width: 560px) {
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 7px; }
  .hero { padding: 42px 20px 58px; }
  .hero h1 { font-size: clamp(47px, 14vw, 68px); line-height: .96; }
  .hero-lead { margin-top: 20px; font-size: 16px; line-height: 1.5; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 9px; margin-top: 26px; }
  .button, .text-link { width: 100%; justify-content: center; }
  .hero-note { text-align: center; }
  .signal-stage { width: min(90vw, 370px); margin-top: 38px; }
  .signal-chip { right: 2%; top: 10%; padding: 10px 13px; }
  .signal-chip span { font-size: 22px; }
  .section-shell { padding: 76px 20px; scroll-margin-top: 68px; }
  .section-heading h2, .video-copy h2, .contact-card h2 { font-size: clamp(39px, 11.5vw, 54px); }
  .section-heading > p:last-child, .video-copy > p { font-size: 16px; line-height: 1.55; }
  .service-rail {
    display: flex;
    gap: 14px;
    margin: 36px -20px 0;
    padding: 0 20px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .service-rail::-webkit-scrollbar { display: none; }
  .care-card { flex: 0 0 82vw; min-height: 326px; scroll-snap-align: center; }
  .care-card svg { margin: 26px auto 34px; }
  .service-disclaimer { margin-top: 12px; }
  .clinic { gap: 36px; }
  .media-composition { grid-template-columns: 1fr; gap: 24px; }
  .photo-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .photo-stack img { border-width: 5px; border-radius: 20px; }
  .video-stage { min-height: auto; padding: 30px 0; }
  .video-stage video { width: min(88vw, 360px); border-width: 7px; border-radius: 32px; }
  .video-orbit { width: 92vw; box-shadow: 0 0 0 35px rgba(217,242,215,.25); }
  .video-badge { right: 0; bottom: 7%; }
  .contact { padding-bottom: 28px; }
  .contact-card { gap: 30px; padding: 30px 20px; border-radius: 30px; }
  .map-card { margin-top: 14px; border-radius: 30px; }
  .map-card iframe { min-height: 320px; }
  .map-copy { padding: 30px 20px; }
  .map-copy h3 { font-size: clamp(36px, 11vw, 48px); }
  .button-map { width: 100%; }
  .contact-line { grid-template-columns: 44px minmax(0, 1fr) auto; min-height: 72px; padding: 10px 12px; }
  .contact-icon { width: 44px; height: 44px; }
  .contact-line strong { font-size: 14px; }
  footer { flex-direction: column; gap: 18px; }
  footer p { text-align: left; }
  .brand-footer .brand-mark { background: var(--sky); }
}

@media (max-width: 360px) {
  .site-header { column-gap: 6px; padding-inline: 12px; }
  .brand { gap: 7px; }
  .brand small { display: none; }
  .language-switch { padding: 2px; }
  .language-switch button { min-width: 44px; padding-inline: 7px; }
  .header-call { min-width: 46px; min-height: 46px; padding-inline: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
