/* ==========================================================================
   Chesterfield Asphalt Paving: "fresh stripe"
   Hot-mix black ground, thermoplastic-white markings, work-zone orange paint.
   Surfaces separate by painted lines and seams, never by shadow.
   ========================================================================== */

:root {
  --ink: #0b0b0c;          /* hot-mix black */
  --ink-2: #121315;
  --asphalt: #1b1c1f;      /* cured asphalt */
  --asphalt-2: #26272b;
  --seam: #34363b;         /* hairline seam on black */
  --stripe: #f3f1ea;       /* thermoplastic white */
  --stripe-dim: #c9c6bc;
  --on-dark-2: #a9a69d;    /* secondary text on black, 7.8:1 */
  --paint: #fd5e00;        /* work-zone orange (logo) */
  --paint-hot: #ff7a26;
  --paint-deep: #a83e00;   /* orange text on light grounds, 5.3:1 on concrete */
  --concrete: #eeebe3;     /* curb / sidewalk light ground */
  --concrete-2: #e2ded3;
  --curb: #d3cec1;         /* seam on light */
  --text: #151618;
  --text-2: #55534d;       /* 6.9:1 on concrete */
  --water: #3d5566;

  --f-display: "Archivo", "Arial Narrow", sans-serif;
  --f-body: "Overpass", "Helvetica Neue", Arial, sans-serif;
  --f-data: "Overpass Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --lane: 1240px;
  --gutter: clamp(18px, 4.2vw, 40px);
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;
  --line-w: 3px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  color-scheme: dark light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--ink);
  color: var(--stripe);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--paint); color: var(--ink); }
:focus-visible { outline: 3px solid var(--paint); outline-offset: 3px; }
html { scrollbar-color: var(--asphalt-2) var(--ink); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--asphalt-2); border: 3px solid var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--paint); color: var(--ink); padding: 10px 16px; font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 12px; }

/* ---------- type ---------- */
.display, h1, h2 {
  font-family: var(--f-display);
  font-stretch: 68%;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 9.4vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 6.2vw, 3.9rem); }
h3 {
  font-family: var(--f-display);
  font-stretch: 112%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.02rem;
  line-height: 1.25;
  margin: 0 0 var(--s3);
  text-wrap: balance;
}
.label {
  font-family: var(--f-display);
  font-stretch: 118%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  line-height: 1.2;
}
.data { font-family: var(--f-data); font-weight: 500; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.lede { font-size: clamp(1.12rem, 2.4vw, 1.3rem); line-height: 1.55; color: var(--stripe-dim); max-width: 60ch; }
.prose { max-width: 68ch; }
.prose p, .prose li { color: inherit; }
.prose h2 { font-size: clamp(1.8rem, 4.6vw, 2.8rem); margin: var(--s8) 0 var(--s4); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--s6); }
.prose ul { list-style: none; margin: 0 0 1.2em; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 14px; height: 3px; background: var(--paint); }

/* ---------- layout ---------- */
.lane { width: 100%; max-width: var(--lane); margin: 0 auto; padding: 0 var(--gutter); }
.band { position: relative; padding: clamp(64px, 10vw, 128px) 0; }
.band--tight { padding: clamp(44px, 7vw, 80px) 0; }
.band--black { background: var(--ink); color: var(--stripe); }
.band--asphalt { background: var(--asphalt); color: var(--stripe); }
.band--concrete { background: var(--concrete); color: var(--text); }
.band--concrete .lede { color: var(--text-2); }
.band--concrete a:not(.btn) { color: var(--text); }
.band--paint { background: var(--paint); color: var(--ink); }
.split { display: grid; gap: clamp(32px, 6vw, 80px); }
@media (min-width: 960px) {
  .split { grid-template-columns: 7fr 5fr; align-items: start; }
  .split--even { grid-template-columns: 1fr 1fr; }
  .split--rev { grid-template-columns: 5fr 7fr; }
}
.section-head { display: grid; gap: var(--s4); margin-bottom: clamp(32px, 5vw, 56px); max-width: 820px; }
.section-head p { margin: 0; }

/* Painted markings ------------------------------------------------------ */
.edge-line { height: var(--line-w); background: var(--stripe); border: 0; margin: 0; }
.center-dash {
  height: 4px; border: 0; margin: 0;
  background: repeating-linear-gradient(90deg, var(--paint) 0 46px, transparent 46px 78px);
}
.center-dash--white { background: repeating-linear-gradient(90deg, var(--stripe) 0 46px, transparent 46px 78px); }
.crosswalk {
  height: 56px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 34px, transparent 34px 66px);
  opacity: .96;
}
.band--concrete .crosswalk { background: repeating-linear-gradient(90deg, var(--ink) 0 34px, transparent 34px 66px); }

