:root {
  --ink: #10202b;
  --muted: #5d6f7a;
  --line: #dce7ea;
  --surface: #ffffff;
  --surface-soft: #f4f8f8;
  --teal: #0e8f86;
  --teal-dark: #087269;
  --blue: #185a8d;
  --mint: #dff6f1;
  --gold: #d8a33d;
  --shadow: 0 22px 55px rgba(22, 44, 58, 0.13);
  --radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface-soft);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface-soft);
}

body.menu-open {
  overflow: hidden;
}

body.inner-page {
  background: #fff;
}

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

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(16, 32, 43, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active,
.inner-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 32, 43, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 254px;
  height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(14, 143, 134, 0.14);
  border-radius: 999px;
  background: rgba(223, 246, 241, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  opacity: 1;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 32, 43, 0.1);
  transform: translateY(-1px);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
}

.header-action,
.site-header.is-scrolled .header-action,
.site-header.menu-active .header-action {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.header-action svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 840px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.logo-hero {
  min-height: clamp(320px, 48vh, 500px);
  padding: clamp(92px, 10vw, 126px) clamp(24px, 7vw, 90px) clamp(32px, 5vw, 56px);
  place-items: center;
  background: #fff;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-hero img {
  position: relative;
  width: min(960px, 90vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(22, 44, 58, 0.08));
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(14, 143, 134, 0.28);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.trust-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1240px, calc(100% - 36px));
  margin: -70px auto 0;
  border-radius: var(--radius);
  background: transparent;
}

.trust-band div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(14, 143, 134, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(14, 143, 134, 0.12), transparent 38%),
    #fff;
  box-shadow: 0 22px 48px rgba(22, 44, 58, 0.12);
}

.trust-band div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0.86;
}

.trust-band p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
}

.trust-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.section,
.split-section,
.appointment-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2,
.team-panel h2,
.appointment-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.team-panel p,
.appointment-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.specialties-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 110px;
}

.specialties-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.specialties-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 5.2vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.specialties-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.specialty-card,
.more-specialties-card {
  min-height: 520px;
  border-radius: 8px;
}

.specialty-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 26px;
  padding: 18px 18px 30px;
  border: 1px solid rgba(14, 143, 134, 0.22);
  background: #fff;
  box-shadow: 0 18px 44px rgba(22, 44, 58, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 143, 134, 0.46);
  box-shadow: 0 28px 62px rgba(22, 44, 58, 0.14);
}

.specialty-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.specialty-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  line-height: 1.08;
}

.specialty-card p {
  margin: 0;
  color: #404657;
  font-size: 1.02rem;
  line-height: 1.62;
}

.more-specialties-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-content: end;
  gap: 16px;
  padding: 34px 34px 106px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 34, 43, 0.08), rgba(7, 34, 43, 0.68)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(145deg, #10202b 0%, #0a6d66 100%);
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(22, 44, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.more-specialties-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.more-specialties-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.more-specialties-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 143, 134, 0.46);
  box-shadow: 0 28px 62px rgba(22, 44, 58, 0.14);
}

.more-specialties-card > * {
  position: relative;
  z-index: 1;
}

.more-kicker {
  justify-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.more-specialties-card strong {
  max-width: 260px;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
}

.more-specialties-card small {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.arrow-bubble {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
}

.arrow-bubble svg,
.specialties-pagination svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialties-extra {
  margin-top: 42px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(16, 33, 47, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(22, 44, 58, 0.08);
}

.extra-page {
  display: grid;
  gap: 28px;
}

.extra-page[hidden],
.specialties-extra[hidden] {
  display: none;
}

.extra-specialty {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 33, 47, 0.08);
}

.extra-specialty:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.extra-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--teal-dark);
  background: #dff6f2;
}

.extra-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.extra-specialty h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.extra-specialty p {
  max-width: 860px;
  margin: 0;
  color: #404657;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.specialties-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.specialties-pagination button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 33, 47, 0.2);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.specialties-pagination button:not(:disabled):last-child {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.specialties-pagination button:disabled {
  color: #aab0ba;
  cursor: not-allowed;
}

.specialties-pagination strong {
  min-width: 62px;
  color: var(--ink);
  text-align: center;
  font-size: 1.12rem;
}

.services-directory-page {
  min-height: 100vh;
  padding: 124px 0 68px;
  background: #fff;
}

.directory-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.directory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.directory-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  line-height: 0.95;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(16, 33, 47, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 850;
}

.directory-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.directory-page[hidden] {
  display: none;
}

