:root {
  --ink: #0f2233;
  --muted: #5d6f7d;
  --soft: #f4f8fa;
  --soft-2: #eef6f8;
  --line: #dce8ed;
  --white: #ffffff;
  --primary: #0b5c70;
  --primary-2: #0f7c8f;
  --accent: #63c8d8;
  --emerald: #4bb28c;
  --shadow: 0 24px 70px rgba(15, 34, 51, 0.12);
  --shadow-soft: 0 16px 42px rgba(15, 34, 51, 0.08);
  --radius: 24px;
  --container: 1220px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.45rem, 6vw, 4.45rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-soft { background: linear-gradient(180deg, var(--soft), #fff); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 750;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: #496171; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 24px; }
.grid > *, .split > *, .hero-grid > *, .footer-grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 12px 26px rgba(11, 92, 112, .22); }
.btn-primary:hover { background: #084f61; }
.btn-secondary { background: var(--white); color: var(--primary); border-color: var(--line); box-shadow: var(--shadow-soft); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: var(--soft-2);
  color: var(--primary);
  flex: 0 0 auto;
}
.icon svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 2; }
:focus-visible { outline: 3px solid rgba(99, 200, 216, .7); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 232, 237, .72);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 32px rgba(15, 34, 51, .08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.16rem; color: var(--ink); font-weight: 900; }
.brand img { object-fit: contain; }
.brand .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .95rem; font-weight: 750; color: #263d4d; }
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { font-weight: 850; color: var(--primary); white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 44px;
  background:
    radial-gradient(circle at 84% 12%, rgba(99,200,216,.18), transparent 30%),
    linear-gradient(135deg, #f7fbfc 0%, #ffffff 55%, #eef7f8 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 54px; align-items: center; }
.hero-copy { padding: 38px 0; }
.hero h1 { max-width: 820px; margin: 16px 0 22px; }
.hero-ctas, .inline-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  color: #334d5e;
  font-weight: 750;
  font-size: .9rem;
}
.hero-doctor {
  display: none;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  width: fit-content;
  max-width: 440px;
  margin-top: 20px;
  padding: 9px 16px 9px 9px;
  border: 1px solid rgba(220, 232, 237, .92);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 12px 30px rgba(15, 34, 51, .06);
  backdrop-filter: blur(14px);
}
.hero-doctor img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 24%;
}
.hero-doctor span {
  display: block;
  color: var(--primary);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-doctor strong {
  display: block;
  margin-top: 3px;
  font-size: 1.08rem;
  line-height: 1.15;
}
.hero-doctor p {
  display: none;
  margin: 5px 0 0;
  font-size: .92rem;
  line-height: 1.45;
}
.hero-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dbeff3;
}
.hero-card img { width: 100%; height: clamp(460px, 54vw, 650px); object-fit: cover; }
.hero-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(9, 46, 58, .82);
  backdrop-filter: blur(14px);
}
.hero-note p { color: rgba(255,255,255,.82); margin: 3px 0 0; }
.quick-strip { transform: translateY(50%); margin-top: -4px; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}
.quick-item {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  background: var(--white);
}
.quick-item b { display: block; margin-bottom: 2px; }
.quick-item span { color: var(--muted); font-size: .94rem; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.image-stack { position: relative; min-height: 560px; }
.image-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.image-stack .large { left: 0; top: 0; width: 76%; height: 500px; }
.image-stack .small { right: 0; bottom: 0; width: 48%; height: 280px; border: 8px solid var(--white); }
.stat-card {
  position: absolute;
  left: 34px;
  bottom: 36px;
  width: 170px;
  padding: 18px;
  border-radius: 22px;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.stat-card strong { display: block; font-size: 2rem; line-height: 1; }
.stat-card span { color: rgba(255,255,255,.78); font-weight: 700; }
.feature-list { display: grid; gap: 15px; margin-top: 26px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item p { margin: 4px 0 0; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 34, 51, .055);
}
.service-card { min-height: 260px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(99,200,216,.8); box-shadow: var(--shadow-soft); }
.service-card h3 { margin: 20px 0 10px; }
.service-card p { margin: 0; }
.service-groups {
  display: grid;
  gap: 58px;
}
.service-group {
  display: grid;
  gap: 24px;
}
.service-group-head {
  max-width: 860px;
}
.service-group-head h2 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}
.service-group-head p {
  margin: 12px 0 0;
  max-width: 700px;
}
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 34px; }
.section-head p { max-width: 620px; margin: 10px 0 0; }

.doctor-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
  color: var(--white);
}
.doctor-panel img { width: 100%; height: 560px; object-fit: cover; }
.doctor-panel .content { padding: 56px 52px 56px 0; }
.doctor-panel p { color: rgba(255,255,255,.76); }
.doctor-panel .chip { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }

