/*
  Dt. Hasan Göktaş — özgün statik site tasarımı
  Harici UI kütüphanesi, takip kodu veya zorunlu çerez içermez.
*/

:root {
  --ink: #0a1d24;
  --ink-2: #102e36;
  --ink-3: #1a434a;
  --paper: #f3eee5;
  --paper-2: #fbf8f2;
  --white: #ffffff;
  --muted: #66777a;
  --muted-dark: #a8b8b8;
  --gold: #d7bc82;
  --gold-deep: #b79252;
  --aqua: #86cec6;
  --aqua-deep: #4faaa2;
  --line: rgba(10, 29, 36, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 16px 42px rgba(8, 25, 31, 0.08);
  --shadow-md: 0 28px 90px rgba(8, 25, 31, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1240px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --font-sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-h) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before { display: none; }

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.025em;
}

h1,
h2 {
  font-family: var(--font-serif);
}

main {
  overflow: clip;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 900px);
  margin-inline: auto;
}

.serif {
  font-family: var(--font-serif);
}

.muted {
  color: var(--muted);
}

.text-light {
  color: var(--muted-dark);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: .14em;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2000;
  padding: 12px 18px;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  color: var(--white);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(243, 238, 229, .98);
  box-shadow: 0 1px 0 rgba(10, 29, 36, .09);
}

.header-shell {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 45px;
  height: 45px;
  padding: 5px;
  border-radius: 50%;
  background: var(--ink);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .12));
}

.brand__copy {
  display: grid;
  line-height: 1.05;
}

.brand__copy strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.brand__copy span {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .68;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  transition: opacity .2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .03em;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.header-phone:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 18px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle {
  grid-template-rows: repeat(3, min-content);
  gap: 4px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .025em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform .25s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 13px 35px rgba(215, 188, 130, .2);
}

.btn--gold:hover {
  background: #e4cb95;
  box-shadow: 0 16px 45px rgba(215, 188, 130, .29);
}

.btn--light {
  border-color: rgba(255, 255, 255, .35);
  color: var(--white);
  background: rgba(255, 255, 255, .035);
}

.btn--light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(10, 29, 36, .16);
}

.btn--ink:hover {
  background: var(--ink-3);
}

.btn--outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 750;
}

.text-link span {
  position: relative;
}

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

.text-link:hover span::after {
  transform: scaleX(1);
}

.text-link svg {
  width: 18px;
  transition: transform .25s var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 62px) 0 72px;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 188, 130, .15), transparent 25%),
    radial-gradient(circle at 86% 72%, rgba(134, 206, 198, .12), transparent 30%),
    linear-gradient(135deg, #102f37 0%, #0b222a 48%, #07171d 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent);
}

.hero::after {
  position: absolute;
  right: -13vw;
  bottom: -31vw;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .88fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.kicker::before,
.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: .65;
}

.kicker {
  color: var(--gold);
}

.eyebrow {
  color: var(--gold-deep);
}

.eyebrow--light {
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.05em;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__meta {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line-light);
}

.hero__meta-item {
  padding: 22px 24px 0 0;
}

.hero__meta-item + .hero__meta-item {
  padding-left: 24px;
  border-left: 1px solid var(--line-light);
}

.hero__meta small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero__meta strong {
  font-size: 13px;
  font-weight: 650;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
}

.hero__visual::before,
.hero__visual::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  content: "";
}

.hero__visual::before {
  width: 78%;
  aspect-ratio: 1;
}

.hero__visual::after {
  width: 53%;
  aspect-ratio: 1;
  border-color: rgba(215,188,130,.2);
}

.hero__art {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform .2s linear;
}

.hero__orbit-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 12%;
  display: grid;
  width: 130px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(7, 23, 29, .6);
  color: var(--gold);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.hero__orbit-copy strong {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.hero__orbit-copy span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  width: 1px;
  height: 32px;
  margin-top: 9px;
  content: "";
  background: linear-gradient(to bottom, currentColor, transparent);
}

/* Generic sections */
.section {
  position: relative;
  padding: clamp(86px, 10vw, 145px) 0;
}

.section--paper {
  background: var(--paper);
}

.section--soft {
  background: var(--paper-2);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--ink::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 10% 10%, rgba(215,188,130,.09), transparent 24%),
    radial-gradient(circle at 90% 90%, rgba(134,206,198,.08), transparent 30%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-head h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(40px, 5.3vw, 72px);
  font-weight: 400;
}

.section-head p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.section--ink .section-head p {
  color: var(--muted-dark);
}

