:root {
  --font-main: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ink: #12222e;
  --muted: #526b7d;
  --line: #cde6f5;
  --red: #1479b8;
  --red-dark: #0b5f95;
  --red-deep: #073f63;
  --red-soft: #e8f6ff;
  --red-tint: #f5fbff;
  --sky: #c9ebff;
  --sky-dark: var(--red-dark);
  --sky-deep: var(--red-deep);
  --sky-soft: var(--red-soft);
  --sky-tint: var(--red-tint);
  --teal: var(--red);
  --green: var(--red);
  --amber: var(--teal);
  --blue: var(--sky-deep);
  --bg: #f5fbff;
  --soft: #e8f6ff;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(7, 63, 99, 0.12);
  --shadow-soft: 0 8px 24px rgba(7, 63, 99, 0.075);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; font-size: 15px; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--bg) 460px),
    var(--bg);
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
main { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p, a, button, label, input, select, textarea {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: -44px;
  z-index: 40;
  display: block;
  background: transparent;
}
.header-top-strip {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(90deg, #07466f 0%, #0b74b5 44%, #25a7df 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}
.header-top-inner,
.nav-bar {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding: 5px 0;
}
.top-contact-group {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}
.top-status-pill,
.top-phone-link,
.top-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  min-width: 0;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}
.top-phone-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.top-phone-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.top-phone-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.top-phone-copy strong {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.78;
  text-transform: uppercase;
}
.top-phone-copy em {
  font-style: normal;
  font-weight: 700;
}
.nav-shell {
  position: relative;
  z-index: 45;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 251, 0.96));
  border-bottom: 1px solid rgba(7, 63, 99, 0.08);
  box-shadow: 0 18px 42px rgba(33, 21, 26, 0.1);
  backdrop-filter: blur(20px);
}
.nav-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(20, 121, 184, 0.42), transparent);
  pointer-events: none;
}
.nav-bar {
  display: grid;
  grid-template-columns: minmax(340px, 460px) minmax(520px, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  min-height: 92px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-width: 0;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(20, 121, 184, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  box-shadow: 0 10px 24px rgba(7, 63, 99, 0.06);
}
.brand > span:last-child {
  min-width: 0;
}
.brand-mark, .icon, .doctor-avatar {
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: var(--teal);
}
.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(20, 121, 184, 0.16);
}
.brand-mark.has-image {
  padding: 6px;
  border: 1px solid rgba(20, 121, 184, 0.16);
  background: var(--white);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}
.brand strong, .brand small { display: block; }
.brand strong {
  color: #13090d;
  font-size: 1.24rem;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand small {
  max-width: 260px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 3px;
  width: max-content;
  max-width: 100%;
  justify-self: center;
  flex-wrap: nowrap;
  overflow: visible;
  padding: 6px;
  border: 1px solid rgba(20, 121, 184, 0.1);
  border-radius: 999px;
  background: #edf8ff;
  color: #0d0709;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.primary-nav a {
  position: relative;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
  text-wrap: nowrap;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.primary-nav a:hover {
  color: var(--teal);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(7, 63, 99, 0.08);
}
.primary-nav a.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 10px 22px rgba(7, 63, 99, 0.18);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -8px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0;
  transform: translateX(-50%) scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.primary-nav a.active::after {
  background: var(--red-dark);
}
.primary-nav a:hover, .text-link:hover { color: var(--teal); }
.primary-nav a.active:hover { color: var(--white); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.nav-toggle.is-active {
  border-color: rgba(20, 121, 184, 0.28);
  background: var(--red-soft);
  box-shadow: var(--shadow-soft);
}
.nav-toggle.is-active span {
  background: var(--teal);
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta, .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.58s ease;
  pointer-events: none;
}
.header-cta:hover::after,
.btn:hover::after {
  transform: translateX(130%);
}
.header-cta, .btn.primary { color: var(--white); background: var(--teal); box-shadow: 0 14px 28px rgba(20, 121, 184, 0.2); }
.header-cta {
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2aa7df, var(--red-dark));
  box-shadow: 0 16px 30px rgba(7, 63, 99, 0.24);
  font-size: 0.8rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn.secondary { color: var(--teal); background: var(--white); border: 1px solid rgba(20, 121, 184, 0.18); }
.btn:hover, .header-cta:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.68; cursor: wait; transform: none; }

.hero { position: relative; min-height: 760px; display: grid; align-items: stretch; overflow: hidden; background: var(--red-tint); }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { background-position: center right; background-size: cover; background-repeat: no-repeat; transform: scale(1.035); animation: heroZoom 18s ease-in-out infinite alternate; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(245, 251, 255, 0.99) 0%, rgba(245, 251, 255, 0.94) 38%, rgba(245, 251, 255, 0.56) 67%, rgba(245, 251, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(245, 251, 255, 0) 62%, rgba(245, 251, 255, 0.82) 85%, var(--bg) 100%);
}
.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 76px 0 190px;
}
.hero-content { position: relative; z-index: 1; width: min(760px, 100%); padding: 0; }
.hero-content > * {
  animation: riseIn 0.75s ease both;
}
.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.24s; }
.hero-content > *:nth-child(5) { animation-delay: 0.32s; }
.hero-content > *:nth-child(6) { animation-delay: 0.4s; }
.eyebrow, .section-kicker, .role, .contact-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: 4.55rem; line-height: 1.04; letter-spacing: 0; font-weight: 900; }
.hero-title {
  margin-bottom: 22px;
  text-transform: none;
}
.hero-title span,
.hero-title strong {
  display: block;
}
.hero-title strong {
  color: var(--teal);
}
.hero-doctor-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.hero-doctor-badge span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  background: var(--teal);
}
.hero-doctor-badge strong,
.hero-doctor-badge small {
  display: block;
  line-height: 1.25;
}
.hero-doctor-badge strong { font-size: 0.96rem; }
.hero-doctor-badge small { color: var(--muted); font-size: 0.78rem; }
h2 { margin-bottom: 16px; font-size: 2.58rem; line-height: 1.14; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.04rem; line-height: 1.32; }
.hero-copy { max-width: 600px; color: #385c72; font-size: 1.08rem; line-height: 1.62; }
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
  margin-top: 24px;
}
.hero-service-pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 121, 184, 0.16);
  border-radius: 999px;
  color: var(--sky-deep);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(20, 54, 62, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
}
.hero-service-pills a:hover {
  color: var(--white);
  border-color: transparent;
  background: var(--teal);
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 620px; margin-top: 38px; }
.hero-stats span { padding: 18px; border: 1px solid rgba(20, 121, 184, 0.13); border-radius: 8px; background: rgba(255, 255, 255, 0.88); box-shadow: var(--shadow-soft); }
.hero-stats strong { display: block; margin-bottom: 4px; font-size: 1.55rem; line-height: 1; }
.hero-stats-floating {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 72px;
  width: min(1180px, 92vw);
  max-width: none;
  margin: 0;
  transform: translateX(-50%);
}
.hero-stats-floating span {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}
.hero-care-card {
  position: relative;
  align-self: end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(12, 101, 118, 0.14);
  backdrop-filter: blur(18px);
  animation: cardFloat 5s ease-in-out infinite;
}
.hero-care-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--teal);
}
.hero-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--sky-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-care-card h2 {
  margin: 18px 0 12px;
  font-size: 1.72rem;
}
.hero-care-card p {
  color: var(--muted);
}
.hero-card-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.hero-card-list span {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sky-tint);
}
.hero-card-list strong,
.hero-card-list small {
  display: block;
  line-height: 1.35;
}
.hero-card-list small {
  margin-top: 3px;
  color: var(--muted);
}
.hero-care-card .btn {
  width: 100%;
}

