﻿:root {
  --bone-1: #e6e8ea;
  --bone-2: #dde1e4;
  --graphite-1: #0f1216;
  --graphite-2: #161a20;
  --accent-1: #c8a77a;
  --accent-2: #d1b28a;
  --blue-gray: #8f9aa6;
  --med-gray: #aeb5bc;
  --white: #ffffff;
  --shadow: rgba(10, 12, 15, 0.55);
  --frame-pad: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--graphite-1);
  color: var(--bone-1);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1500px, 98vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px 0 12px;
  overflow: visible;
  border-bottom: none;
  background: transparent;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.site-header::before {
  content: none;
}

.site-header.is-hidden {
  transform: translate3d(0, calc(-100% - 18px), 0);
  opacity: 0.04;
  pointer-events: none;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--graphite-1);
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 22, 0.55) 0%, rgba(15, 18, 22, 0.15) 45%, rgba(15, 18, 22, 0.6) 100%);
  pointer-events: none;
  opacity: 0.86;
  transition: opacity 1.3s ease;
}

.hero.is-soft-ending .hero-overlay {
  opacity: 0.94;
}

.hero.is-ended .hero-overlay {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bone-1);
  min-height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3.5vw, 56px);
  padding-left: var(--frame-pad);
  padding-right: var(--frame-pad);
  padding-top: 112px;
  padding-bottom: 32px;
}

.hero-panel {
  max-width: min(520px, 100%);
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid rgba(230, 232, 234, 0.2);
  background: linear-gradient(155deg, rgba(15, 21, 31, 0.75), rgba(15, 18, 22, 0.52));
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 14px 32px rgba(3, 7, 12, 0.35);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.hero-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(200, 167, 122, 0.6);
}

.hero-title {
  margin-top: 14px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--bone-1);
}

.hero-subtitle {
  margin-top: 12px;
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(230, 232, 234, 0.9);
}

.hero-points {
  margin-top: 14px;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  padding-bottom: 2px;
}

.hero-points-track {
  display: flex;
  width: max-content;
  animation: heroPointsTicker 18s linear infinite;
  will-change: transform;
}

.hero-points-set {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.hero-points span {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 13px 7px 24px;
  border-radius: 10px;
  border: 1px solid rgba(230, 232, 234, 0.18);
  background: linear-gradient(145deg, rgba(12, 18, 28, 0.62), rgba(10, 14, 22, 0.42));
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--bone-2);
}

.hero-points span::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 0 0 2px rgba(200, 167, 122, 0.15);
}

@keyframes heroPointsTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(200, 167, 122, 0.7);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone-2);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.hero-link:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.hero-aside {
  width: min(360px, 28vw);
  display: grid;
  gap: 12px;
}

.hero-aside-card {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(230, 232, 234, 0.18);
  background: linear-gradient(160deg, rgba(12, 18, 27, 0.72), rgba(12, 16, 24, 0.48));
  backdrop-filter: blur(10px) saturate(118%);
  box-shadow: 0 10px 24px rgba(3, 7, 12, 0.3);
}

.hero-aside-card--highlight {
  border-color: rgba(200, 167, 122, 0.44);
  background: linear-gradient(155deg, rgba(26, 34, 44, 0.78), rgba(18, 22, 30, 0.58));
}

.hero-aside-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.hero-aside-value {
  display: block;
  margin-top: 6px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  color: var(--accent-2);
}

.hero-aside-card p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(230, 232, 234, 0.88);
}

.hero-aside-metrics {
  display: grid;
  gap: 8px;
}

.hero-aside-metric {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(230, 232, 234, 0.14);
  background: rgba(10, 15, 22, 0.58);
}

.hero-aside-metric strong {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--bone-1);
}

.hero-aside-metric span {
  font-size: 11px;
  color: rgba(230, 232, 234, 0.78);
}

.hero-aside-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 167, 122, 0.52);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  transition: background 0.25s ease, color 0.25s ease;
}

