:root {
  --ink: #1f1e1d;
  --muted: #6b6661;
  --gold: #d5b36b;
  --gold-deep: #9f7b2d;
  --gold-soft: #f4ead0;
  --aqua: #cde8e8;
  --aqua-deep: #7aaeb3;
  --mist: #eef7f7;
  --ivory: #fbfaf6;
  --white: #ffffff;
  --charcoal: #111111;
  --line: rgba(28, 28, 28, 0.11);
  --soft-line: rgba(213, 179, 107, 0.25);
  --shadow: 0 26px 80px rgba(14, 18, 20, 0.13);
  --shadow-soft: 0 18px 50px rgba(19, 28, 32, 0.09);
  --page-max: 1200px;
  --page-pad: 24px;
  --page-pad-mobile: 16px;
  --section-y: clamp(70px, 7vw, 100px);
  --section-y-mobile: clamp(46px, 9vw, 66px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, video { max-width: 100%; }
img { display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.container,
.section-inner,
.hero__inner,
.services-inner,
.locations-inner,
.reviews-inner,
.video-inner,
.faq-inner,
.footer-inner {
  width: min(100% - calc(var(--page-pad) * 2), var(--page-max));
  margin-inline: auto;
}

.sbs-topbar {
  background: #050505;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.sbs-topbar__inner {
  width: min(100% - 32px, 1240px);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-inline: auto;
}
.sbs-topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .03em;
}
.sbs-topbar__actions a {
  text-decoration: none;
  color: rgba(255, 255, 255, .82);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  transition: .25s ease;
}
.sbs-topbar__actions a:hover,
.sbs-topbar__actions a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  transform: translateY(-1px);
}
.sbs-topbar__actions .sbs-test { background: #fff; color: #111; border-color: #fff; }

.sbs-mark,
.sbs-lockup,
.sbs-footer-mark,
.built-by-sbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-radius: 999px;
  padding: 10px 18px;
  line-height: 0;
  text-decoration: none;
}
.sbs-mark img,
.sbs-lockup img,
.sbs-footer-mark img,
.built-by-sbs img,
[class*="sbs"] img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  height: 24px;
  width: auto;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 250, 246, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  width: min(100% - 40px, 1240px);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; width: 182px; min-width: 152px; }
.brand img { height: 54px; width: auto; object-fit: contain; filter: none; }
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #353230;
}
.main-nav a { text-decoration: none; position: relative; padding: 8px 0; font-weight: 400; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-link { font-weight: 400; text-decoration: none; font-size: 14px; white-space: nowrap; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--charcoal);
  color: #fff;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  min-height: 48px;
  padding: 13px 22px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); box-shadow: 0 22px 52px rgba(0,0,0,.17); background: #000; }
