:root {
  --ink: #090053;
  --muted: #5e6b7a;
  --paper: #fcfcfc;
  --white: #ffffff;
  --teal: #3c8f93;
  --teal-dark: #090053;
  --teal-soft: #d8f1ef;
  --sky: #e4eff8;
  --sand: #b7f8db;
  --berry: #ba4a63;
  --berry-dark: #9c3d53;
  --plum: #5e3a87;
  --indigo: #7471e1;
  --line: #d8f1ef;
  --shadow: 0 10px 30px rgba(9, 0, 83, 0.06);
  --shadow-lift: 0 18px 40px rgba(9, 0, 83, 0.10);
  --radius: 1.75rem;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  color: var(--ink);
  background: var(--paper);
  font-family: "Heebo", "Arial Hebrew", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: inherit; overflow-wrap: anywhere; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--ink);
}
main:focus { outline: none; }

.skip-link {
  position: fixed;
  inset-block-start: .75rem;
  inset-inline-start: .75rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--ink);
  color: white;
  padding: .6rem 1rem;
  border-radius: .4rem;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(252, 252, 252, .94);
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(9,0,83,.06);
}
.nav-shell {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { width: clamp(118px, 10.5vw, 145px); height: auto; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  text-decoration: none;
  font-size: .94rem;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.35rem;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { font-weight: 700; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.25rem;
  border: 1px solid var(--berry);
  border-radius: 999px;
  background: var(--berry);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.25;
  transition: transform 160ms cubic-bezier(.2,.6,.2,1), background 160ms cubic-bezier(.2,.6,.2,1), box-shadow 160ms cubic-bezier(.2,.6,.2,1);
}
.button:hover, .nav-cta:hover {
  background: var(--berry-dark);
  box-shadow: 0 10px 28px rgba(9,0,83,.09);
}
.button:active, .nav-cta:active { transform: scale(.98); }
.button:focus-visible, .nav-cta:focus-visible, button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--ink);
}
.button.secondary { color: var(--ink) !important; background: transparent; border-color: var(--ink); }
.button.secondary:hover { background: var(--sky); box-shadow: none; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.accessibility-widget {
  position: fixed;
  left: 1rem;
  inset-block-end: 1rem;
  z-index: 90;
  font-size: 1rem;
  line-height: 1.4;
}
.accessibility-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 46px;
  padding: .65rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 24px rgba(9, 0, 83, .18);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.accessibility-dismiss {
  position: absolute;
  top: -.55rem;
  right: -.45rem;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--berry);
  color: white;
  box-shadow: 0 3px 10px rgba(9, 0, 83, .2);
  font: 700 1rem/1 Arial, sans-serif;
  cursor: pointer;
}
.accessibility-icon { font-size: 1.15em; line-height: 1; }
.accessibility-panel {
  position: absolute;
  left: 0;
  inset-block-end: calc(100% + .65rem);
  width: min(19rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(9, 0, 83, .18);
}
.accessibility-panel[hidden] { display: none; }
.accessibility-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}
.accessibility-panel h2 { margin: 0; font-size: 1.25rem; }
.accessibility-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 50%;
  background: var(--sky);
  color: var(--ink);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.accessibility-text-size {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem 0;
  border-block: 1px solid var(--line);
}
.accessibility-text-size > div { display: flex; align-items: center; gap: .35rem; }
.accessibility-text-size button {
  min-width: 2.5rem;
  min-height: 2.5rem;
  border: 1px solid var(--ink);
  border-radius: .6rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.accessibility-text-status { min-width: 3.2rem; text-align: center; }
.accessibility-option,
.accessibility-reset {
  width: 100%;
  min-height: 44px;
  margin-top: .55rem;
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  border-radius: .65rem;
  background: transparent;
  color: var(--ink);
  text-align: right;
  font: inherit;
  cursor: pointer;
}
.accessibility-option[aria-pressed="true"] {
  border-color: var(--teal);
  background: var(--teal-soft);
  font-weight: 700;
}
.accessibility-reset { color: var(--berry-dark); border-color: currentColor; text-align: center; }
.accessibility-restore {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .2em;
  font: inherit;
  font-size: .9rem;
  cursor: pointer;
}
.accessibility-restore[hidden] { display: none; }

html.a11y-highlight-links a:not(.button):not(.nav-cta):not(.brand) {
  text-decoration: underline !important;
  text-decoration-thickness: .15em !important;
  text-underline-offset: .2em !important;
}
html.a11y-reduce-motion,
html.a11y-reduce-motion * {
  scroll-behavior: auto !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}
html.a11y-high-contrast {
  --ink: #000000;
  --muted: #1f1f1f;
  --paper: #ffffff;
  --white: #ffffff;
  --teal: #005b60;
  --teal-dark: #000000;
  --teal-soft: #e5ffff;
  --sky: #f2f2f2;
  --line: #000000;
  --berry: #7a001b;
  --berry-dark: #520012;
}
html.a11y-high-contrast .site-header { background: #ffffff; }
html.a11y-high-contrast .site-footer { background: #000000; }
html.a11y-high-contrast .accessibility-toggle { background: #000000; border-color: #ffffff; }

.container { width: min(calc(100% - 2.5rem), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 2.5rem), 790px); margin: 0 auto; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section.soft { background: var(--sky); }
.section.teal-soft { background: var(--teal-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 .8rem;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.eyebrow::after { content: ""; width: clamp(2rem, 8vw, 7rem); height: 1px; background: var(--teal-soft); }
h1, h2, h3 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-top: 0;
}
h1 { font-size: clamp(2.65rem, 4.2vw, 3.5rem); font-weight: 700; margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 3vw, 2.4rem); margin-bottom: 1.15rem; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); margin-bottom: .6rem; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.3rem); color: var(--muted); max-width: 680px; }
.prose p { margin: 0 0 1.15rem; }
.prose p:last-child { margin-bottom: 0; }
.muted { color: var(--muted); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: stretch;
  background: var(--sky);
}
.hero-copy {
  padding: clamp(3.5rem, 7vw, 7rem) max(2.5rem, calc((100vw - var(--max))/2)) clamp(3.5rem, 7vw, 7rem) clamp(2.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 { color: var(--ink); white-space: nowrap; }
.hero-title { font-size: clamp(.95rem, 1.45vw, 1.25rem); color: var(--muted); margin: 0 0 1.6rem; }
.single-line-subtitle { white-space: nowrap; }
.hero-copy .lead { max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem) 0;
  border-radius: 50% 50% 0 0;
  background: var(--sky);
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 30px 0 50px rgba(255,255,255,.05);
  pointer-events: none;
}
.intro-grid, .split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.intro-grid .statement {
  font-family: inherit;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.45;
  color: var(--teal-dark);
  margin: 0;
}
.treatment-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.treatment-item {
  position: relative;
  min-height: 185px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: right;
  cursor: pointer;
}
.treatment-card-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2.5rem 2.5rem 2.5rem .75rem;
  background: var(--white);
  transition: transform 160ms cubic-bezier(.2,.6,.2,1), box-shadow 160ms cubic-bezier(.2,.6,.2,1), background 160ms cubic-bezier(.2,.6,.2,1);
}
.treatment-item.is-flipped .treatment-card-inner {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  background: var(--teal-soft);
}
@media (hover: hover) {
  .treatment-item:hover .treatment-card-inner { transform: translateY(-2px); box-shadow: var(--shadow-lift); background: var(--teal-soft); }
}
.treatment-front,
.treatment-back {
  position: absolute;
  inset: 0;
  padding: 1.45rem;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.treatment-front {
  background: transparent;
  opacity: 1;
  justify-content: center;
  transition: opacity 160ms cubic-bezier(.2,.6,.2,1);
}
.treatment-front::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: var(--teal);
}
.treatment-front strong { font-family: inherit; font-size: clamp(1.4rem, 2vw, 1.65rem); font-weight: 700; line-height: 1.35; color: var(--ink); }
.treatment-back {
  opacity: 0;
  transform: translateY(6px);
  justify-content: center;
  background: transparent;
  color: var(--ink);
  line-height: 1.65;
  transition: opacity 160ms cubic-bezier(.2,.6,.2,1), transform 160ms cubic-bezier(.2,.6,.2,1);
}
.treatment-back p { margin: 0; }
.treatment-item.is-flipped .treatment-front { opacity: 0; }
.treatment-item.is-flipped .treatment-back { opacity: 1; transform: translateY(0); }
@media (hover: hover) {
  .treatment-item:hover .treatment-front { opacity: 0; }
  .treatment-item:hover .treatment-back { opacity: 1; transform: translateY(0); }
}

.clinic-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.clinic-copy .lead { max-width: 590px; }
.clinic-copy .button { margin-top: 1.4rem; }
.clinic-gallery {
  position: relative;
  min-height: 500px;
  padding: 0 0 clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
}
.clinic-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2.5rem 2.5rem 2.5rem .75rem;
  background: var(--sky);
  box-shadow: var(--shadow-lift);
}
.clinic-photo img { width: 100%; height: 100%; object-fit: cover; }
.clinic-photo-main {
  width: 88%;
  aspect-ratio: 4 / 3;
  margin-left: auto;
}
.clinic-photo-main img { object-position: center; }
.clinic-photo-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 3 / 4;
  border: .5rem solid var(--paper);
}
.clinic-photo-detail img { object-position: 58% center; }
.clinic-gallery.clinic-gallery-single {
  min-height: 0;
  padding: 0;
}
.clinic-photo-single { width: 100%; }
.clinic-photo-single img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quote-band { background: var(--teal-dark); color: white; }
.quote-band .container { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.quote-band blockquote {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-family: inherit;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.5;
}
.quote-band cite { display: block; margin-top: 1.2rem; font-family: inherit; font-size: .92rem; font-style: normal; opacity: .74; }

.page-hero { padding: clamp(5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem); }
.page-hero h1 { max-width: 850px; }
.page-hero .lead { max-width: 760px; }
.portrait-card { position: sticky; top: 115px; }
.portrait-card img { width: 100%; max-height: 650px; object-fit: cover; object-position: center 22%; border-radius: 50% 50% 0 0; box-shadow: var(--shadow); }
.portrait-caption { margin-top: .9rem; color: var(--muted); font-size: .9rem; }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.credentials { display: grid; gap: .8rem; margin-top: 2rem; }
.credential {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.credential strong { display: block; font-size: 1.05rem; }
.credential span { color: var(--muted); }

.approach-principle {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.approach-image {
  margin: 2rem 0 0;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border-radius: 50% 50% 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}
.approach-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.approach-tools-heading { max-width: 790px; }
.approach-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.approach-tool {
  position: relative;
  min-height: 230px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2.5rem 2.5rem 2.5rem .75rem;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 160ms cubic-bezier(.2,.6,.2,1), box-shadow 160ms cubic-bezier(.2,.6,.2,1);
}
.approach-tool:nth-child(2),
.approach-tool:nth-child(3) { background: var(--teal-soft); }
.approach-tool:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.approach-tool h3 { max-width: 88%; margin-top: 2.2rem; }
.approach-tool p { max-width: 92%; margin: 0; color: var(--muted); }
.tool-mark {
  position: absolute;
  top: 1.35rem;
  right: clamp(1.6rem, 3vw, 2.4rem);
  width: 2.2rem;
  height: 2px;
  background: var(--teal);
}
.tool-card {
  margin-top: 3rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-right: 4px solid var(--berry);
  background: var(--sky);
  border-radius: var(--radius) 0 0 var(--radius);
}
.tool-card .label { color: var(--teal-dark); font-size: .84rem; font-weight: 700; letter-spacing: .06em; }
.tool-card p { max-width: 860px; }
.tool-card p:last-child { margin-bottom: 0; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-heading { margin: 0; font: inherit; }
.faq-question {
  width: 100%;
  padding: 1.4rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 700 1.2rem/1.5 "Heebo", "Arial Hebrew", Arial, sans-serif;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.faq-question::after { content: "+"; color: var(--teal); font: 400 1.8rem/1 "Heebo", "Arial Hebrew", Arial, sans-serif; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 0 1.6rem; max-width: 720px; color: var(--muted); }
.faq-answer[hidden] { display: none; }

.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; column-gap: clamp(2rem, 7vw, 7rem); row-gap: 0; align-items: start; }
.contact-intro { grid-column: 1; grid-row: 1; }
.contact-card { grid-column: 2; grid-row: 1 / span 2; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 3rem); box-shadow: var(--shadow); }
.contact-row { padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row span { display: block; color: var(--muted); font-size: .84rem; margin-bottom: .2rem; }
.contact-row a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: .18em; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.contact-arrival {
  grid-column: 1;
  grid-row: 2;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.contact-arrival h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
.contact-arrival p { max-width: 650px; }
.contact-gallery {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  direction: ltr;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: min(100%, 980px);
  margin: clamp(1rem, 3vw, 2rem) auto 0;
}
.contact-gallery-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2.5rem 2.5rem 2.5rem .75rem;
  background: var(--sky);
  box-shadow: var(--shadow-lift);
}
.contact-gallery-photo img { display: block; width: 100%; height: auto; }
.contact-gallery-entrance {
  grid-column: 1;
  grid-row: 2;
}
.contact-gallery-detail {
  grid-column: 2;
  grid-row: 2;
}
.contact-gallery-main {
  grid-column: 1 / -1;
  grid-row: 1;
}
.contact-gallery-photo figcaption {
  position: absolute;
  direction: rtl;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(9, 0, 83, .84);
  color: white;
  font-size: .85rem;
  line-height: 1.4;
}

.accessibility-hero { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.accessibility-section { padding-top: 0; }
.accessibility-content > section {
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
  border-top: 1px solid var(--line);
}
.accessibility-content h2 { font-size: clamp(1.55rem, 2.5vw, 2rem); }
.accessibility-content a { color: var(--teal-dark); text-underline-offset: .18em; }
.accessibility-contact-card {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--teal-soft);
}
.accessibility-contact-card p { margin: .35rem 0; }
.statement-updated { color: var(--muted); font-size: .92rem; }

.cta-strip { padding: 3rem 0; border-top: 1px solid var(--line); }
.cta-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta-strip h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); margin-bottom: .35rem; }
.cta-strip p { margin: 0; color: var(--muted); }

.next-steps { background: var(--sky); }
.next-steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); }
.next-step { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 2rem; min-height: 260px; padding: clamp(1.75rem, 3vw, 2.75rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.next-step-contact { background: var(--teal-soft); }
.next-step h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: .8rem; }
.next-step p { max-width: 42ch; margin: 0; color: var(--muted); }

.site-footer { background: var(--ink); color: rgba(255,255,255,.9); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; }
.footer-title { margin: 0 0 .6rem; color: white; font-size: 1.35rem; font-weight: 700; line-height: 1.25; }
.footer-grid p { color: rgba(255,255,255,.7); margin: .35rem 0; }
.footer-grid a { color: rgba(255,255,255,.88); text-underline-offset: .2em; }
.footer-nav { display: flex; flex-direction: column; gap: .45rem; }
.copyright { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1.25rem;
  margin-top: .65rem;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}
.footer-legal a { color: inherit; text-underline-offset: .2em; }
.footer-legal a[aria-current="page"] { color: white; font-weight: 600; }

@media (max-width: 980px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem 1rem; }
  .nav-cta { margin-top: .5rem; }
  .hero { min-height: 0; grid-template-columns: 1.2fr .8fr; }
  .hero-copy { padding: 4rem 2.5rem; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-layout { gap: 3rem; }
  .clinic-gallery { min-height: 390px; }
}

@media (max-width: 820px) {
  .single-line-subtitle { white-space: normal; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .nav-shell { min-height: 88px; }
  .brand-logo { width: 112px; }
  .hero { display: flex; flex-direction: column; }
  .hero-copy { order: 2; padding: 3.25rem 1.25rem 4rem; }
  .hero-photo { order: 1; height: 60vh; min-height: 430px; margin: 1.25rem 1.25rem 0; }
  .hero-photo img { object-position: center 19%; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .intro-grid, .split, .about-grid, .approach-principle, .approach-tools, .contact-layout, .clinic-layout, .footer-grid, .next-steps-grid { grid-template-columns: 1fr; }
  .intro-grid, .split { gap: 2rem; }
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .treatment-item { min-height: 155px; }
  .treatment-front, .treatment-back { padding: 1.1rem; }
  .portrait-card { position: static; }
  .portrait-card img { max-height: 540px; }
  .approach-tool { min-height: 0; }
  .single-line-title { white-space: nowrap; font-size: clamp(2.1rem, 10.5vw, 2.8rem); }
  .approach-tool:nth-child(3) { background: var(--white); }
  .approach-tool:nth-child(4) { background: var(--teal-soft); }
  .cta-strip .container { align-items: flex-start; flex-direction: column; }
  .footer-grid { gap: 2rem; }
  .clinic-layout { gap: 2.5rem; }
  .clinic-gallery { min-height: 0; padding: 0 0 2.5rem 2rem; }
  .contact-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-intro,
  .contact-card,
  .contact-arrival,
  .contact-gallery { grid-column: 1; grid-row: auto; }
  .contact-intro { order: 1; }
  .contact-card { order: 2; }
  .contact-arrival { order: 3; margin-top: 0; }
  .contact-gallery { order: 4; }
  .contact-gallery-main { grid-column: 1; grid-row: auto; order: 1; }
  .contact-gallery-detail { grid-column: 1; grid-row: auto; order: 2; }
  .contact-gallery-entrance { grid-column: 1; grid-row: auto; order: 3; }
}

@media (max-width: 430px) {
  .container, .narrow { width: min(calc(100% - 2rem), var(--max)); }
  .treatment-grid { grid-template-columns: 1fr; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .clinic-photo-main { width: 92%; }
  .clinic-photo-detail { width: 42%; border-width: .35rem; }
}

@media (max-width: 360px) {
  .single-line-title, .hero-copy h1 { white-space: normal; }
}

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

@media (forced-colors: active) {
  :focus-visible { outline: 3px solid Highlight; box-shadow: none; }
  .nav-links a[aria-current="page"] { text-decoration: underline; }
  .treatment-card-inner, .approach-tool, .contact-card, .next-step { border: 1px solid CanvasText; }
}