.hero-simple {
  min-height: auto;
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 121, 184, 0.1), transparent 30%),
    linear-gradient(135deg, #f7fcff 0%, #e8f6ff 100%);
  border-bottom: 1px solid rgba(20, 121, 184, 0.1);
}
.hero-simple .hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(46px, 7vw, 82px) 0;
}
.hero-simple .hero-content {
  width: min(640px, 100%);
}
.hero-simple .eyebrow {
  color: var(--teal);
  font-size: 0.82rem;
}
.hero-simple .hero-title {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1.02;
}
.hero-simple .hero-copy {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.04rem;
}
.hero-simple-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.hero-simple-points span {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.hero-simple-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sky-deep);
  font-size: 1rem;
  line-height: 1.25;
}
.hero-visual {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(20, 121, 184, 0.18);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.hero-visual-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.hero-visual-badge strong,
.hero-visual-badge span {
  display: block;
  line-height: 1.35;
}
.hero-visual-badge strong {
  font-size: 1.08rem;
}
.hero-visual-badge span {
  color: var(--muted);
  font-size: 0.86rem;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, 92vw);
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}
.intro-strip div { display: flex; gap: 16px; padding: 28px; background: var(--white); }
.intro-strip p { margin: 0; color: var(--muted); }
.intro-strip strong { color: var(--ink); }
.icon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 8px; }

.page-hero + .intro-strip {
  gap: 14px;
  margin: 8px auto 20px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.page-hero + .intro-strip div {
  align-items: center;
  min-height: 150px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f3fbff);
  box-shadow: var(--shadow-soft);
}
.page-hero + .intro-strip .icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
.page-hero + .intro-strip p {
  font-size: 1rem;
  line-height: 1.55;
}
.page-hero + .intro-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.home-widget-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, 92vw);
  margin: -54px auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.home-widget-row article {
  min-height: 250px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.home-widget-row article:last-child {
  border-right: 0;
}
.home-widget-row article:nth-child(even) {
  background: var(--sky-tint);
}
.home-widget-row h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.home-widget-row p {
  color: var(--muted);
}
.home-widget-row a:not(.btn) {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.widget-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 28px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 900;
}
.widget-cta {
  color: var(--white);
  background: var(--teal) !important;
}
.widget-cta p,
.widget-cta .widget-icon {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.42);
}
.widget-cta h3 {
  color: var(--white);
}

.section { width: min(1180px, 92vw); margin: 0 auto; padding: 86px 0; }
.section > .section-kicker,
.section > h2 {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.section > .section-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.two-column, .appointment-section, .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}
.section-copy, .appointment-copy, .contact-grid article p, .service-grid p, .feature-grid p, .doctor-card p { color: var(--muted); font-size: 0.94rem; }
.section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.home-about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.home-about-media {
  position: relative;
  display: grid;
  gap: 14px;
}
.home-about-media > img,
.home-about-photo-row img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.home-about-media > img {
  height: 430px;
}
.home-about-photo-row {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 14px;
}
.home-about-photo-row img {
  height: 170px;
}
.home-about-copy {
  position: relative;
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.home-about-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--teal);
}
.home-about-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  margin-inline: auto;
}
.home-about-copy p:not(.section-kicker) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.96rem;
}
.home-about-copy .hero-actions {
  justify-content: center;
}
.home-about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.home-about-points span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--red-tint);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.home-about-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sky-deep);
  font-size: 0.96rem;
  line-height: 1.25;
}
.home-image-banner {
  position: relative;
  width: 100%;
  min-height: clamp(540px, 72vh, 760px);
  margin: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.home-image-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 63, 99, 0.94), rgba(7, 63, 99, 0.58) 54%, rgba(7, 63, 99, 0.12)),
    linear-gradient(180deg, rgba(7, 63, 99, 0.1), rgba(7, 63, 99, 0.72));
}
.home-image-banner-copy {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 64px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 112px) 0;
  color: var(--white);
}
.home-image-banner-copy .section-kicker,
.home-image-banner-copy h2 {
  color: var(--white);
}
.home-image-banner-copy h2 {
  margin-bottom: 14px;
  max-width: 920px;
  font-size: clamp(2.55rem, 5.8vw, 5.8rem);
  line-height: 1.04;
}
.home-image-banner-copy p:not(.section-kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.32rem);
}
.home-image-banner-copy .btn {
  margin-top: 14px;
}
.feature-grid, .service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid article, .service-grid article, .doctor-card, .appointment-form, .contact-grid article, .admin-card, .appointment-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.feature-grid article, .service-grid article, .contact-grid article { padding: 28px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.feature-grid article:hover, .service-grid article:hover, .contact-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 121, 184, 0.22);
  box-shadow: var(--shadow);
}
.service-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}
.service-grid .service-icon {
  margin-inline: auto;
}
.service-grid .text-link {
  margin-top: auto;
}
.feature-icon { display: inline-flex; margin-bottom: 22px; color: var(--amber); font-size: 0.86rem; font-weight: 900; }
.services-section, .departments-section, .contact-section { border-top: 1px solid var(--line); }
.service-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(20, 121, 184, 0.16);
}
.service-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon.compact {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin: 0;
  color: var(--teal);
  background: var(--sky-soft);
  box-shadow: none;
}
.service-icon.compact svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.1;
}
.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  padding-top: 34px;
}
.service-detail-main,
.service-detail-aside,
.service-detail-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.service-detail-main {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 48px);
}
.service-detail-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--teal);
}
.service-detail-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  margin-inline: auto;
}
.service-detail-icon svg {
  width: 34px;
  height: 34px;
}
.service-detail-copy {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
  text-align: left;
}
.service-detail-copy p {
  margin-bottom: 0;
  color: var(--muted);
}
.service-detail-aside {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 32px;
  color: var(--white);
  background: var(--red-deep);
  text-align: center;
}
.service-detail-aside .section-kicker,
.service-detail-aside h2 {
  color: var(--white);
}
.service-detail-aside p {
  color: rgba(255, 255, 255, 0.78);
}
.service-detail-aside .btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}
.service-detail-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.service-detail-grid-section {
  padding-top: 18px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-detail-grid article {
  min-height: 300px;
  padding: 30px;
}
.service-detail-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}
.service-detail-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.service-detail-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}
.service-detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.related-services-section {
  padding-top: 30px;
}
.service-facilities-section .facility-card {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}
.departments-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: stretch;
}
.department-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.department-cards article,
.home-hours-panel,
.team-doctor-card,
.team-stats-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.department-cards article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 310px;
  padding: 34px 28px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.department-cards article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.department-cards article > p:first-of-type {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.department-cards article > p:last-of-type {
  color: var(--muted);
}
.department-cards article a {
  color: var(--teal);
  font-weight: 900;
}
.department-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--teal);
}
.home-hours-panel {
  display: grid;
  align-content: start;
  padding: 34px;
  color: var(--white);
  background: var(--sky-deep);
}
.home-hours-panel .section-kicker,
.home-hours-panel h3 {
  color: var(--white);
}
.home-hours-panel p {
  color: rgba(255, 255, 255, 0.76);
}
.home-hours-panel .btn {
  margin-top: 28px;
  background: var(--white);
  color: var(--teal);
  box-shadow: none;
}
.facilities-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  grid-template-areas:
    "copy photos"
    "cards photos";
  gap: 26px 42px;
  align-items: center;
  width: min(1180px, 92vw);
  margin-top: 18px;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 255, 0.82)),
    var(--white);
  box-shadow: 0 24px 70px rgba(7, 63, 99, 0.11);
  overflow: hidden;
}
.facilities-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--teal), #25a7df);
}
.facilities-section::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(20, 121, 184, 0.08);
  pointer-events: none;
}
.facility-copy {
  grid-area: copy;
  display: grid;
  align-content: start;
  justify-items: start;
  padding-right: 0;
  text-align: left;
}
.facility-copy h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1.08;
}
.facility-copy p:not(.section-kicker) {
  max-width: 590px;
  margin-inline: 0;
  color: var(--muted);
  font-size: 1rem;
}
.facility-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 24px;
}
.facility-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(20, 121, 184, 0.16);
  border-radius: 999px;
  color: var(--sky-deep);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.facility-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.facility-grid.compact {
  width: min(820px, 100%);
  margin: 0 auto;
}
.facility-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.9)),
    var(--white);
  box-shadow: 0 14px 32px rgba(7, 63, 99, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.facility-card::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 4px;
  height: auto;
  border-radius: 0 999px 999px 0;
  background: var(--teal);
}
.facility-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 121, 184, 0.28);
  box-shadow: var(--shadow);
}
.facility-card span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--sky-deep));
  box-shadow: 0 12px 28px rgba(7, 63, 99, 0.18);
  font-weight: 900;
}
.facility-card h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.facility-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.facility-photo-stack {
  grid-area: photos;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.78fr);
  grid-template-rows: minmax(390px, 1fr) auto;
  gap: 14px;
  min-height: 430px;
  padding: 14px;
  border: 1px solid rgba(20, 121, 184, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 63, 99, 0.95), rgba(20, 121, 184, 0.72)),
    var(--sky-deep);
  box-shadow: 0 24px 64px rgba(7, 63, 99, 0.16);
  z-index: 1;
}
.facility-photo-stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(7, 63, 99, 0.16);
}
.facility-photo-stack img:first-child {
  grid-column: 1;
  grid-row: 1;
  object-position: center;
}
.facility-photo-stack img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  object-position: center;
}
.facility-photo-stack span {
  grid-column: 1 / -1;
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: start;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 63, 99, 0.9);
  box-shadow: 0 18px 40px rgba(7, 63, 99, 0.24);
  backdrop-filter: blur(12px);
  font-weight: 900;
}
.team-layout { display: grid; grid-template-columns: 1fr; gap: 18px; }
.doctor-card { display: grid; grid-template-columns: 130px 1fr; gap: 28px; align-items: center; padding: 32px; }
.doctor-avatar { width: 120px; height: 120px; border-radius: 50%; font-size: 2rem; }
.doctor-photo {
  width: 130px;
  height: 130px;
  border: 4px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(23, 33, 70, 0.16);
}
.doctor-photo.large {
  width: 190px;
  height: 190px;
  margin: 0 auto 22px;
  border-radius: 8px;
}

