:root {
  --navy: #0b1f33;
  --navy-2: #123451;
  --teal: #1d8a82;
  --teal-dark: #14736d;
  --mineral: #5d8fa8;
  --ice: #eaf4f7;
  --lilac: #eeeffb;
  --surface: #ffffff;
  --text: #0b1f33;
  --muted: #53657a;
  --border: rgba(55, 93, 123, 0.14);
  --shadow: 0 18px 60px rgba(42, 68, 94, 0.10);
  --shadow-soft: 0 8px 30px rgba(42, 68, 94, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: 1420px;
  --gutter: clamp(16px, 2.5vw, 40px);
  --serif: "Cormorant Garamond", "Bodoni MT", Georgia, serif;
  --sans: "Manrope", "Aptos", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(176, 207, 230, .88), transparent 35%),
    radial-gradient(circle at 90% 7%, rgba(218, 198, 232, .72), transparent 32%),
    linear-gradient(135deg, #dae6f5 0%, #f6f5f7 48%, #e6e4fa 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { font: inherit; }
p, a, dd, figcaption { overflow-wrap: break-word; }

:focus-visible {
  outline: 3px solid rgba(29, 138, 130, .5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.page-shell {
  width: 100%;
  margin: 0;
  padding-top: 0;
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  padding-bottom: max(30px, env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  border: 0;
  border-radius: 0;
  background: rgba(248, 250, 253, .88);
  box-shadow: none;
  backdrop-filter: blur(22px);
  overflow: clip;
}

main,
.site-footer {
  min-width: 0;
  width: min(100%, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(1320px, calc(100% - 24px));
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(210px, 250px) 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 14px auto 18px;
  padding: 12px 16px 12px 20px;
  border: 0;
  border-radius: 26px;
  background: rgba(250, 252, 254, .9);
  box-shadow: 0 14px 42px rgba(35, 61, 84, .08);
  backdrop-filter: blur(20px) saturate(1.25);
  transition: box-shadow .35s ease, background .35s ease;
}

.site-header.is-scrolled {
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  padding-block: 8px;
  background: rgba(250, 252, 254, .96);
  box-shadow: 0 18px 48px rgba(24, 51, 73, .14);
}

.brand { display: inline-flex; width: min(100%, 232px); }
.site-header.is-scrolled .brand { width: min(100%, 194px); }
.brand img { width: 100%; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.35vw, 36px);
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: #273b50;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 0;
  border-radius: 17px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button--primary, .button--nav { color: #fff; background: var(--navy); box-shadow: 0 12px 24px rgba(11, 31, 51, .16); }
.button--primary:hover, .button--nav:hover { background: var(--teal-dark); box-shadow: 0 14px 30px rgba(20, 115, 109, .2); }
.button--nav { border-radius: 999px; white-space: nowrap; }
.site-header .button--nav { min-height: 48px; padding: 11px 19px; }
.site-header.is-scrolled .button--nav { min-height: 44px; padding-block: 9px; }
.button--light { color: var(--navy); background: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .16); }

.menu-toggle, .mobile-menu { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  grid-template-areas: "copy visual" "statement statement";
  gap: 18px;
}

.card {
  border: 0;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 55px rgba(42, 68, 94, .075);
}

.hero-copy {
  grid-area: copy;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5.2vw, 78px);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .94;
  text-wrap: balance;
}

h1 { font-size: clamp(3.6rem, 5.4vw, 5.9rem); }
h2 { font-size: clamp(3rem, 4.7vw, 5.2rem); }
h1 em, h2 em { color: var(--teal); font-style: normal; }

.hero-copy > p {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 7px;
  border-bottom: 2px solid var(--teal);
  color: var(--navy);
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link svg { width: 17px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

.hero-visual {
  position: relative;
  grid-area: visual;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(174, 208, 228, .95), rgba(215, 217, 241, .86) 55%, rgba(194, 185, 233, .88));
  box-shadow: var(--shadow-soft);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 48% 35%, rgba(255, 255, 255, .66), transparent 45%);
}

.hero-halo {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}

.hero-halo--one { width: 80%; aspect-ratio: 1; }
.hero-halo--two { width: 58%; aspect-ratio: 1; border-color: rgba(29, 138, 130, .16); }

.hero-visual > picture {
  display: contents;
}

.hero-visual__image {
  position: relative;
  z-index: 1;
  width: min(106%, 840px);
  max-width: none;
  transform: translate(2%, -1%);
  filter: drop-shadow(0 36px 26px rgba(49, 67, 96, .22));
  animation: brain-float 8s ease-in-out infinite;
}

@keyframes brain-float {
  0%, 100% { transform: translate(2%, -1%) rotate(-.5deg); }
  50% { transform: translate(2%, -3.2%) rotate(.7deg); }
}

.hero-visual__caption {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 40px rgba(44, 60, 84, .14);
  backdrop-filter: blur(16px);
}

.hero-visual__caption strong,
.hero-visual__caption small { display: block; }
.hero-visual__caption strong { font-family: var(--serif); font-size: clamp(1.55rem, 2vw, 2rem); font-weight: 600; line-height: 1; }
.hero-visual__caption small { margin-top: 7px; color: var(--muted); font-size: .86rem; }

.icon-disc, .mini-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--ice);
}

.icon-disc { width: 58px; height: 58px; }
.icon-disc svg, .mini-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.hero-statement {
  grid-area: statement;
  min-height: 208px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 24px;
  padding: 36px clamp(42px, 6vw, 90px);
  background: linear-gradient(100deg, rgba(235, 244, 249, .92), rgba(255, 255, 255, .97) 55%, rgba(235, 235, 249, .92));
}

.statement-icon {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  color: var(--teal);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.statement-icon svg { width: 58px; height: 58px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.hero-statement p { margin: 0; font-family: var(--serif); font-size: clamp(2.35rem, 4vw, 4.4rem); font-weight: 500; line-height: .98; letter-spacing: -.035em; }

.profile-section,
.appointment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 18px;
  margin-top: 82px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.profile-copy, .appointment-copy { padding: clamp(42px, 5.4vw, 78px); }
.profile-copy h2 { font-size: clamp(3rem, 4.5vw, 5rem); }
.lead { max-width: 66ch; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.8; text-wrap: pretty; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.principles > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 24px;
  border-left: 1px solid var(--border);
}

.principles > div:first-child { padding-left: 0; border-left: 0; }
.principles strong { font-size: .86rem; line-height: 1.4; }
.mini-icon { width: 54px; height: 54px; }
.mini-icon svg { width: 26px; height: 26px; }

.profile-media { position: relative; min-height: 600px; margin: 0; overflow: hidden; }
.profile-media picture { display: block; width: 100%; height: 100%; }
.profile-media img { width: 100%; height: 100%; object-fit: cover; object-position: 51% center; }
.profile-media--symbol {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 24% 24%, rgba(59, 177, 170, .2), transparent 36%),
    radial-gradient(circle at 78% 76%, rgba(113, 142, 199, .24), transparent 38%),
    #e9f2f6;
}
.profile-media--symbol::before {
  content: "";
  position: absolute;
  width: min(72%, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, .1), 0 28px 70px rgba(38, 78, 104, .1);
}
.profile-media--symbol picture { position: relative; z-index: 1; display: grid; place-items: center; padding-bottom: 54px; }
.profile-media--symbol img { width: min(54%, 270px); height: auto; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(34, 73, 98, .16)); }
.profile-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border: 0;
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  font-size: .83rem;
  line-height: 1.55;
}

.neuro-scope,
.reasons-section,
.faq-section { margin-top: 82px; }

.scope-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 480px);
  gap: 18px;
}

