/* ==========================================================================
   B-Line Striping & Sealcoating LLC
   assets/styles.css  —  single stylesheet for the whole site

   CONTENTS
   01  Tokens (colours, type, spacing, z-index scale)
   02  Reset + base
   03  Type scale & text helpers
   04  Buttons
   05  Header: topbar, nav, dropdown, mobile drawer
   06  Hero + painted-lot animation
   07  Trust strip
   08  Sections, cards, grids
   09  Cost ladder
   10  Process rail
   11  Service areas
   12  Reviews
   13  Quote form
   14  Footer
   15  Reveal-on-scroll + reduced motion
   ========================================================================== */

/* 01 ── TOKENS ============================================================ */
:root {
  /* Brand — sampled directly from the supplied logo */
  --paint:        #f4a91b;   /* hornet yellow / traffic-paint yellow */
  --paint-deep:   #df9426;   /* logo's shadow gold */
  --paint-hot:    #ffc24a;   /* hover lift */
  --asphalt-900:  #101215;
  --asphalt-800:  #191c21;
  --asphalt-700:  #23272e;
  --asphalt-600:  #31363f;
  --chalk:        #ffffff;
  --concrete:     #f2f1ee;
  --concrete-200: #e4e2dc;
  --concrete-300: #d3d0c8;
  --ink:          #14161a;
  --muted:        #6c717a;
  --muted-dark:   #a2a8b3;
  --ada:          #1b5ea8;   /* regulation ADA blue — used only where it means that */

  /* Type */
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --body:    "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --util:    "Barlow Condensed", "Barlow", sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --sect: clamp(4rem, 9vw, 7.5rem);
  --radius: 3px;      /* hard edges: this is a pavement trade, not a startup */

  /* Header height is measured by JS and written back here */
  --header-h: 120px;

  /* Z-INDEX SCALE — the only place z-index values are allowed to be invented.
     Every rule below references these. Nothing in this project sets a raw
     z-index number, which is what keeps stacking predictable. */
  --z-deco: 0;
  --z-content: 1;
  --z-raised: 5;
  --z-dropdown: 800;
  --z-backdrop: 900;
  --z-header: 1000;
  --z-drawer: 1100;
  --z-toast: 1200;
}

/* 02 ── RESET + BASE ====================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* anchor links land below the fixed header instead of under it */
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  /* NOTE: no transform / filter / perspective / contain is ever applied to
     body or main. Those create a containing block and would break the fixed
     header. This is the single most common "z-index bug" on sites like this. */
  padding-top: var(--header-h);
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
}

