:root {
  --red: #b40101;
  --red-dark: #870000;
  --red-bright: #d71920;
  --ink: #151515;
  --charcoal: #252525;
  --slate: #5d6268;
  --mist: #f3f4f5;
  --line: #dfe1e3;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(16, 18, 20, .12);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-dark { color: #fff; background: var(--ink); }
.section-gray { background: var(--mist); }
.section-red { color: #fff; background: linear-gradient(130deg, var(--red-dark), var(--red-bright)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 3px; content: ""; background: currentColor; }
.section-dark .eyebrow, .section-red .eyebrow { color: #fff; }
h1, h2, h3 { margin: 0 0 18px; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 20px; }
.lead { max-width: 720px; color: #4f5358; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.section-dark .lead, .section-red .lead { color: rgba(255,255,255,.82); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.topline { color: #fff; background: var(--ink); font-size: .82rem; }
.topline-inner { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.topline a { color: #fff; text-decoration: none; }
.topline strong { color: #ff6868; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20,20,20,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 11px 3px 11px 3px;
  box-shadow: 0 6px 16px rgba(180,1,1,.18);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-size: 1.22rem; letter-spacing: -.04em; }
.brand-text small { margin-top: 7px; color: var(--slate); font-size: .66rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { position: relative; font-size: .92rem; font-weight: 730; text-decoration: none; }
.nav-links a:not(.btn)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ""; background: var(--red); transform: scaleX(0); transition: transform .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.menu-button { display: none; border: 0; color: var(--ink); background: transparent; font-size: 1.4rem; cursor: pointer; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 9px 2px 9px 2px;
  font-weight: 830;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.14); }
.btn-red { color: #fff; background: var(--red); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-light { color: var(--ink); background: #fff; }
.btn-outline { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9,9,9,.98) 0%, rgba(20,20,20,.95) 51%, rgba(38,0,0,.78) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 16px);
}
.hero::after {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(180,1,1,.18);
  border-radius: 50%;
  content: "";
}
.hero-grid { position: relative; z-index: 2; display: grid; min-height: 690px; align-items: center; grid-template-columns: 1.1fr .9fr; gap: 64px; padding: 70px 0; }
.hero h1 span { color: #ff3b3b; }
.hero-copy > p { max-width: 680px; color: rgba(255,255,255,.77); font-size: 1.17rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; }
.hero-proof div { padding-right: 22px; border-right: 1px solid rgba(255,255,255,.22); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof b { display: block; font-size: 1.25rem; }
.hero-proof small { color: rgba(255,255,255,.65); }
.map-card { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07); border-radius: 26px 6px 26px 6px; box-shadow: 0 30px 70px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.map-card::before { position: absolute; top: -10px; left: 24px; width: 90px; height: 5px; content: ""; background: #e31b23; }
.map-card-label { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.map-card-label strong { font-size: 1.1rem; }
.map-card-label small { color: rgba(255,255,255,.65); text-align: right; }

.stats { position: relative; z-index: 4; margin-top: -34px; }
.stats-grid { display: grid; overflow: hidden; border: 1px solid var(--line); background: #fff; border-radius: 18px 4px 18px 4px; box-shadow: var(--shadow); grid-template-columns: repeat(4, 1fr); }
.stat { padding: 28px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; color: var(--red); font-size: 2rem; letter-spacing: -.04em; }
.stat span { color: var(--slate); font-size: .88rem; font-weight: 690; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius) 5px var(--radius) 5px;
  box-shadow: 0 10px 28px rgba(15,17,18,.06);
}
.service-card::after { position: absolute; right: -35px; bottom: -35px; width: 115px; height: 115px; border: 24px solid rgba(180,1,1,.08); border-radius: 50%; content: ""; }
.service-card:hover { border-color: rgba(180,1,1,.35); transform: translateY(-3px); transition: .2s ease; }
.icon { display: grid; width: 52px; height: 52px; margin-bottom: 23px; place-items: center; color: #fff; background: var(--red); border-radius: 14px 3px 14px 3px; font-weight: 900; }
.service-card p { color: var(--slate); }
.service-card a { position: relative; z-index: 2; color: var(--red); font-weight: 800; text-decoration: none; }

.split { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.visual-panel { position: relative; min-height: 470px; overflow: hidden; background: var(--ink); border-radius: 28px 6px 28px 6px; box-shadow: var(--shadow); }
.visual-panel::before { position: absolute; inset: 0; content: ""; background: linear-gradient(135deg, transparent 52%, rgba(180,1,1,.92) 52%); }
.building-lines { position: absolute; inset: 70px 50px 0; border: 2px solid rgba(255,255,255,.28); border-bottom: 0; }
.building-lines::before, .building-lines::after { position: absolute; bottom: 0; width: 26%; height: 68%; border: 2px solid rgba(255,255,255,.22); border-bottom: 0; content: ""; }
.building-lines::before { left: 13%; }
.building-lines::after { right: 13%; height: 84%; }
.visual-copy { position: absolute; right: 28px; bottom: 28px; left: 28px; z-index: 2; padding: 24px; color: #fff; background: rgba(10,10,10,.74); border-left: 5px solid #ed1c24; backdrop-filter: blur(8px); }
.visual-copy b { display: block; margin-bottom: 6px; font-size: 1.35rem; }

.checklist { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 32px; }
.checklist li::before { position: absolute; top: .18em; left: 0; display: grid; width: 21px; height: 21px; place-items: center; color: #fff; background: var(--red); border-radius: 50%; content: "✓"; font-size: .74rem; font-weight: 900; }

.audience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.audience { padding: 25px 22px; border-top: 4px solid var(--red); background: #2b2b2b; border-radius: 3px 3px 14px 14px; }
.audience small { color: rgba(255,255,255,.58); }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card { position: relative; padding: 30px 25px; border: 1px solid var(--line); border-radius: 16px 4px 16px 4px; }
.process-card::before { counter-increment: steps; display: grid; width: 42px; height: 42px; margin-bottom: 20px; place-items: center; color: #fff; background: var(--red); border-radius: 50%; content: counter(steps, decimal-leading-zero); font-weight: 850; }
.process-card p { color: var(--slate); font-size: .92rem; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 42px 48px; background: #fff; border-radius: 22px 5px 22px 5px; box-shadow: var(--shadow); }
.cta-band h2 { max-width: 650px; margin-bottom: 8px; font-size: clamp(1.8rem, 3.4vw, 3rem); }
.cta-band p { margin: 0; color: var(--slate); }

.page-hero { position: relative; overflow: hidden; padding: 100px 0 80px; color: #fff; background: var(--ink); }
.page-hero::after { position: absolute; top: 0; right: 0; width: 40%; height: 100%; content: ""; background: linear-gradient(135deg, transparent 0 45%, rgba(180,1,1,.75) 45%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.page-hero p { max-width: 730px; color: rgba(255,255,255,.72); font-size: 1.17rem; }

.service-row { display: grid; align-items: start; padding: 42px 0; border-bottom: 1px solid var(--line); grid-template-columns: 90px 1fr 1fr; gap: 34px; }
.service-row:last-child { border-bottom: 0; }
.service-number { color: var(--red); font-size: 2rem; font-weight: 900; }
.service-row p, .service-row li { color: var(--slate); }
.service-row ul { margin: 0; padding-left: 20px; }

.map-layout { display: grid; align-items: start; grid-template-columns: 1.15fr .85fr; gap: 44px; }
.state-map-shell { padding: 28px; color: #fff; background: var(--ink); border-radius: 24px 5px 24px 5px; box-shadow: var(--shadow); }
.map-legend { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 18px; color: rgba(255,255,255,.72); font-size: .78rem; }
.map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 10px; height: 10px; background: #ed1c24; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 4px rgba(237,28,36,.2); }
.region-list { display: grid; gap: 14px; }
.region-pill { padding: 17px 18px; border-left: 4px solid var(--red); background: var(--mist); border-radius: 2px 10px 10px 2px; }
.region-pill b { display: block; }
.region-pill small { color: var(--slate); }

.filter-bar { display: flex; align-items: center; gap: 12px; margin: 35px 0 24px; }
.filter-bar input { width: min(100%, 520px); padding: 14px 16px; border: 1px solid #c9cdd1; border-radius: 9px; }
.county-groups { display: grid; gap: 28px; }
.county-group { padding: 28px; border: 1px solid var(--line); border-radius: 16px 4px 16px 4px; }
.county-group h3 { display: flex; align-items: center; gap: 10px; }
.county-group h3::before { width: 10px; height: 10px; content: ""; background: var(--red); border-radius: 50%; }
.county-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); gap: 10px 18px; list-style: none; }
.county-list li { padding: 7px 0; border-bottom: 1px dotted #d6d6d6; font-size: .92rem; }
.county-list li.hidden { display: none; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; }
.contact-card { padding: 30px; color: #fff; background: var(--ink); border-radius: 22px 5px 22px 5px; }
.contact-item { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-item:last-child { border-bottom: 0; }
.contact-item small { display: block; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; }
.contact-item a { color: #fff; font-weight: 800; text-decoration: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 780; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid #cdd0d3; background: #fff; border-radius: 8px; }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { color: var(--slate); font-size: .79rem; }

.notice { padding: 18px 20px; border-left: 4px solid var(--red); background: #fff1f1; border-radius: 3px 8px 8px 3px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 20px 0; cursor: pointer; font-weight: 800; }
.faq details p { max-width: 800px; color: var(--slate); }

.site-footer { padding: 62px 0 24px; color: rgba(255,255,255,.72); background: #0e0e0e; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 50px; }
.footer-brand { color: #fff; font-size: 1.35rem; font-weight: 900; }
.footer-grid h3 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.legal { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.legal p { margin-bottom: 8px; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav-links { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; padding: 18px 20px 24px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 18px 30px rgba(0,0,0,.1); flex-direction: column; gap: 18px; }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero-grid, .split, .map-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 80px; }
  .map-card { max-width: 650px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row > :last-child { grid-column: 2; }
  .county-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 66px 0; }
  .topline-inner { justify-content: center; text-align: center; }
  .topline-inner span:first-child { display: none; }
  .brand-text small { font-size: .58rem; }
  .hero-grid { min-height: auto; gap: 42px; padding: 64px 0 72px; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-proof div { border-right: 0; }
  .stats { margin-top: 14px; }
  .stats-grid, .grid-2, .grid-3, .audience-grid, .process, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .field.full { grid-column: auto; }
  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .service-row > :last-child { grid-column: auto; }
  .county-list { grid-template-columns: repeat(2, 1fr); }
  .cta-band { align-items: flex-start; padding: 30px 24px; flex-direction: column; }
  .page-hero { padding: 75px 0 60px; }
  .map-card { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