.appointment-section { width: 100%; max-width: none; padding-inline: max(4vw, calc((100vw - 1180px) / 2)); background: linear-gradient(180deg, #f2fcff, #eaf9fd); }
.appointment-copy {
  display: grid;
  justify-items: center;
  padding-top: 18px;
  text-align: center;
}
.appointment-copy p {
  max-width: 620px;
  margin-inline: auto;
}
.text-link { color: var(--teal); font-weight: 800; }
.appointment-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 28px; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cddfdd;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(20, 121, 184, 0.14); border-color: var(--teal); }
.full { grid-column: 1 / -1; }
.form-note { min-height: 24px; margin: 0; color: var(--teal); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-grid a { color: var(--ink); font-size: 1.05rem; font-weight: 800; overflow-wrap: anywhere; }
.contact-grid article:nth-child(3) { grid-column: 1 / -1; }
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
}
.about-intro-grid > div,
.about-doctor-card,
.mission-vision-section article,
.values-grid article,
.approach-list article,
.about-services-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.about-intro-grid > div {
  padding: clamp(30px, 5vw, 46px);
  text-align: center;
}
.about-intro-grid p:not(.section-kicker),
.mission-vision-section p:not(.section-kicker),
.values-grid p,
.approach-list p {
  color: var(--muted);
}
.about-doctor-card {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98)),
    var(--white);
}
.about-doctor-card .doctor-avatar,
.about-doctor-card .doctor-photo {
  margin-bottom: 24px;
}
.mission-vision-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.mission-vision-section article {
  position: relative;
  padding: clamp(30px, 5vw, 44px);
  overflow: hidden;
}
.mission-vision-section article > span {
  position: absolute;
  right: 28px;
  top: 22px;
  color: rgba(20, 121, 184, 0.1);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}
.mission-vision-section article:first-child {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98)),
    var(--white);
}
.mission-vision-section article:last-child {
  color: var(--white);
  background: var(--sky-deep);
}
.mission-vision-section article:last-child .section-kicker,
.mission-vision-section article:last-child h2 {
  color: var(--white);
}
.mission-vision-section article:last-child p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}
.mission-vision-section article:last-child > span {
  color: rgba(255, 255, 255, 0.12);
}
.values-section {
  padding-top: 50px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.values-grid article {
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.values-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.care-approach-section {
  display: block;
}
.approach-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.approach-list article {
  display: block;
  min-height: 240px;
  padding: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.approach-list article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.approach-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: var(--teal);
}
.approach-list h3 {
  margin-bottom: 6px;
}
.approach-list p {
  margin-bottom: 0;
  line-height: 1.68;
}
.about-services-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98)),
    var(--white);
}
.about-services-band > div:first-child {
  text-align: center;
}
.about-service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.about-service-tags a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  background: var(--white);
  font-weight: 900;
}

.about-intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 24px;
  align-items: stretch;
}
.about-intro-grid > div {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  text-align: left;
  background:
    linear-gradient(135deg, #ffffff 0%, #f0f9ff 58%, #d8f1ff 100%);
}
.about-intro-grid > div::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(20, 121, 184, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.about-intro-grid > div h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.about-intro-grid > div .btn {
  margin-top: 10px;
}
.about-doctor-card {
  position: relative;
  overflow: hidden;
  align-content: start;
  justify-items: start;
  padding: 22px;
  text-align: left;
  background: var(--white);
}
.about-doctor-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}
.about-doctor-card .doctor-photo {
  width: 100%;
  height: 260px;
  margin-bottom: 22px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}
.about-doctor-card h3 {
  font-size: 1.38rem;
}
.mission-vision-section {
  gap: 18px;
}
.mission-vision-section article {
  min-height: 320px;
  display: grid;
  align-items: end;
  padding: clamp(28px, 4vw, 42px);
  border: 0;
  box-shadow: 0 20px 54px rgba(7, 63, 99, 0.11);
}
.mission-vision-section article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 248, 0.78)),
    radial-gradient(circle at 88% 12%, rgba(20, 121, 184, 0.13), transparent 34%);
  pointer-events: none;
}
.mission-vision-section article > div {
  position: relative;
  z-index: 1;
}
.mission-vision-section article > span {
  z-index: 1;
  right: 24px;
  top: 18px;
  font-size: clamp(4.2rem, 9vw, 7rem);
}
.mission-vision-section article:last-child {
  color: var(--white);
  background:
    linear-gradient(135deg, #083f63 0%, #0b5f95 58%, #25a7df 100%);
}
.mission-vision-section article:last-child::before {
  background:
    linear-gradient(135deg, rgba(7, 63, 99, 0.1), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.2), transparent 34%);
}
.values-section {
  padding-top: 72px;
}
.values-section .section-head {
  margin-bottom: 28px;
}
.values-grid {
  gap: 14px;
}
.values-grid article {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}
.values-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--teal);
}
.values-grid article span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(7, 63, 99, 0.1);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}
.values-grid article h3,
.values-grid article p {
  position: relative;
  z-index: 1;
}
.care-approach-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
}
.care-approach-section > div:first-child {
  position: sticky;
  top: 140px;
}
.care-approach-section > div:first-child h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}
.approach-list {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}
.approach-list article {
  min-height: auto;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 24px;
}
.approach-list span {
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 8px;
}
.approach-list h3 {
  margin-top: 2px;
}
.approach-list p {
  grid-column: 2;
}
.about-services-band {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  padding: clamp(28px, 5vw, 52px);
  border: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, #073f63 0%, #0b5f95 48%, #29a9df 100%);
  box-shadow: 0 24px 64px rgba(7, 63, 99, 0.18);
}
.about-services-band::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border: 40px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.about-services-band > div:first-child {
  position: relative;
  z-index: 1;
  text-align: left;
}
.about-services-band .section-kicker,
.about-services-band h2 {
  color: var(--white);
}
.about-service-tags {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
}
.about-service-tags a {
  min-height: 50px;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.about-service-tags a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}