.team-showcase {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f4f9fb 100%),
    radial-gradient(circle at 85% 18%, rgba(99,200,216,.2), transparent 32%);
}
.team-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.team-header h2 { margin-top: 12px; max-width: 820px; }
.team-header p { max-width: 700px; margin-top: 14px; }
.team-controls {
  display: flex;
  gap: 10px;
}
.team-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15,34,51,.08);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.team-arrow:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: var(--white);
}
.team-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 31%);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 0 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(11,92,112,.35) transparent;
}
.team-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  isolation: isolate;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,34,51,0) 34%, rgba(15,34,51,.88) 100%);
}
.team-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform .45s ease;
}
.team-card:hover img { transform: scale(1.045); }
.team-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
}
.team-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.team-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.team-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}
.team-card.is-featured {
  grid-column: span 1;
  box-shadow: 0 28px 78px rgba(11,92,112,.18);
}

.video-story {
  background:
    radial-gradient(circle at 18% 10%, rgba(99,200,216,.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fa 100%);
}
.video-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(15,34,51,.96), rgba(11,92,112,.88)),
    url("../images/slider-04-a-01.jpg") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-copy {
  padding: 28px;
  color: var(--white);
}
.video-copy .eyebrow { color: var(--accent); }
.video-copy h2 { margin: 14px 0 18px; }
.video-copy p { color: rgba(255,255,255,.78); }
.video-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.video-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: .92rem;
}
.video-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #071923;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  pointer-events: none;
}
.video-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.tech-band {
  border-radius: 34px;
  padding: 54px;
  background: linear-gradient(135deg, #0d5062, #0f7c8f);
  color: var(--white);
  overflow: hidden;
}
.tech-band p { color: rgba(255,255,255,.78); }
.tech-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 30px; }
.tech-item { padding: 20px; border-radius: 20px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
.tech-item b { display: block; margin-bottom: 5px; }
.tech-item span { color: rgba(255,255,255,.78); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid button {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(15, 34, 51, .08);
}
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; transition: transform .35s ease; }
.gallery-grid button:hover img { transform: scale(1.045); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall img { height: 536px; }
.gallery-experience {
  background:
    linear-gradient(180deg, #f6fbfc 0%, #fff 48%),
    radial-gradient(circle at 12% 10%, rgba(99, 200, 216, .18), transparent 32%);
}
.gallery-lab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.gallery-lab h2 { margin-top: 12px; }
.gallery-lab p { max-width: 680px; margin-top: 14px; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.gallery-filters button {
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 34, 51, .05);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.gallery-filters button:hover { transform: translateY(-2px); border-color: rgba(99,200,216,.8); }
.gallery-filters button.is-active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-grid-creative {
  grid-auto-flow: dense;
  align-items: stretch;
}
.gallery-grid-creative .feature-tile {
  position: relative;
  min-height: 260px;
  isolation: isolate;
}
.gallery-grid-creative .feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 34, 51, 0) 34%, rgba(15, 34, 51, .76) 100%);
  opacity: .92;
  transition: opacity .25s ease;
}
.gallery-grid-creative .feature-tile:hover::after { opacity: 1; }
.gallery-grid-creative .feature-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--white);
  text-align: left;
  transform: translateY(6px);
  transition: transform .25s ease;
}
.gallery-grid-creative .feature-tile:hover span { transform: translateY(0); }
.gallery-grid-creative .feature-tile b {
  font-size: 1rem;
  line-height: 1.2;
}
.gallery-grid-creative .feature-tile em {
  color: rgba(255,255,255,.78);
  font-style: normal;
  font-size: .86rem;
  line-height: 1.35;
}
.gallery-grid-creative .feature-tile.is-hidden { display: none; }

