@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #020203;
  --ink-soft: #333330;
  --green: #4587a7;
  --green-2: #336781;
  --mint: #e8eff2;
  --cream: #e8eff2;
  --paper: #ffffff;
  --line: #dedede;
  --accent: #4587a7;
  --accent-dark: #336781;
  --white: #ffffff;
  --gray-100: #f6f6f6;
  --gray-150: #ececec;
  --shadow: 10px 10px 35px rgba(0, 0, 0, 0.08);
  --shell: min(1150px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: normal;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(52px, 5.7vw, 82px);
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 3.5vw, 50px);
  font-weight: 500;
}

h3 {
  font-size: 22px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-160%);
}

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

.prototype-note {
  color: rgba(255, 255, 255, 0.86);
  background: var(--green);
  font-size: 12px;
}

.prototype-note__inner {
  display: flex;
  justify-content: space-between;
  min-height: 31px;
  align-items: center;
}

.prototype-note__inner span:first-child {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  min-height: 94px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: fit-content;
}

.brand img {
  width: 165px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.text-link {
  position: relative;
}

.desktop-nav a,
.header-phone,
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.desktop-nav a {
  padding-inline: 4px;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: flex;
  gap: 18px;
  align-items: center;
}

.header-phone {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 55px;
  padding: 15px 25px;
  border: 0;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--green);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease-out, border-color 160ms ease-out, transform 160ms ease-out;
}

.button:hover {
  background: var(--green-2);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
.menu-button:focus-visible,
.dialog-close:focus-visible {
  outline: 3px solid rgba(69, 135, 167, 0.42);
  outline-offset: 3px;
}

.button--small {
  min-height: 55px;
  padding: 15px 25px;
  font-size: 18px;
}

.button--large {
  min-height: 65px;
  padding-inline: 30px;
  border-radius: 50px;
}

.button--light {
  border-color: var(--white);
  color: var(--green);
  background: var(--white);
}

.button--light:hover {
  border-color: var(--mint);
  background: var(--mint);
}

.button--accent {
  color: var(--white);
  background: var(--accent);
}

.button--accent:hover {
  background: var(--accent-dark);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 680px;
  padding-top: 46px;
  padding-bottom: 70px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  padding: 58px 5vw 36px 0;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.hero-text {
  max-width: 590px;
  margin-bottom: 34px;
  color: #4a4a4a;
  font-size: 20px;
  line-height: 1.55;
  text-wrap: pretty;
}

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

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 68px;
}

.hero-proof div {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 35px;
  background: var(--gray-100);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(69, 135, 167, 0.12));
  content: "";
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  max-width: 390px;
  min-height: 82px;
  padding: 18px 22px;
  border: 0;
  border-radius: 25px;
  align-items: flex-start;
  gap: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 2px;
}

.hero-card span {
  color: var(--ink-soft);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(69, 135, 167, 0.16);
}

.quick-route,
.services,
.results {
  padding-top: 100px;
  padding-bottom: 100px;
}

.results {
  overflow: hidden;
}

.section-intro {
  margin-bottom: 54px;
}

.section-intro--row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.section-intro--row > p {
  max-width: 440px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.section-intro .eyebrow {
  margin-bottom: 13px;
}

.section-intro h2 {
  position: relative;
  padding-left: 18px;
}

.section-intro h2::before {
  position: absolute;
  top: 0.13em;
  bottom: 0.13em;
  left: 2px;
  width: 5px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  transform: skew(-14deg);
}

.route-list {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 1fr);
  gap: 16px;
}

.route-card {
  position: relative;
  display: flex;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  border: 0;
  border-radius: 25px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--gray-100);
  cursor: pointer;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, transform 180ms ease-out;
}

.route-card:first-child {
  grid-row: span 2;
  min-height: 456px;
  color: var(--white);
  background: var(--green);
}

.route-card:hover {
  background: var(--gray-150);
  transform: translateY(-3px);
}

.route-card:first-child:hover {
  background: var(--green-2);
}

.route-card__number {
  color: #999999;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.route-card:first-child .route-card__number {
  color: rgba(255, 255, 255, 0.72);
}

.route-card h3 {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
}

.route-card p {
  max-width: 400px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.route-card:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.route-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
}

.skeleton {
  min-height: 220px;
  border-radius: 25px;
  background: var(--gray-100);
  animation: pulse 1.2s ease-in-out infinite alternate;
}

