/* =========================================================================
   GRID — statewide-grid-usa design system
   A dashboard-style, card-grid-driven layout. Neutral light background,
   consistent card borders/shadows, color used purposefully in icon badges
   and card headers rather than large gradient washes. --brand / --brand2 /
   --accent (plus derived --*-rgb) are injected per-page by
   views/partials/themeVars.ejs; everything else here is static design
   tokens for this theme.
   ========================================================================= */

:root {
  --ink: #101728;
  --ink-soft: #48526b;
  --muted: #6b7590;
  --bg: #f3f5fa;
  --surface: #ffffff;
  --surface-2: #eef1f8;
  --border: #e3e7f1;
  --border-strong: #d3d9e6;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-xs: 0 1px 2px rgba(16, 23, 40, 0.05);
  --shadow-sm: 0 6px 18px rgba(16, 23, 40, 0.06);
  --shadow-md: 0 14px 34px rgba(16, 23, 40, 0.09);
  --shadow-lg: 0 26px 60px rgba(16, 23, 40, 0.16);
  --container: 1240px;
  --header-h: 0px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gridIcon { width: 1em; height: 1em; display: block; }

/* -------------------------------------------------------------------- */
/* Skip link */
/* -------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden; z-index: 10000; padding: 0.85rem 1.2rem;
  background: var(--ink); color: #fff; text-decoration: none; font-weight: 700;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; top: 0; width: auto; height: auto; overflow: visible; }

/* -------------------------------------------------------------------- */
/* Buttons */
/* -------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em; border: none;
  cursor: pointer; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(var(--brand-rgb), .32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(var(--brand-rgb), .38); }
.btn--ghost { background: #fff; color: var(--brand); border: 1.5px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--brand); }
.btn--block { width: 100%; }

/* -------------------------------------------------------------------- */
/* Section scaffolding */
/* -------------------------------------------------------------------- */
.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--surface-2); }
.sectionHead { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.sectionHead--left { margin: 0 0 30px; text-align: left; max-width: none; }
.sectionHead__eyebrow, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px;
  font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .18);
}
.sectionHead__title {
  margin: 10px 0 12px; font-size: clamp(26px, 3.4vw, 40px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15; color: var(--ink);
}
.sectionHead__desc { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0; }
.sectionHead__meta { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sectionHead--left .sectionHead__meta { justify-content: flex-start; }

/* Stat chips (e.g. "128 cities served") */
.statChip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: 999px; background: #fff; border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 700; color: var(--ink-soft); box-shadow: var(--shadow-xs);
}
.statChip strong { color: var(--ink); font-weight: 800; }
.statChip .gridIcon { color: var(--brand); width: 16px; height: 16px; }

/* -------------------------------------------------------------------- */
/* Reveal-on-scroll utility (used on about / blog-post cards) */
/* -------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------------- */
/* Icon badges + generic card primitives */
/* -------------------------------------------------------------------- */
.iconBadge {
  width: 46px; height: 46px; border-radius: var(--radius-sm); flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(var(--brand-rgb), .16), rgba(var(--brand-rgb), .06));
  color: var(--brand);
}
.iconBadge .gridIcon { width: 22px; height: 22px; }
.iconBadge--lg { width: 56px; height: 56px; border-radius: var(--radius-md); }
.iconBadge--lg .gridIcon { width: 26px; height: 26px; }
.iconBadge--sm { width: 36px; height: 36px; border-radius: 10px; }
.iconBadge--sm .gridIcon { width: 18px; height: 18px; }
.iconBadge--accent {
  background: linear-gradient(145deg, rgba(var(--accent-rgb), .28), rgba(var(--accent-rgb), .1));
  color: color-mix(in srgb, var(--accent) 65%, #402d00 35%);
}
.iconBadge--dark { background: var(--ink); color: #fff; }
.iconBadge--solid { background: var(--brand); color: #fff; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.card { display: block; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(var(--brand-rgb), .28); }

.cardGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.cardGrid--tight { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.cardGrid--wide { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }

.emptyState {
  grid-column: 1 / -1; padding: 30px; text-align: center; color: var(--muted);
  background: var(--surface); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg);
}
.emptyState a { color: var(--brand); font-weight: 700; }

/* -------------------------------------------------------------------- */
/* Topbar */
/* -------------------------------------------------------------------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, .82); font-size: 13px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 24px; }
.topbar__left, .topbar__right { flex: 0 0 auto; display: flex; align-items: center; gap: 14px; }
.topbar__center { flex: 1; text-align: center; min-width: 0; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, .82); font-weight: 600; }
.topbar__link:hover { color: #fff; }
.topbar__linkIcon { width: 14px; height: 14px; color: var(--accent); flex: 0 0 auto; }
.topbar__tagline { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; letter-spacing: .02em; }
.topbar__tagline-text { color: rgba(255, 255, 255, .92); }
.topbar__tagline-sep { margin: 0 10px; color: rgba(255, 255, 255, .3); }
.topbar__tagline-accent { color: var(--accent); font-weight: 800; }
.social, .topbar-social { display: flex; align-items: center; gap: 8px; }
.social__icon, .topbar-social a {
  width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .85); transition: background .18s ease, color .18s ease;
}
.social__icon:hover, .topbar-social a:hover { background: var(--brand); color: #fff; }
.social__svg, .topbar-social__svg { width: 14px; height: 14px; fill: currentColor; }

/* -------------------------------------------------------------------- */
/* Header / primary nav */
/* -------------------------------------------------------------------- */
.header { background: #fff; border-bottom: 1px solid var(--border); position: relative; z-index: 200; }
.header__inner { display: flex; align-items: center; gap: 24px; padding: 14px 24px; }
.header__brand { flex: 0 0 auto; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 44px; width: auto; max-width: 220px; object-fit: contain; }

.header__menuToggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; margin-left: auto;
}
.header__menuToggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.header__nav.is-open ~ .header__menuToggle span,
.header__menuToggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__menuToggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__menuToggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav, .header__nav { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 10px;
  font-weight: 700; font-size: 14.5px; color: var(--ink-soft); background: transparent; border: none; cursor: pointer;
}
.nav__link:hover { color: var(--brand); background: rgba(var(--brand-rgb), .07); }
.chev { font-size: 9px; margin-left: 2px; opacity: .7; }

.nav__dropdown { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 300px; max-width: 360px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 300; max-height: 70vh; overflow-y: auto;
}
.nav__menu--wide { min-width: 340px; }
.nav__dropdown:hover > .nav__menu,
.nav__dropdown:focus-within > .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }

.service-search-wrapper { padding: 4px 4px 8px; position: sticky; top: 0; background: #fff; }
.service-search {
  width: 100%; padding: 9px 12px; border-radius: 9px; border: 1px solid var(--border);
  font-size: 13.5px; font-family: inherit; background: var(--surface-2);
}
.service-search:focus { outline: none; border-color: var(--brand); background: #fff; }

#serviceList, #areaList { display: grid; gap: 2px; }
.service-item, .nav__areaLink {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.service-item:hover, .nav__areaLink:hover { background: rgba(var(--brand-rgb), .08); color: var(--brand); }
.nav__areaIcon { width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; background: rgba(var(--brand-rgb), .1); color: var(--brand); }
.nav__areaIcon svg { width: 14px; height: 14px; }
.nav__areaLabel { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav__empty { padding: 14px 10px; color: var(--muted); font-size: 13.5px; }
.nav__svcIcon { width: 16px; height: 16px; color: var(--brand); flex: 0 0 auto; }

.header__queries { flex: 0 0 auto; }
.header__queriesBox {
  display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px;
  background: var(--brand); color: #fff; box-shadow: 0 10px 22px rgba(var(--brand-rgb), .3);
}
.header__queriesIcon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .18); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.header__queriesIcon svg { width: 16px; height: 16px; }
.header__queriesText { display: flex; flex-direction: column; line-height: 1.25; }
.header__queriesLabel { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }
.header__queriesPhone { font-size: 14.5px; font-weight: 800; }

/* -------------------------------------------------------------------- */
/* Breadcrumbs */
/* -------------------------------------------------------------------- */
.siteBreadcrumbs { background: var(--surface-2); border-bottom: 1px solid var(--border); }
.siteBreadcrumbs__wrap { padding: 12px 24px; }
.siteBreadcrumbs__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.siteBreadcrumbs__item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.siteBreadcrumbs__link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); padding: 4px 8px; border-radius: 7px; }
.siteBreadcrumbs__link:hover { background: #fff; color: var(--brand); }
.siteBreadcrumbs__homeIcon { width: 13px; height: 13px; }
.siteBreadcrumbs__current { color: var(--ink); font-weight: 800; padding: 4px 8px; }
.siteBreadcrumbs__text { color: var(--ink-soft); padding: 4px 8px; }
.siteBreadcrumbs__divider { width: 14px; height: 14px; color: var(--muted); display: inline-flex; }
.siteBreadcrumbs__divider svg { width: 100%; height: 100%; }
.siteBreadcrumbs--banner { background: transparent; border: none; }
.siteBreadcrumbs--banner .siteBreadcrumbs__wrap { padding: 0; }
.siteBreadcrumbs--banner .siteBreadcrumbs__link,
.siteBreadcrumbs--banner .siteBreadcrumbs__text { color: rgba(255, 255, 255, .78); }
.siteBreadcrumbs--banner .siteBreadcrumbs__current { color: #fff; }
.siteBreadcrumbs--banner .siteBreadcrumbs__link:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.siteBreadcrumbs--banner .siteBreadcrumbs__divider { color: rgba(255, 255, 255, .45); }

/* -------------------------------------------------------------------- */
/* Page banner (legal / services-index / blog pages) */
/* -------------------------------------------------------------------- */
.pageBanner {
  background: linear-gradient(120deg, var(--ink) 0%, color-mix(in srgb, var(--brand) 55%, var(--ink) 45%) 100%);
  padding: 46px 0 30px; color: #fff;
}
.pageBanner__title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; }

/* -------------------------------------------------------------------- */
/* Hero */
/* -------------------------------------------------------------------- */
.hero { position: relative; background: linear-gradient(120deg, #0c1324 0%, color-mix(in srgb, var(--brand2) 60%, #0c1324 40%) 100%); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 10, 20, .55) 0%, rgba(6, 10, 20, .78) 100%); z-index: 1; }
.hero__inner { position: relative; z-index: 2; padding: 56px 24px 60px; }
.hero__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); gap: 30px 44px; align-items: start; }
.hero__col--copy { color: #fff; min-width: 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px;
}
.hero__badge .gridIcon { width: 14px; height: 14px; color: var(--accent); }
.hero__title, .heroTitleMain, .heroTitle2 { margin: 0 0 16px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.heroTitleMain__primary, .heroTitle2__main { display: block; font-size: clamp(30px, 4.4vw, 50px); }
.heroTitleStateLine { display: block; margin-top: 8px; font-size: clamp(17px, 2vw, 22px); font-weight: 700; color: var(--accent); }
.hero__subtitle { max-width: 620px; font-size: 17px; line-height: 1.75; color: rgba(255, 255, 255, .86); margin: 0 0 26px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.note { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .72); font-weight: 600; }

/* Trust badges row inside hero */
.trustGrid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.trustCard {
  flex: 1 1 200px; display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}
.trustCard__icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(var(--accent-rgb), .22); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.trustCard__icon .gridIcon { width: 18px; height: 18px; }
.trustCard__title { font-size: 13.5px; font-weight: 800; color: #fff; }
.trustCard__text { font-size: 12px; color: rgba(255, 255, 255, .7); line-height: 1.4; }

/* Hero lead-capture card */
.hero__col--form { min-width: 0; }
.heroLeadForm {
  background: #fff; border-radius: var(--radius-lg); padding: 22px 20px 20px; box-shadow: var(--shadow-lg); color: var(--ink);
}
.heroLeadForm__title { margin: 0 0 6px; font-size: 17px; font-weight: 800; color: var(--ink); text-align: center; text-transform: uppercase; letter-spacing: .05em; }
.heroLeadForm__sub { margin: 0 0 16px; font-size: 13px; line-height: 1.45; color: var(--muted); text-align: center; }
.heroLeadForm__field { margin-bottom: 12px; }
.heroLeadForm__field label { display: block; font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-bottom: 5px; }
.heroLeadForm__field .req { color: #dc2626; font-weight: 800; }
.heroLeadForm__field .opt { color: var(--muted); font-weight: 600; font-size: 11px; }
.heroLeadForm input, .heroLeadForm textarea {
  width: 100%; box-sizing: border-box; border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 10px 12px; font-size: 14px; font-family: inherit; background: #fff; color: var(--ink);
}
.heroLeadForm textarea { min-height: 84px; resize: vertical; line-height: 1.45; }
.heroLeadForm input:focus, .heroLeadForm textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb), .15); }
.heroLeadForm__submit { width: 100%; margin-top: 4px; border: none; cursor: pointer; }
.heroLeadForm__msg { margin: 12px 0 0; font-size: 13px; line-height: 1.4; min-height: 1.4em; }
.heroLeadForm__msg--ok { color: #15803d; font-weight: 800; }
.heroLeadForm__msg--err { color: #b91c1c; font-weight: 600; }
.heroLeadForm__noscript { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.contactDock__card { margin-top: 0; }

/* -------------------------------------------------------------------- */
/* Metrics strip */
/* -------------------------------------------------------------------- */
.metricsStrip { background: var(--ink); color: #fff; padding: 26px 0; }
.metricsStrip__copy { padding-bottom: 14px; }
.metricsStrip__text { text-align: center; font-size: 14.5px; color: rgba(255, 255, 255, .78); max-width: 760px; margin: 0 auto; }
.metricsStrip__inner { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.metricCard {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
}
a.metricCard--link:hover { background: rgba(255, 255, 255, .1); border-color: rgba(var(--accent-rgb), .5); }
.metricCard__icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(var(--accent-rgb), .2); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.metricCard__icon .gridIcon { width: 20px; height: 20px; }
.metricCard__num { font-size: 26px; font-weight: 800; line-height: 1; color: #fff; }
.metricSuffix { font-size: 16px; font-weight: 700; margin-left: 1px; color: var(--accent); }
.metricCard__label { font-size: 12px; color: rgba(255, 255, 255, .68); font-weight: 600; margin-top: 2px; }

/* -------------------------------------------------------------------- */
/* Service long description */
/* -------------------------------------------------------------------- */
.serviceLongDesc { padding: 44px 0 10px; }
.serviceLongDesc__wrap {
  max-width: 1080px; margin: 0 auto; padding: 30px 32px; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.serviceLongDesc__head { margin-bottom: 16px; }
.serviceLongDesc__title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.serviceLongDesc__underline { width: 56px; height: 4px; border-radius: 999px; margin-top: 14px; background: var(--brand); }
.serviceLongDesc__text { font-size: 15.5px; line-height: 1.9; color: var(--ink-soft); }
.serviceLongDesc__text:not(:last-child) { margin-bottom: 14px; }

/* -------------------------------------------------------------------- */
/* Services grid (icon-led cards) */
/* -------------------------------------------------------------------- */
.svcSection { padding: 60px 0; }
.svcSection__head { text-align: center; margin-bottom: 34px; }
.svcSection__title { margin: 0; font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.svcSection__underline { width: 56px; height: 4px; border-radius: 999px; margin: 14px auto 0; background: var(--brand); }
.svcSection__sub { max-width: 680px; margin: 14px auto 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }

.svcCards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.svcCard2 {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.svcCard2:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(var(--brand-rgb), .28); }
.svcCard2__icon { margin-bottom: 14px; }
.svcCard2__title { margin: 0 0 10px; font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.35; }
.svcCard2__text { margin: 0 0 14px; font-size: 14px; line-height: 1.7; color: var(--ink-soft); flex: 1; }
.svcCard2__bullets { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 7px; }
.svcCard2__bullets li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.svcCard2__bullets li::before { content: ""; width: 6px; height: 6px; margin-top: 6px; border-radius: 50%; background: var(--brand); flex: 0 0 auto; }
.svcCard2__btn {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 700;
  font-size: 13.5px; text-align: center;
}
.svcCard2__btn:hover { filter: brightness(1.06); }
.svcEmpty { grid-column: 1 / -1; padding: 30px; text-align: center; color: var(--muted); background: var(--surface); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); }
.svcEmpty a { color: var(--brand); font-weight: 700; }

.faqAcc { cursor: pointer; }
.faqAcc__q { list-style: none; cursor: pointer; position: relative; padding-right: 26px; }
.faqAcc__q::-webkit-details-marker { display: none; }
.faqAcc__q::after {
  content: "+"; position: absolute; right: 0; top: -2px; font-size: 20px; font-weight: 700; color: var(--brand);
}
.faqAcc[open] .faqAcc__q::after { content: "\2212"; }
.faqAcc__a { margin-top: 12px; }

.serviceIntroRich { margin: 26px auto 0; max-width: 960px; display: grid; gap: 16px; }
.serviceIntroRich__body {
  padding: 22px 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-xs);
}
.serviceIntroRich__body p { margin: 0; font-size: 15.5px; line-height: 1.85; color: var(--ink-soft); }
.serviceIntroRich__body p + p { margin-top: 12px; }
.serviceIntroRich__points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.serviceIntroRich__point {
  padding: 18px 16px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-xs); color: var(--ink-soft); font-size: 13.5px; line-height: 1.6; text-align: center;
}
.serviceIntroRich__point strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 14.5px; font-weight: 800; }

/* -------------------------------------------------------------------- */
/* Cities / ZIP grid cards (state hub + home + city drill-down) */
/* -------------------------------------------------------------------- */
.citiesGridSection { padding: 60px 0; }
a.cityCard {
  display: flex; align-items: center; gap: 13px; padding: 16px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); color: var(--ink);
}
a.cityCard:hover { border-color: rgba(var(--brand-rgb), .32); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cityCard__icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(var(--brand-rgb), .1); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.cityCard__icon .gridIcon { width: 20px; height: 20px; }
.cityCard__body { flex: 1; min-width: 0; }
.cityCard__name { font-weight: 800; font-size: 14.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cityCard__meta { font-size: 11.5px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.cityCard__arrow { flex: 0 0 auto; color: var(--muted); width: 16px; height: 16px; }
a.cityCard:hover .cityCard__arrow { color: var(--brand); }

/* -------------------------------------------------------------------- */
/* Location intro */
/* -------------------------------------------------------------------- */
.locationIntro { padding: 54px 0 10px; }
.locationIntro__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.locationIntro__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.locationIntro__underline { width: 56px; height: 4px; border-radius: 999px; margin: 14px auto 0; background: var(--brand); }
.locationIntro__sub { margin-top: 14px; font-size: 15.5px; color: var(--ink-soft); }
.locationIntro__text { margin-top: 22px; text-align: left; }
.locationIntro__text p { font-size: 15.5px; line-height: 1.9; color: var(--ink-soft); margin: 0 0 14px; }

/* -------------------------------------------------------------------- */
/* Map / contact embed */
/* -------------------------------------------------------------------- */
.citiesSection { padding: 54px 0; }
.citiesSection__head { text-align: center; margin-bottom: 28px; }
.citiesSection__title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.citiesSection__underline { width: 56px; height: 4px; border-radius: 999px; margin: 14px auto 0; background: var(--brand); }
.map-frame-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); background: #fff; }
.map-frame-card__iframe { display: block; }

/* -------------------------------------------------------------------- */
/* AEO answers */
/* -------------------------------------------------------------------- */
.aeoAnswers { padding: 54px 0; }
.aeoAnswers__head { max-width: 880px; margin: 0 auto 22px; }
.aeoAnswers__head h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: 12px; }
.aeoAnswers__definition, .aeoAnswers p { font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 10px; }
.aeoHowTo { max-width: 880px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 26px; box-shadow: var(--shadow-xs); }
.aeoHowTo h2 { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.aeoHowTo__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: aeoStep; }
.aeoHowTo__steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; counter-increment: aeoStep; }
.aeoHowTo__steps li::before {
  content: counter(aeoStep); flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--brand);
  color: #fff; font-weight: 800; font-size: 12.5px; display: inline-flex; align-items: center; justify-content: center;
}
.aeoHowTo__steps strong { display: block; color: var(--ink); font-weight: 800; margin-bottom: 2px; }

/* -------------------------------------------------------------------- */
/* Geo / EEAT sections */
/* -------------------------------------------------------------------- */
.geoSection { padding: 54px 0; }
.geoSection--alt { background: var(--surface-2); }
.geoSection__head { max-width: 760px; margin: 0 auto 30px; text-align: center; }
.geoSection__title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.geoSection__lead { margin-top: 10px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

.geoMetaGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 10px; }
.geoMetaCard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-xs); }
.geoMetaCard h3 { font-size: 14px; font-weight: 800; color: var(--brand); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.geoMetaCard p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 6px; }
.geoMetaCard ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.geoMetaCard a { color: var(--brand); font-weight: 700; }

.geoTeamGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.geoTeamCard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-align: center; box-shadow: var(--shadow-xs); }
.geoTeamCard__photo, .geoTeamCard__avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 14px; object-fit: cover;
  display: flex; align-items: center; justify-content: center; background: rgba(var(--brand-rgb), .12); color: var(--brand);
  font-weight: 800; font-size: 20px;
}
.geoTeamCard__name { font-size: 15.5px; font-weight: 800; color: var(--ink); }
.geoTeamCard__role { font-size: 12.5px; color: var(--brand); font-weight: 700; margin-top: 3px; }
.geoTeamCard__creds { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.geoTeamCard__bio { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-top: 10px; }

.geoQuoteGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.geoQuote { margin: 0; background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius-md); padding: 20px 22px; box-shadow: var(--shadow-xs); }
.geoQuote__mark { width: 26px; height: 26px; color: rgba(var(--accent-rgb), .55); margin-bottom: 8px; }
.geoQuote p { font-size: 14.5px; line-height: 1.7; color: var(--ink); margin: 0 0 12px; }
.geoFactCard .iconBadge { margin-bottom: 10px; }
.geoQuote footer { font-size: 12.5px; color: var(--muted); }
.geoQuote cite { font-style: normal; font-weight: 800; color: var(--ink-soft); }

.geoFactGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.geoFactCard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-xs); }
.geoFactCard h3 { font-size: 14.5px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.geoFactCard p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.geoFactCard__src a { color: var(--brand); font-weight: 700; font-size: 12.5px; }

.geoSourceList { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.geoSourceList a { color: var(--brand); font-weight: 700; }

/* -------------------------------------------------------------------- */
/* About page */
/* -------------------------------------------------------------------- */
.aboutSection { padding: 60px 0; }
.aboutWrap { display: grid; gap: 30px; }
.aboutIntro { max-width: 820px; margin: 0 auto; text-align: center; }
.aboutIntro__title { margin: 0 0 14px; font-size: clamp(26px, 3.8vw, 40px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.aboutIntro__text { margin: 0 auto; max-width: 720px; font-size: 16px; line-height: 1.85; color: var(--ink-soft); }

.aboutGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.aboutCard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-xs); }
.aboutCard__icon { margin-bottom: 12px; }
.aboutCard__title { margin: 0 0 10px; font-size: 17px; font-weight: 800; color: var(--ink); }
.aboutCard__text { margin: 0; font-size: 14px; line-height: 1.75; color: var(--ink-soft); }

.aboutValues { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-xs); }
.aboutValues__title { margin: 0 0 16px; font-size: 20px; font-weight: 800; color: var(--ink); }
.aboutValues__list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 0; padding: 0; }
.aboutValues__list li { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: var(--radius-sm); background: var(--surface-2); font-weight: 700; font-size: 13.5px; color: var(--ink-soft); }
.aboutValues__list li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); flex: 0 0 auto; }
.aboutValues__list a { color: var(--brand); }