.hero-aside-link:hover {
  background: rgba(200, 167, 122, 0.14);
  color: var(--bone-1);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px var(--frame-pad);
  border-radius: 14px;
  border: 1px solid rgba(230, 232, 234, 0.14);
  background: linear-gradient(145deg, rgba(16, 23, 34, 0.76), rgba(15, 18, 22, 0.56));
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 14px 34px rgba(5, 8, 14, 0.34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-link {
  transition: transform 0.25s ease;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px var(--shadow));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-text h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--bone-1);
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.brand-text p {
  margin-top: 2px;
  font-size: 10px;
  color: var(--med-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.brand-link:hover,
.brand-link:focus-visible {
  transform: translateY(-1px);
}

.brand-link:hover .brand-logo,
.brand-link:focus-visible .brand-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 14px 24px rgba(200, 167, 122, 0.24));
}

.brand-link:hover .brand-text h1,
.brand-link:focus-visible .brand-text h1 {
  color: var(--accent-2);
}

.brand-link:hover .brand-text p,
.brand-link:focus-visible .brand-text p {
  color: var(--bone-2);
}

.site-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 15px;
  color: var(--bone-2);
  line-height: 1.2;
}

.nav-link {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-1);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-meta {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.nav-phone {
  text-align: center;
}

.nav-phone-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--med-gray);
}

.nav-phone-number {
  font-size: 15px;
  font-weight: 500;
  color: var(--bone-1);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 14px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.phone {
  text-align: right;
}

.phone-label {
  display: block;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 10px;
  color: var(--med-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-number {
  font-size: 15px;
  font-weight: 500;
  color: var(--bone-1);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: box-shadow;
}

.btn-primary {
  --cut: 14px;
  background: linear-gradient(135deg, rgba(209, 178, 138, 0.95), rgba(200, 167, 122, 0.9));
  color: var(--graphite-1);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)));
  box-shadow: 0 12px 26px rgba(200, 167, 122, 0.24);
  animation: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)));
  border: 1px solid rgba(15, 18, 22, 0.25);
  pointer-events: none;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 25%, transparent 45%);
  transform: translateX(-120%);
  animation: none;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200, 167, 122, 0.32);
  filter: brightness(1.03);
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(200, 167, 122, 0.24);
  }
  50% {
    box-shadow: 0 18px 38px rgba(200, 167, 122, 0.36);
  }
}

@keyframes buttonSheen {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  35% {
    opacity: 0.7;
  }
  60% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(12, 16, 23, 0.65);
  color: var(--bone-1);
  border: 1px solid rgba(200, 167, 122, 0.45);
  padding: 0;
  border-radius: 12px;
  font-size: 0;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.menu-toggle-icon {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--bone-1);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bone-1);
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-icon::before {
  top: -7px;
}

.menu-toggle-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.stub {
  padding: 120px 0;
  text-align: center;
  color: var(--blue-gray);
  border-bottom: none;
}

.about-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(200, 167, 122, 0.1), rgba(15, 18, 22, 0) 38%),
    radial-gradient(circle at 88% 78%, rgba(143, 154, 166, 0.1), rgba(15, 18, 22, 0) 44%),
    linear-gradient(160deg, rgba(11, 15, 20, 0.96), rgba(16, 20, 26, 0.98));
}

.services-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 70%, rgba(200, 167, 122, 0.08), rgba(15, 18, 22, 0) 38%),
    radial-gradient(circle at 90% 20%, rgba(143, 154, 166, 0.08), rgba(15, 18, 22, 0) 40%),
    linear-gradient(160deg, rgba(10, 14, 19, 0.98), rgba(14, 18, 24, 0.98));
}

.services-wrap {
  display: grid;
  gap: 28px;
}

.services-head {
  max-width: 760px;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.services-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(200, 167, 122, 0.75);
}

.services-title {
  margin-top: 14px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  color: var(--bone-1);
}

.services-subtitle {
  margin-top: 12px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(230, 232, 234, 0.9);
}

.services-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: service;
}