.divider {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--line);
}

.divider--light {
  background: var(--line-light);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay] { transition-delay: 0s; }

/* Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  gap: 18px;
}

.overview-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.32);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10,29,36,.25);
  box-shadow: var(--shadow-sm);
}

.overview-card--featured {
  background: var(--ink);
  color: var(--white);
}

.overview-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .08;
  transition: transform .5s var(--ease);
}

.overview-card:hover::after {
  transform: scale(1.15);
}

.overview-card__no {
  display: inline-flex;
  margin-bottom: 74px;
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.overview-card--featured .overview-card__no {
  color: var(--gold);
}

.overview-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
}

.overview-card p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}

.overview-card--featured p {
  color: var(--muted-dark);
}

.overview-card .text-link {
  position: absolute;
  bottom: 30px;
  left: 32px;
}

.statement {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 8vw;
  align-items: start;
}

.statement__mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.statement__mark::before,
.statement__mark::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.statement__mark::before { width: 72%; height: 72%; }
.statement__mark::after { width: 42%; height: 42%; }

.statement__mark img {
  position: relative;
  z-index: 2;
  width: 43%;
  padding: 15px;
  border-radius: 50%;
  background: var(--ink);
}

.statement blockquote {
  margin-bottom: 34px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.statement blockquote em {
  color: var(--gold-deep);
  font-weight: 400;
}

.statement p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background .35s ease, color .35s ease;
}

.service-card:hover {
  background: var(--paper);
  color: var(--ink);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 94px;
}

.service-card__no {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 28px;
}

.service-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .65;
  transition: transform .35s var(--ease), opacity .35s ease;
}

.service-card:hover .service-card__icon {
  transform: rotate(45deg);
  opacity: 1;
}

.service-card__icon svg {
  width: 18px;
  height: 18px;
}

.service-card h3 {
  max-width: 320px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 400;
}

.service-card p {
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.75;
}

.service-card:hover p {
  color: var(--muted);
}

.services-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  color: var(--muted-dark);
  font-size: 13px;
}

.services-note svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--gold);
}

/* Information cards */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.info-feature,
.info-stack article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.3);
}

.info-feature {
  min-height: 570px;
  padding: 44px;
  background:
    radial-gradient(circle at 88% 15%, rgba(215,188,130,.24), transparent 28%),
    linear-gradient(155deg, #e8dfd0, #f8f4ed 70%);
}

.info-feature__art {
  position: absolute;
  right: -5%;
  bottom: -16%;
  width: 58%;
  opacity: .13;
}

.info-feature small,
.info-stack small {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.info-feature h3 {
  max-width: 620px;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.7vw, 63px);
  font-weight: 400;
}

.info-feature p {
  max-width: 550px;
  color: var(--muted);
}

.info-feature .text-link {
  position: absolute;
  bottom: 42px;
  left: 44px;
}

.info-stack {
  display: grid;
  gap: 20px;
}

.info-stack article {
  min-height: 275px;
  padding: 34px;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.info-stack article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.info-stack h3 {
  margin-bottom: 15px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
}

.info-stack p {
  color: var(--muted);
  font-size: 14px;
}

.info-stack .text-link {
  position: absolute;
  bottom: 30px;
  left: 34px;
}

/* Contact band */
.contact-band {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 125px) 0;
  background: var(--gold);
  color: var(--ink);
}

.contact-band::before,
.contact-band::after {
  position: absolute;
  border: 1px solid rgba(10,29,36,.14);
  border-radius: 50%;
  content: "";
}

.contact-band::before {
  top: -190px;
  right: -50px;
  width: 440px;
  height: 440px;
}

.contact-band::after {
  top: -115px;
  right: 25px;
  width: 290px;
  height: 290px;
}

.contact-band__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.7vw, 76px);
  font-weight: 400;
}

.contact-band p {
  max-width: 620px;
  color: rgba(10,29,36,.67);
}

.contact-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-band .btn--outline {
  border-color: rgba(10,29,36,.28);
}

/* Clinic SEO content */
.clinic-seo {
  border-top: 1px solid var(--line);
}

.clinic-seo__head {
  align-items: end;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 16px;
  margin-bottom: 48px;
}

.clinic-gallery__item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink);
}

.clinic-gallery__item--wide {
  grid-row: span 2;
  min-height: 616px;
}

.clinic-gallery__item:nth-child(6) {
  grid-column: span 2;
}

.clinic-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-gallery__item figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(10, 29, 36, .82);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.seo-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  gap: 18px;
}