/* scroll lock for the open mobile drawer, without layout shift */
html.is-locked { overflow: hidden; scrollbar-gutter: stable; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--paint);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--paint); color: var(--ink);
  padding: 0.75rem 1.25rem; font-family: var(--util);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  z-index: var(--z-toast);
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* 03 ── TYPE ============================================================== */
.h1, .h2, .h3, .h4 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  margin: 0;
}
.h1 { font-size: clamp(2.5rem, 6.4vw, 4.5rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
.h3 { font-size: clamp(1.375rem, 2.2vw, 1.75rem); }
.h4 { font-size: clamp(1.125rem, 1.6vw, 1.3125rem); }

/* The logo's wordmark is a heavy italic. That slant is echoed ONLY on small
   utility labels and number chips — never on long headings, where it hurts
   readability. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--util); font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--paint-deep); margin: 0 0 1rem;
  transform: skewX(-8deg);
}
.eyebrow::before {
  content: ""; width: 34px; height: 4px; background: var(--paint); flex: none;
}
.on-dark .eyebrow { color: var(--paint); }

.lede { font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); color: var(--muted); max-width: 62ch; }
.on-dark .lede { color: var(--muted-dark); }
.on-dark { color: var(--concrete); }
.on-dark .h1, .on-dark .h2, .on-dark .h3, .on-dark .h4 { color: var(--chalk); }
.paint-word { color: var(--paint); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* 04 ── BUTTONS =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--util); font-weight: 700; font-size: 1.0625rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--paint { background: var(--paint); color: var(--asphalt-900); border-color: var(--paint); }
.btn--paint:hover { background: var(--paint-hot); border-color: var(--paint-hot); }

.btn--ghost { border-color: currentColor; color: var(--chalk); background: transparent; }
.btn--ghost:hover { background: var(--chalk); color: var(--asphalt-900); border-color: var(--chalk); }

.btn--dark { background: var(--asphalt-900); color: var(--chalk); border-color: var(--asphalt-900); }
.btn--dark:hover { background: var(--asphalt-700); border-color: var(--asphalt-700); }

.btn--sm { padding: 0.65rem 1.1rem; font-size: 0.9375rem; }
.btn--block { width: 100%; }

/* 05 ── HEADER ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  background: var(--asphalt-900);
  /* deliberately NO overflow:hidden here — it would clip the dropdown */
  border-bottom: 1px solid var(--asphalt-700);
}
.site-header::after { /* fresh paint stripe under the header */
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 4px;
  background: var(--paint);
}
.site-header.is-stuck { box-shadow: 0 12px 34px rgb(0 0 0 / 0.34); }

/* -- topbar -- */
.topbar {
  background: var(--asphalt-800);
  border-bottom: 1px solid var(--asphalt-700);
  font-family: var(--util); font-size: 0.9375rem; letter-spacing: 0.04em;
  color: var(--muted-dark);
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 40px; padding-block: 0.25rem;
}
.topbar__list { display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.topbar a { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar a:hover { color: var(--paint); }
.topbar__note { text-transform: uppercase; font-weight: 600; }
.topbar__note b { color: var(--paint); font-weight: 700; }

/* -- main bar -- */
.bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.75rem; }
/* Header lockup: the hornet mark plus a set wordmark. The full stacked logo is
   too tall for a fixed bar — it lives in the footer at full size instead. */
.brand { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.brand__mark { width: clamp(44px, 5.5vw, 58px); height: auto; }
.brand__text { display: grid; }
.brand__name {
  font-family: var(--display); font-size: clamp(1.45rem, 3vw, 1.95rem);
  line-height: 0.92; color: var(--paint); text-transform: uppercase;
  transform: skewX(-8deg); transform-origin: left bottom;
}
.brand__sub {
  font-family: var(--util); font-weight: 600;
  font-size: clamp(0.6rem, 1.05vw, 0.75rem);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--concrete); white-space: nowrap; margin-top: 0.15rem;
}
@media (max-width: 400px) { .brand__sub { letter-spacing: 0.08em; } }

.nav { display: flex; align-items: center; gap: clamp(0.5rem, 1.6vw, 1.75rem); }
.nav__list { display: flex; align-items: center; gap: clamp(0.5rem, 1.5vw, 1.6rem); margin: 0; padding: 0; list-style: none; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--util); font-weight: 600; font-size: 1.0625rem;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--concrete); padding: 0.5rem 0.15rem;
  border-bottom: 3px solid transparent;
  transition: color .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--paint); }
.nav__link[aria-current="page"] { color: var(--paint); border-bottom-color: var(--paint); }

/* -- desktop dropdown -- */
.nav__item { position: relative; }
.nav__toggle { background: none; border: 0; cursor: pointer; }
.nav__caret { width: 10px; height: 6px; fill: currentColor; transition: transform .18s ease; }
.nav__toggle[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.nav__drop {
  position: absolute; top: calc(100% + 0.75rem); left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-dropdown);
  min-width: 470px; padding: 1.25rem;
  background: var(--asphalt-800);
  border: 1px solid var(--asphalt-600);
  border-top: 3px solid var(--paint);
  box-shadow: 0 22px 44px rgb(0 0 0 / 0.42);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 1.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease;
}
.nav__item:hover > .nav__drop,
.nav__item:focus-within > .nav__drop,
.nav__toggle[aria-expanded="true"] + .nav__drop {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav__drop a {
  display: block; padding: 0.5rem 0.6rem;
  font-family: var(--util); font-size: 1rem; letter-spacing: 0.04em;
  color: var(--muted-dark); border-left: 2px solid transparent;
}
.nav__drop a:hover { color: var(--paint); background: var(--asphalt-700); border-left-color: var(--paint); }
.nav__drop-head {
  grid-column: 1 / -1; font-family: var(--util); font-weight: 700; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--paint);
  padding: 0.25rem 0.6rem 0.6rem;
}