.skeleton--wide {
  grid-row: span 2;
  min-height: 456px;
}

@keyframes pulse {
  to { opacity: 0.55; }
}

.clinic-story {
  padding: 100px 0;
  color: var(--ink);
  background: var(--mint);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
  align-items: center;
}

.story-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.check-list {
  display: grid;
  margin: 0 0 38px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid var(--green);
  border-radius: 50%;
  content: "✓";
  color: var(--green);
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 230px);
  gap: 12px;
}

.story-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
}

.story-gallery figure:first-child {
  grid-row: 1 / 3;
}

.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-out;
}

.story-gallery figure:hover img {
  transform: scale(1.025);
}

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

.service-card {
  position: relative;
  min-height: 225px;
  padding: 26px;
  overflow: hidden;
  border: 0;
  border-radius: 25px;
  grid-column: auto;
  background: var(--gray-100);
  cursor: pointer;
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  min-height: 225px;
  color: var(--ink);
}

.service-card:nth-child(1) {
  grid-column: auto;
}

.service-card:nth-child(2) {
  grid-column: auto;
}

.service-card:nth-child(3) {
  grid-column: auto;
}

.service-card__image,
.service-card__shade {
  position: absolute;
  inset: 0;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease-out;
}

.service-card__shade {
  background: linear-gradient(90deg, var(--gray-100) 7%, rgba(246, 246, 246, 0.96) 32%, rgba(246, 246, 246, 0.58) 63%, rgba(246, 246, 246, 0.04) 100%);
}

.service-card:hover .service-card__image {
  transform: scale(1.035);
}

.service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.service-card h3 {
  max-width: 320px;
  margin: 0 0 11px;
  font-size: 24px;
  font-weight: 600;
}