.service-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 16px;
  border: 1px solid rgba(230, 232, 234, 0.16);
  background:
    linear-gradient(160deg, rgba(20, 27, 38, 0.88), rgba(12, 16, 24, 0.6)),
    radial-gradient(circle at 12% 18%, rgba(200, 167, 122, 0.12), transparent 45%);
  box-shadow: 0 16px 34px rgba(3, 7, 12, 0.38);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 167, 122, 0.35);
  background: linear-gradient(145deg, rgba(24, 30, 40, 0.8), rgba(14, 18, 26, 0.6));
  color: var(--accent-2);
  box-shadow: inset 0 0 0 1px rgba(230, 232, 234, 0.05);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card::before {
  counter-increment: service;
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: rgba(200, 167, 122, 0.58);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  background: radial-gradient(circle, rgba(200, 167, 122, 0.22), rgba(200, 167, 122, 0));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card h3 {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.25;
  color: var(--bone-1);
}

.service-card ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-card li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(230, 232, 234, 0.82);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent-1), var(--accent-2));
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(200, 167, 122, 0.45);
  box-shadow: 0 20px 40px rgba(3, 7, 12, 0.46);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.doctors-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 167, 122, 0.08), rgba(15, 18, 22, 0) 40%),
    radial-gradient(circle at 82% 78%, rgba(143, 154, 166, 0.08), rgba(15, 18, 22, 0) 42%),
    linear-gradient(160deg, rgba(11, 15, 20, 0.98), rgba(14, 18, 24, 0.98));
}

.doctors-wrap {
  display: grid;
  gap: 26px;
}

.doctors-head {
  max-width: 760px;
}

.doctors-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.doctors-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(200, 167, 122, 0.75);
}

.doctors-title {
  margin-top: 14px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  color: var(--bone-1);
}

.doctors-subtitle {
  margin-top: 12px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(230, 232, 234, 0.9);
}

.doctors-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(230, 232, 234, 0.14);
  background: linear-gradient(145deg, rgba(14, 20, 30, 0.62), rgba(10, 14, 20, 0.46));
  box-shadow: inset 0 0 0 1px rgba(230, 232, 234, 0.04);
  padding: 14px 0;
  cursor: grab;
  touch-action: pan-y;
}

.doctors-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.doctors-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  padding-right: 14px;
  will-change: transform;
}

.doctor-spotlight {
  position: relative;
  width: clamp(200px, 16vw, 250px);
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(200, 167, 122, 0.36);
  background:
    linear-gradient(145deg, rgba(24, 30, 40, 0.9), rgba(15, 18, 24, 0.74)),
    radial-gradient(circle at 75% 20%, rgba(200, 167, 122, 0.2), transparent 45%);
  box-shadow: 0 14px 30px rgba(3, 7, 12, 0.34);
  overflow: hidden;
}

.doctor-spotlight-photo {
  position: relative;
  aspect-ratio: 3 / 4;
}

.doctor-spotlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doctor-spotlight-body {
  padding: 12px 12px 14px;
}

.doctor-spotlight-label {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(200, 167, 122, 0.45);
  color: var(--accent-2);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doctor-spotlight-body h3 {
  margin-top: 9px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.08;
  color: var(--bone-1);
}

.doctor-spotlight-body p {
  margin-top: 7px;
  color: rgba(230, 232, 234, 0.86);
  font-size: 12px;
  line-height: 1.4;
}

.doctors-roles {
  margin-top: 10px;
}

.doctors-cta {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(200, 167, 122, 0.38);
  background:
    linear-gradient(145deg, rgba(24, 30, 40, 0.82), rgba(15, 18, 24, 0.72)),
    radial-gradient(circle at 12% 50%, rgba(200, 167, 122, 0.22), transparent 45%);
  box-shadow: 0 16px 32px rgba(3, 7, 12, 0.34);
}

.doctors-cta-text {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.16;
  color: var(--bone-1);
}

.contacts-section {
  position: relative;
  padding: 96px 0 88px;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 167, 122, 0.09), rgba(15, 18, 22, 0) 42%),
    radial-gradient(circle at 84% 75%, rgba(143, 154, 166, 0.09), rgba(15, 18, 22, 0) 44%),
    linear-gradient(165deg, rgba(11, 15, 20, 0.98), rgba(14, 18, 24, 0.98));
}

.contacts-wrap {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) 1.05fr;
  align-items: stretch;
  gap: clamp(22px, 3.5vw, 56px);
}

.contacts-map {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: clamp(380px, 33vw, 520px);
  border-radius: 14px;
  border: 1px solid rgba(230, 232, 234, 0.16);
  background: rgba(11, 15, 20, 0.72);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(3, 7, 12, 0.34);
}