.scope-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  isolation: isolate;
  background: #fff;
  box-shadow: 0 18px 54px rgba(42, 68, 94, .08);
}

.scope-card--brain {
  grid-column: 1 / 8;
  grid-row: 1;
}

.scope-card--spine {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.scope-card--nerves {
  grid-column: 1 / 8;
  grid-row: 2;
}

.scope-card__media {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
}

.scope-card--brain .scope-card__media { background: #dceaf6; }
.scope-card--spine .scope-card__media {
  background:
    radial-gradient(circle at 25% 36%, rgba(63, 191, 199, .3), transparent 42%),
    radial-gradient(circle at 84% 28%, rgba(181, 157, 230, .3), transparent 38%),
    linear-gradient(150deg, #071625, #102c45 64%, #1a3552);
}
.scope-card--nerves .scope-card__media {
  background:
    radial-gradient(circle at 16% 72%, rgba(68, 192, 202, .3), transparent 40%),
    radial-gradient(circle at 82% 18%, rgba(186, 164, 232, .3), transparent 42%),
    linear-gradient(140deg, #091827, #1a2e43);
}

.scope-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s var(--ease), filter .5s ease;
}

.scope-card--brain .scope-card__media img { object-position: 58% center; }
.scope-card--spine .scope-card__media img { object-fit: contain; transform: scale(1.25); filter: drop-shadow(0 24px 35px rgba(0, 0, 0, .2)); }
.scope-card--nerves .scope-card__media img { width: 108%; max-width: none; object-fit: contain; transform: translateX(-3%) scale(1.03); filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .16)); }

.scope-card:hover .scope-card__media img { transform: scale(1.035); }
.scope-card--spine:hover .scope-card__media img { transform: scale(1.3); }
.scope-card--nerves:hover .scope-card__media img { transform: translateX(-3%) scale(1.075); }

.scope-card__copy {
  position: relative;
  display: block;
  padding: 25px 28px 28px;
  border: 0;
  color: var(--navy);
  background: #fff;
}

.scope-card__copy h3 {
  margin: -3px 0 7px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1;
}

.scope-card__copy p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.scope-note {
  max-width: 820px;
  margin: 20px 0 0 auto;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
  text-align: right;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 62ch; margin: 0 0 8px; color: var(--muted); font-size: 1rem; line-height: 1.75; text-wrap: pretty; }
.section-heading--compact { margin-bottom: 10px; }

.reasons-list {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.reason {
  min-height: 116px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  padding: 22px clamp(24px, 4vw, 54px);
  border-top: 1px solid var(--border);
  transition: background .25s ease;
}

.reason:first-child { border-top: 0; }
.reason:hover { background: linear-gradient(90deg, rgba(234, 244, 247, .78), #fff 42%); }
.reason > svg { width: 46px; height: 46px; padding: 9px; border-radius: 50%; color: var(--teal); background: var(--ice); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.reason h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 2.7vw, 2.7rem); font-weight: 500; line-height: 1.1; letter-spacing: -.02em; transition: transform .3s var(--ease); }
.reason:hover > svg, .reason:hover h3 { transform: translateX(8px); }

.clinical-note { max-width: 830px; margin: 20px 0 0 auto; color: var(--muted); font-size: .82rem; line-height: 1.6; text-align: right; }

.process-section { margin-top: 82px; padding: clamp(38px, 5vw, 70px); border-radius: var(--radius-xl); color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.process-section h2 { color: #fff; }
.process-section h2 em { color: #7ed2c9; }

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.process-list li:first-child { padding-left: 0; border-left: 0; }
.process-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #dff1f3; font-weight: 700; }
.process-list h3 { margin: 2px 0 8px; font-family: var(--serif); font-size: 1.7rem; font-weight: 600; line-height: 1; }
.process-list p { margin: 0; color: rgba(255, 255, 255, .68); font-size: .84rem; line-height: 1.6; }

.ars-section {
  position: relative;
  margin-top: 82px;
  padding: clamp(44px, 5.5vw, 78px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .95), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(214, 207, 241, .5), transparent 34%),
    #eaf3f6;
  box-shadow: 0 24px 65px rgba(42, 68, 94, .08);
}

.ars-section::before {
  content: "ARS";
  position: absolute;
  right: -20px;
  top: -72px;
  color: rgba(29, 138, 130, .045);
  font-family: var(--serif);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: 1;
  pointer-events: none;
}

.ars-section > * { position: relative; z-index: 1; }
.ars-section .section-heading { align-items: flex-start; margin-bottom: 40px; }

.ars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px clamp(14px, 2vw, 28px);
}

.ars-logo {
  min-width: 0;
  min-height: 150px;
  display: grid;
  grid-template-rows: 92px auto;
  place-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 10px 10px;
  transition: transform .3s var(--ease), filter .3s ease;
}

.ars-logo:hover { transform: translateY(-5px); filter: saturate(1.08); }
.ars-logo img { width: auto; max-width: 82%; max-height: 74px; object-fit: contain; }
.ars-logo figcaption { color: rgba(11, 31, 51, .58); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-align: center; }
.ars-note { max-width: 880px; margin: 36px 0 0 auto; color: var(--muted); font-size: .76rem; line-height: 1.65; text-align: right; }

.appointment-section { grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); }
.appointment-copy h2 { font-size: clamp(2.9rem, 4.3vw, 4.8rem); }

.appointment-details { margin: 34px 0 0; }
.appointment-details > div { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 15px 0; border-top: 1px solid var(--border); }
.appointment-details dt { color: var(--muted); font-size: .78rem; font-weight: 600; }
.appointment-details dd { margin: 0; color: var(--navy); font-size: .94rem; font-weight: 600; line-height: 1.55; }
.appointment-details a { color: var(--teal-dark); text-underline-offset: 4px; }
.appointment-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 30px; }
.insurance-note { margin: 26px 0 0; color: var(--muted); font-size: .76rem; }

.location-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #dce8f0;
}

.location-visual::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(8, 27, 45, .16));
  pointer-events: none;
}