/* ---------- buttons & links ---------- */
.btn {
  --bh: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--bh); padding: 0 22px;
  font-family: var(--f-display); font-stretch: 112%; font-weight: 900; text-transform: uppercase;
  letter-spacing: .05em; font-size: .92rem; line-height: 1;
  text-decoration: none; border: 0; border-radius: 2px; cursor: pointer;
  transition: background-color .18s var(--ease-out), color .18s var(--ease-out), transform .18s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn svg { flex: none; }
.btn--paint { background: var(--paint); color: var(--ink); }
.btn--paint:hover { background: var(--paint-hot); }
.btn--paint:active { transform: translateY(1px); }
.btn--line { background: transparent; color: var(--stripe); box-shadow: inset 0 0 0 var(--line-w) var(--stripe); }
.btn--line:hover { background: var(--stripe); color: var(--ink); }
.band--concrete .btn--line, .on-light .btn--line { color: var(--ink); box-shadow: inset 0 0 0 var(--line-w) var(--ink); }
.band--concrete .btn--line:hover, .on-light .btn--line:hover { background: var(--ink); color: var(--stripe); }
.btn--ink { background: var(--ink); color: var(--stripe); }
.btn--ink:hover { background: var(--asphalt-2); }
.btn--lg { --bh: 60px; font-size: 1rem; padding: 0 28px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 599px) { .btn-row--stack .btn { width: 100%; } }

.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-stretch: 112%; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .86rem;
  text-decoration: none; color: inherit; padding: 6px 0;
}
.arrow-link .arw { width: 28px; height: 14px; color: var(--paint); transition: transform .22s var(--ease-out); }
.arrow-link:hover .arw { transform: translateX(5px); }
.band--concrete .arrow-link .arw { color: var(--paint-deep); }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11, 11, 12, .96); border-bottom: 1px solid var(--seam); }
@supports (backdrop-filter: blur(1px)) { .site-header { background: rgba(11, 11, 12, .9); backdrop-filter: saturate(1.2) blur(10px); } }
.site-header .lane { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.brand { display: block; flex: none; line-height: 0; }
.brand img { width: 176px; height: auto; }
@media (min-width: 1100px) { .brand img { width: 214px; } .site-header .lane { min-height: 80px; } }
.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav__links { display: none; list-style: none; }
.nav__links a {
  display: block; padding: 10px 12px; text-decoration: none;
  font-family: var(--f-display); font-stretch: 112%; font-weight: 800; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; color: var(--stripe-dim);
  background-image: linear-gradient(var(--paint), var(--paint)); background-size: 0 3px; background-position: 12px 100%; background-repeat: no-repeat;
  transition: color .15s, background-size .25s var(--ease-out);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--stripe); background-size: calc(100% - 24px) 3px; }
.nav__call { --bh: 44px; padding: 0 14px; font-size: .8rem; }
.nav__call .t-long { display: none; }
@media (min-width: 420px) { .nav__call .t-long { display: inline; } .nav__call .t-short { display: none; } }
.nav__toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; background: transparent; border: 0; color: var(--stripe); cursor: pointer; }
.nav__toggle svg { width: 26px; height: 26px; }
@media (min-width: 1100px) {
  .nav__links { display: flex; align-items: center; gap: 2px; }
  .nav__toggle { display: none; }
  .nav__call { --bh: 48px; margin-left: 10px; }
}
.drawer { position: fixed; inset: 0; z-index: 60; background: var(--ink); display: none; flex-direction: column; padding: 18px var(--gutter) 32px; overflow-y: auto; }
.drawer[data-open="true"] { display: flex; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; min-height: 50px; }
.drawer ul { list-style: none; margin: 28px 0; display: grid; }
.drawer li + li { border-top: 1px solid var(--seam); }
.drawer li a { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; text-decoration: none;
  font-family: var(--f-display); font-stretch: 70%; font-weight: 900; font-size: 2rem; text-transform: uppercase; line-height: 1; }
.drawer li a .arw { width: 30px; color: var(--paint); }
.drawer .btn { width: 100%; margin-top: 10px; }

/* ---------- breadcrumbs ---------- */
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 10px; margin: 0 0 var(--s5); font-size: .86rem; color: var(--on-dark-2); }
.crumbs li { display: inline-flex; align-items: center; gap: 10px; }
.crumbs li + li::before { content: ""; width: 12px; height: 2px; background: var(--paint); }
.crumbs a { text-decoration: none; color: var(--stripe-dim); }
.crumbs a:hover { color: var(--stripe); text-decoration: underline; }
.crumbs [aria-current] { color: var(--stripe); }