.contacts-map > div,
.contacts-map > ymaps,
.contacts-map iframe {
  display: block;
  flex: 1 1 auto;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
}

.contacts-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2.1vw, 28px);
  border-radius: 16px;
  border: 1px solid rgba(230, 232, 234, 0.14);
  background: linear-gradient(150deg, rgba(16, 22, 31, 0.64), rgba(12, 16, 23, 0.5));
  box-shadow: 0 14px 30px rgba(3, 7, 12, 0.3);
}

.contacts-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.contacts-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(200, 167, 122, 0.75);
}

.contacts-title {
  margin-top: 14px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  color: var(--bone-1);
}

.contacts-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: rgba(230, 232, 234, 0.88);
  font-size: 15px;
  line-height: 1.48;
}

.contacts-list strong {
  color: var(--bone-1);
  font-weight: 600;
}

.contacts-list a {
  color: var(--accent-2);
  border-bottom: 1px solid rgba(200, 167, 122, 0.35);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contacts-list a:hover {
  color: var(--bone-1);
  border-color: rgba(230, 232, 234, 0.55);
}

.contacts-actions {
  margin-top: 20px;
}

.appointment-anchor {
  height: 1px;
}

.site-footer {
  position: relative;
  padding: 48px 0 22px;
  border-top: 1px solid rgba(230, 232, 234, 0.12);
  background:
    radial-gradient(circle at 12% 30%, rgba(200, 167, 122, 0.12), rgba(15, 18, 22, 0) 36%),
    linear-gradient(170deg, rgba(10, 14, 20, 0.98), rgba(13, 18, 24, 0.98));
}

.footer-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.15fr);
  align-items: start;
  gap: clamp(24px, 4vw, 54px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
}

.footer-logo {
  width: clamp(120px, 10vw, 156px);
  height: clamp(120px, 10vw, 156px);
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(4, 8, 12, 0.5));
}

.footer-brand-text h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  color: var(--bone-1);
}

.footer-brand-text p {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--med-gray);
}

.footer-brand-text span {
  display: block;
  margin-top: 12px;
  max-width: 48ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(230, 232, 234, 0.78);
}

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

.footer-column {
  min-height: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(230, 232, 234, 0.16);
  background: rgba(12, 16, 23, 0.58);
}

.footer-column h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.footer-column ul {
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-column li {
  color: rgba(230, 232, 234, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.footer-column a {
  color: rgba(230, 232, 234, 0.86);
  font-size: 14px;
  border-bottom: 1px solid rgba(230, 232, 234, 0.2);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-column a:hover {
  color: var(--accent-2);
  border-color: rgba(200, 167, 122, 0.55);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(230, 232, 234, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(230, 232, 234, 0.66);
}

.footer-bottom a {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-2);
  border-bottom: 1px solid rgba(200, 167, 122, 0.45);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-bottom a:hover {
  color: var(--bone-1);
  border-color: rgba(230, 232, 234, 0.5);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(24px, 4vw, 72px);
}

.about-content {
  max-width: 700px;
  align-self: start;
  opacity: 1;
  transform: translateY(0);
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-gray);
}

.about-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(200, 167, 122, 0.75);
}

.about-title {
  margin-top: 14px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.06;
  color: var(--bone-1);
}

.about-lead {
  margin-top: 16px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(230, 232, 234, 0.9);
}

.about-list {
  margin-top: 22px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-list li {
  padding: 10px 12px 10px 18px;
  border-left: 1px solid rgba(200, 167, 122, 0.4);
  background: linear-gradient(90deg, rgba(200, 167, 122, 0.08), rgba(200, 167, 122, 0));
  font-size: 14px;
  line-height: 1.5;
  color: rgba(230, 232, 234, 0.9);
}

.about-list li strong {
  color: var(--bone-1);
  font-weight: 600;
}

.about-actions {
  margin-top: 18px;
}

.about-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(110px, 11vw, 170px);
  height: 100%;
  gap: 12px;
  align-self: start;
  margin-top: 48px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(230, 232, 234, 0.22);
  box-shadow: 0 18px 34px rgba(2, 6, 10, 0.35);
  background: rgba(12, 18, 25, 0.7);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-item--xl {
  grid-column: 1 / span 4;
  grid-row: 1 / span 3;
}

.mosaic-item--tall {
  grid-column: span 2;
  grid-row: span 3;
}

.mosaic-item--wide {
  grid-column: 5 / span 2;
  grid-row: 1 / span 2;
}

.mosaic-item--square {
  grid-column: 5 / span 1;
  grid-row: 3 / span 1;
}

.mosaic-item--small {
  grid-column: 6 / span 1;
  grid-row: 3 / span 1;
}



.section-divider {
  width: min(1500px, 98vw);
  margin: 0 auto;
  padding: 24px var(--frame-pad);
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.section-divider.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-divider-line {
  position: relative;
  flex: 1;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(200, 167, 122, 0), rgba(174, 181, 188, 0.42) 50%, rgba(200, 167, 122, 0)),
    linear-gradient(90deg, transparent 0%, rgba(230, 232, 234, 0.28) 50%, transparent 100%);
  background-size: 100% 100%, 230% 100%;
  background-position: 0 0, -130% 0;
}

.section-divider.is-visible .section-divider-line {
  animation: dividerSweep 1.2s ease both;
}

.section-divider-line::after {
  content: "";
  position: absolute;
  inset: auto 0 -5px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(143, 154, 166, 0), rgba(143, 154, 166, 0.18), rgba(143, 154, 166, 0));
}

.section-divider-core {
  position: relative;
  width: 56px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 167, 122, 0.58);
  background:
    linear-gradient(100deg, rgba(200, 167, 122, 0.35), rgba(143, 154, 166, 0.28)),
    rgba(12, 18, 26, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(230, 232, 234, 0.08),
    0 0 16px rgba(200, 167, 122, 0.14);
}

.section-divider.is-visible .section-divider-core {
  animation: dividerCorePop 0.7s ease both;
}

.section-divider-core::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent-1), var(--accent-2));
}