/* -- burger -- */
.burger {
  display: none; flex: none;
  width: 50px; height: 44px; padding: 0;
  background: transparent; border: 2px solid var(--asphalt-600);
  border-radius: var(--radius); cursor: pointer;
}
.burger span {
  display: block; width: 22px; height: 2.5px; margin: 4px auto;
  background: var(--chalk); transition: transform .22s ease, opacity .18s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -- mobile drawer -- */
.drawer {
  position: fixed; top: var(--header-h); right: 0; bottom: 0;
  width: min(400px, 90vw);
  z-index: var(--z-drawer);
  background: var(--asphalt-900);
  border-left: 1px solid var(--asphalt-700);
  padding: 1.5rem var(--gut) 3rem;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(102%);
  visibility: hidden;
  transition: transform .28s cubic-bezier(.4,0,.2,1), visibility .28s;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.drawer__list > li { border-bottom: 1px solid var(--asphalt-700); }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1rem 0.25rem;
  background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--display); font-size: 1.375rem; text-transform: uppercase;
  color: var(--chalk); letter-spacing: 0.01em;
}
.drawer__link:hover, .drawer__link[aria-current="page"] { color: var(--paint); }
.drawer__sub { list-style: none; margin: 0; padding: 0 0 0.75rem 0.25rem; display: none; }
.drawer__sub.is-open { display: block; }
.drawer__sub a {
  display: block; padding: 0.5rem 0; color: var(--muted-dark);
  font-family: var(--util); font-size: 1.0625rem; letter-spacing: 0.04em;
}
.drawer__sub a:hover { color: var(--paint); }
.drawer__cta { display: grid; gap: 0.75rem; margin-top: 0.5rem; }
.drawer__meta {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--asphalt-700);
  font-family: var(--util); color: var(--muted-dark); letter-spacing: 0.04em;
}

.backdrop {
  position: fixed; inset: 0; z-index: var(--z-backdrop);
  background: rgb(4 5 6 / 0.62);
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s;
}
.backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
}
@media (max-width: 720px) {
  .topbar__note { display: none; }
  .topbar__in { justify-content: center; }
  .topbar__list { gap: 1.1rem; }
}