.aboutCTA__box {
  border-radius: var(--radius-xl); padding: 32px; background: linear-gradient(120deg, var(--ink), color-mix(in srgb, var(--brand2) 55%, var(--ink) 45%));
  color: #fff; box-shadow: var(--shadow-lg);
}
.aboutCTA__title { margin: 0 0 10px; font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -.02em; }
.aboutCTA__text { margin: 0 0 20px; max-width: 720px; font-size: 15.5px; line-height: 1.8; color: rgba(255, 255, 255, .84); }
.aboutCTA__btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
  border-radius: 999px; background: #fff; color: var(--ink); font-weight: 800; box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}
.aboutCTA__btn:hover { transform: translateY(-2px); }

/* -------------------------------------------------------------------- */
/* Legal pages */
/* -------------------------------------------------------------------- */
.legalSection { padding: 50px 0 70px; }
.legalSection__inner { max-width: 860px; margin: 0 auto; }
.legalCard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px 38px; box-shadow: var(--shadow-sm); }
.legalCard h2 { margin: 26px 0 10px; font-size: 19px; font-weight: 800; color: var(--ink); }
.legalCard h2:first-of-type { margin-top: 0; }
.legalCard p { font-size: 15px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 6px; }
.legalCard a { color: var(--brand); font-weight: 700; }