/* ---------- offer strip ---------- */
.offer {
  display: inline-flex; align-items: stretch; flex-wrap: wrap;
  font-family: var(--f-display); font-stretch: 118%; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: .88rem; line-height: 1;
}
.offer span { display: inline-flex; align-items: center; padding: 11px 14px; }
.offer .o1 { background: var(--stripe); color: var(--ink); }
.offer .o2 { background: var(--paint); color: var(--ink); }

/* ---------- hero (home) ---------- */
.hero { position: relative; padding: clamp(34px, 6vw, 72px) 0 clamp(40px, 7vw, 96px); overflow: hidden; isolation: isolate; }
/* Decorative ground: a phone gets the headline as its LCP, wider screens get
   the hot-mix frame behind the scrim. */
.hero__ground { position: absolute; inset: 0; z-index: -1; background-position: center; background-size: cover; background-repeat: no-repeat; opacity: .5; filter: grayscale(.2) contrast(1.04); }
@media (min-width: 700px) { .hero__ground { background-image: var(--hero-md); } }
@media (min-width: 1200px) { .hero__ground { background-image: var(--hero-lg); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(90deg, rgba(11,11,12,.95) 0%, rgba(11,11,12,.8) 46%, rgba(11,11,12,.42) 100%), linear-gradient(0deg, var(--ink) 0%, rgba(11,11,12,0) 34%); }
.hero__grid { display: grid; gap: clamp(36px, 5vw, 64px); align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.hero h1 { font-size: clamp(3rem, 10.5vw, 6rem); }
.hero h1 .paint { color: var(--paint); }
.hero__sub { margin: var(--s5) 0 var(--s5); font-size: clamp(1.08rem, 2.3vw, 1.25rem); color: var(--stripe-dim); max-width: 34em; }
.hero .btn-row { margin-top: var(--s5); }
.hero__meta { margin-top: var(--s5); display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--on-dark-2); font-size: .92rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before { content: ""; width: 10px; height: 3px; background: var(--paint); }

/* ---------- region map ---------- */
.map-card { position: relative; background: var(--ink-2); border: 1px solid var(--seam); }
.map-card__svg { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.map-card__svg > img, .map-card__svg > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.rmap .dot { fill: #8d8a82; }
.rmap .dot--near { fill: var(--stripe); }
.rmap .dot--on { fill: var(--paint); }
.rmap .home-mark { fill: var(--paint); }
.rmap .road { fill: none; stroke: #3b3d43; stroke-linecap: round; stroke-dasharray: 1 1; stroke-dashoffset: 0; }
.rmap .route { fill: none; stroke: var(--paint); stroke-linecap: butt; }
.rmap .ring { fill: none; stroke: var(--paint); }
.js .rmap .road.is-drawing { stroke-dashoffset: 1; animation: paint-road 1.1s var(--ease-out) .15s forwards; }
.js .rmap .route.is-drawing { opacity: 0; animation: fade-in .5s linear 1.05s forwards; }
@keyframes paint-road { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }
.rmap text { font-family: var(--f-display); font-stretch: 112%; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; paint-order: stroke; stroke: var(--ink); stroke-linejoin: round; }
.rmap .t-home { fill: var(--paint); }
.rmap .t-town { fill: var(--stripe); }
.rmap .t-near { fill: var(--stripe-dim); }
.rmap .t-river { fill: #6f8797; font-style: italic; letter-spacing: .14em; }
.rmap .t-state { fill: #45474d; letter-spacing: .32em; stroke: none; }
.rmap .dots .dot { transition: fill .2s, r .2s; }
.rmap .dots .dot.is-match { fill: var(--stripe); }
.rmap .dots .dot.is-on { fill: var(--paint); }
.map-card__foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 18px; padding: 12px 16px; border-top: 1px solid var(--seam); font-size: .86rem; color: var(--on-dark-2); }
.map-card__foot strong { color: var(--stripe); font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .js .rmap .road.is-drawing, .js .rmap .route.is-drawing { animation: none; stroke-dashoffset: 0; opacity: 1; } }

/* town finder */
.finder { position: relative; padding: 16px; border-bottom: 1px solid var(--seam); }
.finder label { display: block; margin-bottom: 8px; color: var(--stripe); }
.finder__field { position: relative; }
.finder input {
  width: 100%; height: 54px; padding: 0 16px 0 48px; font-size: 16px;
  background: var(--ink); border: 2px solid var(--asphalt-2); border-radius: 2px; color: var(--stripe);
  transition: border-color .15s;
}
.finder input::placeholder { color: #7c7a73; }
.finder input:focus { outline: none; border-color: var(--paint); }
.finder__icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--on-dark-2); pointer-events: none; }
.finder__list { position: absolute; left: 16px; right: 16px; top: calc(100% - 8px); z-index: 5; list-style: none; margin: 0; padding: 0; background: var(--ink); border: 2px solid var(--paint); border-top: 0; max-height: 300px; overflow-y: auto; }
.finder__list[hidden] { display: none; }
.finder__list li { padding: 12px 14px; cursor: pointer; display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--seam); }
.finder__list li:first-child { border-top: 0; }
.finder__list li[aria-selected="true"], .finder__list li:hover { background: var(--asphalt); }
.finder__list .n { font-weight: 700; }
.finder__list .c { color: var(--on-dark-2); font-size: .86rem; text-align: right; }
.finder__result { padding: 14px 16px; border-bottom: 1px solid var(--seam); display: grid; gap: 8px; }
.finder__result[hidden] { display: none; }
.finder__result .t { font-family: var(--f-display); font-stretch: 70%; font-weight: 900; text-transform: uppercase; font-size: 1.9rem; line-height: 1; }
.finder__result .m { color: var(--on-dark-2); font-size: .92rem; }

/* ---------- density band (town names) ---------- */
.townband { position: relative; background: var(--asphalt); border-top: var(--line-w) solid var(--stripe); border-bottom: var(--line-w) solid var(--stripe); overflow: hidden; }
.townband__names { padding: 22px var(--gutter); columns: 2 120px; column-gap: 20px; font-family: var(--f-display); font-stretch: 64%; font-weight: 800; text-transform: uppercase; font-size: .95rem; line-height: 1.32; color: #5d5f64; max-height: 290px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent); mask-image: linear-gradient(180deg, #000 70%, transparent); }
@media (min-width: 700px) { .townband__names { columns: 6 120px; } }
@media (min-width: 1100px) { .townband__names { columns: 9 120px; max-height: 320px; } }
.townband__names span { display: block; break-inside: avoid; }
.townband__names .hl { color: var(--stripe-dim); }
.townband__stamp { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--ink); padding: 22px 26px; border: var(--line-w) solid var(--stripe); text-align: center; width: min(92vw, 560px); }
.townband__stamp .display { font-size: clamp(2.2rem, 7vw, 3.6rem); }
@media (max-width: 699px) {
  .townband__names { max-height: 210px; }
  .townband__stamp { position: relative; left: auto; top: auto; transform: none; width: auto; margin: -70px var(--gutter) 26px; }
}
.map-card__foot a { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.map-card__foot .arw { width: 22px; color: var(--paint); }
.rmap .dots .dot { cursor: pointer; }
.rmap .hover-label { pointer-events: none; }
.townband__stamp p { margin: 10px 0 0; color: var(--stripe-dim); }

/* ---------- stalls (service grid) ---------- */
.stalls { display: grid; grid-template-columns: 1fr; border-left: var(--line-w) solid var(--stripe); }
@media (min-width: 700px) { .stalls { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .stalls--4 { grid-template-columns: repeat(4, 1fr); } .stalls--3 { grid-template-columns: repeat(3, 1fr); } }
.stall { position: relative; display: flex; flex-direction: column; border-right: var(--line-w) solid var(--stripe); text-decoration: none; color: inherit; padding: 0 0 22px; min-width: 0; }
.stall + .stall { }
@media (max-width: 699px) { .stall { border-bottom: 1px solid var(--seam); padding-bottom: 26px; margin-bottom: 0; } }
.stall__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--asphalt); margin: 0 18px; }
.stall__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.stall:hover .stall__img img { transform: scale(1.035); }
.stall__body { padding: 20px 18px 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.stall__name { font-family: var(--f-display); font-stretch: 68%; font-weight: 900; text-transform: uppercase; font-size: clamp(1.9rem, 3.4vw, 2.4rem); line-height: .95; }
.stall__text { color: var(--stripe-dim); margin: 0; font-size: 1rem; }
.stall .arrow-link { margin-top: auto; }
.stall__stencil { position: absolute; right: 22px; top: 12px; font-family: var(--f-display); font-stretch: 62%; font-weight: 900; font-size: .8rem; letter-spacing: .14em; color: var(--ink); background: var(--stripe); padding: 4px 7px; }
.stalls--mini .stall__name { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.stalls--mini .stall { padding-top: 18px; }
.band--concrete .stalls { border-left-color: var(--ink); }
.band--concrete .stall { border-right-color: var(--ink); }
.band--concrete .stall__text { color: var(--text-2); }
@media (max-width: 699px) { .band--concrete .stall { border-bottom-color: var(--curb); } }

/* ---------- spec strip (recipe beside the sample) ---------- */
.spec { display: grid; border-top: var(--line-w) solid currentColor; }
.spec__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--seam); align-items: baseline; }
.band--concrete .spec__row { border-bottom-color: var(--curb); }
.spec__k { font-family: var(--f-display); font-stretch: 112%; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; }
.spec__v { font-family: var(--f-data); font-size: .95rem; }
.spec__note { font-size: .82rem; color: var(--on-dark-2); margin-top: 10px; }
.band--concrete .spec__note { color: var(--text-2); }

/* ---------- cross-section diagram ---------- */
.xsec { width: 100%; height: auto; }
.xsec text { font-family: var(--f-display); font-stretch: 112%; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.xsec text.in { paint-order: stroke; stroke: #0b0b0c; stroke-width: 4px; stroke-linejoin: round; }

/* ---------- process (stencil numerals) ---------- */
.steps { list-style: none; display: grid; gap: 0; counter-reset: step; border-top: var(--line-w) solid var(--stripe); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { position: relative; padding: 26px 22px 30px 0; border-bottom: 1px solid var(--seam); }
@media (min-width: 900px) { .steps li { border-bottom: 0; border-right: 1px solid var(--seam); padding: 30px 24px 10px; } .steps li:first-child { padding-left: 0; } .steps li:last-child { border-right: 0; } }
.steps .num { display: block; font-family: var(--f-display); font-stretch: 62%; font-weight: 900; font-size: 4.4rem; line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--paint); margin-bottom: 18px; }
.steps h3 { font-size: 1.05rem; }
.steps p { color: var(--stripe-dim); margin: 0; }

/* ---------- ruled board (fixed columns, split-flap discipline) ---------- */
.board { width: 100%; border-collapse: collapse; font-size: .98rem; }
.board thead th { text-align: left; padding: 0 12px 10px 0; font-family: var(--f-display); font-stretch: 118%; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--on-dark-2); border-bottom: var(--line-w) solid var(--stripe); }
.board td { padding: 12px 12px 12px 0; border-bottom: 1px solid var(--seam); vertical-align: baseline; }
.board td.num, .board th.num { text-align: right; padding-right: 0; }
.board a { text-decoration: none; font-weight: 700; }
.board a:hover { color: var(--paint); }
.board .data { color: var(--stripe-dim); font-size: .9rem; }
.band--concrete .board thead th { color: var(--text-2); border-bottom-color: var(--ink); }
.band--concrete .board td { border-bottom-color: var(--curb); }
.band--concrete .board .data { color: var(--text-2); }
.band--concrete .board a:hover { color: var(--paint-deep); }
@media (max-width: 640px) { .board .hide-sm { display: none; } }

/* county groups on areas hub */
.county-block { padding: 34px 0 10px; border-top: var(--line-w) solid var(--stripe); }
.county-block + .county-block { margin-top: 26px; }
.county-block__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 20px; margin-bottom: 14px; }
.county-block__head h2 { font-size: clamp(1.8rem, 4.4vw, 2.6rem); }
.town-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0 18px; }
.town-grid li { border-bottom: 1px solid var(--seam); }
.town-grid a { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; text-decoration: none; }
.town-grid a:hover { color: var(--paint); }
.town-grid .data { color: var(--on-dark-2); font-size: .8rem; }
.band--concrete .town-grid li { border-bottom-color: var(--curb); }
.band--concrete .town-grid .data { color: var(--text-2); }
.band--concrete .town-grid a:hover { color: var(--paint-deep); }
.area-filter { display: grid; gap: 10px; margin-bottom: 30px; max-width: 520px; }
.area-filter input { height: 54px; padding: 0 16px; font-size: 16px; background: var(--ink); color: var(--stripe); border: 2px solid var(--asphalt-2); border-radius: 2px; }
.area-filter input:focus { outline: none; border-color: var(--paint); }
.area-count { color: var(--on-dark-2); font-size: .9rem; }

/* ---------- town page facts strip ---------- */
.facts { display: grid; grid-template-columns: 1fr 1fr; border-top: var(--line-w) solid var(--stripe); border-bottom: var(--line-w) solid var(--stripe); }
@media (min-width: 900px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts > div { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--seam); min-width: 0; }
.facts > div:nth-child(odd) { border-right: 1px solid var(--seam); }
@media (min-width: 900px) { .facts > div { border-bottom: 0; border-right: 1px solid var(--seam); padding: 18px 18px 18px 0; } .facts > div + div { padding-left: 18px; } .facts > div:last-child { border-right: 0; } }
@media (max-width: 899px) { .facts > div:nth-child(even) { padding-left: 16px; } .facts > div:nth-last-child(-n+2) { border-bottom: 0; } }
.facts .k { display: block; color: var(--on-dark-2); margin-bottom: 6px; }
.facts .v { font-family: var(--f-data); font-size: 1rem; color: var(--stripe); overflow-wrap: anywhere; }
.facts .v a { text-decoration: none; }
.facts .v a:hover { color: var(--paint); }

/* ---------- page hero (inner pages) ---------- */
.phero { position: relative; padding: clamp(28px, 5vw, 60px) 0 clamp(44px, 7vw, 88px); isolation: isolate; overflow: hidden; }
.phero__grid { display: grid; gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (min-width: 1000px) { .phero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.phero h1 { font-size: clamp(2.7rem, 8.6vw, 5.2rem); }
.phero h1 .st { color: var(--paint); }
.phero__sub { margin: var(--s5) 0; color: var(--stripe-dim); font-size: clamp(1.06rem, 2.2vw, 1.22rem); max-width: 36em; }
.phero__photo { position: relative; aspect-ratio: 4 / 3; background: var(--asphalt); overflow: hidden; }
.phero__photo img { width: 100%; height: 100%; object-fit: cover; }
.phero__photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--paint) 0 46px, transparent 46px 78px); }
.phero--photo .phero__bg { position: absolute; inset: 0; z-index: -1; }
.phero--photo .phero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.phero--photo .phero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,12,.96), rgba(11,11,12,.72) 60%, rgba(11,11,12,.45)), linear-gradient(0deg, var(--ink), rgba(11,11,12,0) 40%); }