/* 06 ── HERO ============================================================== */
.hero {
  position: relative; isolation: isolate; z-index: var(--z-deco);
  background: var(--asphalt-900);
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;   /* safe: .hero is not an ancestor of the header */
}
/* asphalt aggregate texture, generated not photographed */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: var(--z-deco);
  background-image:
    radial-gradient(circle at 12% 18%, rgb(255 255 255 / .05) 0 1px, transparent 1.4px),
    radial-gradient(circle at 63% 41%, rgb(255 255 255 / .04) 0 1.6px, transparent 2px),
    radial-gradient(circle at 34% 77%, rgb(255 255 255 / .05) 0 1.2px, transparent 1.6px),
    radial-gradient(circle at 88% 66%, rgb(255 255 255 / .035) 0 1.8px, transparent 2.2px);
  background-size: 190px 190px, 240px 240px, 160px 160px, 300px 300px;
  opacity: .9;
}
.hero__in {
  position: relative; z-index: var(--z-content);
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__in { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); }
}
.hero .h1 { margin-bottom: 1.25rem; }
.hero__lede { max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-top: 2rem; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 0 2rem; margin: 2.25rem 0 0; padding: 1.5rem 0 0;
  border-top: 1px solid var(--asphalt-700); list-style: none;
}
.hero__facts li {
  font-family: var(--util); text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; color: var(--concrete); font-size: 0.9375rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero__facts svg { width: 17px; height: 17px; fill: var(--paint); flex: none; }

/* -- the signature: a lot plan that paints itself -- */
.lot { width: 100%; height: auto; }
.lot__pad { fill: var(--asphalt-800); stroke: var(--asphalt-600); stroke-width: 2; }
.lot .stall, .lot .aisle, .lot .hatch, .lot .curb, .lot .arrow {
  fill: none; stroke-linecap: square;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.lot .stall { stroke: var(--chalk); stroke-width: 4; }
.lot .hatch  { stroke: var(--chalk); stroke-width: 3; opacity: .85; }
.lot .curb   { stroke: var(--paint); stroke-width: 6; }
.lot .arrow  { stroke: var(--chalk); stroke-width: 4; stroke-linecap: round; }
.lot .aisle  { stroke: var(--chalk); stroke-width: 3.5; stroke-dasharray: .022 .022; stroke-dashoffset: 0; opacity: 0; }
.lot .ada-field { fill: var(--ada); opacity: 0; }
.lot .ada-mark { fill: var(--chalk); opacity: 0; }
.lot__tag {
  font-family: var(--util); font-size: 15px; font-weight: 700;
  letter-spacing: 3px; fill: var(--paint); opacity: 0;
}

.lot.is-painting .curb  { animation: paint .7s ease-out .1s forwards; }
.lot.is-painting .stall { animation: paint .5s ease-out forwards; }
.lot.is-painting .aisle { animation: fade-in-aisle .8s ease-out 1.55s forwards; }
.lot.is-painting .hatch { animation: paint .45s ease-out forwards; }
.lot.is-painting .arrow { animation: paint .5s ease-out 1.9s forwards; }
.lot.is-painting .ada-field { animation: dry .6s ease-out 2.5s forwards; }
.lot.is-painting .ada-mark  { animation: dry .5s ease-out 2.85s forwards; }
.lot.is-painting .lot__tag  { animation: dry .6s ease-out 3.05s forwards; }

/* Per-line stagger lives inline on each <line> (style="animation-delay:…").
   Inline wins over these class rules, so the lines lay down one at a time in
   painting order instead of all at once. */

@keyframes paint      { to { stroke-dashoffset: 0; } }
@keyframes fade-in-aisle { to { opacity: .55; } }
@keyframes dry        { to { opacity: 1; } }

.lot__caption {
  margin-top: 0.875rem; font-family: var(--util); font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-dark);
  text-align: center;
}

/* 07 ── TRUST STRIP ======================================================= */
.strip { background: var(--paint); color: var(--asphalt-900); }
.strip__in {
  display: grid; gap: 0.25rem 2rem; padding-block: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.strip__item { display: flex; align-items: center; gap: 0.75rem; }
.strip__item strong {
  font-family: var(--util); font-weight: 700; font-size: 1.0625rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.strip__item span { display: block; font-size: 0.9375rem; line-height: 1.35; opacity: .78; }
.strip__item svg { width: 30px; height: 30px; fill: none; stroke: var(--asphalt-900); stroke-width: 2; flex: none; }

/* 08 ── SECTIONS, CARDS, GRIDS =========================================== */
.section {
  position: relative; isolation: isolate;
  padding-block: var(--sect);
}
.section--concrete { background: var(--concrete); }
.section--dark { background: var(--asphalt-900); }
.section--asphalt { background: var(--asphalt-800); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

.sect-head { max-width: 66ch; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.sect-head .h2 { margin-bottom: 1rem; }
.sect-head--center { margin-inline: auto; text-align: center; }
.sect-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); }

.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--wide-left { }
@media (min-width: 900px) { .split--wide-left { grid-template-columns: 1.15fr 1fr; } }

/* service card */
.card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--chalk);
  border: 1px solid var(--concrete-200);
  border-top: 4px solid var(--asphalt-900);
  transition: border-top-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-top-color: var(--paint); transform: translateY(-4px); box-shadow: 0 18px 34px rgb(16 18 21 / 0.09); }
.card__icon { width: 46px; height: 46px; margin-bottom: 1.1rem; fill: none; stroke: var(--paint-deep); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card .h4 { margin-bottom: 0.6rem; }
.card p { font-size: 0.9875rem; color: var(--muted); }
.card__more {
  margin-top: auto; padding-top: 1rem;
  font-family: var(--util); font-weight: 700; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--asphalt-900);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card__more:hover { color: var(--paint-deep); }

.section--dark .card, .section--asphalt .card {
  background: var(--asphalt-700); border-color: var(--asphalt-600); border-top-color: var(--paint);
}
.section--dark .card .h4, .section--asphalt .card .h4 { color: var(--chalk); }
.section--dark .card p, .section--asphalt .card p { color: var(--muted-dark); }
.section--dark .card__icon, .section--asphalt .card__icon { stroke: var(--paint); }
.section--dark .card__more, .section--asphalt .card__more { color: var(--paint); }

/* detail block used on the services page */
.detail {
  display: grid; gap: 1.25rem 2rem; padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--concrete-200);
}
@media (min-width: 820px) { .detail { grid-template-columns: 260px 1fr; } }
.detail__no {
  font-family: var(--display); font-size: 2.75rem; line-height: 1;
  color: var(--concrete-300); transform: skewX(-8deg);
}
/* A spec block, not a decorative number: the left rail carries the facts a
   property manager actually asks for. */
.detail .h3 { margin-bottom: 1rem; }
.spec { margin: 0; display: grid; gap: 0.5rem; }
.spec > div {
  display: grid; grid-template-columns: 5.6rem 1fr; gap: 0.5rem;
  padding-bottom: 0.5rem; border-bottom: 1px dashed var(--concrete-300);
}
.spec dt {
  font-family: var(--util); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  padding-top: 0.2rem;
}
.spec dd { margin: 0; font-family: var(--util); font-size: 1.0625rem; letter-spacing: 0.02em; }

.section--dark .detail, .section--asphalt .detail { border-top-color: var(--asphalt-600); }
.section--dark .detail__body p, .section--asphalt .detail__body p,
.section--dark .detail__body li, .section--asphalt .detail__body li { color: var(--muted-dark); }
.section--dark .spec > div, .section--asphalt .spec > div { border-bottom-color: var(--asphalt-600); }
.section--dark .spec dt, .section--asphalt .spec dt { color: var(--muted-dark); }
.section--dark .spec dd, .section--asphalt .spec dd { color: var(--chalk); }
.detail__body ul { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; }
.detail__body li { position: relative; padding-left: 1.6rem; color: var(--muted); }
.detail__body li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 12px; height: 4px; background: var(--paint);
}

