:root {
  --ink: #18343a;
  --ink-2: #27484c;
  --teal: #2f716b;
  --teal-dark: #245b57;
  --teal-soft: #dceae6;
  --sage: #798f7a;
  --cream: #f7f3eb;
  --cream-2: #eee8dc;
  --paper: #fffdf8;
  --brick: #a45f47;
  --brick-soft: #efdcd3;
  --sand: #d8cbb8;
  --text: #24393d;
  --muted: #5d7072;
  --line: rgba(24, 52, 58, 0.14);
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(24, 52, 58, 0.08);
  --shadow-md: 0 20px 55px rgba(24, 52, 58, 0.13);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --font-sans: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(47, 113, 107, 0.06), transparent 27%),
    radial-gradient(circle at 87% 72%, rgba(164, 95, 71, 0.05), transparent 25%);
}

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

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brick);
}

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

:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 4px;
  border-radius: 4px;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

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

h1,
h2,
.display {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.6vw, 6.2rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.35;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding: clamp(74px, 10vw, 128px) 0;
}

.section-sm {
  padding: 56px 0;
}

.section-cream {
  background: var(--cream);
}

.section-ink {
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
}

.section-ink h2,
.section-ink h3 {
  color: var(--white);
}

.section-teal-soft {
  background: var(--teal-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: var(--brick);
}

.section-ink .eyebrow {
  color: #bcd6cf;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.7;
}

.section-ink .lead {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: var(--muted);
}

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

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

.utility-bar {
  color: rgba(255, 255, 255, 0.88);
  background: var(--ink);
  font-size: 0.84rem;
}

.utility-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: var(--teal);
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-8deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--white);
  border-radius: 4px;
}

.brand-mark::before {
  top: 10px;
  left: 18px;
  width: 6px;
  height: 22px;
}

.brand-mark::after {
  top: 18px;
  left: 10px;
  width: 22px;
  height: 6px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.desktop-nav a {
  padding: 11px 12px;
  color: var(--ink-2);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.desktop-nav .nav-hours {
  color: var(--teal-dark);
  background: var(--cream-2);
}

.desktop-nav .nav-hours:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.desktop-nav .nav-call {
  margin-left: 5px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--teal);
}

.desktop-nav .nav-call:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.mobile-menu {
  display: none;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: 180ms ease;
}

.menu-button {
  gap: 4px;
}

.mobile-panel {
  display: none;
  padding: 4px 20px 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mobile-panel.is-open {
  display: grid;
}

.mobile-panel a {
  padding: 13px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.mobile-panel .button {
  margin-top: 18px;
  color: var(--white);
  border-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 53%, #eee8dd 53%, #eee8dd 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  content: "";
  opacity: 0.45;
  border: 1px solid rgba(47, 113, 107, 0.23);
  border-radius: 50%;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 90px 70px 90px 0;
}

.hero-copy .lead {
  max-width: 610px;
}

.hero-local {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-family: var(--font-sans);
  font-size: 0.22em;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--cream-2);
}

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

.hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 30px 0 55px rgba(247, 243, 235, 0.75);
}

.hero-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  max-width: 270px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-note strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--teal);
}

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

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

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 50%;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.split-wide {
  grid-template-columns: 0.9fr 1.1fr;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: -1;
  width: 60%;
  height: 62%;
  content: "";
  background: var(--brick-soft);
  border-radius: var(--radius);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 12px var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote {
  margin: 32px 0 0;
  padding: 20px 0 20px 24px;
  color: var(--ink);
  border-left: 3px solid var(--brick);
  font-family: var(--font-serif);
  font-size: 1.32rem;
  line-height: 1.5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cards-two {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.note-offset {
  margin-top: 26px;
}

.cta-band-spaced {
  padding-top: 80px;
}

.card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 rgba(24, 52, 58, 0.02);
  transition: 180ms ease;
}

.card:hover {
  border-color: rgba(47, 113, 107, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 16px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.hours-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hours-head {
  padding: 32px 36px 26px;
  color: var(--white);
  background: var(--teal);
}

.hours-head h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.hours-list {
  margin: 0;
  padding: 14px 36px 26px;
  list-style: none;
}

.hours-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list strong {
  color: var(--ink);
}

.hours-list span {
  color: var(--muted);
}

.hours-note {
  margin: 0 36px 32px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.patient-guide-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(164, 95, 71, 0.11), transparent 25%),
    var(--paper);
}

.patient-guide-intro,
.arrival-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 90px);
}

.patient-guide-intro h2,
.arrival-intro h2 {
  margin-bottom: 0;
}

.patient-guide-intro .lead,
.arrival-intro .lead {
  margin-bottom: 8px;
}

.patient-guide {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.35fr);
  overflow: hidden;
  margin-top: 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.guide-choices {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 55%),
    var(--ink);
}