.seo-copy article,
.seo-keywords {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.36);
}

.seo-copy article {
  padding: 32px;
}

.seo-copy article:first-child {
  grid-column: span 2;
}

.seo-copy h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
}

.seo-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.seo-keywords {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px;
}

.seo-keywords span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(10,29,36,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 700;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: calc(var(--header-h) + 86px) 0 80px;
  background:
    radial-gradient(circle at 82% 22%, rgba(215,188,130,.14), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(134,206,198,.1), transparent 30%),
    linear-gradient(135deg, #102f37, #07171d);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: 48%;
  right: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 64px;
  color: rgba(255,255,255,.49);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs svg {
  width: 13px;
  height: 13px;
  opacity: .55;
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .45fr);
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7.4vw, 106px);
  font-weight: 400;
  line-height: .94;
}

.page-hero__lead {
  max-width: 720px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}

.page-hero__aside {
  padding: 26px 0 3px 30px;
  border-left: 1px solid var(--line-light);
}

.page-hero__aside dl {
  margin: 0;
}

.page-hero__aside div + div {
  margin-top: 22px;
}

.page-hero__aside dt {
  margin-bottom: 4px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-hero__aside dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

/* Profile */
.profile-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.profile-portrait {
  position: sticky;
  top: calc(var(--header-h) + 34px);
  display: grid;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 35%, rgba(215,188,130,.24), transparent 33%),
    linear-gradient(155deg, var(--ink-3), var(--ink));
  box-shadow: var(--shadow-md);
}

.profile-portrait::before,
.profile-portrait::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}

.profile-portrait::before { width: 75%; aspect-ratio: 1; }
.profile-portrait::after { width: 49%; aspect-ratio: 1; }

.profile-portrait img {
  position: relative;
  z-index: 2;
  width: 42%;
}

.profile-portrait__label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: var(--white);
}

.profile-portrait__label strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.profile-portrait__label span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.profile-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 5.3vw, 70px);
  font-weight: 400;
}

.profile-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.facts-list {
  margin: 50px 0;
  border-top: 1px solid var(--line);
}

.fact-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.fact-row dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fact-row dd {
  margin: 0;
  font-weight: 650;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-card {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 27px;
}

.process-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
}

.process-card p {
  color: var(--muted);
  font-size: 13px;
}

.prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.prep-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.35);
}

.prep-item__no {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 11px;
  font-weight: 750;
}

.prep-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 650;
}

.prep-item p {
  color: var(--muted);
  font-size: 13px;
}

/* Service details */
.service-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 64px;
}

.service-index a {
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.25);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.2;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}

.service-index a:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--white);
}

.service-details {
  display: grid;
  gap: 16px;
}

.service-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.32);
}

.service-detail summary {
  display: grid;
  grid-template-columns: 80px 1fr 52px;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  list-style: none;
  cursor: pointer;
}

.service-detail summary::-webkit-details-marker {
  display: none;
}

.service-detail__no {
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 30px;
}

.service-detail h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 43px);
  font-weight: 400;
}

.service-detail__toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-detail__toggle::before,
.service-detail__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.service-detail__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-detail[open] .service-detail__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-detail__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 2px 30px 34px 134px;
}

.service-detail__body h3 {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-detail__body p {
  color: var(--muted);
  font-size: 14px;
}

.clinical-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 38px;
  padding: 26px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
}

.clinical-note svg {
  width: 23px;
  height: 23px;
  color: var(--gold);
}

.clinical-note strong {
  display: block;
  margin-bottom: 4px;
}

.clinical-note p {
  color: var(--muted-dark);
  font-size: 13px;
}

/* Information page */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 42px;
  padding: 24px 26px;
  border: 1px solid rgba(183,146,82,.34);
  border-radius: var(--radius-sm);
  background: rgba(215,188,130,.13);
}

.notice svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  color: var(--gold-deep);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.notice p {
  color: var(--muted);
  font-size: 13px;
}

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

.article-card {
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.32);
}

.article-card:nth-child(3n + 1) {
  grid-column: span 2;
}

.article-card__tag {
  display: inline-flex;
  margin-bottom: 58px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-card h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
}

.article-card p,
.article-card li {
  color: var(--muted);
  font-size: 14px;
}

.article-card ul {
  padding-left: 19px;
}

.emergency-card {
  border-color: rgba(10,29,36,.2);
  background: var(--ink);
  color: var(--white);
}

.emergency-card p,
.emergency-card li {
  color: var(--muted-dark);
}