.btn--small { min-height: 40px; padding: 10px 16px; font-size: 13px; }
.btn--ghost { background: rgba(255,255,255,.5); color: var(--ink); border-color: rgba(0,0,0,.16); box-shadow: none; }
.btn--ghost:hover { background: #fff; }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; box-shadow: none; }
.btn--ghost-light:hover { background: #fff; color: #111; }
.btn--full { width: 100%; }
.text-link { color: var(--gold-deep); text-decoration: none; font-weight: 500; border-bottom: 1px solid currentColor; }

.hero {
  margin-top: -1px;
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #bfe4e5;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 77% 42%, rgba(255,255,255,0) 0 34%, rgba(255,255,255,.08) 58%, rgba(31,48,52,.12) 100%),
    linear-gradient(90deg, rgba(199,228,229,.74) 0%, rgba(246,249,247,.14) 34%, rgba(21,38,42,.03) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(34px, 6vh, 56px);
}
.hero__panel {
  position: relative;
  max-width: 690px;
  padding: clamp(34px, 5vw, 62px) clamp(38px, 6vw, 78px);
  color: #191817;
  transition: opacity .5s ease, transform .5s ease;
}
.hero__panel::before {
  content: "";
  position: absolute;
  top: -9svh;
  bottom: -9svh;
  left: clamp(-220px, -11vw, -110px);
  width: min(72vw, 1020px);
  z-index: -1;
  border-radius: 0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.88) 13%,
      rgba(255,255,255,.96) 49%,
      rgba(255,255,255,.82) 68%,
      rgba(255,255,255,.34) 84%,
      rgba(255,255,255,0) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: 0;
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Segoe UI Light", "Helvetica Neue", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: 1;
}
h1 { font-size: clamp(46px, 5.8vw, 86px); margin-bottom: 22px; max-width: 700px; }
h2 { font-size: clamp(34px, 4vw, 58px); margin-bottom: 18px; }
h3 { font-size: clamp(22px, 1.85vw, 29px); margin-bottom: 12px; }
p { color: var(--muted); font-size: 18px; max-width: 68ch; font-weight: 300; }
.hero__panel p { font-size: clamp(18px, 1.52vw, 21px); color: #383431; max-width: 610px; font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.mini-proof { display: flex; flex-wrap: wrap; gap: 10px; color: #4d4843; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.mini-proof span { border: 1px solid rgba(0,0,0,.1); background: rgba(255,255,255,.54); padding: 8px 12px; border-radius: 999px; }

.section { padding: var(--section-y) 0; position: relative; }
.trust-strip { background: #fff; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-grid article {
  padding: 22px clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 5px;
}
.trust-grid article:last-child { border-right: 0; }
.trust-grid strong { color: var(--gold-deep); font-size: 13px; letter-spacing: .16em; font-weight: 500; }
.trust-grid span { color: #2a2826; font-size: 15px; }

.image-ribbon { padding-block: 34px; background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%); }
.ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ribbon-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 160px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.9);
}
.ribbon-grid img { width: 100%; height: 100%; min-height: 160px; object-fit: cover; transition: transform .5s ease; }
.ribbon-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #222;
}
.ribbon-grid figure:hover img { transform: scale(1.05); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: clamp(34px, 5vw, 72px); align-items: start; }
.split--center { align-items: center; }
.glass-card,
.path-result,
.service-card,
.location-card,
.credential-card,
.search-card,
.contact-panel,
.faq-list details {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.outcome-card { border-radius: 34px; padding: clamp(28px, 4vw, 46px); position: relative; overflow: hidden; }
.outcome-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% 20%;
  height: 160px;
  background: radial-gradient(circle, rgba(205,232,232,.9), transparent 70%);
}
.outcome-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--soft-line);
  margin-bottom: 24px;
  background: radial-gradient(circle, #fff 0 50%, rgba(244,234,208,.9) 51% 100%);
}
.outcome-ring span { color: var(--gold-deep); font-size: 24px; letter-spacing: .1em; font-weight: 300; }

.section-head { max-width: 760px; margin-bottom: clamp(26px, 4vw, 44px); }
.section-head--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.path-section { background: linear-gradient(135deg, var(--ivory), #eff8f8); }
.pathfinder { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 24px; }
.path-buttons { display: grid; gap: 12px; }
.path-btn,
.cred-btn,
.search-tab,
.direction-btn,
.facility-node {
  border: 1px solid rgba(0,0,0,.1);
  background: rgba(255,255,255,.66);
  border-radius: 999px;
  padding: 13px 16px;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  font-weight: 400;
  transition: .24s ease;
}
.path-btn:hover,
.cred-btn:hover,
.search-tab:hover,
.direction-btn:hover,
.facility-node:hover { transform: translateY(-1px); background: #fff; }
.path-btn.active,
.cred-btn.active,
.search-tab.active,
.direction-btn.active,
.facility-node.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.path-result {
  border-radius: 36px;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
}
.path-media {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}
.path-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 22px 0; }
.result-grid article { border: 1px solid var(--line); border-radius: 22px; padding: 18px; background: rgba(255,255,255,.68); }
.result-grid strong { display: block; font-weight: 500; margin-bottom: 6px; color: var(--gold-deep); }
.result-grid span { color: var(--muted); }

.doctor-section { background: #fff; overflow: hidden; }
.doctor-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr); gap: clamp(38px, 7vw, 88px); align-items: center; }
.credential-tabs, .search-tabs, .direction-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 18px; }
.credential-card { border-radius: 28px; padding: 24px; }
.credential-card strong { display: block; font-weight: 500; margin-bottom: 8px; }
.awards-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 24px; }
.awards-row img { height: 56px; width: auto; object-fit: contain; filter: saturate(.95); opacity: .95; }
.doctor-portrait { position: relative; min-height: 560px; display: flex; align-items: end; justify-content: center; }
.portrait-halo {
  position: absolute;
  width: min(84%, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), rgba(205,232,232,.92) 56%, transparent 72%);
  filter: blur(2px);
  bottom: 70px;
}
.doctor-portrait > img { position: relative; z-index: 2; height: 520px; width: auto; object-fit: contain; }
.portrait-note {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 22px;
  width: min(270px, 72%);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: 18px;
}
.portrait-note strong { display: block; color: var(--gold-deep); font-size: 26px; font-weight: 300; margin-bottom: 4px; }
.portrait-note span { color: var(--muted); font-size: 14px; }

