:root {
  --ink: #0b1b2b;
  --ink-2: #132c42;
  --paper: #f5f8fa;
  --white: #ffffff;
  --muted: #607184;
  --line: #d8e1e8;
  --accent: #ff6a2a;
  --accent-dark: #d9470a;
  --aqua: #69d3cf;
  --success: #1d8c67;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(6, 25, 43, 0.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -1;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { left: 1rem; top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.topbar {
  background: var(--accent);
  color: #24120a;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar a { text-decoration: none; white-space: nowrap; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 248, 250, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 27, 43, .1);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  box-shadow: inset -8px -8px 0 rgba(105, 211, 207, .16);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-top: .2rem;
}
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links > a {
  padding: .55rem .72rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
}
.nav-links > a:hover, .nav-links > a:focus-visible { background: var(--white); }
.nav-cta { background: var(--ink) !important; color: var(--white); margin-left: .4rem; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -100px;
  bottom: -250px;
  border: 70px solid rgba(105, 211, 207, .13);
  border-radius: 50%;
}
.hero-grid {
  min-height: 630px;
  padding: 5.2rem 0 4.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
  align-items: center;
  gap: 4rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 820px; font-size: clamp(2.85rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.3rem; }
.hero h1 span { color: var(--accent); }
.hero-lead {
  max-width: 690px;
  margin: 1.45rem 0 0;
  color: #c7d3de;
  font-size: clamp(1.05rem, 2vw, 1.27rem);
}
.hero-services {
  margin: 1.6rem 0 0;
  color: var(--white);
  font-weight: 750;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .78rem 1.18rem;
  border: 0;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #1c0f09; box-shadow: 0 12px 30px rgba(255, 106, 42, .2); }
.button-secondary { color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.24); }
.button-dark { color: var(--white); background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }
.hero-panel {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}
.hero-panel-inner {
  min-height: 338px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 21px;
  color: var(--ink);
  background: var(--white);
}
.status { display: flex; align-items: center; gap: .55rem; font-weight: 800; color: var(--success); font-size: .88rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(29, 140, 103, .12); }
.phone-kicker { display: block; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.phone-large { display: block; margin-top: .45rem; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 950; letter-spacing: -.04em; text-decoration: none; }
.micro-list { display: grid; gap: .65rem; margin: 1.5rem 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .93rem; }
.micro-list li { display: flex; gap: .55rem; }
.micro-list li::before { content: "✓"; color: var(--success); font-weight: 900; }
.section { padding: 5.5rem 0; }
.section-tight { padding: 3.8rem 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-white { background: var(--white); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-head p { max-width: 570px; margin: 0; color: var(--muted); }
.section-dark .section-head p { color: #b5c3cf; }
.kicker { margin: 0 0 .7rem; color: var(--accent-dark); font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card, .district-card, .info-card {
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(11,27,43,.045);
}
.service-card { min-height: 240px; display: flex; flex-direction: column; }
.service-card .number { margin-bottom: 2.3rem; color: var(--accent-dark); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.service-card p, .district-card p, .info-card p { color: var(--muted); }
.text-link { margin-top: auto; text-decoration: none; font-weight: 850; }
.text-link::after { content: " →"; color: var(--accent-dark); }
.district-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.district-card { position: relative; overflow: hidden; padding: 2.2rem; color: var(--white); background: var(--ink-2); border-color: rgba(255,255,255,.08); }
.district-card:nth-child(2) { background: #174c56; }
.district-card .count { display: block; margin-bottom: 2.6rem; color: var(--aqua); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.district-card p { color: #d3dfe7; max-width: 520px; }
.district-card a { display: inline-flex; margin-top: 1rem; font-weight: 850; text-decoration: none; }
.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step { position: relative; padding: 1.7rem 1.7rem 1.7rem 4.8rem; border-top: 1px solid rgba(255,255,255,.2); }
.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 950;
}
.step p { color: #b8c6d2; margin-bottom: 0; }
.trust-band { padding: 1.3rem 0; color: var(--white); background: var(--accent-dark); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.trust-row div { display: flex; gap: .65rem; align-items: center; font-weight: 800; }
.trust-row strong { font-size: 1.2rem; }
.breadcrumb { padding: 1rem 0; color: var(--muted); font-size: .84rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: #a2afba; }
.breadcrumb a { text-decoration: none; }
.subhero {
  padding: 4.4rem 0 4.8rem;
  color: var(--white);
  background: var(--ink);
}
.subhero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 3rem; align-items: end; }
.subhero h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); }
.subhero p { max-width: 720px; color: #c5d2dc; font-size: 1.08rem; }
.quick-call { padding: 1.4rem; border-radius: 20px; color: var(--ink); background: var(--accent); }
.quick-call p { color: #31170b; margin: 0 0 .8rem; font-size: .92rem; }
.quick-call a { display: block; font-size: 1.75rem; font-weight: 950; text-decoration: none; letter-spacing: -.035em; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 3rem; align-items: start; }
.prose h2 { margin-top: 2.6rem; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.prose h3 { margin-top: 1.7rem; }
.prose p { color: #45586b; }
.prose ul { padding-left: 1.2rem; color: #45586b; }
.prose li + li { margin-top: .55rem; }
.sidebar { position: sticky; top: 105px; display: grid; gap: 1rem; }
.sidebar-card { padding: 1.4rem; border-radius: 20px; background: var(--white); border: 1px solid var(--line); }
.sidebar-card h2, .sidebar-card h3 { font-size: 1.2rem; }
.sidebar-card ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.sidebar-card li + li { border-top: 1px solid var(--line); }
.sidebar-card li a { display: flex; justify-content: space-between; padding: .72rem 0; text-decoration: none; font-weight: 750; font-size: .92rem; }
.sidebar-card li a::after { content: "›"; color: var(--accent-dark); }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; padding: 0; list-style: none; }
.service-list li { padding: 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--white); font-weight: 800; }
.service-list li::before { content: "✓"; margin-right: .55rem; color: var(--success); }
.neighborhood-tools { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.2rem; }
.search-wrap { position: relative; flex: 1; max-width: 470px; }
.search-wrap input {
  width: 100%;
  min-height: 52px;
  padding: .75rem 1rem .75rem 2.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
}
.search-wrap svg { position: absolute; left: 1rem; top: 50%; width: 18px; transform: translateY(-50%); color: var(--muted); }
.neighborhood-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .7rem; }
.neighborhood-link {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  text-decoration: none;
  font-weight: 750;
  font-size: .9rem;
}
.neighborhood-link:hover { border-color: var(--accent); }
.neighborhood-link::after { content: "↗"; color: var(--accent-dark); }
.faq { display: grid; gap: .75rem; max-width: 860px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq summary { cursor: pointer; padding: 1.15rem 1.25rem; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent-dark); font-size: 1.3rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 1.25rem 1.2rem; margin: 0; color: var(--muted); }
.related { display: flex; flex-wrap: wrap; gap: .55rem; }
.related a { padding: .55rem .8rem; border-radius: 999px; background: var(--white); border: 1px solid var(--line); text-decoration: none; font-size: .88rem; font-weight: 750; }
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 30px;
  color: var(--white);
  background: var(--ink);
}
.cta-panel::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; top: -90px; border-radius: 50%; background: var(--accent); opacity: .16; }
.cta-panel p { max-width: 680px; color: #c4d0da; }
.site-footer { padding: 3.2rem 0 6.8rem; color: #b7c5d0; background: #06131f; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 2rem; }
.site-footer h2, .site-footer h3 { color: var(--white); font-size: 1.1rem; }
.site-footer p { max-width: 480px; }
.site-footer ul { list-style: none; margin: .8rem 0 0; padding: 0; }
.site-footer li + li { margin-top: .45rem; }
.site-footer a { text-decoration: none; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); color: #8596a4; font-size: .82rem; }
.mobile-contact {
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  padding: .55rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(6,19,31,.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}
.mobile-contact a { min-height: 48px; display: grid; place-items: center; border-radius: 12px; text-decoration: none; font-weight: 900; }
.mobile-contact a:first-child { color: var(--ink); background: var(--accent); }
.mobile-contact a:last-child { color: var(--white); background: #17875f; }
.empty-state { display: none; padding: 1.5rem; border: 1px dashed var(--line); border-radius: 14px; color: var(--muted); }
.not-found { min-height: 72vh; display: grid; place-items: center; text-align: center; }
.not-found strong { display: block; color: var(--accent-dark); font-size: clamp(5rem, 18vw, 11rem); line-height: 1; }
.not-found h1 { font-size: clamp(2rem, 6vw, 4rem); }

@media (max-width: 980px) {
  .hero-grid, .subhero-grid, .content-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; gap: 2.5rem; }
  .hero-panel { max-width: 560px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .neighborhood-grid { grid-template-columns: repeat(3, 1fr); }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  .topbar .container { justify-content: center; }
  .topbar span { display: none; }
  .nav { min-height: 66px; }
  .menu-button { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: .75rem 1rem 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(11,27,43,.1);
  }
  .nav-links.open { display: grid; }
  .nav-links > a { padding: .8rem; }
  .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid { padding: 3.8rem 0 3.5rem; }
  .hero::after { display: none; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.6rem); }
  .hero-panel-inner { min-height: 300px; }
  .section { padding: 4rem 0; }
  .section-head { display: block; }
  .section-head p { margin-top: .8rem; }
  .cards, .district-grid, .steps, .trust-row, .footer-grid, .sidebar { grid-template-columns: 1fr; }
  .trust-row { gap: .55rem; }
  .neighborhood-grid { grid-template-columns: repeat(2, 1fr); }
  .service-list { grid-template-columns: 1fr; }
  .mobile-contact { display: grid; }
}

@media (max-width: 440px) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .brand-mark { width: 38px; height: 38px; }
  .brand { font-size: .91rem; }
  .hero-panel, .hero-panel-inner { border-radius: 20px; }
  .hero-panel-inner { padding: 1.35rem; }
  .cta-row { display: grid; }
  .button { width: 100%; }
  .neighborhood-grid { grid-template-columns: 1fr; }
}

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

/* SEO + conversion additions */
.lead-cards { grid-template-columns: repeat(4, minmax(0,1fr)); }
.lead-cards .info-card { min-height: 190px; }
.priority-links { margin: 1rem 0 2rem; }
.prose ol { padding-left: 1.35rem; color: #45586b; }
.prose ol li + li { margin-top: .55rem; }
@media (max-width: 980px) { .lead-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 760px) { .lead-cards { grid-template-columns: 1fr; } }