.emergency-card .article-card__tag {
  border-color: var(--line-light);
  color: var(--gold);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 28px 62px 28px 0;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(23px, 3vw, 34px);
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 1.5px;
  content: "";
  background: var(--ink);
  transform: translateY(-50%);
  transition: transform .25s ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-item__answer {
  max-width: 800px;
  padding: 0 0 28px;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: stretch;
  gap: 20px;
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.32);
}

.contact-card h2 {
  margin-bottom: 25px;
  font-size: clamp(34px, 4.4vw, 55px);
  font-weight: 400;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.contact-list__icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
}

.contact-list__icon svg {
  width: 19px;
  height: 19px;
}

.contact-list small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list address {
  display: block;
  margin: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.map-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 32px;
  background: var(--ink);
  color: var(--white);
}

.map-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(7,23,29,.92), rgba(7,23,29,.05) 55%);
}

.map-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-placeholder__content {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.map-placeholder__content h2 {
  margin-bottom: 13px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
}

.map-placeholder__content p {
  color: var(--muted-dark);
  font-size: 13px;
}

.map-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
}

.privacy-pill svg {
  width: 14px;
  height: 14px;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.transport-card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.28);
}

.transport-card span {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
}

.transport-card span svg {
  width: 19px;
  height: 19px;
}

.transport-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
}

.transport-card p {
  color: var(--muted);
  font-size: 13px;
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 72px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 34px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.25);
}