/* ---------- content blocks (town + service) ---------- */
.svc-blocks { display: grid; gap: 0; border-top: var(--line-w) solid var(--ink); }
.svc-block { display: grid; gap: 14px 40px; padding: 34px 0; border-bottom: 1px solid var(--curb); }
@media (min-width: 900px) { .svc-block { grid-template-columns: 5fr 7fr; } }
.svc-block h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); }
.svc-block p { margin: 0 0 12px; }
.band--black .svc-blocks, .band--asphalt .svc-blocks { border-top-color: var(--stripe); }
.band--black .svc-block, .band--asphalt .svc-block { border-bottom-color: var(--seam); }
.photo { position: relative; background: var(--asphalt); overflow: hidden; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption { font-size: .82rem; color: var(--text-2); padding-top: 8px; }
.band--black .photo figcaption, .band--asphalt .photo figcaption { color: var(--on-dark-2); }
.ratio-43 { aspect-ratio: 4 / 3; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-169 { aspect-ratio: 16 / 9; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chips a, .chips span { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; box-shadow: inset 0 0 0 2px currentColor; text-decoration: none; font-weight: 700; font-size: .92rem; border-radius: 2px; }
.chips a:hover { background: var(--paint); color: var(--ink); box-shadow: inset 0 0 0 2px var(--paint); }

/* secondary services strip */
.minor { display: grid; gap: 0; border-top: var(--line-w) solid currentColor; }
@media (min-width: 900px) { .minor { grid-template-columns: repeat(3, 1fr); } }
.minor a { display: grid; gap: 6px; padding: 20px 20px 20px 0; text-decoration: none; border-bottom: 1px solid var(--curb); }
@media (min-width: 900px) { .minor a { border-bottom: 0; border-right: 1px solid var(--curb); padding: 22px 22px 6px; } .minor a:first-child { padding-left: 0; } .minor a:last-child { border-right: 0; } }
.minor strong { font-family: var(--f-display); font-stretch: 70%; font-weight: 900; text-transform: uppercase; font-size: 1.55rem; line-height: 1; }
.minor span { color: var(--text-2); font-size: .98rem; }
.band--black .minor a, .band--asphalt .minor a { border-color: var(--seam); }
.band--black .minor span, .band--asphalt .minor span { color: var(--stripe-dim); }

/* ---------- FAQ ---------- */
.faq { border-top: var(--line-w) solid currentColor; }
.faq details { border-bottom: 1px solid var(--seam); }
.band--concrete .faq details { border-bottom-color: var(--curb); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; padding: 20px 0; font-weight: 700; font-size: 1.1rem; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; position: relative; width: 22px; height: 22px; margin-top: 2px; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; margin-top: -1.5px; background: var(--paint); transition: transform .25s var(--ease-out); }
.faq summary .pm::after { transform: rotate(90deg); }
.faq details[open] summary .pm::after { transform: rotate(0); }
.faq .a { padding: 0 0 22px; max-width: 70ch; color: var(--stripe-dim); }
.band--concrete .faq .a { color: var(--text-2); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
@media (min-width: 800px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 8px; } }
.split .gallery { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) { .split .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; position: relative; aspect-ratio: 1; overflow: hidden; background: var(--asphalt); }
.gallery figure.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery figure.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out), filter .3s; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px; font-size: .8rem; line-height: 1.35; color: var(--stripe); background: linear-gradient(0deg, rgba(11,11,12,.9), rgba(11,11,12,0)); opacity: 0; transition: opacity .25s; }
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; }
@media (hover: none) { .gallery figcaption { opacity: 1; } }