@keyframes dividerSweep {
  from {
    background-position: 0 0, -130% 0;
    opacity: 0.3;
  }
  to {
    background-position: 0 0, 20% 0;
    opacity: 1;
  }
}

@keyframes dividerCorePop {
  0% {
    transform: scale(0.7);
    opacity: 0.2;
  }
  60% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.hero [data-animate] {
  opacity: 0;
  transform: translateY(16px);
}

body.is-loaded .hero [data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (max-width: 980px) {
  .services-section {
    padding: 84px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-title {
    font-size: clamp(26px, 6vw, 38px);
  }

  .services-subtitle {
    font-size: 14px;
  }

  .doctors-section {
    padding: 72px 0;
  }

  .doctors-title {
    font-size: clamp(26px, 6vw, 38px);
  }

  .doctors-subtitle {
    font-size: 14px;
  }

  .doctors-marquee {
    padding: 10px 0;
  }

  .doctors-marquee-track {
    gap: 12px;
  }

  .doctor-spotlight {
    width: clamp(190px, 32vw, 240px);
  }

  .doctors-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 16px;
  }

  .contacts-section {
    padding: 78px 0 72px;
  }

  .contacts-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contacts-map {
    min-height: 340px;
  }

  .site-footer {
    padding: 34px 0;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .footer-columns {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-section {
    padding: 84px 0;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .about-lead {
    font-size: 15px;
  }

  .about-list li {
    font-size: 13px;
    padding: 9px 10px 9px 14px;
  }

  .about-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(130px, 32vw, 200px);
    gap: 10px;
    width: min(680px, 100%);
    margin: 0 auto;
    height: auto;
  }

  .mosaic-item--xl,
  .mosaic-item--tall,
  .mosaic-item--wide,
  .mosaic-item--square,
  .mosaic-item--small {
    grid-column: auto;
    grid-row: auto;
  }

  .section-divider {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero-content {
    padding-top: 136px;
    padding-bottom: 30px;
    align-items: center;
  }

  .hero-aside {
    display: none;
  }

  .hero-panel {
    max-width: 100%;
    padding: 20px 18px;
  }

  .hero-title {
    font-size: clamp(28px, 6.2vw, 40px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .header-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 8px 12px;
    gap: 12px;
  }

  .brand {
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 12px;
    height: auto;
    width: min(300px, 86vw);
    padding: 18px 16px;
    flex-direction: column;
    gap: 14px;
    background: rgba(12, 16, 23, 0.94);
    border: 1px solid rgba(230, 232, 234, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(3, 7, 12, 0.38);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    z-index: 12;
  }

  .header-actions {
    display: none;
  }

  .phone {
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: flex;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-content {
    gap: 20px;
  }

  .hero-panel {
    max-width: min(500px, 100%);
  }

  .hero-aside {
    width: min(300px, 34vw);
  }

  .hero-aside-value {
    font-size: 30px;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .brand-text h1 {
    font-size: 17px;
  }

  .brand-text p {
    font-size: 10px;
  }

  .site-nav,
  .phone-number {
    font-size: 14px;
  }

  .btn {
    font-size: 15px;
    padding: 10px 22px;
  }
}

@media (max-width: 520px) {
  .services-section {
    padding: 64px 0;
  }

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

  .services-title {
    font-size: clamp(22px, 8vw, 30px);
  }

  .service-card {
    padding: 16px 16px 18px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .doctors-section {
    padding: 60px 0;
  }

  .doctors-title {
    font-size: clamp(22px, 8vw, 30px);
  }

  .doctor-spotlight-body h3 {
    font-size: 18px;
  }

  .doctors-marquee-track {
    gap: 10px;
  }

  .doctor-spotlight {
    width: clamp(170px, 72vw, 210px);
  }

  .doctors-cta {
    padding: 14px;
  }

  .doctors-cta-text {
    font-size: clamp(18px, 6vw, 24px);
  }

  .contacts-section {
    padding: 64px 0 58px;
  }

  .contacts-map {
    min-height: 300px;
  }

  .contacts-title {
    font-size: clamp(24px, 8vw, 32px);
  }

  .contacts-list {
    font-size: 14px;
  }

  .site-footer {
    padding: 26px 0;
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-logo {
    width: 98px;
    height: 98px;
  }

  .footer-brand-text h3 {
    font-size: clamp(22px, 8vw, 30px);
  }

  .footer-brand-text p {
    font-size: 10px;
  }

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

  .footer-column {
    padding: 12px 14px;
  }

  .footer-column a {
    font-size: 13px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 11px;
  }

  .about-section {
    padding: 64px 0;
  }

  .about-title {
    font-size: clamp(24px, 8.4vw, 32px);
  }

  .about-lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-list {
    margin-top: 16px;
    gap: 9px;
  }

  .about-list li {
    font-size: 12px;
    line-height: 1.45;
  }

  .about-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(120px, 42vw, 190px);
    gap: 8px;
    height: auto;
    margin-top: 0;
  }

  .mosaic-item {
    border-radius: 12px;
  }

  .section-divider {
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .section-divider-core {
    width: 42px;
    height: 12px;
  }

  .hero {
    align-items: flex-end;
  }

  .hero-content {
    padding-top: 124px;
    padding-bottom: 24px;
  }

  .hero-panel {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .hero-title {
    margin-top: 12px;
    font-size: clamp(24px, 8.6vw, 32px);
  }

  .hero-subtitle {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-points {
    padding-bottom: 0;
  }

  .hero-points-set {
    gap: 8px;
    padding-right: 8px;
  }

  .hero-points span {
    min-height: 30px;
    font-size: 9px;
    padding: 6px 10px 6px 22px;
  }

  .hero-points span::before {
    left: 9px;
    width: 6px;
    height: 6px;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 10px;
  }

  .hero-actions .btn {
    font-size: 13px;
    padding: 9px 16px;
  }

  .hero-link {
    min-height: 40px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .brand {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .brand-text h1 {
    font-size: 16px;
  }

  .brand-text p {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
    justify-items: start;
    text-align: left;
    column-gap: 10px;
    row-gap: 8px;
  }

  .menu-toggle {
    justify-self: end;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
    position: relative;
    z-index: 13;
  }

  .site-nav,
  .phone-number,
  .btn {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .section-divider {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
[data-header] {
  transform: translateY(0);
  opacity: 1;
  transition: none;
}

body.is-loaded [data-header] {
  transform: translateY(0);
  opacity: 1;
}

body.is-loaded .site-header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
}
