/* ===== Шрифтовая система: Oranienbaum (display) + Manrope (UI) ===== */

:root {
  --paper: #fffdfa;
  --cream: #f3eee3;
  --sage: #dbe1d3;
  --ink: #14140e;
  --ink-soft: #42423a;
  --ink-dim: #6a685d;
  --line: rgba(20, 20, 14, 0.18);
  --line-strong: rgba(20, 20, 14, 0.32);
  --night: #13140e;

  --pad: clamp(20px, 4.2vw, 72px);
  --sec: clamp(78px, 8.8vw, 150px);
  --serif: "Ivy Presto Headline", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.05em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ===== Типографика ===== */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.002em;
  margin: 0;
  text-wrap: balance;
}
.display--xl { font-size: clamp(52px, 8.4vw, 130px); line-height: 1.02; }
.display--lg { font-size: clamp(46px, 7vw, 106px); line-height: 1.04; }
.display--md { font-size: clamp(38px, 5.2vw, 78px); }
.display--sm { font-size: clamp(30px, 3.2vw, 50px); line-height: 1.1; }
.soft { color: var(--ink-soft); }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.label {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  line-height: 1.6;
}
.label--dim { color: var(--ink-dim); }
.muted { color: var(--ink-soft); }
.lead { font-size: clamp(19px, 1.5vw, 23px); line-height: 1.58; font-weight: 400; }
.num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 4.8vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  display: block;
}
.num--sm { font-size: clamp(36px, 3.4vw, 54px); }
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ===== Кнопки ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: transparent; color: var(--ink); }
.btn--bare { background: transparent; border-color: var(--line-strong); }
.btn--bare:hover { border-color: var(--ink); }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: transparent; color: var(--paper); border-color: rgba(255, 253, 250, 0.8); }
.btn--ghost { background: rgba(20, 20, 14, 0.28); color: #fffdfa; border-color: rgba(255, 253, 250, 0.72); }
.btn--ghost:hover { background: #fffdfa; color: var(--ink); border-color: #fffdfa; }
.more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 5px;
  align-self: flex-start;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.more:hover { border-color: var(--ink); }

/* ===== Появление при скролле ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s var(--ease) var(--d, 0s),
    transform 1.1s var(--ease) var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="mask"] {
  transform: none;
  clip-path: inset(0 0 108% 0);
  transition:
    opacity 0.9s ease var(--d, 0s),
    clip-path 1.3s var(--ease) var(--d, 0s);
}
[data-reveal="img"] { overflow: hidden; transform: none; }
[data-reveal="img"] img {
  transform: scale(1.12);
  transition: transform 1.6s var(--ease) var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="mask"].is-in { clip-path: inset(-14% -14% -14% -14%); }
[data-reveal="img"].is-in img { transform: none; }

/* ===== HEADER ===== */
.head {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  padding: 16px var(--pad);
  background: rgba(255, 253, 250, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(120%);
}
.head__mark {
  position: relative;
  flex: 0 0 auto;
  width: clamp(78px, 7.2vw, 92px);
  aspect-ratio: 945 / 659;
  overflow: hidden;
}
.head__mark img {
  position: absolute;
  width: 132.7%;
  max-width: none;
  height: auto;
  transform: translate(-11.3%, -25.4%);
}
.head__nav { display: flex; gap: clamp(14px, 1.7vw, 26px); margin: 0 auto; }
.head__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.head__nav a:hover { color: var(--ink); }
.head__side { display: flex; align-items: center; gap: 18px; }
.head__addr { font-size: 14px; color: var(--ink-soft); }
.head__link { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.head__link:hover { color: var(--ink); }

/* ===== 01 HERO ===== */
.hero { padding: clamp(14px, 1.6vw, 24px) var(--pad) 0; }
.hero__frame {
  position: relative;
  height: clamp(520px, 82vh, 800px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; transition: opacity 0.3s ease; }
.hero__bg.is-fading { opacity: 0; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 15, 10, 0.5) 0%, rgba(14, 15, 10, 0.3) 45%, rgba(14, 15, 10, 0.62) 100%),
    radial-gradient(60% 55% at 42% 42%, rgba(14, 15, 10, 0.5) 0%, rgba(14, 15, 10, 0) 100%);
}
.hero__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 5vw, 72px) clamp(18px, 5vw, 72px) clamp(108px, 11vw, 168px);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 7.2vw, 116px);
  line-height: 1.04;
  letter-spacing: 0.004em;
  color: #fffefb;
  margin: 0;
  max-width: 24ch;
  text-shadow: 0 2px 34px rgba(12, 13, 9, 0.5);
}
.hero__title span { display: block; }
.hero__title .thin { color: rgba(255, 254, 251, 0.94); }
.hero__lead {
  max-width: 52ch;
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  font-size: clamp(17.5px, 1.35vw, 21px);
  line-height: 1.62;
  font-weight: 500;
  color: #fffdfa;
  text-shadow: 0 1px 20px rgba(12, 13, 9, 0.55);
}
.hero__acts { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(26px, 2.8vw, 38px); }
.hero__thumbs {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 2vw, 32px);
  bottom: clamp(16px, 2vw, 32px);
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.slidecard {
  position: relative;
  width: clamp(96px, 8.6vw, 132px);
  height: clamp(120px, 10.6vw, 164px);
  padding: 0;
  border: none;
  background: var(--cream);
  overflow: hidden;
  cursor: pointer;
  font-family: var(--sans);
  transform: rotate(-3deg);
  transition: transform 0.35s var(--ease);
}
.slidecard::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(14, 15, 10, 0) 0%, rgba(14, 15, 10, 0.72) 100%);
}
.slidecard:nth-child(2) { transform: rotate(2.4deg); }
.slidecard:hover { transform: rotate(0deg) translateY(-6px); }
.slidecard span {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fffdfa;
  text-align: left;
}
.slidecard.is-active { outline: 2px solid rgba(255, 253, 250, 0.95); outline-offset: 4px; }
.slidecard--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 46px;
  padding: 0 26px;
  border: 1px solid var(--paper);
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  transform: none;
}
.slidecard--link::after { display: none; }
.slidecard--link:hover { transform: translateY(-4px); }

.hero__strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: clamp(18px, 3vw, 54px);
  align-items: center;
  padding: clamp(24px, 2.6vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}
.hero__strip .brands {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 28px);
  letter-spacing: 0.01em;
  text-align: right;
}
.hero__note {
  margin: 0;
  padding: clamp(18px, 2vw, 26px) 0 0;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-dim);
}

/* ===== 02 МАНИФЕСТ ===== */
.manifest {
  background: var(--paper);
  padding: var(--sec) var(--pad);
  text-align: center;
}
.manifest__oval {
  width: clamp(88px, 7vw, 112px);
  height: clamp(116px, 9vw, 148px);
  margin: 0 auto clamp(22px, 2.2vw, 32px);
  border-radius: 50% / 44%;
  overflow: hidden;
}
.manifest .eyebrow { margin-bottom: clamp(20px, 2.2vw, 30px); }
.manifest__title { max-width: 24ch; margin: 0 auto; }
.manifest__lead {
  max-width: 56ch;
  margin: clamp(28px, 3vw, 42px) auto 0;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.still {
  position: relative;
  width: min(600px, 100%);
  height: clamp(280px, 32vw, 430px);
  margin: clamp(58px, 6vw, 96px) auto 0;
}
.still__media,
.reviews__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.still__media img,
.reviews__media img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  width: clamp(104px, 9vw, 128px);
  height: clamp(104px, 9vw, 128px);
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}
.badge b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 30px);
  letter-spacing: 0;
  line-height: 1;
}
.badge em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.3;
}
.badge--a { left: clamp(-30px, -2.2vw, -14px); bottom: 14%; }
.badge--b {
  right: clamp(-30px, -2.2vw, -14px);
  top: 12%;
  background: var(--night);
  border-color: var(--night);
  color: var(--paper);
}
.badge--b em { color: rgba(243, 238, 227, 0.78); }
.manifest__note {
  max-width: 60ch;
  margin: clamp(40px, 4.2vw, 62px) auto 0;
  font-size: 16.5px;
  color: var(--ink-soft);
}
.figures {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 108px);
  margin-top: clamp(52px, 5.6vw, 92px);
  padding-top: clamp(30px, 3.2vw, 44px);
  border-top: 1px solid var(--line);
}
.figure .label { display: block; margin-top: 12px; }

/* ===== 03 ВРАЧИ ===== */
.doctors { background: var(--sage); padding: var(--sec) var(--pad); }
.doctors__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 78px);
  align-items: center;
}
.doctors__copy .display { max-width: 17ch; }
.doctors__copy .lead { margin: clamp(24px, 2.6vw, 34px) 0 14px; max-width: 30ch; }
.doctors__copy p:last-of-type { color: var(--ink-soft); max-width: 46ch; font-size: 16.5px; margin-bottom: clamp(24px, 2.6vw, 32px); }
.doctors__shot { margin: 0; height: clamp(340px, 40vw, 600px); }
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 44px);
  margin-top: clamp(52px, 5.6vw, 92px);
  padding-top: clamp(30px, 3.2vw, 42px);
  border-top: 1px solid var(--line-strong);
}
.metric .label { display: block; margin-top: 14px; max-width: 18ch; }

/* ===== 04 ЭКСПИРИЕНС ===== */
.experience { padding: var(--sec) var(--pad); }
.experience__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(20px, 3vw, 48px);
  margin-bottom: clamp(30px, 3.4vw, 48px);
}
.experience__head .display { max-width: 20ch; }
.experience__head .label { max-width: 28ch; text-align: right; }
.experience__shot { position: relative; margin: 0; height: clamp(340px, 58vh, 640px); }
.experience__shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(14, 15, 10, 0) 0%, rgba(14, 15, 10, 0.66) 100%);
  pointer-events: none;
}
.experience__shot figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 1.8vw, 26px) clamp(20px, 2.2vw, 32px);
}
.experience__shot figcaption .label { color: #fffdfa; font-weight: 600; letter-spacing: 0.04em; }
.play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: clamp(124px, 11vw, 162px);
  height: clamp(124px, 11vw, 162px);
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.97);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(12, 13, 9, 0.28);
  transition: transform 0.35s var(--ease);
}
.play:hover { transform: translate(-50%, -50%) scale(1.06); }
.play__icon { font-size: 17px; line-height: 1; }
.play__txt {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

/* ===== 05 ПОКАЗАНИЯ & РЕШЕНИЯ ===== */
.solutions { background: var(--cream); padding: var(--sec) var(--pad); }
.solutions__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
}
.solutions__head .display { max-width: 16ch; }
.solutions__intro p { color: var(--ink-soft); max-width: 44ch; font-size: 16.5px; }
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(58px, 6.2vw, 104px);
  align-items: start;
}
.tile { display: flex; flex-direction: column; gap: 18px; transition: transform 0.4s var(--ease); }
.tile img { height: clamp(210px, 24vw, 340px); }
.tile h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.3vw, 38px);
  letter-spacing: 0.004em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.tile p { font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); margin: 0; }