.location-visual iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.78) contrast(.96);
}

.map-info {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 22px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(27, 51, 72, .16);
  backdrop-filter: blur(16px);
}

.map-info__eyebrow { grid-column: 1; color: var(--teal-dark); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.map-info strong { grid-column: 1; font-family: var(--serif); font-size: 1.45rem; line-height: 1.15; }
.map-info > span:not(.map-info__eyebrow) { grid-column: 1; color: var(--muted); font-size: .72rem; }
.map-info a { grid-column: 2; grid-row: 1 / 4; min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: .76rem; font-weight: 800; text-decoration: none; }
.map-info a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.map-info a:hover svg { transform: translateX(4px); }

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
}
.faq-section .section-heading { position: sticky; top: 126px; display: block; margin: 0; }
.faq-list { display: grid; gap: 10px; border-top: 0; }
.faq-item { overflow: hidden; border: 0; border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 12px 34px rgba(42,68,94,.06); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 24px; border: 0; color: var(--navy); background: transparent; font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 2.2rem); font-weight: 600; line-height: 1.2; text-align: left; cursor: pointer; }
.faq-item button:hover { background: rgba(234, 244, 247, .52); }
.faq-item button:focus-visible { outline: 0; background: rgba(234, 244, 247, .72); }
.faq-plus { position: relative; flex: 0 0 auto; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; transition: background .2s ease, transform .3s var(--ease); }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.5px; background: var(--navy); transform: translate(-50%, -50%); }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq-item button[aria-expanded="true"] .faq-plus { color: #fff; background: var(--teal); transform: rotate(180deg); }
.faq-item button[aria-expanded="true"] .faq-plus::before, .faq-item button[aria-expanded="true"] .faq-plus::after { background: #fff; }
.faq-item button[aria-expanded="true"] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 850px; margin: 0; padding: 0 72px 28px 24px; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer a { color: var(--teal-dark); font-weight: 700; }

.final-cta {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 82px;
  padding: clamp(42px, 6vw, 84px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(93, 143, 168, .38), transparent 31%),
    linear-gradient(120deg, #071b2d 0%, #0b2d48 58%, #174d63 100%);
  box-shadow: var(--shadow);
}

.final-cta::after { content: ""; position: absolute; width: 430px; aspect-ratio: 1; right: -120px; bottom: -290px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02); }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 16px; color: #fff; font-size: clamp(2.7rem, 4.4vw, 4.8rem); }
.final-cta h2 em { color: #88d3cd; }
.final-cta p { margin: 0; color: rgba(255,255,255,.68); }
.final-cta .button { flex: 0 0 auto; min-width: 240px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr .7fr .8fr;
  gap: 48px;
  padding: 64px 4px 20px;
}

.footer-brand img { width: min(100%, 280px); }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: var(--muted); font-size: .84rem; }
.site-footer nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; padding-top: 14px; font-size: .82rem; }
.site-footer nav a, .footer-contact a { font-weight: 700; text-decoration: none; }
.site-footer nav a:hover, .footer-contact a:hover { color: var(--teal); }
.footer-contact span { color: var(--muted); }
.footer-legal { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: .7rem; }
.footer-legal p { margin: 0; }

.reveal { opacity: 1; transform: none; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: none; }
}