.services-section { background: linear-gradient(180deg, var(--ivory), #f3f8f8); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
  text-decoration: none;
  border-radius: 30px;
  padding: 24px;
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--soft-line); }
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .5s ease;
}
.service-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.86) 58%, rgba(255,255,255,.97));
}
.service-card:hover > img { transform: scale(1.05); }
.service-card span,
.service-card h3,
.service-card p { position: relative; z-index: 2; }
.service-card span { color: var(--gold-deep); font-size: 12px; letter-spacing: .16em; font-weight: 500; margin-bottom: 12px; }
.service-card h3 { font-size: 28px; }
.service-card p { font-size: 16px; margin-bottom: 0; }

.roadmap-section { background: #fff; }
.roadmap { display: grid; gap: 12px; }
.roadmap article { display: grid; grid-template-columns: 48px 1fr; gap: 10px 16px; align-items: start; padding: 18px; border-radius: 24px; background: #fbfaf6; border: 1px solid var(--line); transition: .25s ease; }
.roadmap article:hover { transform: translateX(5px); border-color: var(--soft-line); }
.roadmap span { grid-row: span 2; color: var(--gold-deep); font-size: 13px; letter-spacing: .16em; }
.roadmap strong { font-weight: 500; }
.roadmap p { margin: 0; font-size: 15px; }

.facility-section { background: linear-gradient(135deg, #f5fbfb, #fff); }
.facility-grid { display: grid; grid-template-columns: .86fr 1fr; gap: clamp(28px, 5vw, 62px); align-items: center; }
.facility-photo { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.9); }
.facility-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.facility-map {
  position: relative;
  min-height: 420px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.9);
  background:
    radial-gradient(circle at 50% 50%, rgba(213,179,107,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,247,247,.9));
  box-shadow: var(--shadow-soft);
  padding: 22px;
  margin-top: 28px;
}
.facility-node { position: absolute; text-align: center; min-width: 132px; }
.facility-node:nth-child(1) { top: 26px; left: 28px; }
.facility-node:nth-child(2) { top: 26px; right: 28px; }
.facility-node:nth-child(3) { bottom: 26px; left: 28px; }
.facility-node:nth-child(4) { bottom: 26px; right: 28px; }
.facility-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(78%, 360px);
  border-radius: 32px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.facility-center span { display: block; font-size: 24px; font-weight: 300; letter-spacing: -.02em; margin-bottom: 10px; }
.facility-center p { font-size: 15px; margin: 0; }

.search-section { background: #111; color: #fff; overflow: hidden; }
.search-section::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(205,232,232,.18), transparent 68%);
}
.search-section p { color: rgba(255,255,255,.68); }
.search-section .eyebrow { color: var(--gold); }
.search-card { border-radius: 34px; padding: clamp(28px, 4vw, 44px); color: var(--ink); background: rgba(255,255,255,.94); }
.search-card > span { color: var(--gold-deep); text-transform: uppercase; letter-spacing: .15em; font-size: 12px; }
.score-bars { display: grid; gap: 12px; margin-top: 24px; }
.score-bars span { display: block; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--aqua-deep)); width: var(--w); }