.tile--a { transform: rotate(-1.6deg) translateY(10px); }
.tile--b { transform: rotate(1.2deg) translateY(-14px); }
.tile--c { transform: rotate(-1deg) translateY(20px); }
.tile--d { transform: rotate(1.6deg) translateY(-4px); }
.tile:hover { transform: rotate(0deg) translateY(-6px); }

.ratingrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(66px, 7vw, 118px);
  padding-top: clamp(30px, 3.2vw, 44px);
  border-top: 1px solid var(--line-strong);
  text-align: center;
}
.ratingrow__top { display: flex; align-items: baseline; gap: 18px; }
.ratingrow .label { max-width: 54ch; font-size: 15.5px; }
.stars { letter-spacing: 0.24em; font-size: 15px; color: var(--ink-soft); }

/* ===== 06 НАПРАВЛЕНИЯ ===== */
.directions { padding: var(--sec) var(--pad); }
.directions__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
}
.directions__head p { color: var(--ink-soft); font-size: 16.5px; max-width: 40ch; margin: 0; }
.directions__head .display { max-width: 20ch; text-align: right; justify-self: end; }
.tabs {
  display: flex;
  gap: 12px;
  margin: clamp(34px, 3.8vw, 56px) 0 clamp(30px, 3.2vw, 48px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.tab {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 100px;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.panel { display: none; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 32px); }
.panel.is-active { display: grid; }
.card { display: flex; flex-direction: column; gap: 13px; }
.card img { height: clamp(200px, 21vw, 300px); margin-bottom: 5px; }
.card--tall { grid-row: span 2; }
.card--tall img { height: clamp(310px, 37vw, 520px); }
.card--wide { grid-column: span 2; }
.card--wide img { height: clamp(200px, 21vw, 300px); }
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(27px, 2.4vw, 40px);
  letter-spacing: 0.004em;
  line-height: 1.1;
  margin: 0;
}
.card p { font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 6px; max-width: 38ch; }

/* ===== 07 ЭКСКЛЮЗИВНЫЕ РЕШЕНИЯ ===== */
.exclusive { background: var(--sage); padding: var(--sec) var(--pad); }
.exclusive__head { max-width: 28ch; margin-bottom: clamp(42px, 4.8vw, 76px); }
.exclusive__head p { color: var(--ink-soft); font-size: 16.5px; margin: 20px 0 0; }
.tech {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 76px);
  align-items: center;
  padding: clamp(34px, 3.8vw, 62px) 0;
  border-top: 1px solid var(--line-strong);
}
.tech--flip .tech__shot { order: 2; }
.tech__shot { position: relative; margin: 0; height: clamp(320px, 42vw, 580px); }
.tech__tag {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--paper);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tech__copy { display: flex; flex-direction: column; align-items: flex-start; }
.tech__copy .display { margin-bottom: 22px; }
.tech__copy p { color: var(--ink-soft); max-width: 44ch; font-size: 16.5px; }
.specs { display: flex; flex-direction: column; gap: 12px; margin: 12px 0 30px; width: min(400px, 100%); }
.specs li {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
}

/* ===== 08 БОЛЬШАЯ ТИПОГРАФИКА ===== */
.bigtype {
  overflow: hidden;
  padding: clamp(32px, 3.8vw, 66px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bigtype__row {
  display: flex;
  align-items: baseline;
  gap: clamp(24px, 3.4vw, 60px);
  width: max-content;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.8vw, 122px);
  line-height: 1.1;
  letter-spacing: 0.004em;
  animation: drift 44s linear infinite;
}
.bigtype__row i { font-style: normal; font-size: 0.26em; color: var(--ink-dim); }
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== 09 РЕПУТАЦИЯ ===== */
.reviews { background: var(--cream); padding: var(--sec) var(--pad); }
.reviews__head { text-align: center; margin-bottom: clamp(42px, 4.8vw, 78px); }
.reviews__head .display { max-width: 22ch; margin: 0 auto; }
.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(28px, 3.6vw, 64px);
  align-items: start;
}
.reviews__shot {
  position: relative;
  margin: 0 0 clamp(56px, 5.6vw, 84px);
  height: clamp(360px, 40vw, 560px);
}
.reviews__over {
  position: absolute;
  left: clamp(14px, 1.6vw, 26px);
  right: clamp(14px, 1.6vw, 26px);
  bottom: clamp(-68px, -4.4vw, -40px);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(20px, 2vw, 30px);
}
.reviews__over p { font-size: 16.5px; line-height: 1.6; margin: 0 0 16px; }
.quotes { display: flex; flex-direction: column; gap: 20px; }
.quote { margin: 0; padding: clamp(22px, 2.4vw, 34px); background: var(--paper); border: 1px solid var(--line); }
.quote p { font-size: 17px; line-height: 1.62; margin: 0 0 18px; }
.quote footer { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; font-weight: 600; }
.quote--tilt { transform: rotate(-1deg); }
.reviews__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.realnum {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: end;
  margin-top: clamp(58px, 6.2vw, 104px);
  padding-top: clamp(30px, 3.2vw, 44px);
  border-top: 1px solid var(--line-strong);
}
.realnum .display { max-width: 18ch; }
.realnum__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 44px); }
.realnum__grid .label { display: block; margin-top: 12px; max-width: 20ch; }

/* ===== 10 СТОИМОСТЬ ===== */
.prices { padding: var(--sec) var(--pad); }
.prices__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: clamp(20px, 3vw, 48px); align-items: end; }
.prices__head p { color: var(--ink-soft); font-size: 16.5px; margin: 0; max-width: 34ch; }
.pricelist { margin-top: clamp(42px, 4.8vw, 80px); }
.priceitem {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(24px, 2.6vw, 40px) 0;
  border-top: 1px solid var(--line);
}
.priceitem:last-child { border-bottom: 1px solid var(--line); }
.priceitem h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 50px);
  letter-spacing: 0.004em;
  line-height: 1.1;
  margin: 0;
}
.priceitem p { color: var(--ink-soft); font-size: 16px; margin: 0; max-width: 40ch; }
.priceitem__val { text-align: right; }
.priceitem__val b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 44px);
  letter-spacing: 0.004em;
  line-height: 1.1;
}
.priceitem__val .label { display: block; margin-top: 8px; }
.priceitem--hit .kicker { grid-column: 1 / -1; margin-bottom: -8px; }
.prices__note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  margin-top: clamp(38px, 4.2vw, 68px);
}
.prices__note p { color: var(--ink-soft); max-width: 60ch; margin: 0; font-size: 16.5px; }

/* ===== 11 О КЛИНИКЕ ===== */
.clinic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4vw, 82px);
  align-items: center;
  padding: var(--sec) var(--pad);
  background: var(--sage);
}
.clinic__copy .lead { max-width: 40ch; }
.clinic__copy p.muted { max-width: 46ch; font-size: 16.5px; }
.chips { display: flex; gap: 12px; margin: clamp(24px, 2.6vw, 34px) 0 clamp(28px, 3.2vw, 40px); }
.chips span {
  padding: 11px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.contacts { display: flex; gap: clamp(26px, 4vw, 68px); margin: 0 0 clamp(26px, 3vw, 36px); }
.contacts dt { font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); }
.contacts dd { margin: 10px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 1.8vw, 30px); letter-spacing: 0.006em; }
.clinic__shot { margin: 0; height: clamp(330px, 42vw, 600px); }

