/* Public site — matches clinic dashboard palette */
:root {
  --primary: #7a0019;
  --accent: #b3002d;
  --gold: #c9a227;
  --bg: #f7f7fb;
  --surface: #ffffff;
  --surface2: #f5f6fa;
  --border: #e3e6ea;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --nav-bg: linear-gradient(135deg, #5c0013, #8a001f);
  --shadow: 0 6px 18px rgba(122, 0, 25, 0.12);
  --header-h: 60px;
  --container: 1100px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', 'DM Sans', -apple-system, sans-serif;
  --script: 'Great Vibes', cursive;
}

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

html { scroll-behavior: smooth; width: 100%; }

.site-anchor,
.site-branch-card {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

body.site-page {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-main { flex: 1 0 auto; width: 100%; padding-top: var(--header-h); }

.site-container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
}

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

/* ── Header (dashboard-style maroon nav) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  box-shadow: var(--shadow);
  border-bottom: none;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(122, 0, 25, 0.25);
}

.site-header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  padding-right: 200px;
  position: relative;
}

.site-header-clock {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 310;
  text-align: right;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.site-nav-link {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.site-nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  text-decoration: none;
}

.site-nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.site-nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-navy { background: var(--primary); color: var(--surface); }
.btn-cream { background: var(--surface); color: var(--primary); }
.btn-primary { background: var(--primary); color: var(--surface); border: none; }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-block { width: 100%; }

.link-caps {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.link-caps.light { color: rgba(255, 255, 255, 0.84); }
.link-caps:hover { text-decoration: underline; }

/* ── Home: Hero ── */
.home-hero {
  background: var(--bg);
  padding: 72px 0 48px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.home-hero-copy {
  text-align: left;
}

.home-hero-inner { max-width: 840px; }

.home-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.08;
  margin-bottom: 16px;
}

.home-hero-title .script {
  display: block;
  font-size: 0.85em;
  margin-top: 4px;
  color: var(--accent);
}

.home-hero-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 28px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.btn-hero-outline {
  display: inline-block;
  padding: 16px 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-outline:hover {
  background: var(--primary);
  color: #fff;
}

.home-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(122, 0, 25, 0.18);
  border: 1px solid rgba(122, 0, 25, 0.1);
  background: var(--surface);
  padding: 32px 28px;
  min-height: 280px;
}

.home-hero-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.home-hero-secondary {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.home-hero-secondary:hover { color: var(--primary); text-decoration: underline; }

/* ── Home: Media (video + gallery) ── */
.home-media {
  position: relative;
  width: 100%;
  padding: 0 0 0;
  background: var(--bg);
}

.home-media-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.home-media-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 10px;
}

.home-media-title .script {
  color: var(--accent);
  font-size: 1.05em;
}

.home-media-lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.home-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.home-media-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 880px;
  margin: 0 auto;
}

.home-media-video-col,
.home-media-gallery-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-media-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.home-media-video {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(122, 0, 25, 0.18);
  background: #111;
  border: 1px solid rgba(122, 0, 25, 0.12);
}

.home-media-video .site-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.home-media-video iframe,
.home-media-video video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.home-media-gallery-col .home-slider {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(122, 0, 25, 0.14);
  border: 1px solid rgba(122, 0, 25, 0.1);
}

.home-media-gallery-col .home-slider-track {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: unset;
  max-height: none;
}

@media (min-width: 769px) {
  .home-media-grid:not(.home-media-grid--single) {
    gap: 28px;
  }
}

.home-media-branches {
  margin-top: 48px;
  padding: 40px 0 56px;
  background: var(--nav-bg);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(122, 0, 25, 0.08);
}

/* ── Home: Image slider ── */
.home-slider-section {
  padding: 0 0 24px;
  width: 100%;
}

.home-slider {
  position: relative;
  overflow: hidden;
  background: #111;
}

.home-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 220px;
  max-height: 480px;
}

.home-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.home-slider-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.home-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.home-slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.home-slider-prev { left: 12px; }
.home-slider-next { right: 12px; }

.home-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-slider-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.home-slider-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.home-showcase-labels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.home-showcase-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.home-showcase-label-main {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.home-showcase-label-sub {
  display: block;
  font-size: 12px;
  opacity: 0.65;
}

/* ── Home: Navy sections ── */
.home-section-navy {
  background: var(--nav-bg);
  color: var(--surface);
  padding: 64px 0;
  text-align: center;
  width: 100%;
}

.home-branch-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px 56px;
  margin-bottom: 28px;
}

.home-branch-logo-item { text-align: center; }

.home-branch-logo-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.home-branch-logo-phone {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.home-branch-logo-phone:hover { color: var(--surface); text-decoration: underline; }

.home-steps { padding-top: 76px; }

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  text-align: left;
}

.home-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 4px;
}

.home-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.72;
  margin-bottom: 10px;
}

.home-step h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-step p { font-size: 13px; opacity: 0.78; }

.home-steps-cta { margin-top: 34px; }

/* ── Home: Our Story ── */
.home-story {
  width: 100%;
  padding: 64px 0;
  background: var(--bg);
}

.home-story-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-story-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
}

.home-story-inner p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.home-story-inner .link-caps {
  display: inline-block;
  margin-top: 8px;
}

/* ── Home: Doctors ── */
.home-doctors {
  padding: 56px 0 64px;
  background: var(--surface2);
  width: 100%;
}

.home-section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}

.home-section-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 8px;
}

.home-section-title .script {
  color: var(--accent);
  font-size: 1.05em;
}

.home-section-lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.home-doctor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-doctor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(122, 0, 25, 0.12);
}

