:root {
  --ink: #17212b;
  --muted: #5c6873;
  --line: #dbe3ea;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --red: #c91f32;
  --red-dark: #991527;
  --blue: #075c91;
  --teal: #0e8f8f;
  --gold: #c28a25;
  --shadow: 0 18px 50px rgba(15, 35, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 84px;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 234, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 58px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 8px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  font-size: 26px;
  border-radius: 7px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: #364452;
  font-size: 15px;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(201, 31, 50, 0.2);
}

.hero {
  min-height: min(640px, calc(100vh - 156px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 72px) 30px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 30, 45, 0.92), rgba(9, 30, 45, 0.64) 52%, rgba(9, 30, 45, 0.18)),
    url("https://lh3.googleusercontent.com/sitesv/AA5AbUBOmRhuoc3FbZOZQ-PS_6lk-bmFx561-WyMASY4Dka7Z4m3MV4osMET5GHh2wpX9OiM0TOmqrI4zE6ECEWT-yV6q3HhRJTSKx9KpBcpSCyWCL8ieyiDr1vDTNVGETmp8a52c4pQrL4IqjkmRGpfnQqJeUvNrmJsqAnUB1IHLdx2UwizV8WAEpCS=w1280") center / cover;
}

.hero-copy {
  max-width: 780px;
  padding-bottom: clamp(10px, 3vw, 36px);
}

.hero-logo {
  display: block;
  width: min(360px, 82vw);
  margin: 0 0 28px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(5, 20, 32, 0.24);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9de7df;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  display: grid;
  gap: 3px;
  padding: 22px;
  background: rgba(5, 20, 32, 0.42);
}

.metric {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.band,
.section,
.cta-band {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.location-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(28, 50, 68, 0.07);
}

.service-card {
  min-height: 210px;
  padding: 26px;
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--red);
}

.service-card p,
.location-card p,
.site-footer {
  color: var(--muted);
}

.locations {
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.9), rgba(255, 255, 255, 1));
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.location-card {
  display: flex;
  height: 100%;
  overflow: hidden;
}

.location-body {
  display: grid;
  grid-template-rows: auto auto auto minmax(104px, 1fr) auto;
  width: 100%;
  padding: 26px;
}

.location-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.location-top h3 {
  margin: 0;
}

.location-label {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.location-address svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--blue);
}

.location-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  margin-bottom: 20px;
  padding: 0 12px;
  color: var(--blue);
  background: #eef6f6;
  border: 1px solid #d5e8e8;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.location-map svg {
  width: 17px;
  height: 17px;
}

.location-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.location-body li {
  padding: 6px 10px;
  color: #244252;
  background: #eef6f6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
}

.location-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
}

.location-call svg {
  width: 18px;
  height: 18px;
}

.doctors {
  background: #fff;
}

.doctor-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.doctor-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 740;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(153, 21, 39, 0.98), rgba(7, 92, 145, 0.96)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.cta-band .section-kicker {
  color: #ffe0a8;
}

.cta-band h2 {
  max-width: 780px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

.fixed-call-bar {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: 16px;
  left: clamp(14px, 3vw, 34px);
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 227, 234, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 35, 55, 0.2);
  backdrop-filter: blur(14px);
}

.fixed-call-label {
  padding: 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.fixed-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.fixed-call-button.alt {
  background: var(--blue);
}

.fixed-call-button.green {
  background: var(--teal);
}

.fixed-call-button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .intro,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-panel {
    margin-bottom: 0;
  }

  .service-grid,
  .location-grid,
  .doctor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 154px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    padding: 44px 18px 28px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .fixed-call-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 10px;
    padding: 8px;
  }

  .fixed-call-label {
    padding: 0 4px;
    text-align: center;
  }

  .band,
  .section,
  .cta-band {
    padding: 46px 18px;
  }

  .service-grid,
  .location-grid,
  .doctor-list {
    grid-template-columns: 1fr;
  }

}