/* stat block */
.stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat__num {
  font-family: var(--display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1; color: var(--paint);
}
.stat__label {
  font-family: var(--util); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.9375rem; color: var(--muted-dark); margin-top: 0.4rem;
}

/* 09 ── COST LADDER ====================================================== */
.ladder { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.ladder li {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  padding: 0.9rem 1.1rem; background: var(--asphalt-700);
  border-left: 5px solid var(--paint);
}
.ladder li + li { border-left-color: color-mix(in srgb, var(--paint) 78%, var(--asphalt-600)); }
.ladder li:nth-child(3) { border-left-color: color-mix(in srgb, var(--paint) 55%, var(--asphalt-600)); }
.ladder li:nth-child(4) { border-left-color: color-mix(in srgb, var(--paint) 32%, var(--asphalt-600)); }
.ladder li:nth-child(5) { border-left-color: var(--asphalt-600); }
.ladder__step {
  font-family: var(--util); font-weight: 700; font-size: 0.8125rem;
  letter-spacing: 0.12em; color: var(--muted-dark); width: 2.2rem;
}
.ladder__name {
  font-family: var(--util); font-weight: 600; font-size: 1.125rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--chalk);
}
.ladder__cost { font-family: var(--util); letter-spacing: 0.08em; color: var(--paint); font-size: 0.9375rem; white-space: nowrap; }

/* 10 ── PROCESS RAIL ===================================================== */
.rail { position: relative; list-style: none; margin: 0; padding: 0 0 0 3.25rem; }
.rail::before { /* the dashed centreline — the trade's own visual language */
  content: ""; position: absolute; left: 1.1rem; top: 0.5rem; bottom: 0.5rem; width: 6px;
  background-image: linear-gradient(var(--asphalt-600) 60%, transparent 0);
  background-size: 6px 26px;
}
.rail > li { position: relative; padding-bottom: clamp(2rem, 4vw, 2.75rem); }
.rail > li:last-child { padding-bottom: 0; }
.rail__dot {
  position: absolute; left: -3.25rem; top: 0;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  background: var(--paint); color: var(--asphalt-900);
  font-family: var(--display); font-size: 1.125rem;
  border-radius: 50%;
}
.rail .h4 { margin-bottom: 0.5rem; }
.rail p { color: var(--muted-dark); max-width: 58ch; }

/* 11 ── SERVICE AREAS ==================================================== */
.areas { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
@media (min-width: 760px) { .areas { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }
.areas__group h3 {
  font-family: var(--util); font-weight: 700; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--paint);
  margin: 0 0 0.9rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--asphalt-600);
}
.areas__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; }
.areas__list a, .areas__list span {
  display: block; padding: 0.35rem 0; color: var(--muted-dark);
  font-family: var(--util); font-size: 1.0625rem; letter-spacing: 0.03em;
}
.areas__list a:hover { color: var(--paint); }