.service-card p {
  max-width: 62%;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-card:nth-child(-n+3) p {
  color: var(--ink-soft);
}

.service-card__price {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: auto;
  border: 1px solid var(--green);
  color: var(--green);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.service-card:nth-child(n+4) .service-card__price {
  margin-top: auto;
  border: 1px solid var(--line);
}

.price-note {
  display: flex;
  margin-top: 22px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: flex-start;
  gap: 12px;
  background: var(--gray-100);
  color: var(--ink-soft);
  font-size: 13px;
}

.price-note > span {
  display: inline-flex;
  width: 21px;
  height: 21px;
  border: 1px solid var(--green);
  border-radius: 50%;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}

.price-note p {
  margin: 0;
}

.doctors-section {
  padding: 100px 0;
  overflow: hidden;
  background: var(--cream);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.doctor-card {
  min-width: 0;
}

.doctor-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8;
  border-radius: 25px;
  background: #dbe6eb;
}

.doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease-out;
}

.doctor-card:hover img {
  transform: scale(1.025);
}

.doctor-card__book {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(69, 135, 167, 0.96);
  font-weight: 500;
  cursor: pointer;
  opacity: 1;
  transform: none;
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.doctor-card:hover .doctor-card__book,
.doctor-card:focus-within .doctor-card__book {
  opacity: 1;
  transform: translateY(0);
}

.doctor-card h3 {
  margin: 20px 0 7px;
  font-size: 20px;
  font-weight: 600;
}

.doctor-card p {
  min-height: 48px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.doctor-card__experience {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

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

.case-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.75;
  border-radius: 25px;
  background: var(--gray-100);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-out;
}

.case-card:hover img {
  transform: scale(1.02);
}

.case-card__caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.case-card__caption strong,
.case-card__caption span {
  display: block;
}

.case-card__caption span {
  color: var(--ink-soft);
  font-size: 12px;
}

.booking-band {
  padding: 0 0 80px;
}

.booking-band__inner {
  display: flex;
  min-height: 300px;
  padding: 58px 64px;
  border-radius: 25px;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  color: var(--ink);
  background: var(--mint);
}

.booking-band h2 {
  max-width: 680px;
}

.booking-band p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 70px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-grid a {
  display: flex;
  min-height: 44px;
  margin-bottom: 0;
  align-items: center;
}

.footer-grid a:hover {
  color: var(--green-2);
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 23px;
}

.footer-brand p {
  max-width: 290px;
}

.footer-bottom {
  display: flex;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 40px;
  color: #777777;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.booking-dialog {
  width: min(920px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 25px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-dialog::backdrop {
  background: rgba(2, 2, 3, 0.62);
  backdrop-filter: blur(4px);
}

.dialog-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 610px;
}

.dialog-side {
  display: flex;
  padding: 52px 42px;
  flex-direction: column;
  color: var(--ink);
  background: var(--mint);
}

.dialog-side h2 {
  margin-bottom: 24px;
  font-size: 38px;
}

.dialog-side > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.dialog-contact {
  margin-top: auto;
}

.dialog-contact span,
.dialog-contact a {
  display: block;
}

.dialog-contact span {
  color: var(--green-2);
  font-size: 12px;
}

.dialog-contact a {
  margin-top: 4px;
  font-size: 19px;
  font-weight: 600;
}

.booking-form {
  position: relative;
  display: grid;
  padding: 48px;
  align-content: center;
  gap: 18px;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gray-100);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.booking-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
}

.booking-form input::placeholder {
  color: #999999;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.content-error {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid #e3b7b7;
  border-radius: 14px;
  color: #8a2f2f;
  background: #fff7f7;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.consent-row span {
  margin: 0 !important;
  color: var(--ink-soft);
  font-weight: 400 !important;
}

.form-message {
  min-height: 20px;
  color: #9a3f29;
  font-size: 13px;
}

.form-message.is-success {
  color: var(--green-2);
}

.demo-hint {
  margin: -8px 0 0;
  color: #777777;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-contact {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    cursor: pointer;
  }

  .menu-button span {
    width: 19px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu {
    display: grid;
    width: var(--shell);
    margin: 0 auto;
    padding: 8px 0 26px;
    gap: 0;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.mobile-menu__phone) {
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .mobile-menu__phone {
    margin: 20px 0 14px;
    font-weight: 600;
  }

  .hero {
    min-height: 610px;
  }

  .hero-copy {
    padding-right: 36px;
  }

  .hero-proof {
    margin-top: 44px;
  }

  .route-list {
    grid-template-columns: 1fr 1fr;
  }

  .route-card:first-child {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 280px;
  }

  .story-grid {
    gap: 46px;
  }

  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 18px;
  }

  .doctor-card__book {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(calc(100% - 32px), 620px);
  }

  html {
    scroll-padding-top: 82px;
  }

  .prototype-note__inner span:last-child {
    display: none;
  }

  .prototype-note__inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 75px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    display: flex;
    padding-top: 26px;
    padding-bottom: 72px;
    flex-direction: column;
  }

  .hero-copy {
    padding: 22px 0 34px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 35px;
    line-height: 1.15;
  }

  h2 {
    font-size: 30px;
  }

  .button--large {
    min-height: 55px;
  }

  .hero-text {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 480px;
    border-radius: 24px;
  }

  .hero-visual > img {
    object-position: 63% center;
  }

  .hero-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .quick-route,
  .services,
  .results,
  .doctors-section,
  .clinic-story {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-intro--row {
    display: block;
  }

  .section-intro--row > p {
    margin-top: 24px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .route-list {
    display: flex;
    flex-direction: column;
  }

  .route-card,
  .route-card:first-child {
    min-height: 190px;
  }

  .story-grid {
    display: flex;
    flex-direction: column;
  }

  .story-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .story-gallery {
    width: 100%;
    grid-template-rows: repeat(2, 180px);
  }

  .service-grid {
    display: flex;
    flex-direction: column;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    min-height: 225px;
  }

  .doctor-grid {
    display: grid;
    grid-auto-columns: 82%;
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-right: calc((100vw - var(--shell)) / -2);
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .doctor-card {
    scroll-snap-align: start;
  }

  .case-grid {
    display: grid;
    grid-auto-columns: 88%;
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-right: calc((100vw - var(--shell)) / -2);
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .case-card {
    aspect-ratio: 1.3;
    scroll-snap-align: start;
  }

  .booking-band {
    padding-bottom: 52px;
  }

  .booking-band__inner {
    min-height: 0;
    padding: 42px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .dialog-layout {
    display: block;
  }

  .dialog-side {
    padding: 38px 28px 30px;
  }

  .dialog-side h2 {
    max-width: 440px;
    font-size: 34px;
  }

  .dialog-contact {
    display: none;
  }

  .booking-form {
    padding: 34px 24px 28px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-82px);
  }
}

@media (max-width: 520px) {
  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:last-child {
    display: none;
  }

  .hero-visual {
    min-height: 420px;
  }

  .story-gallery {
    display: block;
  }

  .story-gallery figure {
    height: 310px;
  }

  .story-gallery figure:not(:first-child) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