.hero > .reveal { animation: hero-enter .8s var(--ease) both; }
.hero > .reveal:nth-child(2) { animation-delay: .08s; }
.hero > .reveal:nth-child(3) { animation-delay: .16s; }

@media (max-width: 1160px) {
  .page-shell { width: 100%; }
  .site-header { grid-template-columns: 205px 1fr auto; gap: 16px; }
  .desktop-nav { gap: 18px; }
  .button--nav { padding-inline: 17px; }
  .hero-copy, .hero-visual { min-height: 560px; }
  .hero-copy { padding: 44px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 5.6vw, 4.5rem); }
  .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
  .process-list li:nth-child(3) { padding-left: 0; border-left: 0; }
}

@media (max-width: 1024px) {
  html { scroll-padding-top: 90px; }
  .site-header { min-height: 78px; grid-template-columns: minmax(190px, 240px) auto; }
  .site-header.is-scrolled { width: min(760px, calc(100% - 28px)); }
  .desktop-nav, .button--nav { display: none; }
  .menu-toggle { min-width: 48px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; justify-self: end; gap: 10px; padding: 10px 12px; border: 0; color: var(--navy); background: transparent; font-size: .9rem; font-weight: 700; cursor: pointer; }
  .menu-toggle:focus-visible { outline: 0; border-radius: 12px; background: rgba(234, 244, 247, .9); }
  .menu-icon { width: 23px; display: grid; gap: 4px; }
  .menu-icon i { width: 100%; height: 2px; display: block; background: currentColor; transition: transform .3s var(--ease), opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: grid; gap: 24px; padding: 26px; border: 0; border-radius: 24px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s ease, transform .25s var(--ease), visibility .25s; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { padding: 13px 4px; border-bottom: 1px solid var(--border); font-family: var(--serif); font-size: 1.65rem; font-weight: 600; line-height: 1.1; text-decoration: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy, .hero-visual { min-height: 520px; }
  .hero-copy { padding: 36px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 6vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero-statement { min-height: 180px; }
  .profile-section { grid-template-columns: 1fr; }
  .profile-media { min-height: 460px; }
  .scope-grid { grid-template-rows: repeat(2, 420px); }
  .scope-card--brain, .scope-card--nerves { grid-column-end: 8; }
  .scope-card--spine { grid-column-start: 8; }
  .scope-card__copy { padding: 22px 24px 24px; }
  .scope-card__copy p { font-size: .78rem; }
  .ars-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .appointment-section { grid-template-columns: 1fr 1fr; }
  .appointment-copy { padding: 42px; }
  .location-visual { min-height: 620px; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "statement";
    gap: 14px;
  }
  .hero-copy { min-height: 0; padding: clamp(44px, 7vw, 60px); }
  .hero-copy h1 { font-size: clamp(3.6rem, 8vw, 5.2rem); }
  .hero-actions { align-items: center; flex-direction: row; }
  .hero-visual { min-height: 500px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-heading > p { max-width: 68ch; margin-bottom: 0; }
  .scope-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
  .scope-card--brain,
  .scope-card--spine,
  .scope-card--nerves { grid-column: 1; grid-row: auto; min-height: 0; grid-template-rows: 400px auto; }
  .scope-card--spine { grid-template-rows: 640px auto; }
  .scope-card--nerves .scope-card__media img { width: 112%; }
  .scope-note { text-align: left; }
  .appointment-section { grid-template-columns: 1fr; }
  .location-visual { min-height: 520px; }
  .faq-section { display: block; }
  .faq-section .section-heading { position: static; margin-bottom: 28px; }
}

@media (max-width: 768px) {
  :root { --radius-xl: 26px; --radius-lg: 20px; }
  body { background: linear-gradient(135deg, #dbe7f5 0%, #f5f5f8 45%, #e8e5fa 100%); }
  .page-shell {
    width: 100%;
    margin: 0;
    padding-top: 0;
    padding-right: max(10px, env(safe-area-inset-right, 0px));
    padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
    padding-left: max(10px, env(safe-area-inset-left, 0px));
    border-radius: 0;
  }
  .site-header { top: 8px; width: calc(100% - 8px); min-height: 72px; margin: 8px auto 10px; padding: 10px 14px; grid-template-columns: minmax(180px, 230px) auto; border-radius: 22px; }
  .site-header.is-scrolled { width: calc(100% - 16px); min-height: 66px; }
  .site-header.is-scrolled .brand { width: min(100%, 180px); }
  .hero { grid-template-columns: 1fr; grid-template-areas: "copy" "visual" "statement"; gap: 10px; }
  .hero-copy { min-height: 0; padding: 46px 32px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 11vw, 4.6rem); }
  .hero-copy > p { margin-bottom: 26px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .hero-visual { min-height: 530px; }
  .hero-visual__image { width: min(105%, 720px); }
  .hero-statement { min-height: 160px; grid-template-columns: 92px 1fr; gap: 20px; padding: 28px 32px; }
  .statement-icon { width: 78px; height: 78px; border-width: 6px; }
  .statement-icon svg { width: 44px; height: 44px; }
  .hero-statement p { font-size: clamp(2.1rem, 7vw, 3rem); }
  .profile-section, .appointment-section { grid-template-columns: 1fr; margin-top: 64px; }
  .profile-copy, .appointment-copy { padding: 46px 32px; }
  .principles { gap: 0; }
  .principles > div { padding: 4px 14px; }
  .profile-media { min-height: 430px; }
  .scope-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 10px; }
  .scope-card--brain, .scope-card--spine, .scope-card--nerves { grid-column: 1; grid-row: auto; min-height: 0; grid-template-rows: 380px auto; }
  .scope-card--spine { grid-template-rows: 620px auto; }
  .scope-card--nerves .scope-card__media img { width: 112%; }
  .scope-note { text-align: left; }
  .neuro-scope, .reasons-section, .faq-section, .process-section, .ars-section, .final-cta { margin-top: 64px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .section-heading h2 { font-size: clamp(3.2rem, 12vw, 5rem); }
  .section-heading > p { max-width: 620px; }
  .reason { grid-template-columns: 54px minmax(0, 1fr); gap: 16px; }
  .reason h3 { font-size: 1.9rem; }
  .process-section { padding: 46px 32px; }
  .process-list { grid-template-columns: 1fr; gap: 0; margin-top: 30px; }
  .process-list li { min-height: 120px; padding: 22px 0 22px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .process-list li:first-child { border-top: 0; }
  .ars-section { padding: 46px 32px; }
  .ars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ars-logo { min-height: 132px; grid-template-rows: 78px auto; }
  .ars-logo img { max-height: 64px; }
  .ars-note { text-align: left; }
  .location-visual { min-height: 440px; }
  .final-cta { align-items: flex-start; flex-direction: column; min-height: 0; padding: 48px 34px; }
  .final-cta .button { min-width: 0; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 34px; padding-inline: 14px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .page-shell { width: 100%; margin: 0; border-radius: 0; }
  .site-header { grid-template-columns: minmax(160px, 195px) auto; padding-inline: 12px; }
  .brand { width: 184px; }
  .menu-toggle { padding-right: 3px; }
  .menu-toggle > span:last-child { display: none; }
  .hero-copy { padding: 40px 24px; }
  .hero-copy h1 { font-size: clamp(3rem, 14.5vw, 4.2rem); margin-bottom: 22px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-visual { min-height: 420px; }
  .hero-visual__image { width: 122%; }
  .hero-visual__caption { left: 12px; right: 12px; bottom: 12px; gap: 11px; padding: 13px; border-radius: 18px; }
  .hero-visual__caption strong { font-size: 1.35rem; }
  .hero-visual__caption small { font-size: .69rem; line-height: 1.35; }
  .icon-disc { width: 48px; height: 48px; }
  .hero-statement { grid-template-columns: 64px 1fr; gap: 16px; min-height: 135px; padding: 23px 22px; }
  .statement-icon { width: 62px; height: 62px; border-width: 4px; }
  .statement-icon svg { width: 35px; height: 35px; }
  .hero-statement p { font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .profile-copy, .appointment-copy { padding: 40px 24px; }
  .profile-copy h2, .appointment-copy h2 { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .principles { grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
  .principles > div, .principles > div:first-child { flex-direction: row; align-items: center; padding: 0; border: 0; }
  .profile-media { min-height: 360px; }
  .profile-media figcaption { left: 12px; right: 12px; bottom: 12px; font-size: .75rem; }
  .scope-card--brain, .scope-card--nerves { grid-template-rows: 310px auto; }
  .scope-card--spine { grid-template-rows: 500px auto; }
  .scope-card__copy { padding: 20px 18px 22px; }
  .scope-card__copy h3 { font-size: 1.9rem; }
  .scope-card__copy p { font-size: .74rem; line-height: 1.5; }
  .reasons-list { border-radius: 24px; }
  .reason { min-height: 94px; grid-template-columns: 46px 1fr; gap: 14px; padding: 18px 20px; }
  .reason > svg { width: 40px; height: 40px; }
  .reason h3 { font-size: 1.55rem; }
  .clinical-note { text-align: left; }
  .process-section { padding: 40px 24px; }
  .process-section h2 { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .process-list li { grid-template-columns: 44px 1fr; }
  .ars-section { padding: 40px 20px; }
  .ars-section::before { right: -8px; top: -22px; font-size: 10rem; }
  .ars-section .section-heading { margin-bottom: 24px; }
  .ars-grid { gap: 6px 8px; }
  .ars-logo { min-height: 116px; grid-template-rows: 68px auto; padding-inline: 2px; }
  .ars-logo img { max-width: 88%; max-height: 56px; }
  .ars-logo figcaption { font-size: .61rem; }
  .appointment-details > div { grid-template-columns: 95px 1fr; gap: 12px; }
  .appointment-actions { align-items: stretch; flex-direction: column; }
  .appointment-actions .button { width: 100%; }
  .appointment-actions .text-link { align-self: flex-start; }
  .location-visual { min-height: 350px; }
  .map-info { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; gap: 4px; padding: 16px; }
  .map-info strong { font-size: 1.28rem; }
  .map-info a { grid-column: 1; grid-row: auto; margin-top: 8px; }
  .faq-item button { min-height: 74px; padding: 17px 18px; font-size: 1.35rem; }
  .faq-answer p { padding: 0 18px 22px; font-size: .88rem; }
  .final-cta { padding: 42px 24px; }
  .final-cta h2 { font-size: clamp(2.7rem, 13vw, 3.7rem); }
  .final-cta .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 560px) {
  .hero-copy { padding-block: 38px; }
  .hero-visual { min-height: 360px; }
  .hero-visual__image { width: min(92%, 620px); }
  .profile-media { min-height: 340px; }
  .scope-card--brain,
  .scope-card--nerves { grid-template-rows: 300px auto; }
  .scope-card--spine { grid-template-rows: 440px auto; }
  .location-visual { min-height: 360px; }
}

@media (pointer: coarse) {
  .text-link,
  .mobile-menu nav a,
  .map-info a,
  .site-footer a { min-height: 44px; }
  .site-footer a { display: inline-flex; align-items: center; }
}

@media (hover: none) {
  .button:hover,
  .ars-logo:hover { transform: none; }
  .text-link:hover svg,
  .map-info a:hover svg,
  .reason:hover > svg,
  .reason:hover h3 { transform: none; }
  .scope-card:hover .scope-card__media img { transform: none; }
  .scope-card--spine:hover .scope-card__media img { transform: scale(1.25); }
  .scope-card--nerves:hover .scope-card__media img { transform: translateX(-3%) scale(1.03); }
}

@media (max-width: 360px) {
  .brand { width: 158px; }
  .site-header { grid-template-columns: minmax(150px, 1fr) auto; }
  .hero-copy h1 { font-size: 2.8rem; }
  .hero-visual { min-height: 385px; }
  .hero-visual__caption strong { font-size: 1.2rem; }
  .hero-visual__caption small { font-size: .64rem; }
  .reason h3 { font-size: 1.38rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero > .reveal { animation: none; }
}

@media print {
  body { background: #fff; }
  .page-shell { width: 100%; margin: 0; border: 0; box-shadow: none; }
  .site-header { position: static; }
  .desktop-nav, .button--nav, .menu-toggle, .hero-actions, .appointment-actions, .final-cta .button { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