/* 12 ── REVIEWS ========================================================== */
.review {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.75rem 1.5rem; background: var(--chalk);
  border: 1px solid var(--concrete-200);
}
.review__stars { color: var(--paint); letter-spacing: 3px; font-size: 1.125rem; }
.review blockquote { margin: 0; font-size: 1.0625rem; }
.review__who { margin-top: auto; display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; }
.review__badge {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  background: var(--asphalt-900); color: var(--paint);
  font-family: var(--display); font-size: 1.125rem; border-radius: 50%;
}
.review__name { font-family: var(--util); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.review__meta { font-size: 0.875rem; color: var(--muted); }

/* 13 ── QUOTE FORM ======================================================= */
.quote {
  position: relative; isolation: isolate;
  background: var(--asphalt-900);
  padding-block: var(--sect);
  overflow: hidden;
}
.quote::before { /* diagonal safety hatching, drawn in CSS */
  content: ""; position: absolute; inset: 0; z-index: var(--z-deco);
  background: repeating-linear-gradient(-45deg,
    rgb(244 169 27 / .055) 0 14px, transparent 14px 40px);
}
.quote__in { position: relative; z-index: var(--z-content); display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 960px) { .quote__in { grid-template-columns: 1fr 1.05fr; align-items: start; } }

.form {
  background: var(--asphalt-800); border: 1px solid var(--asphalt-600);
  border-top: 4px solid var(--paint);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form__grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--util); font-weight: 600; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted-dark);
}
.field label .req { color: var(--paint); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem;
  background: var(--asphalt-900); color: var(--chalk);
  border: 1px solid var(--asphalt-600); border-radius: var(--radius);
  font-family: var(--body); font-size: 1rem;
  transition: border-color .16s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #5d636d; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--asphalt-600); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--paint); outline-offset: 1px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0h10L5 6z' fill='%23f4a91b'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 10px 6px; padding-right: 2.25rem; }
.field__error { font-size: 0.875rem; color: #ff9a8a; min-height: 0; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff7a63; }
.form__foot { margin-top: 1.25rem; display: grid; gap: 0.875rem; }
.form__note { font-size: 0.875rem; color: var(--muted-dark); }
.form__note a { color: var(--paint); text-decoration: underline; text-underline-offset: 2px; }

.form__done {
  display: none; padding: 1.1rem 1.25rem; margin-bottom: 1.25rem;
  background: rgb(244 169 27 / .12); border-left: 4px solid var(--paint);
  color: var(--chalk); font-size: 0.9875rem;
}
.form__done.is-shown { display: block; }

.contact-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; flex: none; margin-top: 0.28rem; fill: none; stroke: var(--paint); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-list .ct-k {
  margin: 0; font-family: var(--util); font-weight: 700; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-dark);
}
.contact-list .ct-v { margin: 0.15rem 0 0; font-size: 1.125rem; color: var(--chalk); }
.contact-list .ct-v a:hover { color: var(--paint); }

/* accordion (FAQ) */
.faq { border-top: 1px solid var(--concrete-200); }
.faq details { border-bottom: 1px solid var(--concrete-200); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0.25rem; cursor: pointer; list-style: none;
  font-family: var(--util); font-weight: 600; font-size: 1.1875rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--display); font-size: 1.5rem; color: var(--paint); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0.25rem 1.35rem; color: var(--muted); max-width: 74ch; }

