@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --ink: #18212a;
  --muted: #61707d;
  --line: #dfe8e5;
  --paper: #ffffff;
  --soft: #f3faf7;
  --soft-2: #fff7ed;
  --brand: #167c72;
  --brand-dark: #0f5e57;
  --mint: #78cbb7;
  --coral: #ef7b62;
  --gold: #f2b84b;
  --shadow: 0 18px 45px rgba(24, 33, 42, 0.1);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--brand-dark);
  color: #ecfffb;
  font-size: 14px;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a { font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 232, 229, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  height: 98px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  position: relative;
  transition: height 0.2s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  justify-self: start;
  min-width: 0;
}

.brand-mark {
  width: 96px;
  height: 90px;
  border-radius: var(--radius);
  background: #fff;
  object-fit: contain;
  padding: 2px;
  border: 1px solid rgba(117, 94, 73, 0.18);
  box-shadow: 0 8px 22px rgba(24, 33, 42, 0.08);
  transition: width 0.2s ease, height 0.2s ease, box-shadow 0.2s ease;
}

.mobile-brand-logo { display: none; }

.brand small {
  display: block;
  color: var(--muted);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-top: -4px;
}

.brand > span:last-child {
  font-size: 19px;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #40505e;
  font-weight: 800;
  font-size: 15px;
  justify-self: center;
}

.mobile-menu-logo { display: none; }

.nav-links a { padding: 25px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }

.dropdown { position: relative; }
.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown > a::after {
  content: "⌄";
  font-size: 12px;
  line-height: 1;
  transform: translateY(1px);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transition: 0.18s ease;
}
.dropdown-menu.zone-menu { width: 220px; }
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
}
.dropdown-menu a:hover { background: var(--soft); }

.header-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn.secondary { background: #fff; color: var(--brand); border-color: rgba(22, 124, 114, 0.28); }
.btn.secondary:hover { border-color: var(--brand); background: var(--soft); }
.btn.coral { background: var(--coral); color: #fff; }
.btn.coral:hover { background: #d96750; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #10201f;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image);
  background-size: cover;
  background-position: center right;
}

.hero .container { position: relative; z-index: 1; }
.hero-content {
  position: relative;
  width: min(700px, 100%);
  padding: 82px 0;
}
.hero-content::before {
  content: "";
  position: absolute;
  top: calc((100vh + 420px) * -1);
  bottom: calc((100vh + 420px) * -1);
  left: calc((100vw - 100%) / -2);
  right: -36px;
  z-index: -1;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.76) 44%,
    rgba(0, 0, 0, 0.42) 76%,
    rgba(0, 0, 0, 0) 100%
  );
  box-shadow: none;
}
.hero.has-form {
  min-height: 800px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 500px);
  gap: 72px;
  align-items: center;
  padding: 86px 0;
}
.hero-grid .hero-content {
  padding: 24px 0;
}
.hero-panel {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #effffb;
  font-weight: 900;
  font-size: 14px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: "Nunito", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}
h1 { font-size: clamp(42px, 7vw, 72px); margin: 22px 0 22px; }
h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
h3 { font-size: 23px; }

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  max-width: 640px;
}

.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  font-size: 15px;
}

.strip {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.strip-item {
  background: var(--soft);
  padding: 22px;
}
.strip-item strong { display: block; font-size: 18px; }
.strip-item span { color: var(--muted); font-size: 15px; }

.doctor-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(120, 203, 183, 0.18), transparent 34%),
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}
.doctor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}
.doctor-photo {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(22, 124, 114, 0.12);
  box-shadow: 0 28px 70px rgba(24, 33, 42, 0.12);
  background: #eaf3ef;
}
.doctor-photo img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}
.doctor-copy {
  max-width: 780px;
}
.doctor-copy h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.4vw, 60px);
}
.doctor-copy > p {
  margin: 20px 0 30px;
  max-width: 720px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}
.doctor-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.doctor-card {
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(22, 124, 114, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(24, 33, 42, 0.08);
}
.doctor-card .icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand);
  font-size: 27px;
}
.doctor-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  line-height: 1.1;
}
.doctor-card span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}
.doctor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.doctor-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-weight: 900;
  border-bottom: 2px solid rgba(22, 124, 114, 0.42);
  padding-bottom: 5px;
}

.section { padding: 84px 0; }
.section.alt { background: var(--soft); }
.section.warm { background: var(--soft-2); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}
.section-head p {
  color: var(--muted);
  max-width: 650px;
  margin: 0;
}
.kicker {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 8px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(24, 33, 42, 0.06);
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); }
.visual-card {
  overflow: hidden;
  padding: 0;
}
.visual-card h3,
.visual-card p {
  margin-left: 24px;
  margin-right: 24px;
}
.visual-card h3 { margin-top: 22px; }
.visual-card p { margin-bottom: 24px; }
.card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--brand);
  font-size: 25px;
  margin-bottom: 16px;
}
.card.featured { border-color: rgba(22, 124, 114, 0.35); box-shadow: var(--shadow); }