/* ===== 12 CTA ===== */
.cta {
  position: relative;
  padding: clamp(100px, 11vw, 184px) var(--pad);
  overflow: hidden;
  text-align: center;
}
.cta__inner { position: relative; z-index: 2; max-width: min(940px, 86vw); margin: 0 auto; }
.cta__inner .eyebrow { margin-bottom: 26px; }
.cta__inner p { color: var(--ink-soft); margin: clamp(26px, 2.8vw, 36px) auto clamp(24px, 2.6vw, 32px); max-width: 46ch; font-size: 16.5px; }
.cta__acts { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta__float { position: absolute; object-fit: cover; }
.cta__float--1 { width: clamp(110px, 11vw, 172px); height: clamp(140px, 14vw, 214px); top: 13%; left: 4%; transform: rotate(-7deg); }
.cta__float--2 { width: clamp(100px, 10vw, 150px); height: clamp(128px, 12.5vw, 188px); bottom: 11%; left: 13%; transform: rotate(5deg); }
.cta__float--3 { width: clamp(118px, 12vw, 190px); height: clamp(148px, 15vw, 240px); top: 18%; right: 5%; transform: rotate(6deg); }

/* ===== FOOTER ===== */
.foot { background: var(--night); color: #f4efe4; padding: clamp(58px, 6vw, 100px) var(--pad) 34px; }
.foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(30px, 4vw, 74px);
  padding-bottom: clamp(40px, 4.8vw, 72px);
  border-bottom: 1px solid rgba(244, 239, 228, 0.2);
}
.foot__brand p { max-width: 34ch; color: rgba(244, 239, 228, 0.86); font-size: 16.5px; }
.foot__brand .label { color: rgba(244, 239, 228, 0.68); }
.foot__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 50px); }
.foot__cols div { display: flex; flex-direction: column; gap: 12px; }
.foot__cols .label { color: rgba(244, 239, 228, 0.6); margin-bottom: 6px; }
.foot__cols a { font-size: 15.5px; color: rgba(244, 239, 228, 0.9); transition: color 0.2s ease; }
.foot__cols a:hover { color: #fffdfa; }
.foot__wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(62px, 19vw, 272px);
  line-height: 0.96;
  letter-spacing: 0.004em;
  padding: clamp(32px, 3.8vw, 60px) 0 clamp(24px, 2.8vw, 42px);
  white-space: nowrap;
}
.foot__legal { border-top: 1px solid rgba(244, 239, 228, 0.2); padding-top: 28px; }
.foot__legal p { font-size: 13.5px; line-height: 1.72; color: rgba(244, 239, 228, 0.72); max-width: 110ch; }
.foot__legal b { font-weight: 600; color: rgba(244, 239, 228, 0.92); }
.foot__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0;
  font-size: 13.5px;
  color: rgba(244, 239, 228, 0.72);
}
.foot__bottom a:hover { color: #fffdfa; }
.foot__warn { font-size: 13px; color: rgba(244, 239, 228, 0.62); margin: 0; }

/* ===== ADAPTIVE ===== */
@media (max-width: 1180px) {
  .head__nav { gap: 14px; }
  .head__nav a { font-size: 14px; }
  .head__addr { display: none; }
}

@media (max-width: 1080px) {
  .head__nav { display: none; }
  .head__mark { margin-right: auto; }
  .hero__strip { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); row-gap: 18px; }
  .hero__strip .brands { text-align: left; grid-column: span 2; }
  .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: clamp(30px, 4vw, 52px); }
  .panel.is-active { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--tall { grid-row: auto; }
  .card--wide { grid-column: span 2; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .tech, .tech--flip { grid-template-columns: minmax(0, 1fr); }
  .tech--flip .tech__shot { order: 0; }
  .doctors__grid, .reviews__grid, .realnum, .clinic, .prices__head, .prices__note, .solutions__head, .directions__head { grid-template-columns: minmax(0, 1fr); }
  .directions__head .display { text-align: left; justify-self: start; }
  .experience__head { flex-direction: column; align-items: flex-start; }
  .experience__head .label { text-align: left; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .head { gap: 12px; }
  .head__side { gap: 12px; }
  .head__link { display: none; }
  .hero__frame { height: clamp(560px, 92vh, 720px); }
  .hero__overlay { padding-bottom: clamp(164px, 36vw, 220px); }
  .hero__thumbs { left: clamp(14px, 4vw, 22px); right: auto; }
  .slidecard--link { height: 42px; padding: 0 20px; font-size: 14px; }
  .mosaic, .panel.is-active { grid-template-columns: minmax(0, 1fr); }
  .card--wide { grid-column: auto; }
  .tile--a, .tile--b, .tile--c, .tile--d { transform: rotate(0deg); }
  .tile:hover { transform: none; }
  .figures { flex-wrap: wrap; gap: 28px; justify-content: flex-start; }
  .priceitem { grid-template-columns: minmax(0, 1fr); }
  .priceitem__val { text-align: left; }
  .priceitem--hit .kicker { margin-bottom: 0; }
  .quote--tilt { transform: none; }
  .cta__float { display: none; }
  .realnum__grid { grid-template-columns: minmax(0, 1fr); row-gap: 24px; }
  .foot__top, .foot__cols { grid-template-columns: minmax(0, 1fr); }
  .contacts { flex-direction: column; gap: 22px; }
  .badge--a { left: -8px; }
  .badge--b { right: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  .bigtype__row { animation: none; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; transition: none; }
  [data-reveal="img"] img { transform: none; transition: none; }
}

/* ========================================================================== */
/* ART DIRECTION PASS 02 — IVY PRESTO / EDITORIAL SCALE / REFERENCE FIDELITY */
/* ========================================================================== */

@font-face {
  font-family: "Ivy Presto Headline";
  src: url("fonts/ivy-presto-headline-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Liana Script";
  src: url("ofont.ru_Liana.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fbfaf6;
  --cream: #f2ede2;
  --sage: #d8dfd0;
  --ink: #11120d;
  --ink-soft: #3d3d35;
  --ink-dim: #737267;
  --line: rgba(17, 18, 13, 0.16);
  --line-strong: rgba(17, 18, 13, 0.3);
  --night: #13160f;
  --pad: clamp(24px, 4.8vw, 72px);
  --serif: "Ivy Presto Headline", serif;
  --script: "Liana Script", cursive;
  --ease: cubic-bezier(0.2, 0.72, 0.25, 1);
}

body {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.006em;
}

.display,
.hero__title,
.num,
.bigtype__row,
.foot__wordmark,
.head__mark,
.tile h3,
.card h3,
.priceitem h3,
.priceitem__val b,
.contacts dd {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.display { line-height: 0.94; }
.display--xl { font-size: clamp(70px, 9.4vw, 142px); line-height: 0.88; }
.display--lg { font-size: clamp(64px, 7.8vw, 118px); line-height: 0.9; }
.display--md { font-size: clamp(56px, 6.35vw, 96px); line-height: 0.92; }
.display--sm { font-size: clamp(42px, 4.35vw, 66px); line-height: 0.96; }
.soft { color: inherit; }

.eyebrow {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.label {
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.015em;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.lead {
  font-size: clamp(18px, 1.42vw, 21px);
  line-height: 1.48;
}

.num {
  font-size: clamp(58px, 5.5vw, 84px);
  line-height: 0.86;
}
.num--sm { font-size: clamp(46px, 4.2vw, 64px); }

/* Calm interactive language */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 46px;
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: 0.035em;
  transition: color 420ms var(--ease), border-color 420ms var(--ease), transform 420ms var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  transform: translateY(102%);
  transition: transform 420ms var(--ease);
}
.btn::after { content: "↗"; transition: transform 380ms var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: none; }
.btn--ink:hover,
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); background: var(--ink); }
.btn--light::before { background: var(--ink); }
.btn--light:hover { color: var(--paper); border-color: var(--paper); background: var(--paper); }
.btn--bare::before { background: var(--ink); }
.btn--bare:hover { color: var(--paper); }
.btn:hover::after { transform: translateX(4px); }

.more {
  font-size: 11px;
  letter-spacing: 0.14em;
  transition: color 400ms ease, border-color 400ms ease;
}
.more::after { content: " ↗"; display: inline-block; transition: transform 400ms var(--ease); }
.more:hover::after { transform: translateX(4px); }

img { transition: transform 850ms var(--ease); }
figure:hover > img,
.card:hover > img,
.tile:hover > img { transform: scale(1.028); }

[data-reveal] {
  transform: translateY(24px);
  transition: opacity 900ms var(--ease) var(--d, 0s), transform 1100ms var(--ease) var(--d, 0s);
}
[data-reveal="mask"] {
  transform: translateY(34px);
  clip-path: inset(0 0 106% 0);
  transition: opacity 850ms ease var(--d, 0s), transform 1100ms var(--ease) var(--d, 0s), clip-path 1200ms var(--ease) var(--d, 0s);
}
[data-reveal="mask"].is-in { transform: none; clip-path: inset(-16% -8% -18% -8%); }
[data-reveal="img"] img { transform: scale(1.04); }

/* Header: thin, airy, never visually louder than the hero */
.head {
  min-height: 74px;
  gap: clamp(20px, 2.1vw, 34px);
  padding: 13px var(--pad);
  background: rgba(251, 250, 246, 0.94);
}
.head__mark { line-height: 1; }
.head__nav { gap: clamp(18px, 1.7vw, 28px); }
.head__nav a,
.head__link,
.head__addr { font-size: 12px; letter-spacing: 0.02em; }
.head__nav a { position: relative; padding: 8px 0; }
.head__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}
.head__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.head__side { gap: clamp(15px, 1.3vw, 22px); }
.head .btn { min-height: 42px; padding: 10px 22px; }

/* 01 — Hero: image first, giant headline, compact utility copy */
.hero { padding: 14px var(--pad) 0; }
.hero__frame { height: clamp(690px, 86vh, 860px); }
.hero__scrim {
  background:
    linear-gradient(180deg, rgba(12, 13, 9, 0.55) 0%, rgba(12, 13, 9, 0.12) 43%, rgba(12, 13, 9, 0.68) 100%),
    radial-gradient(70% 52% at 42% 38%, rgba(12, 13, 9, 0.38), transparent 72%);
}
.hero__overlay {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: clamp(38px, 4.2vw, 66px) clamp(22px, 4.2vw, 64px) clamp(36px, 4vw, 60px);
}
.hero__title {
  align-self: center;
  width: min(1160px, 100%);
  max-width: none;
  margin: 0 auto;
  color: #fffdf7;
  font-size: clamp(80px, 8.45vw, 122px);
  line-height: 0.88;
  letter-spacing: -0.042em;
  text-align: center;
  text-shadow: 0 3px 32px rgba(8, 9, 6, 0.28);
}
.hero__lead {
  max-width: 470px;
  margin: auto 0 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}
.hero__acts { justify-content: flex-start; margin-top: 20px; gap: 10px; }
.hero__thumbs { right: 26px; bottom: 28px; gap: 10px; }
.slidecard {
  width: clamp(116px, 9.4vw, 142px);
  height: clamp(148px, 12vw, 182px);
  transition: transform 650ms var(--ease), box-shadow 650ms var(--ease);
}
.slidecard:hover { transform: rotate(0deg) translateY(-8px) scale(1.015); box-shadow: 0 18px 34px rgba(0,0,0,.18); }
.slidecard--link { width: auto; height: 44px; padding: 0 24px; font-size: 12px; }
.hero__strip {
  grid-template-columns: 1.1fr 0.95fr 0.9fr;
  padding: 27px 0 23px;
}
.hero__strip .brands { font-size: clamp(23px, 2vw, 30px); letter-spacing: -0.02em; }
.hero__note { padding-top: 13px; font-size: 12px; }

/* 02 — Manifesto: intentional outer breathing room, dense central composition */
.manifest { padding: clamp(160px, 13vw, 206px) var(--pad) clamp(170px, 14vw, 220px); }
.manifest__oval {
  width: clamp(130px, 9.5vw, 154px);
  height: clamp(174px, 12vw, 204px);
  margin-bottom: 17px;
}
.manifest .eyebrow { margin-bottom: 20px; }
.manifest__title {
  max-width: 880px;
  font-size: clamp(68px, 7.6vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.045em;
}
.manifest__title .soft {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 0 -0.02em 0 -0.08em;
  color: #59624d;
  font-family: var(--script);
  font-size: 1.12em;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.04em;
  transform: rotate(-3deg) translateY(0.12em);
}
.manifest__lead {
  max-width: 540px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.55;
}
.still {
  width: min(820px, 78vw);
  height: clamp(390px, 42vw, 570px);
  margin-top: clamp(42px, 4vw, 62px);
  overflow: visible;
}
.still__media { overflow: hidden; }
.badge { width: clamp(118px, 9.5vw, 146px); height: clamp(118px, 9.5vw, 146px); }
.badge b { font-family: var(--serif); font-weight: 300; font-size: 34px; letter-spacing: -0.035em; }
.badge--a { left: -46px; bottom: 13%; }
.badge--b { right: -44px; top: 8%; }
.manifest__note { max-width: 530px; margin-top: 29px; font-size: 15px; line-height: 1.58; }
.figures {
  width: min(760px, 100%);
  justify-content: space-between;
  gap: 24px;
  margin: 42px auto 0;
  padding-top: 31px;
}
.figure:nth-child(2) { transform: translateY(22px); }
.figure:nth-child(3) { transform: translateY(-8px); }
.figure .label { margin-top: 9px; }

/* 03 — Doctors: intentionally uneven balance */
.doctors { padding: clamp(150px, 12vw, 190px) var(--pad) clamp(132px, 10vw, 170px); }
.doctors__grid {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: start;
}
.doctors__copy { max-width: 470px; padding-top: clamp(42px, 5vw, 76px); }
.doctors__copy .display { max-width: 8.4ch; font-size: clamp(63px, 6.6vw, 100px); }
.doctors__copy .lead { margin: 26px 0 12px; max-width: 26ch; }
.doctors__copy p:last-of-type { max-width: 42ch; font-size: 15px; line-height: 1.58; }
.doctors__shot { height: clamp(560px, 52vw, 760px); margin-right: calc(var(--pad) * -0.2); }
.metrics {
  grid-template-columns: 0.72fr 1.1fr 0.78fr 1.25fr;
  gap: clamp(28px, 5vw, 86px);
  max-width: 1110px;
  position: relative;
  z-index: 2;
  margin: clamp(44px, 5vw, 72px) 0 0 auto;
  padding-top: 0;
  border-top: 0;
  align-items: end;
}
.metric { border-top: 1px solid var(--line-strong); padding-top: 18px; }
.metric:nth-child(1) { transform: translateY(34px); }
.metric:nth-child(2) { transform: translateY(76px); }
.metric:nth-child(3) { transform: translateY(12px); }
.metric:nth-child(4) { transform: translateY(55px); }
.metric:nth-child(2) .num,
.metric:nth-child(4) .num { font-size: clamp(72px, 6.3vw, 96px); }
.metric .label { margin-top: 10px; max-width: 17ch; }

/* 04 — Atmosphere: cinematic image with restrained controls */
.experience { padding: clamp(170px, 14vw, 220px) var(--pad) clamp(150px, 11vw, 182px); }
.experience__head { margin-bottom: 26px; }
.experience__head .display { max-width: 12ch; font-size: clamp(68px, 7vw, 106px); }
.experience__head .label { margin-bottom: 9px; }
.experience__shot { height: clamp(590px, 62vw, 820px); overflow: hidden; }
.play {
  top: 54%;
  width: 78px;
  height: 78px;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(251,250,246,.92);
  box-shadow: none;
  transition: transform 650ms var(--ease), background 650ms var(--ease);
}
.play:hover { transform: translate(-50%, -50%) scale(1.04); background: #fff; }
.play__icon { font-size: 11px; transform: translateX(1px); }
.play__txt { display: none; }
.experience__shot figcaption {
  left: 22px;
  right: 22px;
  bottom: 18px;
  padding: 0;
  align-items: end;
}
.experience__shot figcaption .label:first-child { font-family: var(--serif); font-weight: 300; font-size: 27px; letter-spacing: -0.02em; }

/* 05 — Solutions: a physical editorial stack, not a safe grid */
.solutions { padding: clamp(150px, 12vw, 190px) var(--pad) clamp(150px, 11vw, 180px); }
.solutions__head { grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr); }
.solutions__head .display { max-width: 12ch; }
.solutions__intro { padding-bottom: 8px; }
.solutions__intro p { max-width: 390px; font-size: 15px; line-height: 1.58; }
.mosaic {
  display: flex;
  gap: 0;
  margin-top: clamp(78px, 7vw, 112px);
  padding: 32px 1.5% 56px;
  align-items: flex-start;
  min-height: 650px;
}
.tile {
  flex: 0 0 28%;
  gap: 0;
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(28, 27, 20, 0.08);
  transform-origin: 50% 90%;
  transition: transform 650ms var(--ease), box-shadow 650ms var(--ease);
}
.tile + .tile { margin-left: -4.1%; }
.tile img { height: clamp(320px, 29vw, 430px); }
.tile__body { min-height: 230px; padding: 22px 22px 27px; }
.tile h3 { font-size: clamp(38px, 3.25vw, 50px); line-height: 0.96; margin-bottom: 14px; }
.tile p { font-size: 14px; line-height: 1.54; }
.tile--a { z-index: 1; transform: rotate(-4deg) translateY(42px); }
.tile--b { z-index: 3; transform: rotate(2.3deg) translateY(-18px); }
.tile--c { z-index: 2; transform: rotate(-2.2deg) translateY(56px); }
.tile--d { z-index: 4; transform: rotate(4deg) translateY(5px); }
.tile:hover {
  z-index: 10;
  transform: rotate(0deg) translateY(-8px) scale(1.018);
  box-shadow: 0 28px 48px rgba(28, 27, 20, 0.14);
}
.ratingrow { margin-top: 36px; padding-top: 27px; }

/* 06 — Services: deliberate broken-grid editorial mosaic */
.directions { padding: clamp(155px, 12vw, 190px) var(--pad) clamp(170px, 13vw, 210px); }
.directions__head { grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr); }
.directions__head .display { max-width: 12ch; font-size: clamp(64px, 6.4vw, 98px); }
.directions__head p { font-size: 15px; max-width: 330px; }
.tabs { margin: 43px 0 54px; padding-bottom: 16px; }
.tab { padding: 11px 22px; font-size: 12px; }
.panel.is-active {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(16px, 1.8vw, 28px);
  row-gap: 42px;
  min-height: 900px;
  align-items: start;
}
.card { gap: 10px; }
.card img { margin-bottom: 8px; overflow: hidden; }
.card h3 { font-size: clamp(38px, 3.3vw, 50px); line-height: 0.96; }
.card p { max-width: 34ch; font-size: 14px; line-height: 1.55; }
.panel .card:nth-child(1) { grid-column: 1 / span 5; grid-row: 1 / span 2; }
.panel .card:nth-child(1) img { height: clamp(540px, 51vw, 740px); }
.panel .card:nth-child(2) { grid-column: 7 / span 2; grid-row: 1; transform: translateY(78px); }
.panel .card:nth-child(2) img { height: clamp(300px, 29vw, 420px); }
.panel .card:nth-child(3) { grid-column: 10 / span 3; grid-row: 1; }
.panel .card:nth-child(3) img { height: clamp(210px, 20vw, 290px); }
.panel .card:nth-child(4) { grid-column: 6 / span 7; grid-row: 2; transform: translateY(-35px); }
.panel .card:nth-child(4) img { height: clamp(310px, 31vw, 440px); }

/* 07 — Technology: one dominant visual and one quieter detail */
.exclusive { padding: clamp(155px, 12vw, 192px) var(--pad) clamp(150px, 11vw, 182px); }
.exclusive__head { max-width: 620px; margin-bottom: 72px; }
.exclusive__head .display { font-size: clamp(60px, 6vw, 88px); line-height: 0.9; }
.exclusive__head .display span { display: block; white-space: nowrap; }
.tech {
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(50px, 7vw, 110px);
  padding: 52px 0 96px;
  align-items: end;
}
.tech__shot { height: clamp(540px, 52vw, 760px); overflow: hidden; }
.tech__copy { padding-bottom: 28px; }
.tech__copy .display { font-size: clamp(52px, 4.9vw, 74px); }
.tech__copy p { max-width: 390px; font-size: 15px; line-height: 1.58; }
.tech__tag { top: 18px; left: 18px; padding: 9px 16px; font-size: 10px; }
.tech--flip { grid-template-columns: minmax(350px, 0.8fr) minmax(0, 1.2fr); padding-top: 90px; }
.tech--flip .tech__shot {
  width: 76%;
  height: clamp(350px, 34vw, 490px);
  justify-self: end;
}
.tech--flip .tech__copy { max-width: 430px; padding: 0 0 58px 4vw; }

/* 08 — Typography strip: a confident pause between chapters */
.bigtype { padding: clamp(62px, 5.7vw, 86px) 0; }
.bigtype__row {
  gap: clamp(64px, 7.2vw, 108px);
  font-size: clamp(82px, 10vw, 150px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  animation-duration: 76s;
}
.bigtype__row i { font-size: 0.18em; transform: translateY(-0.28em); }

/* 09 — Testimonials: magazine spread, not cards */
.reviews { padding: clamp(160px, 12vw, 196px) var(--pad) clamp(150px, 11vw, 180px); }
.reviews__head { margin-bottom: 72px; }
.reviews__head .display { max-width: 11ch; font-size: clamp(72px, 7.8vw, 118px); }
.reviews__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(56px, 8vw, 124px);
}
.reviews__shot { height: clamp(560px, 54vw, 760px); margin-bottom: 76px; overflow: visible; }
.reviews__media { overflow: hidden; }
.reviews__over {
  left: auto;
  right: -5%;
  bottom: -78px;
  width: min(520px, 78%);
  max-width: calc(100% + 40px);
  overflow: visible;
  background: rgba(251, 250, 246, 0.94);
  border: 0;
  border-top: 1px solid var(--line-strong);
  padding: 24px 0 0 28px;
}
.reviews__over p { font-family: var(--serif); font-size: clamp(27px, 2.4vw, 36px); line-height: 1.04; letter-spacing: -0.025em; }
.quotes { gap: 0; padding-top: 38px; }
.quote {
  position: relative;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-strong);
  padding: 34px 0 38px 58px;
}
.quote::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 0;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: #77786d;
}
.quote p { font-size: 16px; line-height: 1.6; }
.quote footer { font-size: 12px; }
.quote--tilt { transform: none; }
.reviews__acts { border-top: 1px solid var(--line-strong); padding-top: 28px; margin-top: 0; }
.realnum {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  margin-top: 116px;
  padding-top: 36px;
}
.realnum .display { max-width: 9ch; font-size: clamp(50px, 5.2vw, 78px); }
.realnum__grid { gap: 50px; align-items: end; }
.realnum__grid > div:nth-child(2) { transform: translateY(24px); }
.realnum__grid > div:nth-child(3) { transform: translateY(-12px); }

/* 10 — Pricing: editorial entries with visible scale contrast */
.prices { padding: clamp(160px, 13vw, 200px) var(--pad) clamp(150px, 11vw, 182px); }
.prices__head { grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); }
.prices__head .display { font-size: clamp(72px, 7.4vw, 112px); }
.prices__head p { max-width: 300px; font-size: 14px; }
.pricelist { margin-top: 68px; }
.priceitem {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 0.9fr) minmax(210px, 0.42fr);
  align-items: center;
  padding: 39px 0 46px;
  transition: border-color 520ms var(--ease), color 520ms var(--ease);
}
.priceitem::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: color-mix(in srgb, var(--sage) 58%, var(--paper));
  transform: translateY(101%);
  transition: transform 620ms var(--ease);
}
.priceitem h3,
.priceitem p,
.priceitem__val,
.priceitem .kicker {
  position: relative;
  z-index: 1;
  transition: transform 560ms var(--ease), color 420ms var(--ease), opacity 420ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .priceitem:hover { border-color: var(--line-strong); }
  .priceitem:hover::before { transform: translateY(0); }
  .priceitem:hover h3 { transform: translateX(clamp(8px, 1vw, 16px)); }
  .priceitem:hover p { transform: translateX(clamp(5px, .65vw, 10px)); color: var(--ink); }
  .priceitem:hover .priceitem__val { transform: translateX(clamp(-12px, -.8vw, -6px)); }
  .priceitem:hover .kicker { transform: translateX(8px); }
}
.priceitem h3 { font-size: clamp(48px, 5.2vw, 78px); line-height: 0.9; }
.priceitem p { max-width: 360px; font-size: 14px; line-height: 1.58; }
.priceitem__val b { font-size: clamp(44px, 4.2vw, 64px); line-height: 0.92; }
.priceitem:nth-child(2) { padding-left: 7%; }
.priceitem--hit { position: relative; padding-top: 58px; }
.priceitem--hit .kicker { position: absolute; top: 24px; left: 0; margin: 0; }
.prices__note { margin-top: 52px; }
.prices__note p { max-width: 520px; font-size: 14px; }