/* gallery */
.shots { display: grid; gap: clamp(0.75rem, 1.6vw, 1.25rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }
.shot {
  position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center;
  background: var(--asphalt-800);
  border: 1px solid var(--asphalt-600);
  overflow: hidden; text-align: center; padding: 1.25rem;
}
.shot::before {
  content: ""; position: absolute; inset: 0; z-index: var(--z-deco);
  background: repeating-linear-gradient(-45deg, rgb(255 255 255 / .028) 0 12px, transparent 12px 34px);
}
.shot__body { position: relative; z-index: var(--z-content); }
.shot__kind {
  font-family: var(--util); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--paint);
}
.shot__title { font-family: var(--display); font-size: 1.25rem; text-transform: uppercase; color: var(--chalk); margin: 0.5rem 0 0.35rem; }
.shot__meta { font-size: 0.875rem; color: var(--muted-dark); }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: var(--z-raised); }

/* CTA band */
.band {
  background: var(--paint); color: var(--asphalt-900);
  padding-block: clamp(2.75rem, 6vw, 4rem);
}
.band__in { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 880px) { .band__in { grid-template-columns: 1fr auto; } }
.band .h2 { max-width: 30ch; }
.band p { max-width: 56ch; margin-top: 0.75rem; }
.band__cta { display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* page hero (inner pages) */
.phero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--asphalt-900);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.phero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; z-index: var(--z-deco);
  background: repeating-linear-gradient(90deg, var(--paint) 0 44px, transparent 44px 88px);
}
.phero__in { position: relative; z-index: var(--z-content); }
.crumbs {
  font-family: var(--util); font-size: 0.9375rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted-dark); margin-bottom: 1rem;
}
.crumbs a:hover { color: var(--paint); }
.crumbs span { color: var(--asphalt-600); margin-inline: 0.5rem; }

/* 14 ── FOOTER =========================================================== */
.foot { background: var(--asphalt-900); color: var(--muted-dark); border-top: 4px solid var(--paint); }
.foot__top {
  display: grid; gap: clamp(2rem, 4vw, 3rem); padding-block: clamp(3rem, 6vw, 4.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.foot__brand { max-width: 34ch; }
.foot__brand img { width: 200px; margin-bottom: 1.25rem; }
.foot h2 {
  font-family: var(--util); font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--paint);
  margin: 0 0 1.1rem;
}
.foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.foot__list a { font-family: var(--util); font-size: 1.0625rem; letter-spacing: 0.03em; }
.foot__list a:hover { color: var(--paint); }
.social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--asphalt-600); color: var(--concrete);
  transition: background-color .16s, color .16s, border-color .16s;
}
.social a:hover { background: var(--paint); color: var(--asphalt-900); border-color: var(--paint); }
.social svg { width: 19px; height: 19px; fill: currentColor; }
.foot__bar {
  border-top: 1px solid var(--asphalt-700); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  font-family: var(--util); font-size: 0.9375rem; letter-spacing: 0.03em;
}
.foot__bar a:hover { color: var(--paint); }

/* sticky mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-backdrop);
  display: none; grid-template-columns: 1fr 1fr;
  background: var(--asphalt-900); border-top: 2px solid var(--paint);
}
.callbar a {
  padding: 0.95rem 0.5rem; text-align: center;
  font-family: var(--util); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--chalk);
}
.callbar a + a { background: var(--paint); color: var(--asphalt-900); }
@media (max-width: 720px) {
  .callbar { display: grid; }
  body { padding-bottom: 56px; }
}

/* 15 ── REVEAL + MOTION ================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s }
.reveal:nth-child(3) { transition-delay: .14s }
.reveal:nth-child(4) { transition-delay: .21s }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .lot .stall, .lot .aisle, .lot .hatch, .lot .curb, .lot .arrow { stroke-dashoffset: 0; }
  .lot .aisle { opacity: .55; }
  .lot .ada-field, .lot .ada-mark, .lot__tag { opacity: 1; }
  .btn:hover, .card:hover { transform: none; }
}