.contact-page-section {
  padding-top: 40px;
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}
.contact-card-grid article,
.contact-form-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.contact-card-grid article {
  position: relative;
  min-height: 170px;
  padding: 28px;
  overflow: hidden;
}
.contact-card-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--teal);
}
.contact-card-grid a,
.contact-card-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.contact-card-grid p {
  margin: 0;
  color: var(--muted);
}
.map-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}
.contact-form-panel {
  padding: clamp(28px, 4vw, 40px);
}
.contact-form-panel > .section-kicker,
.contact-form-panel > h2,
.contact-form-panel > p:not(.form-note) {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.contact-form-panel > p:not(.section-kicker) {
  color: var(--muted);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.contact-form .form-note {
  grid-column: 1 / -1;
}
.map-panel {
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) auto;
  overflow: hidden;
}
.map-heading {
  padding: 30px 30px 20px;
  text-align: center;
}
.map-heading p:not(.section-kicker) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
}
.map-frame {
  width: 100%;
  min-height: 390px;
  border: 0;
  background: #eaf5f2;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 30px 30px;
}
.site-footer { padding: 0 clamp(18px, 4vw, 56px); color: var(--white); background: #0b2229; }
.site-footer p { margin: 0; }
.site-footer a { display: block; color: rgba(255, 255, 255, 0.78); font-weight: 700; }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 52px 0 36px;
}
.footer-grid h3 {
  color: var(--white);
}
.footer-grid p {
  color: rgba(255, 255, 255, 0.66);
}
.footer-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--white) !important;
}
.footer-brand strong,
.footer-brand small {
  display: block;
}
.footer-brand small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-service-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.footer-service-link .service-icon.compact {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.footer-location-card {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.footer-location-card strong {
  color: var(--white);
  font-size: 0.88rem;
}
.footer-map-frame {
  width: 100%;
  min-height: 190px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}
.footer-location-card a {
  color: var(--sky) !important;
  font-weight: 900;
}
.footer-location-card a:hover {
  color: var(--white) !important;
}
.footer-quick-menu {
  display: none;
}

.quick-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  pointer-events: none;
}
.quick-actions svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.quick-menu-bar {
  display: none;
}
@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }
  .quick-actions {
    right: 0;
    bottom: 0;
    left: 0;
  }
  .quick-menu-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 76px;
    align-items: center;
    height: 78px;
    padding: 8px 8px 7px;
    border-top: 1px solid rgba(18, 48, 68, 0.1);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -14px 34px rgba(18, 48, 68, 0.12);
    backdrop-filter: blur(18px);
    pointer-events: auto;
  }
  .quick-menu-bar a {
    display: grid;
    min-width: 0;
    place-items: center;
    gap: 4px;
    color: #62586e;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }
  .quick-menu-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: #62586e;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }
  .quick-menu-icon svg {
    width: 21px;
    height: 21px;
  }
  .quick-menu-bar a.active {
    color: #202539;
  }
  .quick-menu-bar a.active .quick-menu-icon,
  .quick-menu-bar a:hover .quick-menu-icon {
    color: var(--white);
    background: #202539;
    transform: translateY(-2px);
  }
  .quick-menu-spacer {
    display: block;
  }
}
@media (max-width: 380px) {
  .quick-menu-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr)) 66px;
    padding-inline: 5px;
  }
  .quick-menu-bar a {
    font-size: 0.52rem;
  }
  .quick-menu-icon {
    width: 36px;
    height: 36px;
  }
}
@media print {
  .quick-actions {
    display: none;
  }
}