.media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #ddd;
}
.media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }

.check-list { padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 11px 0;
  color: #394956;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 62px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.price {
  font-size: 34px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: var(--brand-dark);
}
.price small { font-size: 15px; color: var(--muted); font-family: "Source Sans 3"; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-question::after { content: "+"; font-size: 26px; color: var(--brand); }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 18px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 54px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band p { color: rgba(255, 255, 255, 0.86); margin: 8px 0 0; max-width: 720px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius);
  background: var(--soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(9, 31, 29, 0.78);
  color: #fff;
  padding: 7px 10px;
  border-radius: 7px;
  font-weight: 900;
  font-size: 14px;
}

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  cursor: pointer;
}
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.form {
  display: grid;
  gap: 14px;
}
.form label { font-weight: 900; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 11px 13px;
  font: inherit;
  background: #fff;
}
.form textarea { min-height: 140px; resize: vertical; }

.site-footer {
  background: #111b20;
  color: #e7f3f0;
  padding-top: 62px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.footer-logo {
  width: min(260px, 100%);
  height: auto;
  margin: -12px 0 18px;
  border-radius: 8px;
  background: #fff;
}
.site-footer h3 { font-size: 18px; margin-bottom: 15px; }
.site-footer p, .site-footer li { color: rgba(231, 243, 240, 0.75); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 44px;
  padding: 18px 0;
  color: rgba(231, 243, 240, 0.68);
  font-size: 14px;
}

.mobile-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px;
  gap: 8px;
}
.mobile-call .btn { flex: 1; min-height: 44px; padding: 10px; font-size: 14px; }