.guide-choice {
  width: 100%;
  min-height: 82px;
  display: grid;
  align-items: center;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 17px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.guide-choice:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.guide-choice.is-active {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(5px);
}

.guide-choice-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #c9dfd9;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.guide-choice-icon .icon {
  width: 21px;
  height: 21px;
}

.guide-choice.is-active .guide-choice-icon {
  color: var(--white);
  background: var(--teal);
}

.guide-choice strong,
.guide-choice small {
  display: block;
}

.guide-choice strong {
  font-size: 0.94rem;
  line-height: 1.3;
}

.guide-choice small {
  margin-top: 3px;
  color: inherit;
  font-size: 0.72rem;
  opacity: 0.75;
}

.guide-panels {
  min-width: 0;
  min-height: 570px;
  display: grid;
}

.guide-panel {
  min-width: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(34px, 6vw, 72px);
  animation: panel-reveal 360ms ease both;
}

.guide-panel[hidden],
.arrival-panel[hidden] {
  display: none;
}

.guide-panel h3 {
  max-width: 660px;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.guide-panel > p:not(.guide-kicker) {
  max-width: 690px;
  color: var(--muted);
}

.guide-kicker {
  margin-bottom: 12px;
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-route {
  max-width: 690px;
  display: grid;
  align-items: start;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  margin-top: 15px;
}

.guide-route > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.guide-route p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.guide-route strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.guide-panel .actions {
  margin-top: 30px;
}

.guide-disclaimer {
  max-width: 960px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

@keyframes panel-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.doctor-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) 1.22fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.doctor-image {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 14px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 24%, rgba(255, 255, 255, 0.86), transparent 31%),
    var(--teal-soft);
}

.doctor-card:nth-child(2) .doctor-image {
  background:
    radial-gradient(circle at 45% 24%, rgba(255, 255, 255, 0.86), transparent 31%),
    var(--brick-soft);
}

.doctor-image img {
  max-height: 430px;
  width: auto;
  object-fit: contain;
  transition: transform 360ms ease;
}

.doctor-focus {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(24, 52, 58, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(24, 52, 58, 0.2);
  backdrop-filter: blur(10px);
  transition: padding 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.doctor-focus span,
.doctor-focus strong,
.doctor-focus small {
  display: block;
}

.doctor-focus span {
  margin-bottom: 4px;
  color: #c9dfd9;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doctor-focus strong {
  font-size: 0.79rem;
  line-height: 1.42;
}

.doctor-focus small {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(4px);
  transition: max-height 240ms ease, margin 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.doctor-card:hover,
.doctor-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.doctor-card:hover .doctor-image img,
.doctor-card:focus-within .doctor-image img {
  transform: scale(1.018);
}

.doctor-card:hover .doctor-focus,
.doctor-card:focus-within .doctor-focus {
  padding-block: 20px;
  background: rgba(47, 113, 107, 0.97);
  box-shadow: 0 18px 38px rgba(24, 52, 58, 0.32);
  transform: translateY(-7px);
}

.doctor-card:hover .doctor-focus strong,
.doctor-card:focus-within .doctor-focus strong {
  font-size: 0.85rem;
}

.doctor-card:hover .doctor-focus small,
.doctor-card:focus-within .doctor-focus small {
  max-height: 42px;
  margin-top: 7px;
  opacity: 1;
  transform: translateY(0);
}

.doctor-content {
  padding: 34px 30px;
}

.doctor-content h3 {
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.doctor-role {
  display: block;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 750;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  color: var(--ink-2);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
}

.language-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.language-banner::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 290px;
  height: 290px;
  content: "RU";
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-serif);
  font-size: 12rem;
  line-height: 1;
}

.language-banner h2 {
  max-width: 650px;
  color: var(--white);
}

.language-banner p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.russian {
  display: block;
  margin-top: 12px;
  color: #c5ddd6;
  font-size: 1rem;
  font-weight: 750;
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
  margin-top: 46px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

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

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

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

.gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(24, 52, 58, 0.82);
  border-radius: 10px;
  font-size: 0.78rem;
  backdrop-filter: blur(5px);
}

.cta-band {
  padding: 0 0 clamp(72px, 10vw, 120px);
  background: var(--cream);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: clamp(38px, 7vw, 72px);
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius-lg);
}

.cta-inner::after {
  position: absolute;
  right: -130px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.cta-inner h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 126px) 0;
  background: var(--cream);
}

.page-hero::after {
  position: absolute;
  top: -180px;
  right: -90px;
  width: 450px;
  height: 450px;
  content: "";
  background: radial-gradient(circle, var(--teal-soft) 0%, transparent 69%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero .lead {
  max-width: 750px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 13px;
  height: 7px;
  content: "";
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card::after {
  position: absolute;
  top: -36px;
  right: -36px;
  width: 96px;
  height: 96px;
  content: "";
  background: var(--teal-soft);
  border-radius: 50%;
}

.service-card.accent::after {
  background: var(--brick-soft);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 400;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.info-box {
  padding: 30px;
  background: var(--cream);
  border-radius: var(--radius);
}

.info-box h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.number {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 30px 0;
  padding: 20px 22px;
  color: #4b3329;
  background: #f6e8df;
  border-left: 4px solid var(--brick);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.alert .icon {
  margin-top: 3px;
  flex: 0 0 auto;
}

.alert p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line .trust-icon {
  width: 42px;
  height: 42px;
}

.contact-line strong {
  display: block;
  color: var(--ink);
}

.contact-line span,
.contact-line address {
  color: var(--muted);
  font-style: normal;
}

.building-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: var(--radius-lg);
}

.building-card img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.building-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 22px;
  color: var(--white);
  background: rgba(24, 52, 58, 0.9);
  border-radius: 18px;
  backdrop-filter: blur(9px);
}

.building-overlay h3 {
  margin-bottom: 7px;
  color: var(--white);
}

.building-overlay p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.arrival-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  overflow: hidden;
  margin-top: 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.arrival-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--ink);
}

.arrival-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(24, 52, 58, 0.72) 100%);
}