.page-hero {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 78px 0 52px;
  text-align: center;
}
.page-hero h1 {
  max-width: 880px;
  margin-inline: auto;
  font-size: 4.05rem;
  line-height: 1.04;
}
.page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin-inline: auto;
  color: #52666d;
  font-size: 1.04rem;
  line-height: 1.62;
}
.modern-contact-section,
.modern-appointment-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 34px;
}
.contact-info-panel,
.appointment-info-panel,
.modern-form-panel,
.modern-map-section {
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 63, 99, 0.08);
}
.contact-info-panel,
.appointment-info-panel {
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 255, 0.9)),
    var(--white);
}
.contact-info-panel h2,
.appointment-info-panel h2,
.modern-form-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.12;
}
.contact-info-panel p:not(.section-kicker),
.appointment-info-panel p:not(.section-kicker) {
  color: var(--muted);
}
.contact-method-list,
.appointment-info-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-method-list a,
.contact-method-list div,
.appointment-info-list span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}
.contact-method-list span,
.appointment-info-list strong {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-method-list strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-method-list em,
.appointment-info-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}
.modern-form-panel {
  padding: clamp(26px, 4vw, 38px);
}
.modern-form-panel > .section-kicker,
.modern-form-panel > h2 {
  text-align: left;
}
.modern-form-panel .contact-form,
.modern-form-panel .appointment-form {
  padding: 0;
  margin-top: 22px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.modern-form-panel input,
.modern-form-panel select,
.modern-form-panel textarea {
  min-height: 52px;
  padding: 12px 14px;
}
.modern-form-panel textarea {
  min-height: 124px;
}
.modern-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
}
.modern-map-section .map-heading {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 36px);
  text-align: left;
}
.modern-map-section .map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
}
.services-modern-section {
  padding-top: 34px;
}
.services-modern-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.services-modern-copy,
.service-pathway-card,
.service-modern-card,
.services-support-band,
.services-support-card {
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 63, 99, 0.08);
}
.services-modern-copy {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 246, 255, 0.9)),
    var(--white);
}
.services-modern-copy h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
}
.services-modern-copy p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}
.services-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.services-checklist span {
  padding: 9px 14px;
  border: 1px solid rgba(20, 121, 184, 0.18);
  border-radius: 999px;
  color: var(--sky-deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-pathway-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(160deg, #07466f 0%, #1479b8 100%);
  color: var(--white);
}
.pathway-label {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-pathway-card div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.service-pathway-card strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #073f63;
  background: var(--white);
  font-size: 0.84rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}
.service-pathway-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
}
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-modern-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 310px;
  padding: 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-modern-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 121, 184, 0.24);
  box-shadow: var(--shadow);
}
.service-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 26px rgba(20, 121, 184, 0.18);
}
.service-card-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-modern-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}
.service-modern-card p {
  margin-bottom: 22px;
  color: var(--muted);
}
.service-modern-card .text-link {
  margin-top: auto;
}
.services-support-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 82px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
    var(--white);
}
.services-support-copy {
  display: grid;
  align-content: center;
}
.services-support-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1.1;
}
.services-support-copy p:not(.section-kicker) {
  color: var(--muted);
}
.services-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.services-support-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  align-items: start;
  min-height: 190px;
  padding: 24px;
  text-align: center;
  box-shadow: none;
}
.services-support-card span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--red-soft);
}
.services-support-card svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-support-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.services-support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.section-head-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.section-head-row > div {
  max-width: 780px;
  margin-inline: auto;
}
.centered-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.centered-head p:not(.section-kicker) {
  color: var(--muted);
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 70px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98)),
    var(--white);
  box-shadow: var(--shadow);
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { margin-bottom: 0; color: var(--muted); }
.page-appointment { margin-bottom: 80px; }
.home-feature-section {
  padding-top: 30px;
}
.animated-card {
  position: relative;
  overflow: hidden;
}
.animated-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.animated-card:hover::after {
  transform: scaleX(1);
}
.care-programs-section {
  width: 100%;
  max-width: none;
  padding-inline: max(4vw, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(232, 246, 255, 0.75), rgba(245, 251, 255, 0.92)),
    var(--bg);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.program-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 280px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.program-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--teal);
}
.program-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.program-grid span {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.04rem;
  font-weight: 900;
  background: var(--teal);
  animation: softFloat 3.8s ease-in-out infinite;
}
.program-grid article:nth-child(2) span { animation-delay: 0.2s; }
.program-grid article:nth-child(3) span { animation-delay: 0.4s; }
.program-grid article:nth-child(4) span { animation-delay: 0.6s; }
.program-grid p {
  max-width: 260px;
  margin-inline: auto;
  color: var(--muted);
}
.doctor-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: stretch;
}
.doctor-panel,
.doctor-metrics,
.contact-highlight,
.journey-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.doctor-panel {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
    var(--white);
}
.doctor-avatar.large {
  width: 150px;
  height: 150px;
  font-size: 2.2rem;
  box-shadow: 0 18px 36px rgba(20, 121, 184, 0.18);
  animation: pulseGlow 3.8s ease-in-out infinite;
}
.doctor-metrics {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}
.doctor-metrics span {
  display: grid;
  align-content: center;
  min-height: 120px;
  padding: 24px;
  background: var(--white);
  color: var(--muted);
}
.doctor-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}
.team-reference-section,
.care-focus-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px 260px;
  gap: 22px;
  align-items: stretch;
}
.team-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding-right: clamp(0px, 3vw, 34px);
  text-align: center;
}
.team-copy p:not(.section-kicker) {
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.96rem;
}
.team-doctor-card {
  padding: 34px;
  text-align: center;
}
.team-doctor-card .doctor-avatar,
.team-doctor-card .doctor-photo {
  margin: 0 auto 24px;
}
.team-stats-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}
.team-stats-card span {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 24px;
  background: var(--white);
  color: var(--muted);
}
.team-stats-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.72rem;
  line-height: 1;
}
.care-focus-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  grid-template-areas:
    "copy doctor"
    "cards cards";
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 255, 0.76)),
    var(--white);
  box-shadow: 0 24px 70px rgba(7, 63, 99, 0.11);
}
.care-focus-copy,
.care-focus-grid,
.care-focus-doctor {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}
.care-focus-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(26px, 4vw, 46px);
  background: transparent;
}
.care-focus-copy h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}
.care-focus-copy p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
}
.care-focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.care-focus-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  background: transparent;
}
.care-focus-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(7, 63, 99, 0.07);
}
.care-focus-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--sky-deep));
  font-weight: 900;
}
.care-focus-grid p {
  margin-bottom: 0;
  color: var(--muted);
}
.care-focus-doctor {
  grid-area: doctor;
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--sky-deep), var(--teal));
  color: var(--white);
  box-shadow: 0 18px 46px rgba(7, 63, 99, 0.16);
}
.care-focus-doctor img {
  width: 100%;
  height: 250px;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(7, 63, 99, 0.22);
}
.care-focus-doctor > div {
  padding: 18px 6px 4px;
}
.care-focus-doctor .role,
.care-focus-doctor p {
  color: rgba(255, 255, 255, 0.78);
}
.care-focus-doctor h3 {
  color: var(--white);
  font-size: 1.35rem;
}
.clinic-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
}
.working-hours-card,
.booking-widget {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.working-hours-card {
  padding: clamp(28px, 5vw, 42px);
  color: var(--white);
  background: var(--sky-deep);
}
.working-hours-card .section-kicker,
.working-hours-card h2 {
  color: var(--white);
}
.hours-list {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hours-list span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hours-list em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  text-align: right;
}
.booking-widget {
  padding: clamp(28px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98)),
    var(--white);
  text-align: center;
}
.booking-widget p:not(.section-kicker) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
}
.booking-widget .hero-actions {
  justify-content: center;
}
.health-advice-section {
  border-top: 1px solid var(--line);
}
.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.advice-grid article {
  position: relative;
  min-height: 310px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.advice-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.advice-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--sky-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.advice-grid p {
  color: var(--muted);
}
.advice-grid a {
  color: var(--teal);
  font-weight: 900;
}
.gallery-section {
  border-top: 1px solid var(--line);
}
.testimonials-section {
  border-top: 1px solid var(--line);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(20, 121, 184, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
    var(--white);
  box-shadow: var(--shadow-soft);
}
.testimonial-card > span {
  color: var(--teal);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.78;
}
.testimonial-card p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 1rem;
}
.testimonial-card div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-card strong,
.testimonial-card em {
  display: block;
}
.testimonial-card strong {
  color: var(--ink);
  font-size: 1.02rem;
}
.testimonial-card em {
  color: var(--teal);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  grid-auto-rows: minmax(220px, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.gallery-item.featured {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}
.gallery-item div {
  position: absolute;
  inset: auto 0 0;
  padding: 58px 18px 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(39, 22, 27, 0), rgba(39, 22, 27, 0.88));
}
.gallery-item h3 {
  margin-bottom: 5px;
  color: var(--white);
}
.gallery-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}
.gallery-page-grid {
  grid-auto-rows: minmax(260px, 1fr);
}
.faq-section {
  padding-top: 40px;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
.home-appointment-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
}
.home-appointment-strip h2,
.home-appointment-strip .section-kicker {
  color: var(--white);
}
.home-appointment-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}
.home-appointment-strip .btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.visit-booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 54px;
}
.visit-map-card,
.appointment-panel,
.visit-prep-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.visit-map-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
    var(--white);
  text-align: center;
}
.visit-map-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--teal);
}
.visit-map-card p:not(.section-kicker) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
}
.mini-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.mini-contact-grid a,
.mini-contact-grid div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sky-tint);
}
.mini-contact-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mini-contact-grid strong {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.35;
}
.appointment-panel {
  padding: clamp(32px, 5vw, 46px);
  color: var(--white);
  background: var(--sky-deep);
}
.appointment-panel .section-kicker,
.appointment-panel h2 {
  color: var(--white);
}
.appointment-panel .btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.appointment-steps {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: appointment;
}
.appointment-steps li {
  position: relative;
  padding-left: 48px;
  color: rgba(255, 255, 255, 0.78);
}
.appointment-steps li::before {
  counter-increment: appointment;
  content: counter(appointment);
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  font-weight: 900;
  background: var(--white);
}
.appointment-steps strong,
.appointment-steps span {
  display: block;
}
.appointment-steps strong {
  color: var(--white);
}
.visit-prep-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: clamp(30px, 5vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
    var(--white);
}
.visit-prep-section h2 {
  margin-bottom: 0;
}
.prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.prep-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}
.prep-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--teal);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.journey-grid article {
  position: relative;
  padding: 30px;
}
.journey-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: var(--teal);
}
.journey-grid p,
.contact-highlight p {
  color: var(--muted);
}
.contact-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 44px);
  background: var(--sky-deep);
  color: var(--white);
}
.contact-highlight .section-kicker,
.contact-highlight p {
  color: rgba(255, 255, 255, 0.78);
}
.contact-highlight h2 {
  max-width: 720px;
}
.contact-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}
.contact-highlight .btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.reveal {
  animation: sectionReveal 0.72s ease both;
}
.motion-ready .reveal {
  animation: none;
}
.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.72, 0.22, 1),
    transform 0.72s cubic-bezier(0.2, 0.72, 0.22, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  transition-delay: calc(var(--motion-order, 0) * 58ms);
  will-change: opacity, transform;
}
.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-ready .feature-grid article.motion-item.is-visible:hover,
.motion-ready .service-grid article.motion-item.is-visible:hover,
.motion-ready .department-cards article.motion-item.is-visible:hover,
.motion-ready .facility-card.motion-item.is-visible:hover,
.motion-ready .program-grid article.motion-item.is-visible:hover,
.motion-ready .service-detail-grid article.motion-item.is-visible:hover,
.motion-ready .advice-grid article.motion-item.is-visible:hover,
.motion-ready .contact-card-grid article.motion-item.is-visible:hover,
.motion-ready .legal-item.motion-item.is-visible:hover,
.motion-ready .home-widget-row article.motion-item.is-visible:hover {
  transform: translate3d(0, -8px, 0);
  border-color: rgba(20, 121, 184, 0.24);
  box-shadow: var(--shadow);
}
.service-icon svg,
.department-icon svg,
.hero-service-pills svg {
  transition: transform 0.28s ease;
}
article:hover .service-icon svg,
.hero-service-pills a:hover .service-icon svg,
.about-service-tags a:hover .service-icon svg {
  transform: rotate(-5deg) scale(1.08);
}
.home-widget-row article,
.gallery-item,
.legal-item,
.contact-card-grid article {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.legal-content {
  max-width: 860px;
  color: var(--muted);
}
.legal-content h2 {
  margin-top: 32px;
  font-size: 1.68rem;
  color: var(--ink);
}
.legal-page-section {
  padding-top: 34px;
}
.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.legal-summary-grid article,
.legal-nav-card,
.legal-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.legal-summary-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
}
.legal-summary-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--teal);
}
.legal-summary-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--sky-soft);
  font-weight: 900;
}
.legal-summary-grid p,
.legal-nav-card p,
.legal-item p {
  color: var(--muted);
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}
.legal-nav-card {
  position: sticky;
  top: 132px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98)),
    var(--white);
}
.legal-nav-card h2 {
  font-size: 1.62rem;
}
.legal-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.legal-document {
  display: grid;
  gap: 14px;
}
.legal-item {
  position: relative;
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
}
.legal-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--teal);
}
.legal-item span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--sky-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-item h2 {
  margin-bottom: 10px;
  font-size: 1.62rem;
}
.legal-item p {
  margin-bottom: 0;
}
.legal-item a {
  color: var(--teal);
  font-weight: 900;
}