.home-doctor-photo-wrap {
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(122, 0, 25, 0.12);
  background: var(--surface2);
}

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

.home-doctor-photo-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #5c0013, #8a001f);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-doctor-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 6px;
}

.home-doctor-specialty {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 4px;
}

.home-doctor-branch {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-reviews-more {
  margin-top: 12px;
}

.home-reviews-toggle-wrap {
  margin-top: 16px;
  text-align: center;
}

.home-reviews-toggle-wrap .btn {
  min-width: 220px;
}

/* ── Inner pages ── */
.site-pagehead {
  padding: 44px 0 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(122, 0, 25, 0.06), transparent);
}

.site-page-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
}

.site-page-sub { color: var(--text-muted); margin-top: 8px; font-size: 15px; }

.site-section { padding: 34px 0 64px; width: 100%; }

.site-section-muted { background: var(--surface2); width: 100%; }

.site-section-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.site-section-sub { color: var(--text-muted); margin-bottom: 16px; font-size: 14px; }

.site-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  width: 100%;
}

.site-section-head .site-section-sub { margin-bottom: 0; }

.site-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.site-link:hover { text-decoration: underline; }

.site-card-grid,
.site-branch-grid,
.site-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.site-card,
.site-branch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.site-card h3,
.site-branch-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.site-card p,
.site-branch-meta,
.site-branch-details {
  color: var(--text-muted);
  font-size: 13px;
}

.site-branch-details { margin-top: 10px; display: grid; gap: 6px; }

.site-branch-map {
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  aspect-ratio: 16 / 10;
}

.site-branch-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-branch-actions,
.site-inline-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.site-reviews-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 14px;
  align-items: start;
  width: 100%;
}

.site-review-grid { display: grid; gap: 12px; }

.site-review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.site-review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.site-review-name { font-weight: 700; color: var(--primary); }
.site-review-branch { color: var(--text-muted); font-size: 12px; }
.site-review-text { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
.site-review-date { color: var(--text-muted); font-size: 12px; }

.site-review-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 14px);
}

.site-form-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.site-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 10px 0 6px;
}

.site-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: var(--surface);
}

.site-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 0, 25, 0.12);
}

.site-stars { white-space: nowrap; }
.site-star { color: rgba(122, 0, 25, 0.2); font-size: 14px; }
.site-star.filled { color: var(--gold); }

/* ── Alerts ── */
.site-banner-wrap {
  max-width: var(--container);
  margin: 16px auto 0;
  padding: 0 28px;
}

.site-alert {
  padding: 14px 18px;
  font-size: 13px;
  margin-bottom: 16px;
  border-radius: 4px;
  border: 1px solid;
}

.site-alert-success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.site-alert-error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.site-alert-info { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }

.site-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ── Back to top ── */
.site-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--nav-bg);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(122, 0, 25, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s;
}

.site-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-back-to-top:hover {
  background: linear-gradient(135deg, #8a001f, #a80028);
  transform: translateY(-2px);
}

.site-back-to-top.is-visible:hover {
  transform: translateY(-2px);
}

.site-back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Footer ── */
.site-footer {
  flex-shrink: 0;
  width: 100%;
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 0 16px;
  margin-top: auto;
  box-shadow: var(--shadow);
}

.site-footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-nav a:hover { color: #fff; }

.footer-right { display: flex; gap: 10px; align-items: center; }

.footer-right a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.footer-right a:hover { background: rgba(255, 255, 255, 0.14); }

.footer-copy {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  text-align: center;
  opacity: 0.45;
  letter-spacing: 0.04em;
}

.site-video { width: 100%; height: auto; display: block; }
.site-video-youtube iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .home-steps-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .site-card-grid,
  .site-branch-grid,
  .site-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-reviews-layout { grid-template-columns: 1fr; }
  .site-review-form { position: static; }
}

@media (max-width: 768px) {
  .site-header-inner { padding-right: 28px; }

  .site-header-clock {
    top: auto;
    bottom: 4px;
    right: 12px;
    transform: none;
    font-size: 9px;
    max-width: calc(100% - 56px);
    white-space: normal;
  }

  .site-nav-toggle { display: block; right: 12px; top: 10px; transform: none; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: linear-gradient(135deg, #5c0013, #8a001f);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px;
    box-shadow: 0 16px 48px rgba(122, 0, 25, 0.3);
  }

  .site-nav.open { display: flex; }
  .site-nav-link { flex: none; padding: 12px; }
  .site-nav-logo { padding: 12px 0; order: -1; }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .home-hero-copy { text-align: center; }

  .home-hero-lead { margin-left: auto; margin-right: auto; }

  .home-hero-actions { justify-content: center; }

  .home-hero-visual {
    min-height: 200px;
    padding: 24px 20px;
    order: -1;
  }

  .home-hero-photo {
    max-height: 220px;
  }

  .home-doctors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-doctor-photo-wrap {
    width: 88px;
    height: 88px;
  }

  .home-media-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .home-media-gallery-col .home-slider-track {
    aspect-ratio: 16 / 9;
    min-height: unset;
  }

  .home-media-branches {
    margin-top: 36px;
    border-radius: 16px 16px 0 0;
    padding: 32px 0 40px;
  }

  .home-slider-track { aspect-ratio: 16 / 10; min-height: 180px; }
  .home-slider-btn { width: 34px; height: 34px; font-size: 20px; }

  .home-showcase-labels { gap: 20px; }

  .site-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .home-branch-logos { gap: 32px; }
  .home-hero { padding: 48px 0 32px; }
  .site-section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .site-card-grid,
  .site-branch-grid,
  .site-contact-grid { grid-template-columns: 1fr; }
}