/* -------------------------------------------------------------------- */
/* Footer */
/* -------------------------------------------------------------------- */
.main-footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 34px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-col h3 { color: #fff; font-size: 14.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col p { font-size: 13.5px; line-height: 1.7; color: rgba(255, 255, 255, .62); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255, 255, 255, .68); display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li svg { width: 15px; height: 15px; fill: none; stroke: var(--accent); stroke-width: 1.8; flex: 0 0 auto; }
.footer-col__exploreAll { color: var(--accent) !important; font-weight: 700; }
.footer-logo { height: 34px; width: auto; margin-bottom: 14px; opacity: .92; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 20px 0 26px; font-size: 12.5px; color: rgba(255, 255, 255, .5); }
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #fff; }
.mb-20 { margin-bottom: 14px; }

/* -------------------------------------------------------------------- */
/* Cookie banner / FAB / scroll nav (behavioral, restyled to tokens) */
/* -------------------------------------------------------------------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 14px; padding: 14px 22px; background: var(--ink); color: #f4f6fb; font-size: 13.5px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .2);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner a { color: var(--accent); font-weight: 700; }
.cookie-banner__btn { padding: 9px 20px; border: none; border-radius: 999px; background: var(--brand); color: #fff; font-weight: 700; cursor: pointer; }

.fabCall { position: fixed; right: 20px; bottom: 20px; z-index: 500; }
.fab-call {
  width: 58px; height: 58px; border-radius: 50%; background: var(--brand); color: #fff; display: inline-flex;
  align-items: center; justify-content: center; box-shadow: 0 14px 30px rgba(var(--brand-rgb), .4); animation: fabPulse 2.4s infinite;
}
.fab-call__icon { width: 24px; height: 24px; }
@keyframes fabPulse { 0%, 100% { box-shadow: 0 14px 30px rgba(var(--brand-rgb), .4); } 50% { box-shadow: 0 14px 30px rgba(var(--brand-rgb), .16), 0 0 0 10px rgba(var(--brand-rgb), .12); } }
.fabCall__popup {
  position: absolute; right: 0; bottom: 70px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.fabCall:hover .fabCall__popup, .fabCall:focus-within .fabCall__popup { opacity: 1; visibility: visible; transform: translateY(0); }
.fabCall__popupCta { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 18px; box-shadow: var(--shadow-lg); text-align: right; white-space: nowrap; }
.fabCall__ctaTop { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; color: var(--muted); }
.fabCall__ctaBottom { display: block; font-size: 15px; font-weight: 800; color: var(--brand); }

.scrollNav { position: fixed; left: 20px; bottom: 20px; z-index: 450; display: flex; align-items: center; }
.scrollNav[hidden] { display: none; }
.scrollNav__track { position: relative; width: 52px; height: 52px; }
.scrollNav__ring { position: absolute; inset: 0; }
.scrollNav__ring-bg { stroke: rgba(16, 23, 40, .1); }
.scrollNav__ring-progress { stroke: var(--brand); transition: stroke-dashoffset .1s linear; }
.scrollNav__btn {
  position: absolute; inset: 5px; border-radius: 50%; border: none; background: #fff; color: var(--brand);
  box-shadow: var(--shadow-md); cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.scrollNav__icon { width: 18px; height: 18px; position: absolute; transition: opacity .18s ease, transform .18s ease; }
.scrollNav__icon--down { opacity: 1; }
.scrollNav__icon--up { opacity: 0; transform: scale(.7); }
.scrollNav[data-direction="up"] .scrollNav__icon--down { opacity: 0; transform: scale(.7); }
.scrollNav[data-direction="up"] .scrollNav__icon--up { opacity: 1; transform: scale(1); }
.scrollNav__hint { display: none; }
.scrollNav__btn--pulse { animation: scrollNavPulse .5s ease; }
@keyframes scrollNavPulse { 50% { transform: scale(.9); } }

/* Custom embed wrapper (site.customScriptHome / customScriptContact) */
.custom-embed { padding: 20px 0; }

/* The breadcrumb bar used to stick to the top of the viewport at a
   JS-measured offset (stickyChromeSync.ejs), but .header itself is
   `position: relative` — not sticky — so it scrolls away normally while
   the breadcrumb stayed pinned at that now-meaningless offset, making it
   appear to float partway down the page mid-scroll instead of either
   staying flush at the top or scrolling away with everything else. Static
   positioning (the default) keeps it in normal document flow. */