/* Unified clinic theme using the logo red as the primary brand color. */
.eyebrow,
.section-kicker,
.role,
.contact-label,
.text-link,
.department-cards article a,
.advice-grid a,
.legal-item a {
  color: var(--teal);
}

.hero,
.care-programs-section,
.appointment-section,
.services-hero-band {
  background: var(--red-tint);
}

.header-cta,
.btn.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(20, 121, 184, 0.2);
}
.header-cta {
  background: linear-gradient(135deg, #239bd4, var(--red-dark));
  box-shadow: 0 18px 34px rgba(7, 63, 99, 0.22);
}

.btn.secondary {
  color: var(--teal);
  background: var(--white);
  border-color: rgba(20, 121, 184, 0.2);
}

.service-icon,
.department-icon,
.facility-card span,
.program-grid span,
.approach-list span,
.journey-grid span,
.faq-list summary::after,
.prep-list span::before {
  background: var(--teal);
  color: var(--white);
}

.service-icon.compact,
.legal-summary-grid span,
.legal-item span,
.advice-grid span,
.hero-card-label {
  color: var(--teal);
  background: var(--red-soft);
}

.hero-doctor-badge,
.hero-care-card,
.hero-stats span,
.home-widget-row,
.feature-grid article,
.service-grid article,
.department-cards article,
.facility-card,
.program-grid article,
.team-doctor-card,
.team-stats-card,
.doctor-panel,
.doctor-metrics,
.journey-grid article,
.booking-widget,
.visit-map-card,
.visit-prep-section,
.contact-card-grid article,
.contact-form-panel,
.map-panel,
.legal-summary-grid article,
.legal-nav-card,
.legal-item {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.widget-cta,
.home-hours-panel,
.working-hours-card,
.home-appointment-strip,
.appointment-panel,
.contact-highlight {
  background: var(--sky-deep) !important;
  color: var(--white);
  border-color: transparent;
}

.widget-cta h2,
.widget-cta h3,
.home-hours-panel h2,
.home-hours-panel h3,
.working-hours-card h2,
.home-appointment-strip h2,
.appointment-panel h2,
.contact-highlight h2,
.widget-cta .section-kicker,
.home-hours-panel .section-kicker,
.working-hours-card .section-kicker,
.home-appointment-strip .section-kicker,
.appointment-panel .section-kicker,
.contact-highlight .section-kicker {
  color: var(--white);
}

.widget-cta p,
.home-hours-panel p,
.working-hours-card p,
.home-appointment-strip p,
.appointment-panel p,
.contact-highlight p,
.widget-cta .widget-icon {
  color: rgba(255, 255, 255, 0.78);
}

.hours-list,
.hours-list span {
  border-color: rgba(255, 255, 255, 0.2);
}

.hours-list em {
  color: rgba(255, 255, 255, 0.78);
}

.appointment-steps li::before {
  background: var(--white);
  color: var(--teal);
}

.hero-care-card::before,
.facility-card::before,
.program-grid article::before,
.contact-card-grid article::before,
.visit-map-card::before,
.legal-summary-grid article::before,
.animated-card::after {
  background: var(--teal);
}

.home-widget-row article:nth-child(even),
.hero-card-list span,
.mini-contact-grid a,
.mini-contact-grid div,
.admin-list-item {
  background: var(--sky-tint);
}

.feature-icon,
.brand strong,
.hero-stats strong {
  color: var(--sky-deep);
}

.admin-shell { min-height: 100vh; background: var(--red-tint); }
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px clamp(18px, 4vw, 56px); background: var(--white); border-bottom: 1px solid var(--line); }
.admin-header h1 { margin: 0; font-size: 2.8rem; }
.admin-main { width: min(1180px, 92vw); margin: 0 auto; padding: 34px 0 80px; }
.admin-card { padding: 24px; margin-bottom: 20px; }
.admin-card h2 { font-size: 1.45rem; }
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-list { display: grid; gap: 14px; }
.admin-list-item { padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--red-tint); }
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.danger { color: #9d1c1c; background: #fff4f4; border: 1px solid #ffd2d2; }
.login-box { width: min(460px, 92vw); margin: 12vh auto; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.appointment-row { padding: 18px; margin-bottom: 12px; }
.appointment-row p { margin-bottom: 6px; color: var(--muted); }

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 18px 36px rgba(20, 121, 184, 0.18);
  }
  50% {
    box-shadow: 0 22px 48px rgba(20, 121, 184, 0.28);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1.085) translateX(-10px);
  }
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 1180px) {
  .nav-bar {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr) auto auto;
    gap: 14px;
  }
  .brand {
    gap: 12px;
  }
  .brand-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  .brand strong {
    font-size: 1.18rem;
  }
  .brand small {
    font-size: 0.68rem;
  }
  .primary-nav {
    font-size: 0.74rem;
  }
  .primary-nav a {
    min-height: 40px;
    padding: 9px 9px;
  }
  .header-cta {
    min-height: 50px;
    padding: 14px 18px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1120px) {
  .site-header {
    display: block;
    overflow: visible;
    top: -46px;
  }
  .header-top-inner {
    min-height: 46px;
    gap: 10px;
  }
  .top-status-pill {
    display: none;
  }
  .top-contact-group {
    width: 100%;
    justify-content: space-between;
  }
  .nav-bar {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100% - 32px, 1180px);
    min-height: 82px;
    gap: 12px;
    border-top: 0;
  }
  .brand {
    padding: 8px;
  }
  .nav-toggle {
    display: block;
  }
  .primary-nav {
    display: none;
    position: absolute;
    z-index: 80;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    justify-content: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(20, 121, 184, 0.16);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.98)),
      var(--white);
    box-shadow: 0 24px 54px rgba(7, 63, 99, 0.18);
    transform: none;
  }
  .primary-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }
  .primary-nav a {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    justify-content: center;
    padding: 13px 16px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 121, 184, 0.1);
    box-shadow: none;
    text-align: center;
  }
  .primary-nav a::after {
    display: none;
  }
  .primary-nav a:hover,
  .primary-nav a.active {
    color: var(--white);
    background: var(--teal);
  }
  .site-header, .two-column, .appointment-section, .contact-section, .intro-strip { grid-template-columns: 1fr; }
  .page-hero + .intro-strip {
    width: min(760px, 92vw);
    gap: 12px;
  }
  .page-hero + .intro-strip div {
    min-height: auto;
  }
  .home-about-section {
    grid-template-columns: 1fr;
  }
  .home-about-media {
    order: 2;
  }
  .home-about-copy {
    order: 1;
  }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-shell {
    grid-template-columns: 1fr;
    padding: 68px 0 140px;
  }
  .hero-simple .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 28px;
    padding: 48px 0;
  }
  .hero-simple .hero-title {
    font-size: 2.85rem;
  }
  .hero-care-card {
    width: min(520px, 100%);
    align-self: auto;
  }
  .hero-stats-floating {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: -96px auto 76px;
  }
  .feature-grid, .service-grid, .contact-grid, .contact-card-grid, .admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-widget-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-widget-row article:nth-child(2) {
    border-right: 0;
  }
  .departments-layout,
  .service-detail-layout,
  .facilities-section,
  .team-reference-section,
  .about-intro-grid,
  .care-approach-section,
  .about-services-band {
    grid-template-columns: 1fr;
  }
  .facilities-section {
    grid-template-areas:
      "copy"
      "cards"
      "photos";
    padding: clamp(28px, 5vw, 42px);
  }
  .care-focus-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "doctor"
      "cards";
  }
  .care-focus-copy {
    min-height: auto;
    text-align: center;
    justify-items: center;
  }
  .care-focus-actions {
    justify-content: center;
  }
  .care-focus-doctor {
    min-height: auto;
    grid-template-columns: 260px 1fr;
    align-items: center;
  }
  .care-focus-doctor img {
    height: 220px;
  }
  .facility-copy {
    text-align: center;
    justify-items: center;
  }
  .facility-copy p:not(.section-kicker) {
    margin-inline: auto;
  }
  .care-approach-section > div:first-child {
    position: relative;
    top: auto;
  }
  .about-services-band > div:first-child {
    text-align: center;
  }
  .about-service-tags {
    justify-content: center;
  }
  .facility-photo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 340px auto;
    min-height: auto;
  }
  .map-form-grid {
    grid-template-columns: 1fr;
  }
  .department-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .program-grid,
  .service-detail-grid,
  .advice-grid,
  .testimonial-grid,
  .gallery-grid,
  .legal-summary-grid,
  .values-grid,
  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav-card {
    position: relative;
    top: auto;
  }
  .gallery-item.featured {
    grid-row: span 1;
  }
  .section-head-row, .cta-band { align-items: center; flex-direction: column; text-align: center; }
  .doctor-spotlight,
  .service-detail-layout,
  .journey-grid,
  .clinic-board,
  .visit-booking-section,
  .visit-prep-section,
  .modern-contact-section,
  .modern-appointment-section,
  .modern-map-section,
  .services-modern-head,
  .services-support-band {
    grid-template-columns: 1fr;
  }
  .services-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .modern-map-section .map-heading {
    text-align: center;
  }
  .mini-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .doctor-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .care-focus-grid {
    grid-template-columns: 1fr;
  }
  .contact-highlight {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-appointment-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-bottom {
    display: grid;
  }
}
@media (max-width: 640px) {
  .reveal,
  .motion-ready .motion-item,
  .hero-content > * {
    opacity: 1;
    animation: none;
    transform: none;
    transition-delay: 0s;
  }
  .site-header {
    top: 0;
  }
  .header-top-strip {
    display: none;
  }
  .brand {
    min-width: 0;
    gap: 10px;
    padding: 6px 8px 6px 6px;
  }
  .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 8px;
  }
  .brand-mark.has-image {
    padding: 5px;
  }
  .brand strong {
    font-size: 1rem;
  }
  .brand small { display: none; }
  .header-top-inner {
    width: min(100% - 28px, 1180px);
    justify-content: center;
    min-height: 40px;
    padding: 4px 0;
  }
  .top-contact-group {
    justify-content: center;
  }
  .top-phone-link {
    gap: 7px;
    padding: 4px 10px 4px 4px;
    font-size: 0.82rem;
  }
  .top-email-link {
    display: none;
  }
  .top-phone-icon {
    width: 28px;
    height: 28px;
  }
  .nav-bar {
    width: min(100% - 24px, 1180px);
    grid-template-columns: minmax(0, 1fr) 46px;
    min-height: 74px;
    border-top: 0;
  }
  .primary-nav {
    top: calc(100% + 8px);
    width: 100%;
    max-height: calc(100vh - 92px);
    padding: 10px;
  }
  .primary-nav a {
    min-height: 48px;
    font-size: 0.76rem;
  }
  .nav-toggle {
    width: 46px;
    height: 46px;
  }
  .hero { min-height: auto; }
  .hero-bg { background-position: 62% center; }
  .hero-shell {
    padding: 48px 0 82px;
  }
  .hero-simple .hero-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0 34px;
  }
  .hero-simple .hero-title {
    margin-bottom: 12px;
    max-width: 100%;
    font-size: 1.82rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-simple .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }
  .hero-simple .hero-copy {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.58;
  }
  .hero-simple .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .hero-simple .hero-actions .btn {
    width: 100%;
  }
  .hero-simple-points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }
  .hero-simple-points span {
    min-height: auto;
    padding: 12px 14px;
    font-size: 0.84rem;
  }
  .hero-visual,
  .hero-visual img {
    min-height: 300px;
  }
  .hero-visual-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }
  .hero-content {
    padding: 0;
    text-align: left;
  }
  .hero-doctor-badge {
    align-items: flex-start;
    border-radius: 8px;
    padding: 10px 12px;
  }
  .hero-service-pills a {
    width: 100%;
    justify-content: center;
  }
  .hero-care-card {
    padding: 22px;
  }
  .hero-stats-floating {
    margin: -54px auto 44px;
  }
  .hero-stats, .feature-grid, .service-grid, .service-detail-layout, .appointment-form, .contact-form, .contact-grid, .contact-card-grid, .admin-grid { grid-template-columns: 1fr; }
  .services-modern-grid,
  .services-support-grid {
    grid-template-columns: 1fr;
  }
  .services-modern-copy,
  .service-pathway-card,
  .service-modern-card,
  .services-support-band {
    padding: 24px;
  }
  .services-modern-section {
    padding-top: 22px;
  }
  .services-modern-copy {
    min-height: auto;
    text-align: center;
    justify-items: center;
  }
  .services-modern-copy h2,
  .services-support-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.12;
  }
  .services-modern-copy p:not(.section-kicker),
  .services-support-copy p:not(.section-kicker),
  .service-modern-card p,
  .services-support-card p {
    font-size: 0.9rem;
    line-height: 1.62;
  }
  .services-checklist {
    justify-content: center;
    margin-top: 18px;
  }
  .services-checklist span {
    width: 100%;
    text-align: center;
  }
  .service-pathway-card div {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .service-pathway-card strong {
    width: 42px;
    height: 42px;
  }
  .service-card-icon,
  .services-support-card span {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .service-modern-card {
    min-height: auto;
  }
  .service-modern-card h3,
  .services-support-card h3 {
    font-size: 1.05rem;
    line-height: 1.25;
  }
  .services-support-card {
    grid-template-columns: 1fr;
  }
  .services-support-band {
    gap: 18px;
    margin-bottom: 56px;
  }
  .services-support-copy {
    text-align: center;
  }
  .doctor-spotlight {
    gap: 16px;
  }
  .doctor-panel {
    text-align: center;
    justify-items: center;
  }
  .doctor-panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.12;
  }
  .doctor-panel p {
    font-size: 0.92rem;
    line-height: 1.62;
  }
  .doctor-panel .hero-actions {
    width: 100%;
    justify-content: center;
  }
  .doctor-metrics span {
    min-height: auto;
    padding: 18px;
    text-align: center;
  }
  .doctor-metrics strong {
    font-size: 1.65rem;
  }
  .care-approach-section > div:first-child,
  .visit-prep-section > div:first-child {
    text-align: center;
  }
  .care-approach-section h2,
  .visit-prep-section h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    line-height: 1.14;
  }
  .approach-list article {
    text-align: center;
    justify-items: center;
    padding: 22px;
  }
  .approach-list h3 {
    font-size: 1.05rem;
    line-height: 1.25;
  }
  .approach-list p {
    font-size: 0.9rem;
    line-height: 1.62;
  }
  .prep-list span {
    justify-content: center;
    text-align: center;
  }
  .home-widget-row {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }
  .home-widget-row article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 22px;
  }
  .home-about-media > img {
    height: 320px;
  }
  .home-about-photo-row {
    grid-template-columns: 1fr;
  }
  .home-about-photo-row img {
    height: 240px;
  }
  .home-about-copy {
    padding: 24px;
  }
  .home-image-banner {
    width: 100%;
    min-height: 380px;
    margin: 0;
  }
  .home-image-banner-copy {
    width: min(100% - 28px, 1360px);
    padding: 34px 0;
  }
  .home-image-banner-copy h2 {
    max-width: 100%;
    font-size: 1.78rem;
    line-height: 1.08;
  }
  .home-image-banner-copy p:not(.section-kicker) {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.58;
  }
  .home-image-banner-copy .btn {
    min-height: 44px;
    padding: 10px 16px;
  }
  .home-about-points {
    grid-template-columns: 1fr;
  }
  .about-intro-grid > div,
  .about-doctor-card,
  .mission-vision-section article,
  .values-grid article,
  .about-services-band {
    padding: 24px;
  }
  .mission-vision-section article {
    min-height: 260px;
  }
  .approach-list article {
    grid-template-columns: 1fr;
  }
  .approach-list p {
    grid-column: auto;
  }
  .approach-list span {
    margin-bottom: 16px;
  }
  .department-cards {
    grid-template-columns: 1fr;
  }
  .program-grid,
  .service-detail-grid,
  .advice-grid,
  .facility-grid,
  .testimonial-grid,
  .care-focus-grid,
  .mission-vision-section,
  .gallery-grid,
  .legal-summary-grid,
  .values-grid,
  .approach-list {
    grid-template-columns: 1fr;
  }
  .legal-page-section {
    padding-top: 18px;
  }
  .legal-summary-grid article {
    min-height: auto;
    padding: 24px;
  }
  .legal-nav-card,
  .legal-item {
    padding: 24px;
  }
  .legal-contact-actions .btn {
    width: 100%;
  }
  .facility-photo-stack {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 260px auto;
    padding: 10px;
  }
  .facility-photo-stack img:first-child,
  .facility-photo-stack img:nth-child(2) {
    grid-column: 1;
  }
  .facility-photo-stack img:first-child {
    grid-row: 1;
  }
  .facility-photo-stack img:nth-child(2) {
    grid-row: 2;
  }
  .facility-photo-stack span {
    max-width: none;
    width: 100%;
    justify-content: center;
  }
  .facility-card {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .facilities-section {
    gap: 18px;
    padding: 24px 20px;
  }
  .facility-copy h2 {
    max-width: 100%;
    margin-inline: auto;
    font-size: 1.22rem;
    line-height: 1.18;
  }
  .facility-copy p:not(.section-kicker),
  .facility-card p {
    max-width: 34ch;
    margin-inline: auto;
    font-size: 0.9rem;
    line-height: 1.62;
  }
  .facility-copy {
    text-align: center;
    justify-items: center;
  }
  .facility-highlights {
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  .facility-highlights span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.68rem;
  }
  .facility-copy .btn {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.84rem;
  }
  .care-focus-copy,
  .care-focus-grid article,
  .care-focus-doctor {
    padding: 24px;
  }
  .care-focus-doctor {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .care-focus-doctor img {
    width: min(280px, 100%);
    height: 220px;
  }
  .gallery-item,
  .gallery-item img {
    min-height: 260px;
  }
  .mini-contact-grid,
  .prep-list {
    grid-template-columns: 1fr;
  }
  .department-cards article {
    min-height: auto;
  }
  .intro-strip { margin-top: -18px; }
  .intro-strip div { padding: 22px; }
  .page-hero + .intro-strip {
    margin-top: 0;
  }
  .page-hero + .intro-strip div {
    padding: 20px;
  }
  .section { padding: 58px 0; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-photo {
    width: min(220px, 100%);
    height: 220px;
    border-radius: 8px;
  }
  .site-footer, .admin-header { display: grid; }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links { display: grid; gap: 8px; }
  .footer-quick-menu {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 520px);
    margin: 0 auto 26px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
  }
  .footer-quick-menu a {
    display: grid;
    min-width: 0;
    min-height: 64px;
    place-items: center;
    gap: 6px;
    padding: 8px 4px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
  }
  .footer-quick-menu span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--teal);
    font-size: 0.78rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  }
  .footer-quick-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.72rem; }
  .page-hero { padding-top: 58px; }
  .page-hero h1 {
    max-width: 100%;
    font-size: 2.05rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-care-card h2,
  .legal-content h2,
  .legal-nav-card h2,
  .legal-item h2 {
    font-size: 1.5rem;
  }
  .admin-header h1 {
    font-size: 1.9rem;
  }
  .hero-content { padding-top: 0; padding-bottom: 0; }
  .brand strong { font-size: 0.95rem; }
  .hero-copy, .page-hero p:not(.section-kicker), .section-copy {
    font-size: 0.9rem;
    line-height: 1.68;
  }
  .hero-stats span {
    padding: 16px;
  }
  .doctor-panel {
    grid-template-columns: 1fr;
  }
  .doctor-avatar.large {
    width: 120px;
    height: 120px;
    font-size: 2rem;
  }
  .doctor-metrics {
    grid-template-columns: 1fr;
  }
  .contact-highlight-actions,
  .contact-highlight-actions .btn,
  .appointment-panel .hero-actions,
  .appointment-panel .btn,
  .home-appointment-strip .hero-actions,
  .home-appointment-strip .btn {
    width: 100%;
  }
  .hours-list span {
    display: grid;
    gap: 4px;
  }
  .hours-list em {
    text-align: left;
  }
  .map-panel {
    grid-template-rows: auto 320px auto;
  }
  .map-frame {
    min-height: 320px;
  }
  .map-actions,
  .map-actions .btn {
    width: 100%;
  }
  .modern-contact-section,
  .modern-appointment-section {
    padding-top: 18px;
  }
  .modern-form-panel .contact-form,
  .modern-form-panel .appointment-form {
    grid-template-columns: 1fr;
  }
  .contact-info-panel,
  .appointment-info-panel,
  .modern-form-panel {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .brand-mark { width: 46px; height: 46px; border-radius: 8px; }
  .brand-mark.has-image { padding: 5px; }
  .brand {
    gap: 8px;
  }
  .brand strong {
    font-size: 0.9rem;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .hero-actions .btn, .contact-actions .btn, .section-head-row .btn {
    width: 100%;
  }
  .hero-simple .hero-shell {
    padding-top: 26px;
  }
  .hero-simple .hero-title {
    font-size: 1.62rem;
  }
  .hero-simple .hero-copy {
    font-size: 0.86rem;
  }
  .hero-visual,
  .hero-visual img {
    min-height: 250px;
  }
  .hero-visual-badge {
    padding: 12px 14px;
  }
  .page-hero h1 {
    max-width: 100%;
    font-size: 1.92rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .page-hero {
    padding-top: 42px;
    padding-bottom: 34px;
  }
  .services-modern-copy,
  .service-pathway-card,
  .service-modern-card,
  .services-support-band,
  .services-support-card,
  .doctor-panel,
  .care-approach-section > div:first-child,
  .visit-prep-section {
    padding: 20px;
  }
  .services-modern-copy h2,
  .services-support-copy h2,
  .doctor-panel h2,
  .care-approach-section h2,
  .visit-prep-section h2 {
    max-width: 100%;
    font-size: 1.38rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .service-pathway-card div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .doctor-panel .hero-actions .btn {
    width: 100%;
  }
  .doctor-photo.large {
    width: min(210px, 100%);
    height: 210px;
  }
  .home-image-banner {
    min-height: 350px;
  }
  .home-image-banner-copy h2 {
    font-size: 1.55rem;
    line-height: 1.08;
  }
  .home-image-banner-copy p:not(.section-kicker) {
    font-size: 0.82rem;
  }
  .facility-copy h2 {
    max-width: 24ch;
    font-size: 1.12rem;
  }
  .facility-card h3 {
    font-size: 1rem;
  }
  .cta-band { padding: 24px; }
  .appointment-form { padding: 20px; }
}

@media (max-width: 360px) {
  .header-top-inner,
  .nav-bar,
  .section,
  .hero-shell,
  .hero-stats-floating,
  .home-widget-row {
    width: min(100% - 24px, 1180px);
  }
  h1 { font-size: 2.08rem; }
  .page-hero h1 {
    font-size: 1.72rem;
    line-height: 1.1;
  }
  .hero-simple .hero-title { font-size: 1.95rem; }
  h2 { font-size: 1.55rem; }
  .hero-doctor-badge,
  .hero-care-card,
  .facility-card,
  .services-modern-copy,
  .service-pathway-card,
  .service-modern-card,
  .services-support-band,
  .services-support-card,
  .doctor-panel,
  .approach-list article,
  .visit-prep-section,
  .booking-widget,
  .working-hours-card,
  .appointment-panel,
  .contact-form-panel,
  .map-heading {
    padding: 18px;
  }
  .hero-stats span,
  .feature-grid article,
  .service-grid article,
  .contact-grid article,
  .contact-card-grid article,
  .doctor-metrics span {
    padding: 18px;
  }
  .services-modern-copy h2,
  .services-support-copy h2,
  .doctor-panel h2,
  .care-approach-section h2,
  .visit-prep-section h2 {
    font-size: 1.26rem;
    line-height: 1.16;
  }
  .services-checklist span {
    padding-inline: 10px;
    font-size: 0.68rem;
  }
  .pathway-label,
  .section-kicker,
  .role {
    font-size: 0.66rem;
  }
  .home-image-banner {
    min-height: 330px;
  }
  .home-image-banner-copy h2 {
    font-size: 1.38rem;
  }
  .facility-copy h2 {
    max-width: 22ch;
    font-size: 1.02rem;
  }
  .facility-highlights {
    display: grid;
    grid-template-columns: 1fr;
    width: min(190px, 100%);
    margin-inline: auto;
  }
}