.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}
.partner-logo {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 34, 51, .05);
}
.partner-logo img {
  max-height: 46px;
  object-fit: contain;
  opacity: .78;
  filter: grayscale(1);
}

.page-hero {
  padding: 92px 0 70px;
  background:
    linear-gradient(90deg, rgba(15,34,51,.82), rgba(15,34,51,.5)),
    var(--hero-image) center/cover;
  color: var(--white);
}
.page-hero p { color: rgba(255,255,255,.82); }
.page-hero .eyebrow { color: var(--accent); }

.hours-list { display: grid; gap: 10px; }
.hours-list li, .contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.hours-list span:last-child { font-weight: 800; color: var(--ink); }
.contact-card { display: flex; gap: 16px; align-items: flex-start; }
.contact-card p { margin: 4px 0 0; }
.map-embed {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.cta {
  border-radius: 34px;
  padding: 58px;
  background:
    linear-gradient(135deg, rgba(15,34,51,.88), rgba(11,92,112,.84)),
    url("../images/DSC00435-min-scaled.jpg") center/cover;
  color: var(--white);
}
.cta p { color: rgba(255,255,255,.8); }

.site-footer {
  padding: 72px 0 30px;
  color: rgba(255,255,255,.76);
  background: #0e2330;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .9fr 1fr; gap: 34px; }
.site-footer h3, .site-footer h4 { color: var(--white); margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .92rem; }
.site-footer .hours-list li { border-color: rgba(255,255,255,.12); }
.site-footer .hours-list span:last-child { color: var(--white); }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
  padding: 24px;
  background: rgba(4, 18, 26, .9);
  place-items: center;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 86vh; width: auto; border-radius: 20px; box-shadow: var(--shadow); }
.lightbox button { position: fixed; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; font-size: 1.5rem; }
.mobile-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 36;
  min-height: 54px;
  box-shadow: 0 18px 42px rgba(11, 92, 112, .28);
}

[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav-links, .nav-actions .phone-link { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    inset: 74px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 16px 14px; border-radius: 16px; font-size: 1rem; }
  .nav-links a:hover { background: var(--soft); }
  .hero-grid, .split, .doctor-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-grid { gap: 38px; }
  .hero-card img { height: min(64vw, 560px); }
  .doctor-panel .content { padding: 0 34px 40px; }
  .team-header { grid-template-columns: 1fr; }
  .team-carousel { grid-auto-columns: minmax(280px, 46%); }
  .video-shell { grid-template-columns: 1fr; }
  .video-copy { padding: 18px; }
  .quick-strip { transform: none; margin-top: 28px; }
  .quick-grid, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .tech-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-lab { grid-template-columns: 1fr; }
  .gallery-filters { justify-content: flex-start; }
}