/* 11 — Clinic keeps the information architecture, gains image authority */
.clinic {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 126px);
  padding: clamp(150px, 11vw, 182px) var(--pad);
}
.clinic__copy { max-width: 510px; }
.clinic__copy .lead { font-size: 18px; line-height: 1.5; }
.clinic__copy p.muted { font-size: 14px; line-height: 1.58; }
.clinic__shot { height: clamp(570px, 53vw, 760px); overflow: hidden; }
.contacts dd { font-size: clamp(27px, 2.4vw, 36px); line-height: 1; }

/* 12 — CTA: fewer, larger objects anchored to an ellipse */
.cta { padding: clamp(180px, 15vw, 232px) var(--pad) clamp(190px, 16vw, 248px); }
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1050px, 78vw);
  height: min(470px, 38vw);
  border: 1px solid rgba(17,18,13,.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  pointer-events: none;
}
.cta::after { width: min(860px, 64vw); height: min(360px, 29vw); transform: translate(-50%, -50%) rotate(7deg); }
.cta__inner { max-width: 1080px; }
.cta__inner .display { font-size: clamp(86px, 10vw, 152px); line-height: 0.84; }
.cta__inner .soft {
  display: inline-block;
  color: #59624d;
  font-family: var(--script);
  font-size: 1.05em;
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.05em;
  transform: rotate(-3deg) translateY(0.08em);
}
.cta__inner p { margin: 35px auto 27px; font-size: 14px; }
.cta__float { z-index: 1; box-shadow: 0 20px 38px rgba(28,27,20,.1); }
.cta__float--1 { width: clamp(170px, 15vw, 226px); height: clamp(220px, 20vw, 304px); top: 12%; left: -2.4%; transform: rotate(-6deg); }
.cta__float--2 { display: none; }
.cta__float--3 { width: clamp(180px, 16vw, 244px); height: clamp(230px, 21vw, 320px); top: 18%; right: -1.5%; transform: rotate(5deg); }