.directory-service {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 40px;
  gap: 18px;
  align-items: center;
  min-height: 152px;
  padding: 14px;
  border: 1px solid rgba(16, 33, 47, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 44, 58, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.directory-service > a svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.directory-service:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 143, 134, 0.28);
  box-shadow: 0 22px 48px rgba(22, 44, 58, 0.12);
}

.directory-thumb {
  width: 100%;
  height: 124px;
  object-fit: cover;
  border-radius: 8px;
}

.directory-service h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.15;
}

.directory-service p {
  max-width: 780px;
  margin: 0;
  color: #303b5b;
  font-size: clamp(0.94rem, 1.22vw, 1rem);
  line-height: 1.55;
}

.directory-service > a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 4px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  transition: transform 150ms ease, color 150ms ease, border-color 150ms ease;
}

.directory-service > a:hover {
  transform: translateX(3px);
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

.directory-service > a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.8;
}

.services-pagination {
  margin-top: clamp(44px, 7vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.team-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.team-panel p {
  color: rgba(255, 255, 255, 0.76);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
}

.doctors-list {
  display: grid;
  gap: 14px;
}

.doctors-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(22, 44, 58, 0.06);
}

.doctor-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.doctors-list h3,
.doctors-list p {
  margin: 0;
}

.doctors-list p {
  margin-top: 4px;
  color: var(--muted);
}

.appointment-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  isolation: isolate;
}

.appointment-section::before {
  content: "";
  position: absolute;
  inset: 52px -36px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 143, 134, 0.1), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 10% 12%, rgba(216, 163, 61, 0.18), transparent 28%);
}

.appointment-form {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(14, 143, 134, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.appointment-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.appointment-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.appointment-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(14, 143, 134, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: #263946;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ccdadd;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 116px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 143, 134, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal-dark);
  line-height: 1.5;
  font-weight: 700;
}

.form-status.is-error {
  color: #a73c2a;
}

.contact-section {
  padding-top: 42px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1.22fr);
  gap: 28px;
  align-items: stretch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(14, 143, 134, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 143, 134, 0.08), transparent 44%),
    #fff;
  box-shadow: 0 16px 36px rgba(22, 44, 58, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.contact-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 143, 134, 0.34);
  box-shadow: 0 24px 52px rgba(22, 44, 58, 0.12);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #dff6f1;
}

.contact-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-grid strong,
.contact-grid span,
.contact-grid a {
  display: block;
}

.contact-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.contact-grid span,
.contact-grid a {
  color: var(--muted);
  line-height: 1.6;
}

.contact-grid a:hover {
  color: var(--teal-dark);
}

.map-card {
  position: relative;
  min-height: 382px;
  overflow: hidden;
  border: 1px solid rgba(14, 143, 134, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 64px rgba(22, 44, 58, 0.12);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 382px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: #111827;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2.3vw, 28px);
  min-width: 0;
}

.site-footer strong,
.site-footer span {
  margin: 0;
}

.site-footer strong {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1;
  color: #111827;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(14px, 2.3vw, 28px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: clamp(0.95rem, 1.22vw, 1.12rem);
  font-weight: 650;
  transition: transform 150ms ease, color 150ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--teal-dark);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.menu-active .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.menu-active .site-nav a {
    padding: 13px 12px;
  }

  .trust-band,
  .specialties-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-section,
  .appointment-section {
    grid-template-columns: 1fr;
  }

  .directory-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand,
  .brand-logo {
    min-width: 0;
  }

  .brand {
    width: 192px;
    height: 42px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .hero {
    min-height: 760px;
  }

  .logo-hero {
    min-height: 360px;
    padding: 92px 20px 42px;
  }

  .logo-hero img {
    width: min(620px, 94vw);
  }

  .button {
    width: 100%;
  }

  .trust-band,
  .specialties-showcase,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }

  .trust-band {
    margin-top: -38px;
  }

  .section,
  .specialties-section,
  .split-section,
  .appointment-section {
    width: calc(100% - 32px);
    padding: 70px 0;
  }

  .specialty-card,
  .more-specialties-card {
    min-height: auto;
  }

  .more-specialties-card {
    min-height: 360px;
  }

  .extra-specialty {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    justify-content: start;
    grid-template-columns: 1fr;
  }

  .footer-social {
    display: grid;
    gap: 18px;
  }

  .services-directory-page {
    padding-top: 104px;
  }

  .directory-shell {
    width: calc(100% - 32px);
  }

  .directory-heading {
    display: grid;
    justify-content: start;
  }

  .directory-service {
    grid-template-columns: 1fr 42px;
    gap: 14px;
  }

  .directory-thumb {
    grid-column: 1 / -1;
    height: 178px;
  }

  .directory-service > a {
    grid-column: 2;
    grid-row: 2;
  }
}