.location-section { background: var(--ivory); }
.location-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 430px); gap: clamp(28px, 5vw, 64px); align-items: start; }
.direction-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 20px; box-shadow: var(--shadow-soft); color: var(--muted); }
.location-card { border-radius: 34px; padding: 30px; }
.location-card h3 { font-size: 30px; }
.location-card a { color: inherit; }

.faq-section { background: #fff; }
.faq-list { display: grid; gap: 14px; }
details { border-radius: 24px; padding: 0; overflow: hidden; }
summary { cursor: pointer; padding: 22px 24px; font-weight: 400; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { padding: 0 24px 24px; margin: 0; font-size: 16px; }

.contact-section { background: linear-gradient(135deg, #111, #243236); color: #fff; }
.contact-section p { color: rgba(255,255,255,.72); }
.contact-panel { border-radius: 40px; padding: clamp(32px, 5vw, 58px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.contact-actions { display: grid; gap: 12px; min-width: 250px; }

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}
.floating-call.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

.site-footer { background: #070707; color: #fff; padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .8fr .7fr; gap: 34px; align-items: start; }
.footer-logo { width: 190px; height: auto; margin-bottom: 16px; }
.site-footer p { color: rgba(255,255,255,.68); font-size: 15px; }
.site-footer h3 { color: #fff; font-size: 18px; font-weight: 300; letter-spacing: 0; }
.site-footer a { display: block; color: rgba(255,255,255,.76); text-decoration: none; margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.62); font-size: 14px; }

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

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  body.nav-open .main-nav {
    position: fixed;
    inset: 120px 16px auto 16px;
    display: grid;
    gap: 6px;
    z-index: 90;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .pathfinder,
  .path-result,
  .doctor-grid,
  .facility-grid,
  .split,
  .location-grid,
  .contact-panel { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container,
  .section-inner,
  .hero__inner,
  .services-inner,
  .locations-inner,
  .reviews-inner,
  .video-inner,
  .faq-inner,
  .footer-inner { width: min(100% - calc(var(--page-pad-mobile) * 2), var(--page-max)); }
  .sbs-topbar__inner { min-height: auto; padding: 10px 0; flex-direction: column; align-items: flex-start; }
  .sbs-topbar__actions { width: 100%; justify-content: space-between; }
  .sbs-topbar__actions a { flex: 1; text-align: center; }
  .site-header__inner { width: min(100% - 24px, 1240px); min-height: 66px; gap: 10px; }
  .brand { width: 138px; min-width: 120px; }
  .brand img { height: 44px; }
  .phone-link { display: none; }
  .hero { height: 92svh; min-height: 620px; }
  .hero__inner { align-items: flex-start; padding-top: 52px; padding-bottom: 20px; }
  .hero__panel { max-width: 100%; padding: 30px 20px; }
  .hero__panel::before { top: -22px; bottom: -28px; left: -24px; width: calc(100% + 48px); border-radius: 28px; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.94) 12%, rgba(255,255,255,.96) 76%, rgba(255,255,255,.1)); }
  h1 { font-size: clamp(38px, 12vw, 54px); }
  h2 { font-size: clamp(32px, 10vw, 44px); }
  p, .hero__panel p { font-size: 16px; }
  .section { padding: var(--section-y-mobile) 0; }
  .ribbon-grid, .service-grid, .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .path-result { padding: 22px; }
  .result-grid { grid-template-columns: 1fr; }
  .doctor-portrait { min-height: 470px; }
  .doctor-portrait > img { height: 440px; }
  .service-card { min-height: 250px; }
  .facility-photo img { min-height: 280px; }
  .facility-map { min-height: 500px; }
  .facility-node { position: static; display: block; width: 100%; margin-bottom: 10px; }
  .facility-center { position: static; transform: none; width: 100%; margin-top: 18px; }
  .contact-actions { min-width: 0; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .floating-call { left: 16px; right: 16px; text-align: center; }
}