/* before / after */
.ba { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--asphalt); user-select: none; touch-action: pan-y; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 4px; margin-left: -2px; background: var(--paint); pointer-events: none; }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%, -50%); background: var(--paint); border-radius: 2px; }
.ba input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba__tag { position: absolute; top: 12px; z-index: 2; padding: 6px 10px; background: var(--ink); color: var(--stripe); pointer-events: none; }
.ba__tag--b { left: 12px; } .ba__tag--a { right: 12px; background: var(--paint); color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { display: grid; gap: 24px; align-items: end; }
@media (min-width: 960px) { .cta-band { grid-template-columns: 1fr auto; } }
.cta-band h2 { font-size: clamp(2.3rem, 6vw, 4.2rem); }
.cta-band p { margin: 14px 0 0; font-size: 1.1rem; max-width: 40em; }
.band--paint .btn--ink:hover { background: #000; }
.band--paint .btn--line { color: var(--ink); box-shadow: inset 0 0 0 var(--line-w) var(--ink); }
.band--paint .btn--line:hover { background: var(--ink); color: var(--paint); }

/* ---------- form ---------- */
.quote { display: grid; gap: clamp(32px, 5vw, 64px); }
@media (min-width: 1000px) { .quote { grid-template-columns: 5fr 7fr; align-items: start; } }
.quote__aside h2 { font-size: clamp(2.3rem, 6vw, 4rem); }
.quote__aside .next { list-style: none; counter-reset: n; display: grid; gap: 0; margin-top: 26px; border-top: var(--line-w) solid var(--stripe); }
.quote__aside .next li { counter-increment: n; display: grid; grid-template-columns: 44px 1fr; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--seam); color: var(--stripe-dim); }
.quote__aside .next li::before { content: counter(n); font-family: var(--f-display); font-stretch: 62%; font-weight: 900; font-size: 1.9rem; line-height: 1; color: var(--paint); }
.quote__call { margin-top: 26px; display: grid; gap: 4px; }
.quote__call a { font-family: var(--f-display); font-stretch: 70%; font-weight: 900; font-size: clamp(2.2rem, 6vw, 3rem); text-decoration: none; line-height: 1; }
.quote__call a:hover { color: var(--paint); }
.form { background: var(--concrete); color: var(--text); padding: clamp(22px, 4vw, 40px); position: relative; }
.form::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--paint) 0 46px, var(--ink) 46px 78px); }
.form__grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; } .form__grid .full { grid-column: 1 / -1; } }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--f-display); font-stretch: 112%; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; color: var(--text); }
.field .req { color: var(--paint-deep); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; font-size: 16px; line-height: 1.4;
  background: #fff; color: var(--text); border: 2px solid var(--curb); border-radius: 2px; transition: border-color .15s;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--text) 50%), linear-gradient(135deg, var(--text) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field input[aria-invalid="true"] { border-color: #b3261e; }
.field .err { color: #b3261e; font-size: .86rem; font-weight: 600; }
.form .btn { width: 100%; margin-top: 6px; }
.form__fine { font-size: .82rem; color: var(--text-2); margin: 14px 0 0; }
.form__fine a { color: var(--text); }
.form__status { margin-top: 14px; padding: 14px 16px; font-weight: 600; display: none; }
.form__status[data-state="ok"] { display: block; background: var(--ink); color: var(--stripe); }
.form__status[data-state="error"] { display: block; background: #fbe4e1; color: #7a1a13; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.grecaptcha-badge { visibility: hidden; }

/* ---------- guides ---------- */
.guide-list { display: grid; gap: 0; border-top: var(--line-w) solid currentColor; }
@media (min-width: 900px) { .guide-list { grid-template-columns: repeat(3, 1fr); } }
.guide-card { display: grid; gap: 10px; padding: 24px 22px 26px 0; text-decoration: none; border-bottom: 1px solid var(--seam); }
@media (min-width: 900px) { .guide-card { border-bottom: 0; border-right: 1px solid var(--seam); padding: 26px 24px 8px; } .guide-card:first-child { padding-left: 0; } .guide-card:last-child { border-right: 0; } }
.guide-card strong { font-family: var(--f-display); font-stretch: 70%; font-weight: 900; text-transform: uppercase; font-size: 1.7rem; line-height: 1; }
.guide-card span { color: var(--stripe-dim); }
.band--concrete .guide-card { border-color: var(--curb); }
.band--concrete .guide-card span { color: var(--text-2); }
.article { padding-top: 10px; }
.article .prose { font-size: 1.12rem; line-height: 1.7; }
.article .prose h2 { font-size: clamp(1.9rem, 4.6vw, 2.7rem); }
.takeaways { background: var(--ink); color: var(--stripe); padding: 26px 26px 20px; margin: 0 0 40px; }
.takeaways h2 { font-size: 1.8rem; margin-bottom: 14px; }
.takeaways ul { list-style: none; display: grid; gap: 10px; }
.takeaways li { position: relative; padding-left: 26px; }
.takeaways li::before { content: ""; position: absolute; left: 0; top: .66em; width: 14px; height: 3px; background: var(--paint); }
.sources { font-size: .9rem; color: var(--text-2); }
.sources ol { padding-left: 20px; display: grid; gap: 6px; }
.toc { position: sticky; top: 104px; border-top: var(--line-w) solid var(--ink); padding-top: 14px; }
.toc ol { list-style: none; display: grid; gap: 8px; }
.toc a { text-decoration: none; color: var(--text-2); font-size: .95rem; }
.toc a:hover { color: var(--text); }
@media (min-width: 1100px) { .article-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 72px; } }
@media (max-width: 1099px) { .toc { display: none; } }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); border-top: var(--line-w) solid var(--stripe); padding: clamp(56px, 8vw, 96px) 0 110px; color: var(--stripe-dim); font-size: .96rem; }
@media (min-width: 1100px) { .site-footer { padding-bottom: 48px; } }
.foot-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.site-footer h2, .site-footer .foot-h { font-family: var(--f-display); font-stretch: 118%; font-weight: 800; letter-spacing: .08em; font-size: .78rem; color: var(--stripe); margin-bottom: 14px; line-height: 1.2; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--stripe); text-decoration: underline; }
.foot-brand img { width: 230px; margin-bottom: 18px; }
.foot-phone { display: inline-block; margin: 8px 0 12px; font-family: var(--f-display); font-stretch: 70%; font-weight: 900; font-size: 2.2rem; line-height: 1; color: var(--stripe); text-decoration: none; }
.foot-counties { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--seam); }
.foot-counties ul { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.foot-counties li { font-size: .9rem; }
.foot-legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--seam); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .86rem; color: var(--on-dark-2); }