@media (min-width: 721px) and (max-width: 1040px) {
  .container { width: min(100% - 48px, var(--container)); }
  .section { padding: 86px 0; }
  .page-hero { padding: 86px 0 66px; }
  .hero-copy {
    max-width: 760px;
    padding: 22px 0 0;
  }
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 30px;
  }
  .quick-item { min-height: 106px; }
  .image-stack {
    min-height: 0;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
  }
  .image-stack img,
  .image-stack .large,
  .image-stack .small {
    position: static;
    width: 100%;
    border: 0;
  }
  .image-stack .large { height: 430px; }
  .image-stack .small { height: 430px; }
  .stat-card {
    left: 24px;
    bottom: 24px;
  }
  .doctor-panel {
    grid-template-columns: .85fr 1.15fr;
    gap: 0;
  }
  .doctor-panel img { height: 520px; }
  .doctor-panel .content { padding: 44px 36px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid .wide { grid-column: span 2; }
  .gallery-grid img { height: 250px; }
  .gallery-grid .tall img { height: 516px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { line-height: 1.58; }
  h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(1.65rem, 8vw, 2.32rem); }
  h3 { font-size: 1.12rem; }
  .container { width: min(100% - 26px, var(--container)); }
  .section { padding: 58px 0; }
  .lead { font-size: 1.02rem; }
  .eyebrow {
    gap: 8px;
    font-size: .74rem;
    letter-spacing: .07em;
  }
  .eyebrow::before { width: 24px; }
  .btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 18px;
  }
  .inline-actions, .hero-ctas {
    width: 100%;
    gap: 10px;
  }
  .site-header { background: rgba(255,255,255,.94); }
  .nav-wrap { min-height: 68px; }
  .brand { gap: 10px; font-size: 1.05rem; }
  .brand .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .nav-links {
    inset: 76px 13px auto;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    padding: 10px;
    border-radius: 22px;
  }
  .nav-links a {
    padding: 16px 14px;
    font-size: 1.04rem;
  }
  .nav-actions > .btn { display: none; }
  .hero {
    padding: 28px 0 24px;
    background:
      radial-gradient(circle at 78% 8%, rgba(99,200,216,.2), transparent 30%),
      linear-gradient(180deg, #f8fcfd 0%, #fff 58%, #eef7f8 100%);
  }
  .hero-grid { gap: 20px; }
  .hero-copy { padding: 8px 0 0; }
  .hero h1 { margin: 12px 0 14px; }
  .hero .lead {
    margin-bottom: 0;
  }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }
  .chip {
    width: fit-content;
    max-width: 100%;
    padding: 8px 12px;
    font-size: .86rem;
  }
  .hero-doctor {
    display: block;
    width: auto;
    max-width: none;
    margin-top: 16px;
    padding: 12px;
    border-radius: 24px;
  }
  .hero-doctor img {
    width: 100%;
    height: 220px;
    margin-bottom: 12px;
    border-radius: 20px;
    object-position: center 24%;
  }
  .hero-doctor strong { font-size: 1rem; }
  .hero-doctor p {
    display: block;
    font-size: .84rem;
    line-height: 1.35;
  }
  .hero-card {
    border-radius: 26px;
    box-shadow: 0 18px 46px rgba(15, 34, 51, .12);
  }
  .hero-card img {
    height: clamp(240px, 68vw, 340px);
    object-position: center;
  }
  .hero-note {
    position: static;
    border-radius: 0;
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }
  .hero-note .btn { width: 100%; border-color: rgba(255,255,255,.28); }
  .quick-strip { margin-top: 14px; }
  .quick-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .quick-grid::-webkit-scrollbar { display: none; }
  .quick-item {
    flex: 0 0 82%;
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
  }
  .quick-grid, .grid-2, .grid-3, .grid-4, .tech-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head {
    display: block;
    margin-bottom: 24px;
  }
  .section-head .btn { margin-top: 18px; }
  .card {
    padding: 22px;
    border-radius: 22px;
  }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 16px; }
  .service-groups { gap: 42px; }
  .service-group { gap: 18px; }
  .service-group-head h2 { font-size: 1.55rem; }
  .home-about,
  .home-doctor,
  .home-why,
  .home-tech {
    display: none;
  }
  .home-video {
    padding: 42px 0;
  }
  .home-video .video-copy p,
  .home-video .video-points {
    display: none;
  }
  .home-services {
    padding: 48px 0;
  }
  .home-services .section-head p {
    display: none;
  }
  .home-services .service-card:nth-of-type(n+4) {
    display: none;
  }
  .home-contact {
    padding: 42px 0 50px;
  }
  .image-stack { min-height: auto; display: grid; gap: 16px; }
  .image-stack img, .image-stack .large, .image-stack .small {
    position: static;
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 24px;
  }
  .stat-card {
    left: 16px;
    bottom: 16px;
    width: 138px;
    padding: 14px;
    border-radius: 18px;
  }
  .doctor-panel {
    border-radius: 26px;
  }
  .doctor-panel img { height: 360px; }
  .doctor-panel .content { padding: 30px 22px 32px; }
  .team-header {
    gap: 18px;
    margin-bottom: 22px;
  }
  .team-controls { align-self: start; }
  .team-arrow {
    width: 44px;
    height: 44px;
  }
  .team-carousel {
    grid-auto-columns: minmax(252px, 86%);
    gap: 14px;
    padding-bottom: 18px;
  }
  .team-card, .team-card img { min-height: 410px; }
  .team-card { border-radius: 24px; }
  .team-card div { left: 16px; right: 16px; bottom: 16px; }
  .video-shell {
    gap: 12px;
    padding: 14px;
    border-radius: 26px;
  }
  .video-copy { padding: 12px; }
  .video-copy h2 { margin-bottom: 0; }
  .video-points {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 20px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .video-points::-webkit-scrollbar { display: none; }
  .video-points span {
    flex: 0 0 auto;
    font-size: .84rem;
    padding: 9px 12px;
  }
  .video-frame {
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(0,0,0,.2);
  }
  .video-frame::before { inset: 8px; border-radius: 16px; }
  .tech-band, .cta { padding: 28px 22px; border-radius: 24px; }
  .tech-item { padding: 18px; border-radius: 18px; }
  .gallery-lab { gap: 20px; }
  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .gallery-filters button {
    min-height: 44px;
    padding: 9px 10px;
    font-size: .86rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-grid .wide { grid-column: auto; }
  .gallery-grid img, .gallery-grid .tall img { height: 265px; }
  .gallery-grid-creative .feature-tile { min-height: 265px; border-radius: 24px; }
  .gallery-grid-creative .feature-tile span { left: 14px; right: 14px; bottom: 14px; }
  .gallery-grid-creative .feature-tile em { font-size: .82rem; }
  .partner-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-logo {
    min-height: 88px;
    padding: 18px;
    border-radius: 18px;
  }
  .page-hero {
    padding: 64px 0 48px;
    background:
      linear-gradient(90deg, rgba(15,34,51,.86), rgba(15,34,51,.62)),
      var(--hero-image) center/cover;
  }
  .map-embed {
    min-height: 330px;
    border-radius: 24px;
  }
  .hours-list li, .contact-line {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }
  .contact-card {
    align-items: center;
  }
  .mobile-call { display: inline-flex; }
  .mobile-call { width: auto; }
  .site-footer { padding-bottom: 88px; }
  .footer-bottom { display: grid; gap: 8px; }
  .lightbox { padding: 14px; }
  .lightbox img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
  }
}

@media (max-width: 420px) {
  .container { width: min(100% - 22px, var(--container)); }
  .hero-card img { height: 330px; }
  .hero-doctor img { height: 205px; }
  .quick-item { flex-basis: 88%; }
  .image-stack img, .image-stack .large, .image-stack .small { height: 270px; }
  .doctor-panel img { height: 330px; }
  .gallery-grid img, .gallery-grid .tall img,
  .gallery-grid-creative .feature-tile { height: 240px; min-height: 240px; }
  .partner-strip { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-animate] { opacity: 1; transform: none; }
}
