:root {
  --ink: #17212b;
  --muted: #546371;
  --line: #dbe5ea;
  --blue: #1155cc;
  --blue-dark: #0b3278;
  --blue-soft: #eaf2ff;
  --red: #c7332f;
  --red-dark: #9f1f1b;
  --white: #ffffff;
  --soft: #f6faf9;
  --shadow: 0 20px 60px rgba(20, 42, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: var(--white);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(219, 229, 234, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 240px;
  text-decoration: none;
}

.brand-logo {
  width: clamp(190px, 19vw, 300px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

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

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 85, 204, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--white);
  background: var(--blue);
}

.header-actions,
.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.header-actions {
  justify-content: flex-end;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  min-width: min(430px, 100%);
}

.header-call,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.header-call,
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(199, 51, 47, 0.22);
}

.header-call-alt,
.btn-agent {
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(11, 50, 120, 0.18);
}

.btn-secondary {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid #b9d3ff;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 80px) 36px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94) 52%, rgba(234, 242, 255, 0.84)),
    linear-gradient(26deg, rgba(199, 51, 47, 0.12), transparent 48%);
}

.hero-copy,
.section-heading,
.insurance > div:first-child,
.language-band > div:first-child,
.purpose > div:first-child,
.appointment-copy,
.review-cta > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px;
  border: 2px solid rgba(17, 85, 204, 0.2);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
}

h2 {
  max-width: 840px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.12;
}

.hero-lede,
.section-heading p,
.insurance p,
.language-band p,
.purpose p,
.appointment-copy p,
.review-cta p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  margin: 28px 0;
}

.hero-offers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 24px;
}

.hero-offers article {
  border: 2px solid rgba(199, 51, 47, 0.18);
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 32px rgba(199, 51, 47, 0.16);
}

.hero-offers article:nth-child(2),
.hero-offers article:nth-child(4) {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.hero-offers span,
.hero-offers strong,
.hero-offers small {
  display: block;
}

.hero-offers span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offers strong {
  margin: 3px 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
}

.hero-offers small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(500px, 54vh);
  min-height: 360px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(12, 32, 40, 0.18);
}

.hero-ai-pills,
.hero-booking-pills {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 12px;
  width: 100%;
  padding: 18px 18px 0;
  background: transparent;
}

.hero-booking-pills {
  padding: 12px 18px 18px;
}

.booking-pill {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(12, 32, 40, 0.24);
}

.booking-pill-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.booking-pill-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.ai-pill-red {
  color: var(--red);
  background: var(--white);
  border: 2px solid rgba(199, 51, 47, 0.28);
}

.ai-pill-blue {
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid rgba(17, 85, 204, 0.28);
}

.booking-pill span,
.booking-pill strong {
  display: block;
}

.booking-pill span {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-pill strong {
  font-size: 19px;
  line-height: 1.05;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  color: var(--muted);
}

.urgent-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: clamp(16px, 2vw, 21px);
  text-align: center;
}

.urgent-strip a {
  color: var(--white);
  font-weight: 900;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 80px);
}

.locations {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.location-card {
  border: 1px solid var(--line);
  border-top: 8px solid var(--blue);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-primary {
  border-top-color: var(--red);
}

.location-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.location-topline span {
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-topline strong {
  color: var(--blue-dark);
  font-size: 24px;
}

.location-card p {
  color: var(--muted);
  font-size: 18px;
}

dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

dl div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: var(--soft);
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.specials {
  background:
    linear-gradient(135deg, rgba(234, 242, 255, 0.95), rgba(255, 255, 255, 1) 52%),
    var(--white);
}

.promo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fast-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.fast-care-grid span {
  border: 1px solid rgba(17, 85, 204, 0.18);
  border-radius: 8px;
  padding: 13px;
  color: var(--blue-dark);
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.promo-row article {
  border: 2px solid rgba(199, 51, 47, 0.2);
  border-radius: 8px;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.promo-row article:nth-child(3) {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.promo-row article:nth-child(4) {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.promo-row span,
.promo-row strong,
.promo-row small {
  display: block;
}

.promo-row span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-row strong {
  margin: 8px 0;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1;
}

.promo-row small {
  color: rgba(255, 255, 255, 0.8);
}

.service-band {
  color: var(--white);
  background: var(--ink);
}

.service-band .eyebrow,
.appointment .eyebrow {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

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

.visual-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-card div {
  padding: 20px;
}

.visual-card p {
  color: rgba(255, 255, 255, 0.78);
}

.price-tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.insurance,
.purpose,
.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.insurance {
  background: var(--soft);
}

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

.insurance-list span,
.language-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  font-weight: 900;
}

.language-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  color: var(--ink);
  background: var(--white);
}

.language-band p {
  color: var(--muted);
}

.language-grid span {
  border-color: rgba(17, 85, 204, 0.18);
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.language-grid span:nth-child(even) {
  border-color: rgba(199, 51, 47, 0.18);
  color: var(--red);
  background: #fff5f5;
}

.map-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}

.map-strip h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}

.map-actions {
  display: grid;
  gap: 10px;
}

.map-actions .btn {
  width: 100%;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.appointment {
  color: var(--white);
  background: var(--blue-dark);
}

.appointment-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.lead-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-cta {
  background: var(--white);
}

.review-cta > div {
  max-width: 840px;
}

.review-cta h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}

.review-page {
  background: var(--blue-soft);
}

.review-portal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  min-height: calc(100vh - 76px);
}

.portal-card,
.review-form-card,
.review-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-card form,
.review-form-card form {
  display: grid;
  gap: 14px;
}

.review-form-card[hidden],
.review-output[hidden] {
  display: none;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.rating-row label {
  place-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--blue-soft);
}

textarea {
  width: 100%;
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.review-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.review-list article {
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: 8px;
  padding: 14px;
  background: var(--soft);
}

.review-list strong,
.review-list span {
  display: block;
}

.lead-box form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

.form-status {
  min-height: 42px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 80px) 90px;
  color: rgba(255, 255, 255, 0.78);
  background: #101820;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.footer-map {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.fine-print {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0;
  font-size: 13px;
}

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-call a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(12, 20, 26, 0.22);
  font-weight: 900;
  text-decoration: none;
}

.mobile-call a:nth-child(2) {
  background: var(--blue);
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .location-grid,
  .promo-row,
  .fast-care-grid,
  .insurance,
  .language-band,
  .map-strip,
  .purpose,
  .appointment,
  .review-portal {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    height: 340px;
    min-height: 0;
  }

  .hero-booking-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-ai-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-pill {
    min-height: 94px;
  }

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

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

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(56vw, 230px);
    max-height: 58px;
  }

  .header-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-call {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 13px;
  }

  .desktop-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 42px;
  }

  .eyebrow {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-actions .btn,
  .card-actions .btn {
    width: 100%;
  }

  .urgent-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .service-cards,
  .hero-offers,
  .insurance-list,
  .language-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    display: grid;
  }
}
