:root {
  --navy: #082b5f;
  --navy-2: #0d3f85;
  --blue: #176fe6;
  --blue-soft: #eaf4ff;
  --sky: #f6fbff;
  --gray: #f5f7fa;
  --line: #dce6f2;
  --text: #12233b;
  --muted: #5e7086;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 43, 95, 0.12);
  --shadow-soft: 0 10px 28px rgba(8, 43, 95, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 242, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  width: 230px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand img {
  width: 230px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.main-nav a {
  position: relative;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--blue);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
}

.call-button,
.primary-action,
.secondary-action,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.call-button,
.primary-action {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-soft);
}

.secondary-action,
.card-link {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 6vw 74px;
  background:
    radial-gradient(circle at 82% 24%, rgba(23, 111, 230, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 46%, #eaf4ff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(23, 111, 230, 0.12);
}

.hero::before {
  width: 380px;
  height: 380px;
  right: 7vw;
  top: 94px;
}

.hero::after {
  width: 190px;
  height: 190px;
  right: 24vw;
  bottom: 60px;
  background: rgba(8, 43, 95, 0.06);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.hero-copy,
.page-hero p,
.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.feature-icon,
.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 22px;
}

.doctor-card {
  position: relative;
  overflow: hidden;
  max-width: 390px;
  justify-self: end;
  border: 1px solid rgba(220, 230, 242, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.doctor-card-top {
  padding: 30px 30px 20px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.doctor-avatar {
  width: 168px;
  height: 168px;
  margin: 0 auto 18px;
  border: 8px solid var(--white);
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--blue-soft);
  box-shadow: var(--shadow-soft);
}

.doctor-card h3 {
  max-width: none;
  margin: 0 auto 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
  white-space: nowrap;
}

.doctor-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 16px;
}

.doctor-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.doctor-badges div {
  padding: 18px;
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.doctor-quote {
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  text-align: center;
  font-weight: 800;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: -34px auto 0;
  padding: 0 6vw 62px;
  position: relative;
  z-index: 2;
}

.info-strip div,
.card,
.notice-panel,
.contact-form,
.hours,
.download-list,
.doctor-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-strip div {
  padding: 22px;
}

.info-label {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-band,
.map-band {
  padding: 54px 6vw;
}

.content-band.alt {
  background: var(--sky);
}

.page-hero {
  padding: 30px 6vw 28px;
  background:
    radial-gradient(circle at 85% 22%, rgba(23, 111, 230, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f6fbff 70%, #eaf4ff);
}

.page-hero-inner,
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 16px;
}

.page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

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

.service-grid article,
.card {
  padding: 20px;
}

.service-grid article {
  min-height: 145px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-grid article p,
.card p,
.notice-panel p {
  color: var(--muted);
}

.insurance-grid {
  align-items: start;
}

.clean-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 9px 0;
  color: var(--text);
  border-top: 1px solid var(--line);
}

.clean-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

.doctor-panel {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px;
  align-items: center;
}

.doctor-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--blue-soft);
}

.notice-panel {
  max-width: 860px;
  padding: 22px;
}

.download-list {
  padding: 12px;
}

.download-list a {
  display: block;
  padding: 15px;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.download-list a + a {
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd8e6;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: #fbfdff;
  font: inherit;
}

button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.hours {
  margin-top: 18px;
  padding: 18px;
}

.hours dl {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-top: 1px solid var(--line);
}

.hours dt {
  color: var(--navy);
  font-weight: 900;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.map-band {
  background: var(--sky);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}

.map-frame {
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
}

.site-footer {
  text-align: center;
  flex-shrink: 0;
  display: block;
  padding: 36px 6vw;
  color: var(--muted);
  background: #f8fbff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .main-nav a.active::after {
    bottom: -8px;
  }

  .call-button {
    position: absolute;
    right: 6vw;
    top: 20px;
  }
}

@media (max-width: 850px) {
  .hero {
    padding-top: 56px;
  }

  .hero-inner,
  .info-strip,
  .section-grid,
  .contact-layout,
  .service-grid,
  .cards-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    justify-self: stretch;
    max-width: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .info-strip {
    margin-top: 0;
    padding-top: 28px;
  }

  .map-band {
    padding-top: 42px;
  }

  .map-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 190px;
    height: 50px;
  }

  .brand img {
    width: 190px;
    max-height: 50px;
  }

  .call-button {
    position: static;
  }

  h1 {
    font-size: 42px;
  }

  .doctor-badges {
    grid-template-columns: 1fr;
  }

  .doctor-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .doctor-photo-placeholder {
    margin: 0 auto;
  }
}