/* Footer: controlled overscale as the final visual event */
.foot { padding: clamp(72px, 6.6vw, 104px) var(--pad) 34px; overflow: hidden; }
.foot__top { grid-template-columns: 0.75fr 1.25fr; padding-bottom: 56px; }
.foot__brand p { max-width: 31ch; font-size: 14px; }
.foot__cols a { font-size: 13px; }
.foot__wordmark {
  width: calc(100% + 0.06em);
  margin-left: -0.03em;
  padding: 49px 0 34px;
  font-size: clamp(118px, 21.5vw, 330px);
  line-height: 0.73;
  letter-spacing: -0.055em;
}
.foot__legal { padding-top: 25px; }
.foot__legal p,
.foot__bottom { font-size: 11px; line-height: 1.6; }
.foot__warn { font-size: 11px; }

/* Responsive editorial re-composition */
@media (max-width: 1180px) {
  .head__nav { display: none; }
  .head__mark { margin-right: auto; }
  .hero__title { font-size: clamp(72px, 9vw, 100px); }
  .doctors__grid { grid-template-columns: 0.75fr 1.25fr; gap: 48px; }
  .mosaic { min-height: 600px; }
  .panel.is-active { min-height: 780px; }
  .tech { grid-template-columns: 1.15fr .85fr; gap: 46px; }
  .reviews__grid { gap: 55px; }
}

