:root {
  --red: #c4161c;
  --red-dark: #8f1015;
  --blue: #2378cf;
  --blue-dark: #173f73;
  --ink: #151a24;
  --muted: #5b6472;
  --line: #d9e1ea;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --warm: #f7efe5;
  --green: #0f7f68;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(21, 26, 36, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 234, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  font-weight: 800;
  color: var(--blue-dark);
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 10px 24px rgba(196, 22, 28, 0.25);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  background: white;
  color: var(--blue-dark);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline {
  color: var(--blue-dark);
  border-color: var(--line);
  background: white;
}

.btn-small {
  min-height: 40px;
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(76vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(35, 120, 207, 0.35), transparent 34rem),
    linear-gradient(135deg, #09111f 0%, #16223a 54%, #f4f7fb 54%, #ffffff 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 22, 0.86) 0%, rgba(7, 12, 22, 0.72) 42%, rgba(7, 12, 22, 0.08) 100%);
  pointer-events: none;
}

.hero-art {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  top: clamp(5rem, 12vh, 7rem);
  z-index: 0;
  width: min(42vw, 560px);
  height: min(32vh, 260px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.25));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
}

.hero-actions,
.inline-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
  color: white;
}

.proof-strip div {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.02rem;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

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

.section-heading p:not(.eyebrow),
.split-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 720px;
}

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

.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

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

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--red);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.split-layout.inverse {
  background: var(--soft);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 1rem;
  background: white;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.area-links a {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  color: var(--blue-dark);
  background: white;
}

.metric-list,
.checklist {
  display: grid;
  gap: 0.8rem;
}

.metric-list div,
.checklist div {
  border-left: 4px solid var(--red);
  background: white;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(21, 26, 36, 0.08);
}

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

.metric-list span {
  color: var(--muted);
}

.checklist div {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-weight: 800;
}

.checklist span {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
  margin-top: 0.28rem;
  border-radius: 999px;
  background: var(--green);
}

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

.steps div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--soft);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--blue-dark);
  color: white;
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin: clamp(1rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-dark), #0f203d 58%, var(--red-dark));
  color: white;
}

.cta-band .eyebrow {
  color: #9bd2ff;
}

.cta-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}

.tracking-note {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  overflow-wrap: anywhere;
}

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

.review-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.google-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 4rem);
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.google-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.google-card h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.google-card p:not(.eyebrow) {
  color: var(--muted);
  margin: 0.35rem 0 0;
}

.google-business-link {
  gap: 0.55rem;
  white-space: nowrap;
}

.google-business-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.contact-list a,
.contact-list span {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal {
  max-width: 920px;
}

.site-footer {
  background: #101722;
  color: white;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin: 0.35rem 0;
}

.footer-google {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
}

.footer-google img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-footer a:hover {
  color: white;
}

.booking-fallback {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

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

.booking-fallback span {
  color: var(--muted);
}

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

  .site-nav,
  .header-actions {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .card-grid,
  .steps,
  .proof-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .cta-band,
  .google-proof {
    grid-template-columns: 1fr;
  }

  .google-proof {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .phone-link {
    display: none;
  }

  .site-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    row-gap: 0.55rem;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .header-actions {
    width: 100%;
  }

  .hero {
    min-height: 72vh;
    padding-top: 4.5rem;
    background:
      radial-gradient(circle at 80% 70%, rgba(35, 120, 207, 0.3), transparent 18rem),
      linear-gradient(160deg, #09111f 0%, #16223a 70%, #ffffff 70%);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 12, 22, 0.86) 0%, rgba(7, 12, 22, 0.78) 48%, rgba(7, 12, 22, 0.18) 100%);
  }

  .hero-art {
    right: 1rem;
    top: min(43vh, 22rem);
    bottom: auto;
    width: min(82vw, 320px);
    height: min(18vh, 150px);
    opacity: 0.3;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.1rem);
  }

  .card-grid,
  .steps,
  .proof-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .btn {
    width: 100%;
  }

  .google-card {
    align-items: flex-start;
  }

  .google-business-link {
    white-space: normal;
  }
}
