:root {
  --ink: #183330;
  --ink-deep: #102925;
  --paper: #f6f3ec;
  --paper-light: #fcfbf7;
  --white: #ffffff;
  --sage: #dfe7de;
  --sage-dark: #9eb2a4;
  --gold: #c8a56a;
  --text: #26322f;
  --muted: #6e7773;
  --line: rgba(24, 51, 48, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink-deep);
  border: 1px solid var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

svg {
  width: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-header {
  height: 100px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  background: rgba(252, 251, 247, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font: 600 15px/1 Georgia, serif;
  letter-spacing: -0.05em;
}

.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong { color: var(--ink-deep); font: 500 18px/1.1 Georgia, serif; }
.brand-copy small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; }

.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a { color: #34413e; font-size: 13px; transition: color 180ms ease; }
.site-header nav a:hover { color: var(--gold); }

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 6px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.professional-strip {
  min-height: 62px;
  padding: 11px clamp(24px, 5vw, 78px) 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--ink-deep);
  color: var(--white);
}
.professional-strip > strong {
  color: var(--gold);
  font: 700 8px/1 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.professional-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 24px;
}
.professional-fields span {
  color: inherit;
  font: 500 11px/1.5 Arial, Helvetica, sans-serif;
  letter-spacing: .045em;
}
.professional-fields span + span::before { content: "·"; margin-right: 24px; color: var(--gold); }

.hero {
  min-height: calc(100vh - 100px);
  padding: clamp(64px, 8vw, 116px) clamp(24px, 7vw, 106px) 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(24px, 7vw, 106px);
  right: clamp(24px, 7vw, 106px);
  bottom: 0;
  border-bottom: 1px solid var(--line);
}

.hero-orbit { position: absolute; border: 1px solid rgba(24, 51, 48, .12); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 520px; height: 520px; right: -220px; top: -110px; }
.hero-orbit-two { width: 290px; height: 290px; left: 45%; bottom: -210px; }

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-title {
  max-width: 800px;
  margin: 0;
  color: var(--ink-deep);
  font: 400 clamp(56px, 6.6vw, 104px)/.91 Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
}

.hero-title span { display: block; color: #6b7e75; font-style: italic; }

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #57635e;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}

.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 32px; }

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--ink-deep); }
.button-primary svg { width: 20px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.text-link svg { transition: transform 180ms ease; }
.text-link:hover svg { transform: translateX(4px); }

.trust-row {
  margin-top: 48px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.trust-row a { color: var(--ink); border-bottom: 1px solid var(--sage-dark); }
.trust-row span + span::before, .trust-row a::before { content: "·"; margin-right: 26px; color: var(--gold); }

.hero-portrait { position: relative; z-index: 2; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.portrait-frame { aspect-ratio: 1 / 1.08; overflow: hidden; background: #d8ddd8; position: relative; }
.portrait-frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.5); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 24%; filter: saturate(.78) contrast(.96); }
.hero-portrait > h1 { margin: 17px 0 0; display: flex; justify-content: space-between; gap: 20px; color: var(--ink); font-family: Georgia, serif; font-size: 14px; }
.hero-portrait > h1 strong { white-space: nowrap; }
.hero-portrait > h1 span { color: var(--muted); font: 10px Arial, sans-serif; text-align: right; text-transform: uppercase; letter-spacing: .12em; }

.intro {
  padding: clamp(90px, 10vw, 160px) clamp(24px, 7vw, 106px);
  display: grid;
  grid-template-columns: 60px 1.15fr .85fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  background: var(--paper-light);
}
.section-number { margin: 3px 0 0; color: var(--gold); font-size: 11px; }
.intro h2, .section-heading h2, .contact-band h2 {
  margin: 0;
  color: var(--ink-deep);
  font: 400 clamp(38px, 4.4vw, 68px)/1.04 Georgia, serif;
  letter-spacing: -.035em;
}
.intro-copy { max-width: 500px; margin: 45px 0 0; color: #66716d; font-size: 17px; line-height: 1.85; }

.services { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 106px); background: #e7ebe4; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading > p { max-width: 480px; margin: 0 0 8px; color: #66716d; font-size: 15px; line-height: 1.75; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { min-height: 520px; padding: clamp(28px, 3.5vw, 54px); display: flex; flex-direction: column; background: var(--paper-light); border: 1px solid rgba(24,51,48,.08); }
.service-card-dark { background: var(--ink); color: var(--white); }
.card-index { margin: 0 0 auto; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.service-card h3 { margin: 0 0 18px; color: var(--ink-deep); font: 400 clamp(29px, 2.7vw, 42px)/1.08 Georgia, serif; }
.service-card-dark h3 { color: var(--white); }
.service-card > div > p { max-width: 520px; margin: 0; color: #74807b; font-size: 15px; line-height: 1.7; }
.service-card-dark > div > p { color: #c7d2cc; }
.service-card > a { margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(24,51,48,.16); color: var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.service-card-dark > a { color: var(--white); border-color: rgba(255,255,255,.22); }

.price-row { margin-top: 38px; padding: 24px 0; display: flex; justify-content: space-between; align-items: end; border-top: 1px solid rgba(255,255,255,.18); }
.price-row p { display: flex; flex-direction: column; }
.price-row p small { margin-bottom: 7px; color: #9fb1a8; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.price-row p strong { color: var(--white); font: 400 34px Georgia, serif; }
.price-row > span { color: #b7c4bd; font-size: 11px; line-height: 1.6; text-align: right; text-transform: uppercase; letter-spacing: .08em; }

.procedure-prices { margin-top: 30px; border-top: 1px solid var(--line); }
.procedure-prices p { margin: 0; padding: 15px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); color: var(--muted) !important; font-size: 13px !important; }
.procedure-prices strong { color: var(--ink); font: 400 16px Georgia, serif; white-space: nowrap; }

.locations { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 106px); background: var(--paper-light); }
.section-heading.compact { grid-template-columns: 1fr; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.location-card { min-height: 430px; padding: clamp(28px, 3.5vw, 50px); border: 1px solid var(--line); display: flex; flex-direction: column; position: relative; }
.location-card.featured { background: var(--paper); }
.location-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.location-icon svg { width: 21px; }
.location-type { margin: 56px 0 11px; color: var(--gold); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.location-card h3 { margin: 0 0 21px; color: var(--ink-deep); font: 400 34px Georgia, serif; }
.location-card address { margin: 0; color: #66716d; font-size: 14px; font-style: normal; line-height: 1.85; }
.location-links { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line); }
.location-links a { color: var(--ink); font-size: 11px; font-weight: 700; }
.location-links a:last-child { display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .08em; }

.contact-band { padding: clamp(78px, 9vw, 130px) 24px; background: var(--ink); color: var(--white); text-align: center; }
.contact-band .eyebrow { color: var(--gold); }
.contact-band h2 { color: var(--white); }
.contact-band > div { margin-top: 38px; display: flex; justify-content: center; gap: 12px; }
.button-light { background: var(--white); color: var(--ink); }
.button-outline { border-color: rgba(255,255,255,.45); color: var(--white); }
.button-outline:hover { background: rgba(255,255,255,.08); }

.expertise {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 106px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 9vw, 145px);
  background: var(--ink-deep);
  color: var(--white);
}
.expertise-intro { position: sticky; top: 140px; align-self: start; }
.expertise .eyebrow { color: var(--gold); }
.expertise h2, .care-areas h2, .faq h2 {
  margin: 0;
  font: 400 clamp(38px, 4.4vw, 66px)/1.04 Georgia, serif;
  letter-spacing: -.035em;
}
.expertise h2 { color: var(--white); }
.expertise-intro > p:not(.eyebrow) { max-width: 530px; margin: 30px 0; color: #b7c6bf; font-size: 15px; line-height: 1.8; }
.expertise .text-link { color: var(--white); }
.academic-links { display: flex; flex-wrap: wrap; gap: 20px 30px; }
.credentials { border-top: 1px solid rgba(255,255,255,.18); }
.credentials article { min-height: 180px; padding: 34px 0; display: grid; grid-template-columns: 70px 1fr; gap: 24px; align-items: start; border-bottom: 1px solid rgba(255,255,255,.18); }
.credentials article > span { color: var(--gold); font-size: 11px; }
.credentials p { margin: 0 0 10px; color: #9fb2aa; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.credentials h3 { margin: 0 0 13px; color: var(--white); font: 400 32px Georgia, serif; }
.credentials small { color: #aabbb3; font-size: 12px; line-height: 1.6; }

.care-areas {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 106px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 9vw, 145px);
  background: var(--paper-light);
}
.care-title-wrap { align-self: start; position: sticky; top: 140px; }
.care-areas h2 { color: var(--ink-deep); }
.care-list { border-top: 1px solid var(--line); }
.care-list p { margin: 0; min-height: 92px; padding: 24px 0; display: flex; align-items: center; gap: 30px; border-bottom: 1px solid var(--line); color: var(--ink); font: 400 clamp(21px, 2.2vw, 30px)/1.2 Georgia, serif; }
.care-list span { min-width: 30px; color: var(--gold); font: 11px Arial, sans-serif; }

.plans { display: grid; grid-template-columns: .75fr 1.25fr; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plans > div { padding: clamp(56px, 6vw, 94px) clamp(24px, 7vw, 106px); }
.plans > div + div { border-left: 1px solid var(--line); }
.plans .eyebrow { margin-bottom: 17px; }
.plans h3 { margin: 0; color: var(--ink); font: 400 clamp(25px, 2.8vw, 42px)/1.25 Georgia, serif; }
.plans h3 span { color: var(--gold); font-style: italic; }
.plans small { max-width: 700px; margin-top: 18px; display: block; color: var(--muted); font-size: 10px; line-height: 1.7; }

.faq { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 106px); display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 9vw, 145px); background: var(--paper); }
.faq-heading > p:not(.eyebrow) { max-width: 400px; margin: 26px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 86px; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: var(--ink); font: 400 18px/1.45 Georgia, serif; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font: 16px Arial, sans-serif; transition: transform 180ms ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 750px; margin: -5px 48px 27px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

footer { padding: 70px clamp(24px, 7vw, 106px) 38px; display: grid; grid-template-columns: 1fr auto; gap: 68px; background: #0b201d; color: var(--white); }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.5); }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: #93a69d; }
.footer-links { display: flex; align-items: center; gap: 28px; color: #b7c6bf; font-size: 12px; }
.footer-links a:hover, .footer-action-link:hover { color: var(--gold); }
.footer-action-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.footer-identification {
  grid-column: 1 / -1;
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-identification span { color: #c4d0cb; font: 400 11px/1.5 Arial, Helvetica, sans-serif; letter-spacing: .04em; }
.footer-identification span + span::before { content: "·"; margin-right: 24px; color: var(--gold); }
.footer-business {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .75fr 1fr 1.45fr;
  gap: 24px;
  align-items: start;
  color: #aebeb7;
}
.footer-business p,
.footer-business address { margin: 0; font: 400 11px/1.7 Arial, Helvetica, sans-serif; }
.footer-business p { color: var(--gold); text-transform: uppercase; letter-spacing: .1em; }
.footer-business div { display: grid; gap: 8px; }
.footer-business strong { color: var(--white); font: 600 12px/1.5 Arial, Helvetica, sans-serif; letter-spacing: .04em; }
.footer-business span { color: #c4d0cb; font: 400 11px/1.5 Arial, Helvetica, sans-serif; }
.footer-business address { color: #c4d0cb; font-style: normal; }
.footer-note { grid-column: 1 / -1; padding-top: 30px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 24px; border-top: 1px solid rgba(255,255,255,.16); color: #899d94; }
.footer-note p { margin: 0; font-size: 10px; line-height: 1.6; }
.footer-note small { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }

[hidden] { display: none !important; }

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  border: 1px solid rgba(255,255,255,.16);
  background: #102925;
  color: var(--white);
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
}
.cookie-banner-copy { max-width: 780px; }
.cookie-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font: 700 9px/1.2 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.cookie-banner h2, .privacy-dialog h2 {
  margin: 0;
  color: inherit;
  font: 400 clamp(24px, 2.3vw, 34px)/1.12 Georgia, serif;
  letter-spacing: -.025em;
}
.cookie-banner-copy > p:not(.cookie-kicker) {
  margin: 12px 0 0;
  color: #c1cdc8;
  font-size: 12px;
  line-height: 1.65;
}
.cookie-text-button {
  margin: 12px 0 0;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: var(--white);
  font: 600 10px/1.4 Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.cookie-banner-actions { display: grid; grid-template-columns: repeat(3, minmax(145px, 1fr)); gap: 9px; }
.cookie-button {
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: 700 10px/1.35 Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .065em;
  cursor: pointer;
}
.cookie-button-solid { background: var(--white); color: var(--ink-deep); border-color: var(--white); }
.cookie-button-outline { background: transparent; color: inherit; border-color: currentColor; }
.cookie-button:hover, .cookie-button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.privacy-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(820px, calc(100vh - 32px));
  margin: auto;
  padding: 0;
  border: 1px solid rgba(24,51,48,.22);
  background: var(--paper-light);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
}
.privacy-dialog::backdrop { background: rgba(5,20,18,.72); backdrop-filter: blur(3px); }
.dialog-shell { padding: clamp(24px, 5vw, 48px); }
.dialog-heading {
  padding-bottom: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.dialog-heading > div > p:not(.cookie-kicker) { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.dialog-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: 300 26px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.dialog-close:hover, .dialog-close:focus-visible { border-color: var(--gold); outline: 0; }
.cookie-category {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cookie-category h3, .privacy-content section h3 { margin: 0; color: var(--ink-deep); font: 500 20px/1.25 Georgia, serif; }
.cookie-category p { max-width: 540px; margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.cookie-switch { min-width: 138px; display: flex; align-items: center; gap: 9px; color: var(--ink); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; }
.cookie-switch:has(input:disabled) { cursor: default; }
.cookie-switch input { width: 19px; height: 19px; margin: 0; accent-color: var(--ink); }
.dialog-actions { padding-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.privacy-dialog .cookie-button-solid { background: var(--ink); color: var(--white); border-color: var(--ink); }
.privacy-dialog .cookie-button-outline { color: var(--ink); }
.privacy-content section { padding: 24px 0 0; }
.privacy-content section p, .privacy-content section li { color: #59635f; font-size: 13px; line-height: 1.75; }
.privacy-content section p { margin: 10px 0 0; }
.privacy-content section ul { margin: 10px 0 0; padding-left: 20px; }
.privacy-content section a { color: var(--ink); border-bottom: 1px solid currentColor; }

.mobile-schedule { display: none; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; height: 86px; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr .65fr; padding-top: 72px; }
  .hero-title { font-size: clamp(54px, 7.5vw, 76px); }
  .intro { grid-template-columns: 40px 1fr; }
  .intro-copy { grid-column: 2; margin-top: 0; }
  .expertise, .care-areas, .faq { grid-template-columns: 1fr; gap: 60px; }
  .expertise-intro, .care-title-wrap { position: static; }
}

@media (max-width: 760px) {
  .site-header { height: 76px; padding: 0 20px; }
  .brand-copy small { display: none; }
  .header-cta { font-size: 10px; }
  .header-cta svg { display: none; }
  .professional-strip { padding: 13px 20px 15px; align-items: flex-start; gap: 9px; }
  .professional-fields { align-items: flex-start; justify-content: flex-start; gap: 4px 14px; }
  .professional-fields span + span::before { display: none; }

  .hero { grid-template-columns: 1fr; padding: 58px 20px 40px; gap: 48px; }
  .hero-title { font-size: clamp(48px, 14vw, 70px); }
  .hero-lead { font-size: 16px; line-height: 1.7; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .button { width: 100%; }
  .text-link { justify-content: center; }
  .trust-row { gap: 9px 16px; line-height: 1.5; }
  .trust-row span + span::before, .trust-row a::before { display: none; }
  .hero-portrait { width: min(82%, 390px); justify-self: end; }

  .intro { padding: 90px 20px; grid-template-columns: 1fr; gap: 18px; }
  .section-number { display: none; }
  .intro-copy { grid-column: auto; margin-top: 12px; }
  .intro h2, .section-heading h2, .contact-band h2 { font-size: 42px; }

  .services, .locations { padding: 90px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 42px; }
  .service-grid, .location-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 500px; }
  .procedure-prices p { align-items: flex-start; }
  .location-card { min-height: 400px; }
  .location-links { align-items: flex-start; flex-direction: column; }

  .contact-band > div { flex-direction: column; align-items: center; }
  .contact-band .button { max-width: 340px; }

  .expertise, .care-areas, .faq { padding: 90px 20px; gap: 48px; }
  .expertise h2, .care-areas h2, .faq h2 { font-size: 42px; }
  .credentials article { grid-template-columns: 40px 1fr; }
  .care-list p { min-height: 80px; font-size: 22px; gap: 18px; }
  .plans { grid-template-columns: 1fr; }
  .plans > div { padding: 54px 20px; }
  .plans > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .faq details p { margin-right: 0; }

  footer { padding: 64px 20px 100px; grid-template-columns: 1fr; gap: 40px; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 15px; }
  .footer-note { grid-column: auto; grid-template-columns: 1fr; }
  .footer-identification { grid-column: auto; flex-direction: column; }
  .footer-identification span + span::before { display: none; }
  .footer-business { grid-column: auto; grid-template-columns: 1fr; }
  .mobile-schedule { position: fixed; left: 14px; right: 14px; bottom: 12px; z-index: 70; min-height: 52px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; background: var(--gold); color: #102925; box-shadow: 0 10px 30px rgba(0,0,0,.22); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 22px; grid-template-columns: 1fr; gap: 20px; }
  .cookie-banner-actions { grid-template-columns: 1fr; }
  .cookie-banner h2 { font-size: 25px; }
  .privacy-dialog { width: calc(100% - 20px); max-height: calc(100vh - 20px); }
  .dialog-shell { padding: 24px 20px; }
  .cookie-category { grid-template-columns: 1fr; gap: 15px; }
  .dialog-actions { flex-direction: column; }
}

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