:root {
  --ink: #35161d;
  --muted: #73575c;
  --paper: #fffaf7;
  --soft: #fbe9df;
  --line: #e6c6b8;
  --dark: #6d1830;
  --accent: #f1aa72;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
}
body.has-lightbox {
  overflow: hidden;
}
[hidden] {
  display: none !important;
}
button,
a,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 {
  font-size: 64px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 30px;
}
p {
  line-height: 1.75;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #c22d55;
  outline-offset: 5px;
}
.section {
  padding: 96px 0;
  scroll-margin-top: 30px;
}
.section-inner,
.appointment-inner {
  width: min(1280px, calc(100% - 96px));
  margin: auto;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}
.section-heading p,
.copy-block > p {
  color: var(--muted);
  margin-top: 22px;
}
.eyebrow {
  font:
    700 12px/1.5 Manrope,
    Arial,
    sans-serif;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 18px;
}
.site-header {
  min-height: 88px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-logo {
  max-height: 48px;
  object-fit: contain;
}
.brand-mark:not(.has-logo) .brand-logo,
.has-logo .brand-placeholder {
  display: none;
}
.brand-placeholder {
  font:
    32px Georgia,
    serif;
}
.brand-name,
.brand-note {
  display: block;
  font-size: 12px;
}
.brand-name {
  font-weight: 800;
}
.brand-note {
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
}
.nav a:hover {
  color: #a31e46;
}
.button,
.header-action,
.floating-appointment,
.appointment-link,
.procedure-more-button,
.procedure-book-link,
.training-detail-link,
.training-card-content a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 16px 24px;
  border: 1px solid var(--dark);
  border-radius: 6px;
  background: var(--dark);
  color: #fff;
  -webkit-text-fill-color: currentColor;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 8px 20px #6d183024;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.button::before,
.header-action::before,
.floating-appointment::before,
.appointment-link::before,
.procedure-more-button::before,
.procedure-book-link::before,
.training-detail-link::before,
.training-card-content a::before {
  content: "";
  position: absolute;
  inset: -60% -40%;
  z-index: 0;
  background: linear-gradient(115deg, transparent 38%, #ffffff65 49%, transparent 61%);
  transform: translateX(-65%) rotate(8deg);
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
  pointer-events: none;
}
.button:hover::before,
.header-action:hover::before,
.floating-appointment:hover::before,
.appointment-link:hover::before,
.procedure-more-button:hover::before,
.procedure-book-link:hover::before,
.training-detail-link:hover::before,
.training-card-content a:hover::before {
  transform: translateX(65%) rotate(8deg);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.button:hover,
.header-action:hover,
.appointment-link:hover,
.procedure-more-button:hover,
.floating-appointment:hover,
.procedure-book-link:hover,
.training-detail-link:hover {
  background: #941f42;
  color: white;
  box-shadow:
    inset 0 1px 0 #ffffff70,
    0 12px 30px #6d18303d;
  border-color: #c85a73;
  transform: translateY(-2px);
}
.button-light:hover {
  background: #fff0e8;
  color: var(--ink);
}
.hero {
  position: relative;
  isolation: isolate;
  background: #6d1830;
  overflow: hidden;
  color: #fff;
  min-height: 720px;
}
.hero-bg {
  position: absolute;
  inset: 0 0 0 48%;
  background-size: cover;
  background-position: center 32%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6d1830 0%, #6d1830 43%, #6d1830eb 51%, #6d183000 68%);
  z-index: 1;
}
.hero-layout {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 96px));
  margin: auto;
  padding: 80px 0;
}
.hero-content {
  max-width: 540px;
}
.hero h1 {
  max-width: 540px;
  color: #fff;
  text-shadow: none;
}
.hero-lead {
  max-width: 440px;
  margin-top: 26px;
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero .button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #35161d;
}
.hero .button-light {
  background: #ffffff0d;
  color: #fff;
  border-color: #ffffff60;
}
.hero-mobile-photo {
  display: none;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #ffffff36;
}
.hero-feature {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.hero-feature__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  color: var(--accent);
  background: #ffffff0d;
  box-shadow: inset 0 1px 0 #ffffff26, 0 10px 24px #35101945;
  backdrop-filter: blur(12px);
}
.hero-feature__icon svg {
  width: 19px;
  height: 19px;
}
.hero-feature__text {
  font-size: 11px;
  line-height: 1.55;
  font-weight: 650;
}
.hero-feature__line {
  display: block;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.copy-block {
  min-width: 0;
}
.clinic-photo,
.doctor-portrait,
.address-media {
  min-height: 540px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.address-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.point {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.directions-section,
.procedures-section {
  background: var(--soft);
}
.directions-top {
  display: flex;
  gap: 48px;
  justify-content: space-between;
}
.directions-metrics {
  display: flex;
  gap: 24px;
}
.metric strong,
.metric span {
  display: block;
}
.metric strong {
  font:
    40px Georgia,
    serif;
}
.metric span {
  font-size: 12px;
  color: var(--muted);
}
.directions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.directions-layout.zone-card-open {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
}
.face-map {
  position: relative;
  min-width: 0;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.face-map__image {
  width: 100%;
  border-radius: 4px;
}
.zone-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark);
  border: 6px solid #fff;
  box-shadow: 0 0 0 6px #6d183038;
  padding: 0;
}
.zone-dot span {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  background: var(--paper);
  color: var(--ink);
  padding: 4px 7px;
  border-radius: 3px;
}
.zone-dot--forehead {
  left: 8%;
  top: 36%;
}
.zone-dot--eyes {
  left: 23%;
  top: 50%;
}
.zone-dot--cheeks {
  left: 49%;
  top: 66%;
}
.zone-dot--nose {
  left: 51%;
  top: 40%;
}
.zone-dot--lips {
  left: 62%;
  top: 45%;
}
.zone-dot--chin {
  left: 81%;
  top: 58%;
}
.zone-dot.is-active {
  background: #f09a61;
  box-shadow: 0 0 0 8px #c7375a42;
}
.zone-card {
  position: relative;
  z-index: 45;
  background: var(--dark);
  color: #fff;
  padding: 32px;
  border-radius: 4px;
}
.zone-card__close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff60;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 24px;
}
.zone-card p {
  margin-top: 16px;
}
.zone-card ul {
  padding-left: 18px;
  line-height: 1.8;
  font-size: 13px;
  margin: 20px 0;
}
.zone-card .button {
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.procedure-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  background: linear-gradient(145deg, #fffaf7 0%, #fff2ea 100%);
  border: 1px solid #e6c6b8;
  border-radius: 6px;
  box-shadow: 0 18px 42px #6d183012, inset 0 1px 0 #fff;
  transform-style: preserve-3d;
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.procedure-card:hover {
  box-shadow: 0 26px 56px #6d183024, inset 0 1px 0 #fff;
  transform: perspective(1000px) translateY(-5px) rotateX(1.2deg);
  border-color: #d79e8c;
}
.procedure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, #ffffff00 55%, #f1aa7238 100%);
  pointer-events: none;
}
.procedure-toggle {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: 12px 30px 0 0;
  background: none;
  text-align: left;
  min-height: 112px;
}
.procedure-photo {
  width: 76px;
  height: 88px;
  flex-shrink: 0;
}
.procedure-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.procedure-title-wrap {
  min-width: 0;
}
.procedure-title {
  display: block;
  font:
    600 27px/1.1 "Cormorant Garamond",
    Georgia,
    serif;
  overflow-wrap: break-word;
}
.procedure-status {
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: uppercase;
}
.procedure-expand-icon {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
}
.procedure-expand-icon:before,
.procedure-expand-icon:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: var(--dark);
}
.procedure-expand-icon:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
.is-expanded .procedure-expand-icon:after {
  transform: rotate(0);
}
.procedure-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.procedure-meta-item {
  font-size: 10px;
  border: 1px solid var(--line);
  padding: 6px 9px;
  border-radius: 4px;
  font-weight: 700;
}
.procedure-description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.procedure-services,
.procedure-book-link {
  display: none;
}
.is-expanded .procedure-services {
  display: block;
  margin-top: 22px;
}
.is-expanded .procedure-book-link {
  display: flex;
  margin-top: 20px;
}
.procedure-services-heading {
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}
.procedure-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
}
.procedure-service-note {
  grid-column: 1/-1;
  color: var(--muted);
}
.procedure-service-price {
  font-weight: 800;
}
.procedure-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.procedure-more-button {
  border-radius: 6px;
  max-width: 100%;
  flex-wrap: wrap;
}
.procedure-more-count {
  background: #f6d6c4;
  color: #5f172b;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
}
.procedures-extra {
  margin-top: 24px;
}
.results-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.result-card {
  margin: 0;
  min-width: 0;
}
.result-photo-button {
  padding: 0;
  background: none;
  border: 0;
  width: 100%;
  perspective: 1000px;
}
.result-photo-button img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 40px #6d183017;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.35s;
}
.result-photo-button:hover img {
  transform: rotateX(1.5deg) rotateY(-1.5deg) translateY(-4px);
  box-shadow: 0 26px 52px #6d18302e;
}
.result-card figcaption {
  padding: 18px 0;
  line-height: 1.6;
}
.result-card figcaption strong,
.result-card figcaption span {
  display: block;
}
.result-card figcaption span {
  font-size: 13px;
  color: var(--muted);
}
.results-actions,
.review-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.reviews-section {
  background: #fff3ec;
}
.review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}
.review-avatar {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 50%;
  overflow: hidden;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card h3 {
  font-size: 25px;
}
.review-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.loyalty-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.loyalty-block p {
  margin-top: 12px;
  color: var(--muted);
}
.loyalty-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
}
.loyalty-items > * {
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.training-section {
  background: var(--dark);
  color: white;
}
.training-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.training-panel > p {
  color: #f7ddd3;
  margin-top: 22px;
}
.training-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  margin-top: 30px;
}
.training-item {
  border-bottom: 1px solid #ffffff36;
}
.training-row {
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  color: white;
  background: none;
  border: 0;
  padding: 18px 0;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
}
.training-row img {
  width: 44px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
}
.training-row-title {
  flex: 1;
}
.training-row:after {
  content: "+";
  font-size: 23px;
  font-weight: 400;
}
.training-item.is-open .training-row:after {
  content: "−";
}
.training-detail {
  padding-bottom: 20px;
  font-size: 13px;
}
.training-detail-link {
  margin-top: 12px;
  background: var(--paper);
  color: var(--ink);
}
.training-card img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 4px;
}
.training-card-content {
  padding-top: 20px;
}
.training-card-content a {
  margin-top: 16px;
  background: var(--paper);
  color: var(--ink);
}
.appointment-band {
  padding: 80px 0;
  background: #fbe8dc;
}
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.appointment-inner p {
  color: var(--muted);
  margin-top: 18px;
}
.appointment-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.appointment-label {
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 14px;
}
.appointment-link {
  margin-top: 24px;
  color: #fff;
}
.appointment-link-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.appointment-link-icon svg {
  width: 100%;
  height: 100%;
}
.contact-lines {
  margin-top: 24px;
}
.phone-contact {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  margin-top: 14px;
}
.phone-icon,
.phone-icon-svg {
  width: 22px;
  height: 22px;
  display: block;
}
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.contact-actions a {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.cooperation {
  margin-top: 22px;
  font-size: 13px;
}
.floating-appointment {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 112px;
  height: 112px;
  min-height: 112px;
  padding: 14px;
  border: 2px solid #ff96b6;
  border-radius: 50%;
  background: #d10f55;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 12px;
  line-height: 1.25;
  box-shadow:
    inset 0 1px 0 #ffffff9c,
    inset 0 -12px 24px #7c0a3266,
    0 0 0 4px #e92b7040,
    0 0 30px #ff2879b3,
    0 16px 38px #6d183066;
  animation: booking-glow 2.4s ease-in-out infinite;
}
.floating-appointment span {
  position: relative;
  z-index: 1;
}
.floating-appointment:hover {
  background: #ed1766;
  border-color: #ffd4e1;
  box-shadow:
    inset 0 1px 0 #ffffffb8,
    inset 0 -12px 24px #8f0b3a70,
    0 0 0 5px #ff5b9052,
    0 0 44px #ff2879d6,
    0 18px 42px #6d183075;
}
@keyframes booking-glow {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 #ffffff70,
      inset 0 -12px 24px #7c0a3266,
      0 0 0 3px #e92b7038,
      0 0 24px #ff287999,
      0 14px 34px #6d18305c;
  }
  50% {
    box-shadow:
      inset 0 1px 0 #ffffff7d,
      inset 0 -12px 24px #8f0b3a70,
      0 0 0 5px #ff5b9047,
      0 0 42px #ff2879c2,
      0 18px 42px #6d183070;
  }
}
.site-footer {
  padding: 36px 48px 100px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.site-footer span {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #2b0c14ed;
  display: grid;
  place-items: center;
  padding: 70px 24px 24px;
}
.image-lightbox__frame {
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
}
.image-lightbox__frame img {
  max-height: 80vh;
  width: auto;
  object-fit: contain;
}
.image-lightbox__close {
  position: absolute;
  right: 24px;
  top: 20px;
  padding: 12px 20px;
  background: var(--paper);
  border: 0;
  border-radius: 4px;
}
.reveal-item {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .hero-layout {
    padding: 100px 0;
  }
  .hero {
    min-height: 800px;
  }
  .hero-content {
    max-width: 600px;
  }
  .hero h1 {
    font-size: 72px;
    max-width: 600px;
  }
}
@media (max-width: 1100px) {
  .nav {
    display: none;
  }
  .section-inner,
  .appointment-inner,
  .hero-layout {
    width: calc(100% - 64px);
  }
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 40px;
  }
  .hero-content {
    max-width: 48%;
  }
  .hero-features {
    gap: 12px;
  }
  .hero-feature {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
  }
  .hero-feature__icon {
    width: 32px;
    height: 32px;
  }
  .hero-feature__icon svg {
    width: 17px;
    height: 17px;
  }
  .split,
  .appointment-inner {
    gap: 40px;
  }
  .procedure-card {
    padding: 20px;
  }
  .procedure-toggle {
    display: block;
    padding-top: 20px;
  }
  .procedure-title-wrap {
    display: block;
    margin-top: 14px;
  }
  .training-shell {
    gap: 30px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 24px;
  }
  .site-header {
    padding: 14px 20px;
    min-height: 76px;
    gap: 12px;
  }
  .brand-mark {
    width: 32px;
  }
  .brand-note {
    font-size: 9px;
  }
  .brand-name {
    font-size: 10px;
  }
  .header-action {
    font-size: 10px;
    padding: 10px 12px;
    min-height: 42px;
  }
  .section {
    padding: 56px 0;
  }
  .section-inner,
  .appointment-inner,
  .hero-layout {
    width: calc(100% - 40px);
  }
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 28px;
  }
  .hero {
    min-height: 0;
  }
  .hero-bg {
    display: none;
  }
  .hero-overlay {
    display: none;
  }
  .hero-layout {
    padding: 40px 0;
  }
  .hero-content {
    max-width: none;
  }
  .hero h1 {
    max-width: 100%;
    font-size: 42px;
  }
  .hero-lead {
    font-size: 15px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 14px 16px;
  }
  .hero-mobile-photo {
    display: block;
    height: 400px;
    background-size: cover;
    background-position: center 25%;
    margin-top: 30px;
    border-radius: 4px;
  }
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
    padding-top: 22px;
  }
  .hero-feature {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 48px;
  }
  .hero-feature__icon {
    width: 38px;
    height: 38px;
  }
  .hero-feature__text {
    font-size: 12px;
    line-height: 1.5;
  }
  .hero-feature__line {
    display: inline;
  }
  .hero-feature__line + .hero-feature__line::before {
    content: " ";
  }
  .split,
  .appointment-inner,
  .training-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .clinic-photo,
  .doctor-portrait,
  .address-media {
    min-height: 420px;
  }
  .directions-top {
    display: block;
  }
  .directions-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-bottom: 26px;
  }
  .metric {
    min-width: 0;
  }
  .metric strong {
    font-size: 32px;
  }
  .metric span {
    overflow-wrap: anywhere;
  }
  .directions-layout.zone-card-open {
    grid-template-columns: 1fr;
  }
  .zone-card {
    padding: 24px;
  }
  .zone-dot {
    width: 24px;
    height: 24px;
    border-width: 4px;
  }
  .zone-dot span {
    font-size: 9px;
    bottom: 28px;
    padding: 2px 4px;
  }
  .procedures-grid,
  .results-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .procedure-card {
    padding: 24px;
  }
  .procedure-card:hover {
    transform: none;
  }
  .procedure-toggle {
    display: flex;
    padding: 16px 24px 0 0;
    gap: 16px;
    min-height: 110px;
  }
  .procedure-title-wrap {
    margin-top: 0;
  }
  .procedure-title {
    font-size: 27px;
  }
  .procedure-photo {
    width: 76px;
    height: 86px;
  }
  .procedure-expand-icon {
    right: 12px;
    top: 12px;
  }
  .procedure-more-button {
    padding: 14px 18px;
    gap: 10px;
    font-size: 12px;
    width: 100%;
  }
  .procedure-more-count {
    font-size: 10px;
  }
  .training-list {
    grid-template-columns: 1fr;
  }
  .training-card img {
    max-height: 480px;
  }
  .appointment-band {
    padding: 56px 0;
  }
  .appointment-card {
    padding: 24px;
  }
  .appointment-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 12px;
  }
  .contact-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .floating-appointment {
    right: 16px;
    bottom: 16px;
    width: 88px;
    height: 88px;
    min-height: 88px;
    padding: 10px;
    font-size: 10px;
  }
  .site-footer {
    padding: 28px 20px 90px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .result-card figcaption {
    text-align: left;
  }
  .result-photo-button:hover img {
    transform: none;
  }
  .image-lightbox {
    padding: 76px 16px 24px;
  }
}
@media (max-height: 500px) and (min-width: 701px) {
  .hero {
    min-height: 580px;
  }
  .hero-layout {
    padding: 38px 0;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-lead {
    margin-top: 16px;
    font-size: 14px;
  }
  .hero-actions {
    margin-top: 18px;
  }
  .hero-features {
    margin-top: 22px;
    padding-top: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