@media (max-width: 900px) {
  :root { --pad: clamp(22px, 5vw, 44px); }
  .hero__frame { height: 760px; }
  .hero__title { font-size: clamp(66px, 10.5vw, 92px); }
  .hero__thumbs { display: none; }
  .hero__lead { max-width: 430px; }
  .hero__strip { grid-template-columns: 1fr 1fr; }
  .hero__strip .brands { grid-column: 1 / -1; text-align: left; }
  .still { width: min(760px, 88vw); }
  .doctors__grid,
  .reviews__grid,
  .realnum,
  .clinic,
  .prices__head,
  .prices__note,
  .solutions__head,
  .directions__head { grid-template-columns: 1fr; }
  .doctors__copy { padding-top: 0; }
  .doctors__copy .display { max-width: 12ch; }
  .doctors__shot { margin-left: 13%; height: 620px; }
  .metrics { margin-top: 54px; grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(n) { transform: none; }
  .experience__head { flex-direction: row; align-items: end; }
  .mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
    min-height: 0;
    padding: 20px 4% 30px;
  }
  .tile { width: auto; transform: none; }
  .tile + .tile { margin-left: 0; }
  .tile--a, .tile--c { transform: rotate(-2deg); }
  .tile--b, .tile--d { transform: rotate(2deg) translateY(24px); }
  .directions__head .display { justify-self: start; text-align: left; }
  .panel.is-active { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0; }
  .panel .card:nth-child(n) { grid-column: auto; grid-row: auto; transform: none; }
  .panel .card:nth-child(1) img { height: 560px; }
  .panel .card:nth-child(2) { margin-top: 100px; }
  .panel .card:nth-child(2) img { height: 390px; }
  .panel .card:nth-child(3) img { height: 290px; }
  .panel .card:nth-child(4) { margin-top: -70px; }
  .panel .card:nth-child(4) img { height: 410px; }
  .exclusive__head .display span { white-space: normal; }
  .tech,
  .tech--flip { grid-template-columns: 1fr; }
  .tech--flip .tech__shot { order: 0; width: 72%; justify-self: end; }
  .tech--flip .tech__copy { padding-left: 0; }
  .reviews__shot { width: 86%; }
  .reviews__over { right: -16%; }
  .quotes { padding-top: 20px; }
  .realnum__grid { margin-top: 20px; }
  .priceitem { grid-template-columns: 1fr minmax(250px, .8fr); }
  .priceitem p { grid-column: 1; }
  .priceitem__val { grid-column: 2; grid-row: 1 / span 2; }
  .priceitem:nth-child(2) { padding-left: 0; }
  .clinic__shot { margin-left: 11%; }
  .cta__float { opacity: .72; }
  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .head { min-height: 64px; padding-top: 10px; padding-bottom: 10px; }
  .head__mark { font-size: 27px; }
  .head .btn { min-height: 40px; padding: 9px 17px; }
  .hero { padding: 8px 14px 0; }
  .hero__frame { height: min(780px, calc(100svh - 78px)); min-height: 620px; }
  .hero__overlay { padding: 34px 19px 30px; }
  .hero__title { font-size: clamp(52px, 15vw, 72px); line-height: .88; text-align: left; }
  .hero__lead { font-size: 14px; }
  .hero__acts { gap: 8px; }
  .hero__acts .btn { padding: 11px 17px; }
  .hero__strip { grid-template-columns: 1fr; padding: 22px 0; }
  .hero__strip .brands { grid-column: auto; }
  .hero__note { line-height: 1.5; }
  .display--xl,
  .cta__inner .display { font-size: clamp(62px, 18vw, 86px); }
  .display--lg,
  .reviews__head .display { font-size: clamp(58px, 16vw, 78px); }
  .display--md,
  .manifest__title,
  .doctors__copy .display,
  .experience__head .display,
  .directions__head .display,
  .exclusive__head .display { font-size: clamp(50px, 14vw, 68px); }
  .manifest { padding: 120px 20px 136px; }
  .manifest__oval { width: 116px; height: 154px; }
  .manifest__title { line-height: .9; }
  .manifest__title .soft { font-size: 1.02em; transform: rotate(-2deg) translateY(.08em); }
  .still { width: 100%; height: 390px; }
  .badge { width: 94px; height: 94px; }
  .badge b { font-size: 26px; }
  .badge em { font-size: 8px; }
  .badge--a { left: -9px; }
  .badge--b { right: -8px; }
  .figures { justify-content: space-between; gap: 14px; }
  .figure:nth-child(n) { transform: none; }
  .num { font-size: 55px; }
  .doctors { padding: 120px 20px 130px; }
  .doctors__shot { margin-left: 8%; height: 500px; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .metric:nth-child(2) .num,
  .metric:nth-child(4) .num { font-size: 58px; }
  .experience { padding: 130px 20px 120px; }
  .experience__head { flex-direction: column; align-items: flex-start; margin-bottom: 20px; }
  .experience__shot { height: 500px; }
  .experience__shot figcaption .label:first-child { font-size: 22px; }
  .solutions { padding: 120px 20px 130px; }
  .solutions__head { gap: 28px; }
  .mosaic { grid-template-columns: 1fr; gap: 26px; padding: 24px 5% 18px; }
  .tile:nth-child(n) { transform: rotate(0deg); }
  .tile--a, .tile--c { transform: rotate(-1.5deg); }
  .tile--b, .tile--d { transform: rotate(1.5deg); }
  .tile img { height: 390px; }
  .tile__body { min-height: auto; }
  .directions { padding: 125px 20px 135px; }
  .tabs { overflow-x: auto; padding-bottom: 14px; }
  .tab { white-space: nowrap; min-height: 44px; }
  .panel.is-active { grid-template-columns: 1fr; gap: 54px; }
  .panel .card:nth-child(n) { margin-top: 0; }
  .panel .card:nth-child(1) img { height: 500px; }
  .panel .card:nth-child(2) img { height: 430px; }
  .panel .card:nth-child(3) img { height: 320px; }
  .panel .card:nth-child(4) img { height: 380px; }
  .exclusive { padding: 125px 20px 130px; }
  .exclusive__head { margin-bottom: 42px; }
  .exclusive__head .display span { white-space: normal; }
  .tech { padding: 42px 0 72px; gap: 30px; }
  .tech__shot { height: 500px; }
  .tech--flip { padding-top: 68px; }
  .tech--flip .tech__shot { width: 82%; height: 340px; }
  .tech--flip .tech__copy { padding-bottom: 0; }
  .bigtype { padding: 52px 0; }
  .bigtype__row { font-size: 82px; gap: 58px; }
  .reviews { padding: 125px 20px 130px; }
  .reviews__head { margin-bottom: 44px; text-align: left; }
  .reviews__head .display { margin-left: 0; }
  .reviews__shot { width: 88%; height: 520px; margin-bottom: 120px; }
  .reviews__over { right: -14%; bottom: -102px; width: 84%; }
  .quote { padding-left: 47px; }
  .realnum { margin-top: 90px; }
  .realnum__grid { grid-template-columns: 1fr; gap: 34px; }
  .realnum__grid > div:nth-child(n) { transform: none; }
  .prices { padding: 125px 20px 130px; }
  .pricelist { margin-top: 44px; }
  .priceitem { grid-template-columns: 1fr; padding: 31px 0 36px; }
  .priceitem p,
  .priceitem__val { grid-column: auto; grid-row: auto; }
  .priceitem__val { margin-top: 8px; text-align: left; }
  .priceitem h3 { font-size: 56px; }
  .clinic { padding: 125px 20px 130px; gap: 54px; }
  .clinic__shot { margin-left: 7%; height: 520px; }
  .contacts { flex-direction: column; }
  .cta { padding: 150px 20px 165px; }
  .cta::before { width: 112vw; height: 54vw; }
  .cta::after { width: 94vw; height: 44vw; }
  .cta__float--1 { display: block; width: 104px; height: 140px; left: -26px; top: 12%; }
  .cta__float--3 { display: block; width: 112px; height: 150px; right: -32px; top: auto; bottom: 11%; }
  .cta__inner .soft { font-size: 1em; }
  .foot { padding: 68px 20px 28px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__cols div:last-child { grid-column: 1 / -1; }
  .foot__wordmark { font-size: clamp(92px, 31vw, 142px); line-height: .76; padding: 48px 0 31px; }
}

/* Final QA guards and secondary state composition */
.mosaic { padding-bottom: 108px; }
.still:hover .still__media img,
.reviews__shot:hover .reviews__media img { transform: none; }
.quote footer { justify-content: flex-start; align-items: center; flex-wrap: wrap; }
.quote footer::before {
  content: "";
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: url("images/doctor-portrait.jpg") 50% 25% / 160% auto no-repeat;
}
.quote:nth-child(2) footer::before { background-image: url("images/portrait-glow.jpg"); }
.panel[data-panel="special"] .card:nth-child(1) { grid-column: 1 / span 5; grid-row: 1 / span 2; }
.panel[data-panel="special"] .card:nth-child(2) { grid-column: 7 / span 3; grid-row: 1; transform: translateY(78px); }
.panel[data-panel="special"] .card:nth-child(3) { grid-column: 6 / span 7; grid-row: 2; transform: translateY(-35px); }
.panel[data-panel="special"] .card:nth-child(3) img { height: clamp(310px, 31vw, 440px); }
a:focus-visible,
button:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }

@media (max-width: 900px) {
  .mosaic { padding-bottom: 44px; }
  .panel[data-panel="special"] .card:nth-child(n) { grid-column: auto; grid-row: auto; transform: none; }
  .panel[data-panel="special"] .card:nth-child(2) { margin-top: 100px; }
  .panel[data-panel="special"] .card:nth-child(3) { margin-top: -70px; }
}

@media (max-width: 720px) {
  .mosaic { padding-bottom: 24px; }
  .panel[data-panel="special"] .card:nth-child(n) { margin-top: 0; }
}

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

/* ========================================================================== */
/* PASS 03 — LEGIBILITY / TYPOGRAPHIC BALANCE / PREMIUM MOTION SUPPORT */
/* ========================================================================== */

body { letter-spacing: 0; }

.display,
.hero__title,
.num,
.bigtype__row,
.foot__wordmark,
.head__mark,
.tile h3,
.card h3,
.priceitem h3,
.priceitem__val b,
.contacts dd { letter-spacing: -0.024em; }

.hero__title { letter-spacing: -0.03em; }
.manifest__title { letter-spacing: -0.028em; }

.manifest__title > span { display: block; }
.manifest__title .soft {
  display: block;
  margin: 0.04em 0 0.16em;
  font-size: 0.72em;
  line-height: 0.86;
  letter-spacing: -0.018em;
  transform: rotate(-2deg);
}
.manifest__lead { margin-top: 30px; font-size: 16.5px; line-height: 1.58; }

.reviews__over p {
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.16;
  letter-spacing: -0.014em;
}
.quote p { font-size: 16.5px; line-height: 1.65; }

.priceitem:nth-child(2) { padding-left: 0; }
.priceitem h3,
.priceitem__val b { letter-spacing: -0.018em; }

.foot__wordmark {
  font-size: clamp(104px, 17.5vw, 268px);
  line-height: 0.78;
  letter-spacing: -0.038em;
}

.label { font-size: 13px; line-height: 1.55; }
.hero__lead { font-size: 16px; line-height: 1.58; }
.manifest__note,
.doctors__copy p:last-of-type,
.solutions__intro p,
.directions__head p,
.tech__copy p { font-size: 16px; line-height: 1.62; }
.tile p,
.card p,
.priceitem p,
.prices__head p,
.prices__note p,
.clinic__copy p.muted { font-size: 15.5px; line-height: 1.62; }
.cta__inner p,
.foot__brand p { font-size: 15px; line-height: 1.6; }
.foot__cols a { font-size: 14px; }

/* GSAP line masks */
.motion-line-mask {
  display: block;
  overflow: hidden;
  padding: 0 0 0.1em;
  margin: 0 0 -0.1em;
}
.motion-line {
  display: block;
  will-change: transform;
}
.motion-line-mask.motion-unclipped { overflow: visible; }
.manifest__title .soft.motion-line-mask { overflow: visible; }

/* Ivy Presto has deep descenders; keep them inside the reveal mask. */
.exclusive__head .motion-line-mask {
  padding-bottom: 0.32em;
  margin-bottom: -0.18em;
}

/* Soft daylight moving across selected photography, once per scene. */
.skin-light {
  position: absolute;
  z-index: 1;
  top: -18%;
  bottom: -18%;
  left: -35%;
  width: 30%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,248,0.04) 25%, rgba(255,255,248,0.34) 50%, rgba(255,255,248,0.05) 74%, transparent 100%);
  filter: blur(15px);
  mix-blend-mode: screen;
}
.doctors__shot,
.tech__shot { position: relative; overflow: hidden; }

/* Service focus behaves like an editorial image selection, not a card hover. */
@media (hover: hover) and (pointer: fine) {
  .panel.is-active .card {
    opacity: 1;
    transition: opacity 620ms cubic-bezier(0.2, 0.72, 0.25, 1);
  }
  .panel.is-active .card img {
    clip-path: inset(0 0 6% 0);
    transition: clip-path 720ms cubic-bezier(0.2, 0.72, 0.25, 1), transform 850ms cubic-bezier(0.2, 0.72, 0.25, 1);
  }
  .panel.is-active:has(.card:hover) .card { opacity: 0.52; }
  .panel.is-active:has(.card:hover) .card:hover { opacity: 1; }
  .panel.is-active .card:hover img { clip-path: inset(0); }
}

/* Typography strip is controlled by scroll only. */
.bigtype__row { animation: none !important; will-change: transform; }
.bigtype__row i { transform-origin: 50% 50%; }