.legal-toc strong {
  display: block;
  margin-bottom: 15px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-content {
  max-width: 850px;
}

.legal-content section + section {
  margin-top: 55px;
  padding-top: 55px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 400;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 650;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.legal-content ul,
.legal-content ol {
  padding-left: 21px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.legal-meta span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* 404 */
.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 120px 24px 70px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.not-found__inner {
  max-width: 760px;
}

.not-found__code {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(110px, 22vw, 260px);
  line-height: .75;
  opacity: .9;
}

.not-found h1 {
  margin: 35px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 400;
}

.not-found p {
  margin-bottom: 30px;
  color: var(--muted-dark);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 78px 0 28px;
  background: #07171d;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .65fr .65fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 520px;
  color: var(--muted-dark);
  font-size: 13px;
}

.footer-col h2 {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col address,
.footer-col p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted-dark);
  font-size: 13px;
  font-style: normal;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.42);
  font-size: 10px;
}

.footer-legal__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-legal a:hover {
  color: var(--white);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 700;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 710;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px 0 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  font-size: 13px;
  font-weight: 750;
}

.floating-call svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1080px) {
  :root { --header-h: 76px; }

  .header-phone span { display: none; }
  .header-phone { width: 44px; height: 44px; justify-content: center; padding: 0; }

  .hero__grid { grid-template-columns: 1fr .82fr; gap: 35px; }
  .hero__visual { min-height: 510px; }
  .hero__orbit-copy { width: 110px; }

  .overview-grid { grid-template-columns: 1fr 1fr; }
  .overview-card:first-child { grid-column: span 2; }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 300px; }

  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
  .contact-card__actions { grid-column: span 2; }

  .clinic-gallery { grid-template-columns: 1fr 1fr; }
  .clinic-gallery__item--wide { grid-row: auto; grid-column: span 2; min-height: 460px; }
  .seo-copy { grid-template-columns: 1fr; }
  .seo-copy article:first-child { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr .7fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  .container,
  .narrow { width: min(calc(100% - 36px), var(--container)); }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    padding: 24px 18px 34px;
    background: rgba(243,238,229,.98);
    color: var(--ink);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
  }

  .site-nav a::after { display: none; }
  .menu-toggle { display: grid; }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 70px); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { position: relative; z-index: 3; }
  .hero__visual { min-height: 460px; margin-top: -24px; }
  .hero__art { width: min(100%, 520px); }
  .hero__orbit-copy { right: 8%; bottom: 8%; }
  .scroll-cue { display: none; }

  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .statement { grid-template-columns: 1fr; gap: 45px; }
  .statement__mark { width: min(55vw, 330px); }

  .info-grid { grid-template-columns: 1fr; }
  .info-feature { min-height: 500px; }

  .contact-band__grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-band__actions { justify-content: flex-start; }
  .clinic-seo__head { align-items: start; }

  .page-hero { min-height: 560px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 35px; }
  .page-hero__aside { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 24px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .page-hero__aside div + div { margin-top: 0; }

  .profile-grid { grid-template-columns: 1fr; }
  .profile-portrait { position: relative; top: auto; min-height: 500px; }

  .service-detail__body { grid-template-columns: 1fr; padding-left: 134px; }

  .article-card:nth-child(3n + 1) { grid-column: auto; }
  .article-grid { grid-template-columns: 1fr; }

  .transport-grid { grid-template-columns: 1fr; }
  .transport-card { min-height: auto; }
  .transport-card span { margin-bottom: 24px; }

  .legal-layout { grid-template-columns: 1fr; gap: 36px; }
  .legal-toc { position: relative; top: auto; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }

  body { font-size: 15px; }
  .container,
  .narrow { width: min(calc(100% - 28px), var(--container)); }

  .brand__copy strong { font-size: 17px; }
  .brand__copy span { font-size: 8px; }
  .brand__mark { width: 39px; height: 39px; }
  .header-phone { display: none; }

  .hero { padding-bottom: 48px; }
  .hero h1 { font-size: clamp(48px, 15vw, 74px); }
  .hero__lead { font-size: 15px; }
  .hero__actions { display: grid; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { grid-template-columns: 1fr; margin-top: 42px; }
  .hero__meta-item { padding: 16px 0; border-bottom: 1px solid var(--line-light); }
  .hero__meta-item + .hero__meta-item { padding-left: 0; border-left: 0; }
  .hero__visual { min-height: 370px; }
  .hero__orbit-copy { width: 92px; right: 3%; }
  .hero__orbit-copy strong { font-size: 19px; }

  .section { padding: 78px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(38px, 12vw, 55px); }

  .overview-grid { grid-template-columns: 1fr; }
  .overview-card:first-child { grid-column: auto; }
  .overview-card { min-height: 310px; padding: 26px; }
  .overview-card .text-link { left: 26px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; padding: 28px; }
  .service-card__top { margin-bottom: 72px; }

  .info-feature { min-height: 520px; padding: 28px; }
  .info-feature .text-link { bottom: 28px; left: 28px; }
  .info-stack article { padding: 28px; }
  .info-stack .text-link { left: 28px; }

  .contact-band__actions { display: grid; }
  .contact-band__actions .btn { width: 100%; }

  .breadcrumbs { margin-bottom: 48px; }
  .page-hero { min-height: 530px; padding-top: calc(var(--header-h) + 64px); }
  .page-hero h1 { font-size: clamp(48px, 15vw, 76px); }
  .page-hero__lead { font-size: 15px; }
  .page-hero__aside { grid-template-columns: 1fr; }

  .profile-portrait { min-height: 420px; border-radius: var(--radius-md); }
  .profile-portrait__label { display: grid; gap: 6px; }
  .facts-list { margin: 38px 0; }
  .fact-row { grid-template-columns: 1fr; gap: 7px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 260px; }
  .prep-list { grid-template-columns: 1fr; }

  .service-index { grid-template-columns: 1fr; }
  .service-index a { min-height: auto; }
  .service-detail summary { grid-template-columns: 50px 1fr 44px; gap: 14px; padding: 22px 18px; }
  .service-detail__no { font-size: 24px; }
  .service-detail__toggle { width: 42px; height: 42px; }
  .service-detail__body { padding: 0 20px 26px; }

  .article-card { min-height: auto; padding: 28px; }
  .article-card__tag { margin-bottom: 38px; }

  .contact-card { display: block; padding: 26px; }
  .contact-card__actions { display: grid; }
  .contact-card__actions .btn { width: 100%; }
  .map-shell,
  .map-frame { min-height: 540px; }
  .map-placeholder { padding: 24px; }
  .map-placeholder__actions { display: grid; }
  .map-placeholder__actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-legal { display: grid; }
  .footer-legal__links { justify-content: flex-start; }
  .back-to-top { right: 14px; bottom: 76px; }
  .floating-call {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    justify-content: center;
  }
  .clinic-gallery { grid-template-columns: 1fr; }
  .clinic-gallery__item,
  .clinic-gallery__item--wide {
    grid-column: auto;
    min-height: 300px;
  }
  .clinic-gallery__item--wide { min-height: 420px; }
  .clinic-gallery__item figcaption { border-radius: 18px; }
  .seo-copy article { padding: 26px; }
  .seo-keywords { padding: 22px; }
}

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

@media print {
  body::before,
  .site-header,
  .back-to-top,
  .floating-call,
  .contact-band,
  .site-footer,
  .map-shell,
  .hero__visual,
  .page-hero::after {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 30px 0;
    background: #fff;
    color: #000;
  }

  .hero__lead,
  .page-hero__lead {
    color: #333;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
  }
}