/* ---------- mobile call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); border-top: var(--line-w) solid var(--stripe); transform: translateY(0); transition: transform .25s var(--ease-out); padding-bottom: env(safe-area-inset-bottom); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 60px; text-decoration: none; font-family: var(--f-display); font-stretch: 112%; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; font-size: .9rem; }
.callbar .c1 { background: var(--paint); color: var(--ink); }
.callbar .c2 { color: var(--stripe); }
.callbar[data-hidden="true"] { transform: translateY(110%); }
@media (min-width: 1100px) { .callbar { display: none; } }


/* ---------- misc ---------- */
.muted { color: var(--on-dark-2); }
.band--concrete .muted { color: var(--text-2); }
.mt-0 { margin-top: 0; } .mt-4 { margin-top: var(--s4); } .mt-5 { margin-top: var(--s5); } .mt-6 { margin-top: var(--s6); } .mt-7 { margin-top: var(--s7); } .mt-8 { margin-top: var(--s8); }
.mb-0 { margin-bottom: 0; }
.nowrap { white-space: nowrap; }
.notice { font-size: .86rem; color: var(--on-dark-2); }
.pill-note { display: inline-block; padding: 6px 10px; background: var(--asphalt-2); color: var(--stripe-dim); font-size: .82rem; }
.rmap .dots .dot { stroke: transparent; stroke-width: 7; }