.appointment-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(22, 124, 114, 0.22);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}
.appointment-box.hero-appointment {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.appointment-hero-head {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(22, 124, 114, 0.12);
  background: #ffffff;
}
.appointment-hero-head h2 {
  color: var(--ink);
  font-size: 24px;
  margin-bottom: 6px;
}
.appointment-hero-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.appointment-box.hero-appointment .appointment-form {
  gap: 12px;
  padding: 18px 22px 22px;
}
.appointment-box.hero-appointment label {
  color: var(--ink);
  font-size: 13px;
  gap: 6px;
}
.appointment-box.hero-appointment input,
.appointment-box.hero-appointment textarea,
.appointment-box.hero-appointment select {
  width: 100%;
  min-height: 42px;
  border-color: rgba(22, 124, 114, 0.18);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 9px 11px;
  font-size: 15px;
}
.appointment-box.hero-appointment input[type="file"] {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}
.appointment-box.hero-appointment textarea {
  min-height: 88px;
}
.appointment-box.hero-appointment .slot-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}
.appointment-box.hero-appointment .slot-btn {
  min-height: 36px;
  font-size: 12px;
  padding: 0 4px;
}
.appointment-box.hero-appointment .appointment-grid {
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.appointment-box.hero-appointment .field-with-label {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}
.appointment-box.hero-appointment .field-with-label > span {
  font-weight: 800;
  color: var(--ink);
  font-size: 13px;
}
.appointment-box.hero-appointment .field-with-label label {
  display: block;
}
.appointment-box.hero-appointment .file-drop {
  padding: 10px;
}
.appointment-box.hero-appointment .file-drop input[type="file"]::file-selector-button {
  min-height: 36px;
  padding: 7px 11px;
}
.appointment-box.hero-appointment .file-drop small {
  font-size: 12px;
}
.appointment-box.hero-appointment .btn {
  min-height: 42px;
  width: 100%;
}
.appointment-box.hero-appointment .form-status {
  min-height: 18px;
  font-size: 13px;
  line-height: 1.35;
}
.appointment-box p { color: var(--muted); }
.appointment-form {
  display: grid;
  gap: 13px;
}
.appointment-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}
.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(22, 124, 114, 0.24);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
  font: inherit;
  line-height: 1.2;
  box-shadow: 0 1px 0 rgba(24, 33, 42, 0.02);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.appointment-form textarea {
  min-height: 112px;
  resize: vertical;
}
.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(22, 124, 114, 0.12);
}
.appointment-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.appointment-form input[type="date"] {
  min-width: 0;
  color-scheme: light;
}
.appointment-form input[type="file"] {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.appointment-form input[type="file"]::file-selector-button {
  min-height: 42px;
  margin-right: 12px;
  border: 1px solid rgba(22, 124, 114, 0.24);
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand-dark);
  padding: 9px 14px;
  font-weight: 900;
  cursor: pointer;
}
.appointment-form small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.file-drop {
  display: block;
  border: 1px dashed rgba(22, 124, 114, 0.32);
  border-radius: 10px;
  background: rgba(241, 248, 246, 0.8);
  padding: 12px;
}
.appointment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot-btn {
  min-height: 42px;
  border: 1px solid rgba(22, 124, 114, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.slot-btn:not(:disabled):hover {
  border-color: var(--brand);
  background: var(--soft);
}
.slot-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.slot-btn:disabled {
  cursor: not-allowed;
  color: #95a3ad;
  background: #eef2f1;
  text-decoration: line-through;
}
.form-status {
  min-height: 22px;
  color: var(--brand-dark);
  font-weight: 800;
}
.form-status.error { color: #b03a25; }

@media (max-width: 960px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar span:last-child { display: none; }
  .nav {
    display: flex;
    justify-content: space-between;
  }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    font-weight: 900;
  }
  .nav-links {
    position: fixed;
    left: 0;
    right: auto;
    top: 98px;
    width: 100vw;
    max-width: 100vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    box-shadow: 0 18px 34px rgba(24, 33, 42, 0.16);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-radius: var(--radius); }
  .dropdown > a {
    display: flex;
    justify-content: flex-start;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    width: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .mobile-menu-logo {
    display: block;
    width: min(260px, 72vw);
    height: auto;
    margin: 18px auto 0;
  }
  .header-actions .btn { display: none; }
  .hero { min-height: 610px; }
  .hero.has-form {
    min-height: auto;
    align-items: stretch;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0 42px;
  }
  .hero-content::before {
    top: -34px;
    bottom: -30px;
    left: calc((100vw - 100%) / -2);
    right: calc((100vw - 100%) / -2);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.52));
  }
  .hero::before {
    background: var(--hero-image-mobile, var(--hero-image));
    background-size: cover;
    background-position: center;
  }
  .strip-grid, .grid-2, .grid-3, .grid-4, .footer-grid, .appointment-box, .appointment-grid { grid-template-columns: 1fr; }
  .doctor-grid,
  .doctor-cards {
    grid-template-columns: 1fr;
  }
  .doctor-section {
    padding: 64px 0;
  }
  .doctor-copy > p {
    font-size: 18px;
  }
  .section-head { display: block; }
  .cta-band .container { display: block; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-call { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1160px); }
  .nav {
    height: 116px;
  }
  .brand {
    flex-direction: row;
    align-items: center;
    gap: 0;
    text-align: left;
  }
  .brand-mark,
  .brand > span:last-child {
    display: none;
  }
  .mobile-brand-logo {
    display: block;
    width: 116px;
    height: auto;
    border-radius: 8px;
    background: #fff;
    transition: width 0.2s ease, box-shadow 0.2s ease;
  }
  .nav-links { top: 116px; }
  .nav-links {
    min-height: calc(100dvh - 116px);
    overflow-y: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .header-compact .site-header {
    box-shadow: 0 10px 24px rgba(24, 33, 42, 0.08);
  }
  .header-compact .nav {
    height: 76px;
  }
  .header-compact .mobile-brand-logo {
    width: 74px;
    box-shadow: 0 6px 16px rgba(24, 33, 42, 0.08);
  }
  .header-compact .nav-links {
    top: 76px;
    min-height: calc(100dvh - 76px);
  }
  .hero-content { padding: 46px 0; }
  .hero-grid .hero-content { padding: 18px 0 8px; }
  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
    margin: 18px 0 18px;
  }
  .appointment-box.hero-appointment .appointment-grid,
  .appointment-box.hero-appointment .appointment-grid {
    grid-template-columns: 1fr;
  }
  .appointment-box.hero-appointment .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .appointment-box.hero-appointment .field-with-label {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .hero p { font-size: 18px; }
  .eyebrow {
    font-size: 13px;
    max-width: 100%;
  }
  .trust-list {
    gap: 8px;
    margin-top: 18px;
  }
  .trust-list span {
    font-size: 13px;
    padding: 7px 10px;
  }
  .hero-actions .btn { width: 100%; }
  .appointment-box.hero-appointment { border-radius: 8px; }
  .appointment-hero-head { padding: 16px 18px 12px; }
  .appointment-hero-head h2 { font-size: 24px; }
  .appointment-hero-head p { font-size: 16px; }
  .appointment-box.hero-appointment .appointment-form {
    gap: 10px;
    padding: 16px 18px 18px;
  }
  .appointment-box.hero-appointment input,
  .appointment-box.hero-appointment select {
    min-height: 40px;
  }
  .appointment-form input,
  .appointment-form textarea,
  .appointment-form select {
    min-height: 44px;
    font-size: 16px;
  }
  .file-drop {
    padding: 10px;
  }
  .section { padding: 58px 0; }
  .doctor-section { padding: 52px 0; }
  .doctor-grid { gap: 30px; }
  .doctor-copy h2 { font-size: 34px; }
  .doctor-card { min-height: auto; padding: 20px; }
  .strip-item { padding: 18px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1280px) {
  .container { width: min(1320px, calc(100% - 56px)); }
}

@media (min-width: 1600px) {
  .container { width: min(1480px, calc(100% - 72px)); }
}

@media (min-width: 1900px) {
  .container { width: min(1600px, calc(100% - 96px)); }
}

@media (min-width: 2000px) {
  .container { width: min(1800px, calc(100% - 120px)); }
}