.arrival-visual > img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.arrival-experience:hover .arrival-visual > img {
  transform: scale(1.018);
}

.arrival-marker {
  position: absolute;
  top: 68%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px 9px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(24, 52, 58, 0.3);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease, transform 200ms ease;
}

.arrival-marker:hover,
.arrival-marker.is-active {
  transform: translate(-50%, -50%) scale(1.06);
}

.arrival-marker:not(.is-active) {
  opacity: 0.72;
}

.arrival-marker-dot {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  background: var(--brick);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(24, 52, 58, 0.1);
}

.arrival-marker-dot::after {
  position: absolute;
  inset: -9px;
  content: "";
  border: 1px solid rgba(164, 95, 71, 0.58);
  border-radius: 50%;
  animation: marker-pulse 2.2s ease-out infinite;
}

@keyframes marker-pulse {
  0% { opacity: 0.8; transform: scale(0.72); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

.arrival-address {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  color: var(--white);
}

.arrival-address span,
.arrival-address strong {
  display: block;
}

.arrival-address span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.arrival-address strong {
  margin-top: 5px;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 400;
}

.arrival-information {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 100% 0, rgba(47, 113, 107, 0.1), transparent 30%),
    var(--paper);
}

.arrival-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.arrival-choice {
  min-height: 65px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.arrival-choice > span {
  color: var(--brick);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.arrival-choice:hover {
  color: var(--ink);
  border-color: rgba(47, 113, 107, 0.34);
  transform: translateY(-2px);
}

.arrival-choice.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 9px 22px rgba(47, 113, 107, 0.2);
}

.arrival-choice.is-active > span {
  color: #dbeae6;
}

.arrival-panels {
  min-height: 300px;
  display: grid;
  align-items: center;
}

.arrival-panel {
  padding: 34px 2px 22px;
  animation: panel-reveal 360ms ease both;
}

.arrival-panel h3 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.arrival-panel > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.arrival-actions {
  display: grid;
  gap: 15px;
  margin-top: auto;
}

.arrival-actions .button {
  width: 100%;
}

.arrival-call {
  color: var(--teal-dark);
  font-size: 0.79rem;
  font-weight: 800;
  text-align: center;
}

.legal {
  padding: 70px 0 110px;
}

.legal h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal h2 {
  margin-top: 52px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.legal h3 {
  margin-top: 30px;
}

.legal p,
.legal li {
  color: #40585c;
}

.legal address {
  font-style: normal;
}

.legal-note {
  margin: 30px 0;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #122b30;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 60px;
  padding: 72px 0 54px;
}

.footer-brand .brand {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.58);
}

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

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.social-links a {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-icon--facebook {
  fill: currentColor;
  stroke: none;
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: clamp(32px, 6vw, 84px);
  margin-bottom: 44px;
}

.profile-intro h2,
.profile-intro .lead {
  margin-bottom: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.profile-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.profile-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.profile-card-head > span:last-child {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.profile-card-head strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.profile-card-head small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.profile-icon .social-icon {
  width: 23px;
  height: 23px;
}

.instagram-preview {
  display: grid;
  height: 166px;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-inline: -18px;
  overflow: hidden;
}

.instagram-preview img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.facebook-preview {
  position: relative;
  height: 166px;
  margin-inline: -18px;
  overflow: hidden;
  background: var(--teal-soft);
}

.facebook-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.facebook-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(24, 52, 58, 0.88));
}

.facebook-preview div {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 1px;
  color: var(--white);
}

.facebook-preview div span {
  font-size: 0.72rem;
}

.map-preview-image {
  width: calc(100% + 36px);
  height: 166px;
  margin-inline: -18px;
  object-fit: cover;
  object-position: center 55%;
}

.profile-card > p,
.profile-card address {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.55;
}

.profile-card address {
  display: grid;
  gap: 2px;
}

.profile-card address strong {
  color: var(--ink);
}

.profile-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--teal-dark);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.profile-action:hover {
  color: var(--brick);
}

.profile-privacy {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 980px) {
  .profile-intro,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .arrival-experience {
    grid-template-columns: 1fr;
  }

  .arrival-visual,
  .arrival-visual > img {
    min-height: 620px;
  }

  .profile-card {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    min-height: 650px;
    grid-template-columns: 1fr 0.82fr;
  }

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

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

  .doctor-card {
    grid-template-columns: 260px 1fr;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }

  .utility-inner {
    justify-content: center;
    text-align: center;
  }

  .utility-inner span:last-child {
    display: none;
  }

  .hero {
    background: var(--cream);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 0 46px;
  }

  .hero-image {
    min-height: 520px;
    margin-inline: -20px;
  }

  .hero-image::before {
    box-shadow: inset 0 28px 40px rgba(247, 243, 235, 0.65);
  }

  .hero-note {
    right: 20px;
    bottom: 20px;
    left: 20px;
    max-width: none;
  }

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

  .trust-item {
    min-height: 86px;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .patient-guide-intro,
  .arrival-intro {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .patient-guide {
    grid-template-columns: 1fr;
  }

  .guide-choices {
    display: grid;
    grid-auto-columns: minmax(220px, 76vw);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .guide-choice {
    scroll-snap-align: start;
  }

  .guide-choice.is-active {
    transform: translateY(-3px);
  }

  .guide-panels {
    min-height: 550px;
  }

  .split,
  .split-wide,
  .contact-grid,
  .profile-intro,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cards,
  .service-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-image {
    min-height: 420px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .gallery figure:first-child {
    grid-row: auto;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

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

@media (max-width: 540px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark::before {
    top: 8px;
    left: 15px;
    height: 20px;
  }

  .brand-mark::after {
    top: 15px;
    left: 8px;
    width: 20px;
  }

  .brand-text strong {
    font-size: 1.02rem;
  }

  .brand-text small {
    font-size: 0.59rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .hero-copy {
    padding-top: 54px;
  }

  .hero-image {
    min-height: 440px;
    margin-inline: -14px;
  }

  .image-frame::before {
    right: 0;
  }

  .actions .button {
    width: 100%;
  }

  .card,
  .service-card,
  .info-box,
  .contact-card {
    padding: 24px;
  }

  .hours-head {
    padding-inline: 24px;
  }

  .hours-list {
    padding-inline: 24px;
  }

  .hours-list li {
    grid-template-columns: 92px 1fr;
    gap: 14px;
    font-size: 0.9rem;
  }

  .hours-note {
    margin-inline: 24px;
  }

  .doctor-content {
    padding: 28px 24px;
  }

  .doctor-image {
    min-height: 360px;
  }

  .doctor-focus {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .patient-guide,
  .arrival-experience {
    margin-top: 34px;
    border-radius: var(--radius);
  }

  .guide-choices {
    padding: 14px;
  }

  .guide-choice {
    min-height: 76px;
  }

  .guide-panels {
    min-height: 600px;
  }

  .guide-panel {
    padding: 32px 22px;
  }

  .guide-panel .actions {
    display: grid;
  }

  .arrival-visual,
  .arrival-visual > img {
    min-height: 480px;
  }

  .arrival-address {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .arrival-marker {
    top: 66%;
  }

  .arrival-information {
    padding: 24px 18px;
  }

  .arrival-choices {
    grid-template-columns: 1fr;
  }

  .arrival-choice {
    min-height: 56px;
  }

  .arrival-panels {
    min-height: 340px;
  }

  .building-card,
  .building-card img {
    min-height: 490px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

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

@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .cta-band,
  .actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .legal {
    padding: 30px 0;
  }
}