/* CTA arcs are real SVG strokes so the drawing motion stays precise. */
.cta::before,
.cta::after { display: none; }
.cta__arcs {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: min(1050px, 78vw);
  height: min(470px, 38vw);
  transform: translate(-50%, -50%) rotate(-7deg);
  overflow: visible;
  pointer-events: none;
}
.cta__arcs ellipse {
  fill: none;
  stroke: rgba(17,18,13,.2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.cta__arcs ellipse:last-child { transform: rotate(14deg); transform-origin: center; }

/* Footer remains under the final light scene and is revealed by its lift. */
main { position: relative; z-index: 2; background: var(--paper); }
.foot { position: relative; z-index: 1; }
.foot__wordmark { overflow: hidden; will-change: transform; }

/* Discreet magazine pagination. */
.page-progress {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 18px;
  display: grid;
  justify-items: center;
  gap: 9px;
  transform: translateY(-50%);
  color: var(--ink);
  font: 600 10px/1 var(--sans);
  letter-spacing: 0.12em;
  mix-blend-mode: difference;
  filter: invert(1);
  pointer-events: none;
}
.page-progress__line { width: 1px; height: 54px; background: currentColor; opacity: 0.42; }
.page-progress__current { min-width: 2ch; text-align: center; }
.page-progress__total { opacity: 0.52; }

@media (max-width: 900px) {
  .page-progress { display: none; }
  .doctors { min-height: 0; }
}

@media (max-width: 720px) {
  .manifest__title .soft {
    margin-top: 0.08em;
    margin-bottom: 0.22em;
    font-size: 0.66em;
    line-height: 0.92;
    transform: rotate(-1.5deg);
  }
  .reviews__over p { font-size: clamp(21px, 6.2vw, 25px); line-height: 1.18; }
  .foot__wordmark { font-size: clamp(82px, 24vw, 112px); line-height: 0.8; }
  .label { font-size: 12.5px; }
  .hero__lead,
  .manifest__lead,
  .manifest__note,
  .doctors__copy p:last-of-type,
  .solutions__intro p,
  .directions__head p,
  .tech__copy p,
  .tile p,
  .card p,
  .priceitem p,
  .prices__note p,
  .clinic__copy p.muted { font-size: 15.5px; }
  .cta__arcs { width: 112vw; height: 54vw; }
}

@media (prefers-reduced-motion: reduce) {
  .skin-light,
  .page-progress,
  .cta__arcs { display: none !important; }
  .motion-line { transform: none !important; }
}

/* ========================================================================== */
/* PASS 04 — NO CROPPED TYPE / RELIABLE LOCAL MOTION */
/* ========================================================================== */

/* Give animated glyphs enough optical room while keeping the vertical mask. */
.motion-line-mask {
  padding: 0.08em 0.065em 0.18em;
  margin: -0.08em -0.065em -0.18em;
}

/* The typography chapter must remain fully readable at every desktop width. */
.bigtype {
  padding-inline: clamp(54px, 8vw, 154px);
}
.bigtype__row {
  width: 100%;
  justify-content: space-between;
  gap: clamp(16px, 2.2vw, 42px);
  font-size: clamp(60px, 5.4vw, 104px);
  letter-spacing: -0.026em;
}
.bigtype__row > :nth-child(n + 7) { display: none; }
.bigtype__row > span { flex: 0 0 auto; white-space: nowrap; }
.bigtype__row > i { flex: 0 0 auto; }

/* Preserve the broken-grid rhythm without allowing the next image to cover copy. */
.panel.is-active {
  row-gap: clamp(92px, 7vw, 132px);
  padding-bottom: 34px;
}
.panel .card { min-width: 0; position: relative; }
.panel .card:nth-child(2) { transform: translateY(48px); }
.panel .card:nth-child(4) { transform: translateY(-6px); }
.panel .card p,
.panel .card .more { position: relative; z-index: 2; }

@media (hover: hover) and (pointer: fine) {
  .panel.is-active .card img { clip-path: inset(0); }
}

@media (max-width: 900px) {
  .panel.is-active { row-gap: 68px; padding-bottom: 0; }
  .panel .card:nth-child(n),
  .panel[data-panel="special"] .card:nth-child(n) {
    transform: none;
    margin-top: 0;
  }
  .bigtype { padding-inline: clamp(24px, 5vw, 44px); }
  .bigtype__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 24px;
    width: 100%;
    font-size: clamp(52px, 9.5vw, 72px);
    line-height: 0.92;
    transform: none !important;
  }
  .bigtype__row > span { white-space: normal; }
}

@media (max-width: 720px) {
  .panel.is-active { gap: 62px; }
  .card { overflow: visible; }
  .card p { margin-bottom: 10px; }
  .bigtype { padding-block: 58px; }
  .bigtype__row { font-size: clamp(46px, 13vw, 62px); }
}

/* ========================================================================== */
/* PASS 05 — RESPONSIVE NAVIGATION / OVERFLOW SAFETY                          */
/* ========================================================================== */

html { overflow-x: clip; }
body { min-width: 320px; }
main,
section,
footer,
.head,
.head > *,
section > *,
.doctors__grid > *,
.reviews__grid > *,
.solutions__head > *,
.directions__head > *,
.tech > *,
.clinic > *,
.prices__head > *,
.prices__note > * { min-width: 0; }
img { max-width: 100%; }
.foot__legal,
.foot__cols a,
.contacts dd { overflow-wrap: anywhere; }

.head__toggle,
.head__menu-meta { display: none; }
.head__toggle {
  position: relative;
  z-index: 63;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.head__toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 420ms var(--ease), top 420ms var(--ease);
}
.head__toggle span:first-child { top: 17px; }
.head__toggle span:last-child { top: 25px; }
.menu-open .head__toggle span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .head__toggle span:last-child { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1180px) {
  body.menu-open { overflow: hidden; }
  .head__mark,
  .head__side { position: relative; z-index: 63; }
  .head__side { order: 2; }
  .head__toggle { display: block; order: 3; flex: 0 0 44px; }
  .head__nav {
    position: fixed;
    z-index: 62;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 0;
    margin: 0;
    padding: clamp(104px, 12vh, 138px) var(--pad) 38px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(251, 250, 246, 0.985);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 380ms ease, transform 520ms var(--ease), visibility 0s linear 520ms;
  }
  .menu-open .head__nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .head__nav > a {
    display: block;
    padding: 10px 0 12px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .head__menu-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px 32px;
    margin-top: 34px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
  }
  .head__menu-meta > div { display: flex; gap: 18px; }
  .head__menu-meta .btn { grid-column: 2; grid-row: 1 / span 2; color: var(--paper); }
}

@media (max-width: 900px) {
  .doctors__shot { width: calc(100% - 8%); margin-left: 8%; }
  .metrics { width: 100%; margin-top: 64px; }
  .tech--flip .tech__shot { max-width: 100%; }
  .priceitem { overflow: visible; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .head { padding-inline: 16px; }
  .head__side > .btn { display: none; }
  .head__nav { padding-inline: 20px; }
  .head__nav > a { font-size: clamp(38px, 12vw, 52px); padding-block: 8px 10px; }
  .head__menu-meta { grid-template-columns: 1fr; gap: 15px; margin-top: 26px; }
  .head__menu-meta .btn { grid-column: auto; grid-row: auto; justify-self: start; }

  .hero__frame { min-height: min(620px, calc(100svh - 78px)); }
  .hero__overlay { justify-content: flex-end; }
  .hero__title { overflow-wrap: normal; }
  .hero__acts { width: 100%; }
  .hero__acts .btn { justify-content: center; flex: 1 1 100%; white-space: normal; text-align: center; }

  .still { width: calc(100% - 18px); height: clamp(320px, 106vw, 410px); }
  .badge--a { left: -9px; }
  .badge--b { right: -9px; }

  .doctors__shot { width: 100%; height: clamp(380px, 132vw, 520px); margin-left: 0; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 36px 18px; }
  .metric .num,
  .metric:nth-child(2) .num,
  .metric:nth-child(4) .num { font-size: clamp(48px, 16vw, 62px); }

  .experience__shot { height: clamp(390px, 128vw, 520px); }
  .experience__shot figcaption { align-items: flex-start; flex-direction: column; }
  .experience__shot figcaption .label:last-child { display: none; }
  .play { width: 66px; height: 66px; }

  .mosaic { padding-inline: 0; }
  .tile { width: 100%; }
  .tile img { height: clamp(320px, 112vw, 410px); }
  .tabs { margin-right: -20px; padding-right: 20px; scrollbar-width: none; }
  .tabs::-webkit-scrollbar { display: none; }
  .panel.is-active { overflow: visible; }
  .panel .card:nth-child(n) img { height: clamp(320px, 116vw, 470px); }

  .tech__shot,
  .tech--flip .tech__shot { width: 100%; height: clamp(360px, 122vw, 500px); justify-self: stretch; }
  .tech__copy { padding-bottom: 0; }

  .reviews__shot { width: 100%; height: auto; margin-bottom: 76px; }
  .reviews__media { height: clamp(390px, 128vw, 520px); }
  .reviews__over {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 16px);
    max-width: none;
    margin: -54px 0 0 16px;
    padding: 22px 18px 20px;
  }
  .reviews__over p { overflow-wrap: normal; }
  .quote { padding-left: 44px; }

  .priceitem { gap: 13px; }
  .priceitem h3 { font-size: clamp(44px, 15vw, 58px); }
  .priceitem__val b { font-size: clamp(40px, 13vw, 54px); }

  .clinic__shot { width: 100%; height: clamp(380px, 128vw, 520px); margin-left: 0; }
  .contacts dd { font-size: clamp(24px, 8vw, 34px); }

  .cta { overflow: hidden; }
  .cta__float { display: none !important; }
  .cta__inner { max-width: 100%; }
  .cta__inner .display { font-size: clamp(58px, 17vw, 78px); }
  .cta__acts .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }

  .foot__cols { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .foot__wordmark { width: 100%; margin-left: 0; white-space: normal; overflow-wrap: normal; font-size: clamp(72px, 23vw, 102px); }
  .foot__bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  .head__mark { font-size: 25px; }
  .head__toggle { width: 42px; height: 42px; flex-basis: 42px; }
  .hero__title { font-size: clamp(46px, 14.5vw, 58px); }
  .manifest,
  .doctors,
  .experience,
  .solutions,
  .directions,
  .exclusive,
  .reviews,
  .prices,
  .clinic { padding-inline: 16px; }
  .tabs { margin-right: -16px; }
  .figures { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .figures .figure:last-child { grid-column: 1 / -1; }
  .metrics { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; }
  .foot__cols div:last-child { grid-column: auto; }
}

/* ========================================================================== */
/* PASS 06 — HERO ART DIRECTION                                                */
/* ========================================================================== */

.hero__bg { object-position: center center; }
.hero__scrim {
  background:
    linear-gradient(90deg, rgba(12, 13, 9, 0.66) 0%, rgba(12, 13, 9, 0.5) 47%, rgba(12, 13, 9, 0.12) 72%, rgba(12, 13, 9, 0.04) 100%),
    linear-gradient(180deg, rgba(12, 13, 9, 0.25) 0%, rgba(12, 13, 9, 0.04) 44%, rgba(12, 13, 9, 0.62) 100%);
}
.hero__title {
  align-self: flex-start;
  width: min(1180px, 72%);
  margin-inline: 0;
  text-align: left;
  font-size: clamp(76px, 7.4vw, 116px);
}

@media (max-width: 1180px) {
  .hero__title { width: min(850px, 72%); font-size: clamp(68px, 8vw, 94px); }
}

@media (max-width: 900px) {
  .hero__title { width: min(650px, 74%); font-size: clamp(62px, 9vw, 82px); }
}

@media (max-width: 720px) {
  .hero__bg { object-position: 82% center; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(12, 13, 9, 0.08) 0%, rgba(12, 13, 9, 0.18) 34%, rgba(12, 13, 9, 0.78) 68%, rgba(12, 13, 9, 0.86) 100%),
      linear-gradient(90deg, rgba(12, 13, 9, 0.32), rgba(12, 13, 9, 0.02));
  }
  .hero__overlay { padding-top: 42%; }
  .hero__title { width: 100%; font-size: clamp(46px, 14vw, 62px); line-height: 0.9; }
}

@media (max-width: 390px) {
  .hero__bg { object-position: 80% center; }
  .hero__overlay { padding-top: 46%; }
  .hero__title { font-size: clamp(43px, 13.7vw, 54px); }
}

/* ========================================================================== */
/* PASS 07 — QUIET HERO SELECTOR / CLINIC REVEAL                              */
/* ========================================================================== */

.hero__thumbs {
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 253, 250, 0.18);
  border-radius: 14px;
  background: rgba(15, 16, 12, 0.28);
  box-shadow: 0 10px 30px rgba(8, 9, 6, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.slidecard,
.slidecard:nth-child(2) {
  width: clamp(82px, 6.5vw, 98px);
  height: clamp(102px, 8vw, 120px);
  border: 1px solid transparent;
  border-radius: 9px;
  outline: 0;
  opacity: 0.58;
  filter: saturate(0.72);
  transform: none;
  box-shadow: none;
  transition:
    width 520ms var(--ease),
    opacity 420ms ease,
    filter 520ms var(--ease),
    transform 520ms var(--ease),
    border-color 420ms ease;
}
.slidecard::after { height: 52%; background: linear-gradient(180deg, transparent, rgba(10, 11, 8, 0.68)); }
.slidecard img { transform: scale(1.025); transition: transform 700ms var(--ease); }
.slidecard span {
  left: 8px;
  right: 8px;
  bottom: 7px;
  display: grid;
  gap: 1px;
  font-size: 9px;
  line-height: 1.18;
  letter-spacing: 0.02em;
}
.slidecard span b {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  opacity: 0.72;
}
.slidecard.is-active {
  width: clamp(94px, 7.4vw, 112px);
  border-color: rgba(255, 253, 250, 0.48);
  outline: 0;
  opacity: 1;
  filter: none;
}
.slidecard:hover,
.slidecard:nth-child(2):hover {
  opacity: 1;
  filter: none;
  transform: translateY(-3px);
  box-shadow: none;
}
.slidecard:hover img,
.slidecard.is-active img { transform: scale(1); }
.slidecard--link,
.slidecard--link:hover {
  width: auto;
  height: 38px;
  margin-inline: 5px 3px;
  padding: 0 17px;
  border-color: rgba(255, 253, 250, 0.62);
  border-radius: 100px;
  opacity: 0.92;
  filter: none;
  transform: none;
  background: rgba(255, 253, 250, 0.94);
  font-size: 10px;
}

@media (max-width: 1180px) {
  .hero__thumbs { right: 18px; bottom: 18px; }
}

/* ========================================================================== */
/* PASS 08 — LEAD MODAL                                                       */
/* ========================================================================== */

body.modal-open { overflow: hidden; }
.lead-modal[hidden],
.lead-form[hidden],
.lead-modal__success[hidden] { display: none !important; }
.lead-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 0s linear 420ms;
}
.lead-modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(11, 12, 8, 0.72);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  cursor: default;
}
.lead-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(36px, 5vw, 78px);
  width: min(1040px, 100%);
  max-height: min(820px, calc(100dvh - 32px));
  padding: clamp(42px, 5vw, 76px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    radial-gradient(circle at 0 100%, rgba(219, 225, 211, 0.8), transparent 42%),
    var(--paper);
  box-shadow: 0 36px 110px rgba(7, 8, 5, 0.28);
  opacity: 0;
  clip-path: inset(8% 4% 8% 4% round 22px);
  transform: translateY(26px) scale(0.985);
  transition: opacity 380ms ease, clip-path 620ms var(--ease), transform 620ms var(--ease);
}
.lead-modal.is-open .lead-modal__panel {
  opacity: 1;
  clip-path: inset(0 round 22px);
  transform: none;
}
.lead-modal__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.82);
  cursor: pointer;
  transition: background 320ms ease, transform 420ms var(--ease);
}
.lead-modal__close:hover { background: var(--sage); transform: rotate(4deg); }
.lead-modal__close span {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 17px;
  height: 1px;
  background: var(--ink);
}
.lead-modal__close span:first-child { transform: rotate(45deg); }
.lead-modal__close span:last-child { transform: rotate(-45deg); }
.lead-modal__intro { align-self: center; }
.lead-modal__intro .eyebrow { margin-bottom: 25px; }
.lead-modal__intro h2 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.lead-modal__intro p { max-width: 40ch; margin: 28px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.lead-modal__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.lead-modal__meta span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 100px; font-size: 10px; letter-spacing: 0.05em; }
.lead-form { display: grid; align-content: center; gap: 25px; min-width: 0; }
.field { display: grid; gap: 8px; }
.field > span { color: var(--ink-dim); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.field input {
  width: 100%;
  min-width: 0;
  padding: 10px 0 13px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 400 clamp(25px, 2.4vw, 34px)/1.1 var(--serif);
  letter-spacing: -0.02em;
  transition: border-color 320ms ease;
}
.field input::placeholder { color: rgba(20, 20, 14, 0.34); }
.field input:focus { border-color: var(--ink); }
.field input:user-invalid { border-color: #9b3e32; }
.field small { color: var(--ink-dim); font-size: 10px; line-height: 1.4; }
.lead-form__consent { position: relative; display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 11px; align-items: start; cursor: pointer; }
.lead-form__consent input { position: absolute; opacity: 0; pointer-events: none; }
.lead-form__check { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid var(--line-strong); border-radius: 50%; transition: background 320ms ease, border-color 320ms ease; }
.lead-form__check::after { content: ""; width: 6px; height: 10px; margin-top: -2px; border: solid var(--paper); border-width: 0 1px 1px 0; opacity: 0; transform: rotate(45deg) scale(0.6); transition: opacity 240ms ease, transform 320ms var(--ease); }
.lead-form__consent input:checked + .lead-form__check { border-color: var(--ink); background: var(--ink); }
.lead-form__consent input:checked + .lead-form__check::after { opacity: 1; transform: rotate(45deg) scale(1); }
.lead-form__consent input:focus-visible + .lead-form__check { outline: 1px solid var(--ink); outline-offset: 4px; }
.lead-form__consent > span:last-child { color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.lead-form__status { min-height: 18px; margin: -10px 0 -8px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.lead-form__status.is-error { color: #8b3026; }
.lead-form__submit { justify-content: center; width: 100%; min-height: 54px; }
.lead-form__submit.is-loading { opacity: 0.62; cursor: wait; }
.lead-form__trap { position: fixed !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.lead-modal__success { grid-column: 1 / -1; align-self: center; max-width: 560px; margin: auto; text-align: center; }
.lead-modal__success-mark { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 24px; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 20px; }
.lead-modal__success h3 { margin: 0; font: 300 clamp(50px, 6vw, 78px)/0.95 var(--serif); letter-spacing: -0.035em; }
.lead-modal__success p { max-width: 40ch; margin: 24px auto; color: var(--ink-soft); font-size: 14px; }

@media (max-width: 760px) {
  .lead-modal { align-items: end; padding: 0; }
  .lead-modal__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    max-height: calc(100dvh - 10px);
    padding: 54px 20px max(24px, env(safe-area-inset-bottom));
    border-width: 1px 0 0;
    border-radius: 22px 22px 0 0;
    clip-path: inset(12% 0 0 round 22px 22px 0 0);
    transform: translateY(42px);
  }
  .lead-modal.is-open .lead-modal__panel { clip-path: inset(0 round 22px 22px 0 0); }
  .lead-modal__close { top: 11px; right: 14px; }
  .lead-modal__intro h2 { max-width: 11ch; font-size: clamp(43px, 12.5vw, 58px); }
  .lead-modal__intro p { margin-top: 18px; }
  .lead-modal__meta { margin-top: 18px; }
  .lead-form { gap: 20px; }
  .field input { font-size: clamp(25px, 8vw, 32px); }
}

@media (max-width: 390px), (max-height: 700px) {
  .lead-modal__panel { gap: 21px; padding-top: 48px; }
  .lead-modal__intro .eyebrow { margin-bottom: 13px; }
  .lead-modal__intro h2 { font-size: clamp(38px, 11.5vw, 48px); }
  .lead-modal__intro p { margin-top: 13px; font-size: 12px; }
  .lead-modal__meta { display: none; }
  .lead-form { gap: 16px; }
  .field input { padding-block: 7px 10px; }
}

/* ========================================================================== */
/* PASS 09 — FINAL CTA TYPOGRAPHY                                              */
/* ========================================================================== */

.cta { padding: clamp(148px, 12vw, 196px) var(--pad) clamp(156px, 13vw, 214px); }
.cta__inner { max-width: min(940px, 88vw); }
.cta__inner .display {
  display: grid;
  justify-items: center;
  width: 100%;
  font-size: clamp(76px, 8.4vw, 128px);
  line-height: 0.78;
}
.cta__inner .display > .motion-line-mask { width: 100%; }
.cta__inner .cta__line { display: block; line-height: 0.82; }
.cta__inner .soft {
  display: block;
  margin: 0.1em 0 0.16em;
  font-size: 0.76em;
  line-height: 0.86;
  transform: rotate(-2deg);
}
.cta__inner p { margin: clamp(44px, 4vw, 62px) auto 28px; }
.cta__acts { gap: 10px; }
.cta__arcs { width: min(980px, 82vw); height: min(430px, 38vw); opacity: 0.7; }

@media (max-width: 900px) {
  .cta__inner { max-width: min(760px, 92vw); }
  .cta__inner .display { font-size: clamp(68px, 12vw, 98px); }
}

@media (max-width: 720px) {
  .cta { padding: 118px 20px 128px; }
  .cta__inner { max-width: 100%; }
  .cta__inner .display { font-size: clamp(56px, 16vw, 76px); line-height: 0.82; }
  .cta__inner .soft { margin-block: 0.14em 0.2em; font-size: 0.7em; line-height: 0.9; }
  .cta__inner p { margin: 34px auto 24px; }
  .cta__arcs { width: 128vw; height: 66vw; opacity: 0.48; }
}

@media (max-width: 390px) {
  .cta { padding-inline: 16px; }
  .cta__inner .display { font-size: clamp(50px, 15.2vw, 62px); }
}
