/* ==========================================================================
   Texas Waste Management — "North Texas fleet and dispatch operation"

   The page is built like a working operation, not a brochure: a service desk
   you can read at a glance, two numbered service lines, a fleet band carrying
   the real truck, a spec sheet of what every account includes, and a route
   timeline from first call to first pickup.

   Type rule: NO negative letter-spacing. Hierarchy is size, weight and
   line-height. Positive tracking only on small uppercase labels.
   Flag rule: the navy/red/green stripe is a structural divider — header,
   media edges, CTA panel — never decoration.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink:          #0E1B2A;
  --ink-2:        #16273B;
  --ink-3:        #27405A;
  --navy:         #1B3A6B;
  --tx-red:       #B3122E;
  --green:        #1F6B3F;
  --green-dark:   #17542F;
  --green-tint:   #E9F2EC;
  --green-bright: #5FD08A;

  --white:        #FFFFFF;
  --paper:        #F4F6F8;
  --paper-2:      #E9EEF3;
  --line:         #D7DEE6;
  --line-soft:    #E6EBF1;

  --text:         #14202D;
  --text-muted:   #4A5A6B;
  --text-on-dark: #E6EDF5;
  --text-on-dark-muted: #A6B8CB;

  --focus:        #0B63CE;

  --r:      8px;
  --r-sm:   6px;
  --r-xs:   4px;

  --shadow-sm: 0 1px 2px rgba(14, 27, 42, .05), 0 1px 3px rgba(14, 27, 42, .07);
  --shadow-md: 0 2px 4px rgba(14, 27, 42, .05), 0 8px 20px rgba(14, 27, 42, .08);
  --shadow-lg: 0 4px 8px rgba(14, 27, 42, .06), 0 22px 48px rgba(14, 27, 42, .13);

  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;  --s5: 24px;
  --s6: 32px;  --s7: 48px;  --s8: 64px;  --s9: 96px;  --s10: 128px;

  --container: 1200px;
  --gutter: 20px;

  --flag: linear-gradient(90deg,
    var(--navy) 0 34%, var(--tx-red) 34% 67%, var(--green) 67% 100%);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

@media (min-width: 768px)  { :root { --gutter: 28px; } }
@media (min-width: 1200px) { :root { --gutter: 32px; } }

.on-dark { --focus: #7FB3FF; }

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  padding-bottom: calc(57px + env(safe-area-inset-bottom, 0px));
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) { body { padding-bottom: 0; } }

img, svg, video, canvas { max-width: 100%; }
img { display: block; height: auto; }
svg { display: block; }

/* Overflow hardening — flex/grid children may shrink below content width. */
.container, .grid, .split, .form-grid, .route__list, .service-desk__grid,
.lines, .spec, .pay-grid, .hero__grid, .fleet__grid, .site-footer__main,
.cta-band__inner, .section-head--split, .dispatch, .spotlight, .intake,
.startflow, .linkrows { min-width: 0; }

.container > *, .grid > *, .split > *, .form-grid > *, .route__list > *,
.service-desk__grid > *, .lines > *, .spec > *, .pay-grid > *, .hero__grid > *,
.fleet__grid > *, .site-footer__main > *, .cta-band__inner > *,
.section-head--split > *, .dispatch > *, .spotlight > *, .intake > *,
.startflow > *, .linkrows > * { min-width: 0; }

h1, h2, h3, h4, p, li, a, label, dd, dt, button, td, th { overflow-wrap: break-word; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(1.95rem, 1.35rem + 2.6vw, 3.2rem);  line-height: 1.12; }
h2 { font-size: clamp(1.5rem, 1.18rem + 1.35vw, 2.2rem);  line-height: 1.2;  }
h3 { font-size: clamp(1.08rem, 1.02rem + .28vw, 1.22rem); line-height: 1.35; }
h4 { font-size: 1rem; line-height: 1.4; }

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

ul, ol { margin: 0 0 1.05em; padding-left: 1.25em; }
li { margin-bottom: .35em; }

a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: var(--tx-red); }

strong { font-weight: 700; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: var(--r-xs); }
:focus:not(:focus-visible) { outline: none; }

::selection { background: var(--green); color: #fff; }

[id] { scroll-margin-top: 96px; }
#main:focus { outline: none; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--s7); }
@media (min-width: 768px)  { .section { padding-block: 72px; } }
@media (min-width: 1200px) { .section { padding-block: var(--s9); } }

.section--tight { padding-block: var(--s6); }
@media (min-width: 768px) { .section--tight { padding-block: var(--s7); } }

.band-paper  { background: var(--paper); }
.band-paper2 { background: var(--paper-2); }
.band-white  { background: var(--white); }
.band-ink    { background: var(--ink); color: var(--text-on-dark); }

.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4,
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }

/* Faint route grid — used on dark bands so they read as one system. */
.routegrid { position: relative; overflow: hidden; }
.routegrid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.routegrid > * { position: relative; }

.section-head { max-width: 640px; margin-bottom: var(--s6); }
.section-head p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 0; }
.band-ink .section-head p, .on-dark .section-head p { color: var(--text-on-dark-muted); }

.section-head--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  max-width: none;
  margin-bottom: var(--s6);
}
@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: var(--s7);
    align-items: end;
    margin-bottom: var(--s7);
  }
  .section-head--split > :last-child { padding-bottom: 6px; }
}
.section-head--split h2 { margin-bottom: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 var(--s3);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 3px;
  background: var(--tx-red);
  border-radius: 2px;
  flex: none;
}
.band-ink .eyebrow, .on-dark .eyebrow { color: var(--green-bright); }

.lede { font-size: 1.06rem; color: var(--text-muted); }
.on-dark .lede, .band-ink .lede { color: var(--text-on-dark); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.brandbar { height: 3px; background: var(--flag); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  max-width: 100%;
  min-height: 50px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--green); border-color: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn--primary:active { background: #124023; border-color: #124023; }

.btn--secondary { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn--secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn--secondary:active { background: var(--paper); }

.btn--ghost { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn--ghost:active { background: rgba(255,255,255,.2); }

.btn--lg { min-height: 56px; padding: 15px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 44px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.link-arrow svg { width: 15px; height: 15px; flex: none; transition: transform .18s ease; }
.link-arrow:hover { color: var(--green); }
.link-arrow:hover svg { transform: translateX(4px); }
.on-dark .link-arrow { color: var(--green-bright); }
.on-dark .link-arrow:hover { color: #fff; }

/* --------------------------------------------------------------------------
   5. Skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 20px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header { position: relative; z-index: 100; background: var(--white); }

.utility-strip { background: var(--ink); color: var(--text-on-dark-muted); font-size: .86rem; }
.utility-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2) var(--s6);
  min-height: 44px;
}
.utility-strip__note { display: none; align-items: center; gap: var(--s2); margin: 0; }
.utility-strip__note svg { width: 15px; height: 15px; color: var(--green-bright); flex: none; }
.utility-strip__actions { display: flex; align-items: center; gap: var(--s5); }
.utility-strip a {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 44px;
  color: var(--text-on-dark);
  font-weight: 600;
  text-decoration: none;
}
.utility-strip a:hover { color: #fff; text-decoration: underline; }
.utility-strip svg { width: 15px; height: 15px; flex: none; }
.utility-strip__hours { display: none; align-items: center; gap: var(--s2); }
.utility-strip__pay { display: none; }
@media (min-width: 1000px) {
  .utility-strip .container { justify-content: space-between; }
  .utility-strip__note { display: inline-flex; }
  .utility-strip__hours, .utility-strip__pay { display: inline-flex; }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck .navbar { box-shadow: 0 4px 16px rgba(14,27,42,.10); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: 68px;
}
@media (min-width: 1024px) { .navbar .container { min-height: 90px; gap: var(--s6); } }

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  flex: none;
  text-decoration: none;
  color: inherit;
}
.brand img { height: 42px; width: auto; }
@media (min-width: 420px)  { .brand img { height: 46px; } }
@media (min-width: 1024px) {
  .brand img { height: 60px; }
  .brand { padding-right: var(--s5); border-right: 1px solid var(--line); }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 46px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  flex: none;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.primary-nav { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; }
.primary-nav ul a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
}

.navbar__actions { display: none; }
@media (min-width: 1024px) {
  .navbar__actions { display: flex; align-items: center; gap: var(--s5); flex: none; }
}
.navbar__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 46px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.navbar__phone svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.navbar__phone:hover { color: var(--green); }
.navbar__phone small {
  display: block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (min-width: 1024px) and (max-width: 1199px) { .navbar .navbar__phone { display: none; } }

@media (max-width: 1023px) {
  .primary-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: var(--s2) var(--gutter) var(--s5);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }
  .primary-nav[hidden] { display: none; }
  .primary-nav:not([hidden]) { display: block; }
  .primary-nav li { margin: 0; border-bottom: 1px solid var(--line-soft); }
  .primary-nav ul a { min-height: 56px; font-size: 1.05rem; }
  .primary-nav ul a[aria-current="page"] { color: var(--green); }
  .nav-drawer-actions { display: grid; gap: var(--s3); margin-top: var(--s5); }
  .nav-drawer-actions .btn { width: 100%; }
}
@media (min-width: 1024px) {
  .nav-toggle, .nav-drawer-actions { display: none; }
  .primary-nav { display: block !important; }
  .primary-nav ul { display: flex; align-items: center; gap: var(--s1); }
  .primary-nav li { margin: 0; }
  .primary-nav ul a {
    position: relative;
    padding-inline: var(--s3);
    height: 90px;
    border-bottom: 3px solid transparent;
  }
  .primary-nav ul a:hover { color: var(--green); border-bottom-color: var(--line); }
  .primary-nav ul a[aria-current="page"] { color: var(--green); border-bottom-color: var(--green); }
}

.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-3);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 18px rgba(14,27,42,.18);
}
.action-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 56px;
  padding: 8px 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
}
.action-bar a svg { width: 17px; height: 17px; flex: none; }
.action-bar a.is-primary { background: var(--green); }
.action-bar a:hover { color: #fff; }
@media (min-width: 1024px) { .action-bar { display: none; } }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { background: var(--ink); color: var(--text-on-dark); }
.hero__grid { display: grid; grid-template-columns: 1fr; }
.hero__content { padding: var(--s7) 0 var(--s6); max-width: 620px; }
.hero h1 { color: #fff; margin-bottom: var(--s4); }
.hero__lede {
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--text-on-dark);
  max-width: 54ch;
  margin-bottom: var(--s5);
}
.hero__call { margin: var(--s4) 0 0; font-size: .97rem; color: var(--text-on-dark-muted); }
.hero__call a { color: #fff; font-weight: 800; text-decoration: none; white-space: nowrap; }
.hero__call a:hover { color: var(--green-bright); text-decoration: underline; }

.hero__points {
  list-style: none;
  margin: var(--s5) 0 0;
  padding: var(--s5) 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  font-size: .93rem;
  color: var(--text-on-dark-muted);
}
.hero__points li { display: flex; align-items: center; gap: var(--s2); margin: 0; }
.hero__points svg { width: 15px; height: 15px; color: var(--green-bright); flex: none; }

.hero__media { position: relative; margin-inline: calc(var(--gutter) * -1); }
.hero__media img {
  width: 100%; height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: 52% 60%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,27,42,.5), rgba(14,27,42,0) 42%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    align-items: stretch;
    gap: var(--s7);
  }
  .hero__content { padding: var(--s9) 0 100px; align-self: center; }
  .hero__media {
    margin: 0;
    margin-right: calc(var(--gutter) * -1 - max(0px, (100vw - var(--container)) / 2));
  }
  .hero__media img { min-height: 540px; }
  .hero__media::after {
    background: linear-gradient(to right,
      rgba(14,27,42,.94), rgba(14,27,42,.2) 30%, rgba(14,27,42,0) 58%);
  }
}

/* Interior page hero */
.pagehero { background: var(--ink); color: var(--text-on-dark); }
.pagehero__inner { padding: var(--s6) 0 var(--s7); max-width: 720px; }
@media (min-width: 768px) { .pagehero__inner { padding: var(--s7) 0 var(--s8); } }
.pagehero h1 { color: #fff; margin-bottom: var(--s4); }
.pagehero__lede { font-size: 1.08rem; color: var(--text-on-dark); max-width: 56ch; margin: 0; }
.pagehero__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }

.crumbs { padding-top: var(--s4); font-size: .87rem; }
.crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2);
  list-style: none; margin: 0; padding: 0; color: var(--text-on-dark-muted);
}
.crumbs li { margin: 0; display: flex; align-items: center; gap: var(--s2); }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.32); }
.crumbs a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; min-width: 44px; padding-inline: 6px;
  color: var(--text-on-dark); text-decoration: none;
}
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li > span { display: inline-flex; align-items: center; min-height: 44px; }
.crumbs [aria-current="page"] { color: var(--green-bright); font-weight: 600; }

/* --------------------------------------------------------------------------
   8. Service desk — the operational hub, overlapping the hero
   -------------------------------------------------------------------------- */
.service-desk-wrap { background: var(--paper); }
.service-desk-wrap .container { padding-block: var(--s5) 0; }
@media (min-width: 1024px) {
  .service-desk-wrap .container { padding-block: 0; }
  .service-desk { margin-top: -56px; }
}

.service-desk {
  position: relative;
  z-index: 5;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--line-soft);
}
.service-desk__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2) var(--s4);
  padding: 11px var(--s5);
  background: var(--ink);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-desk__head b { display: inline-flex; align-items: center; gap: var(--s3); font-weight: 800; }
.service-desk__head b::before {
  content: "";
  width: 22px; height: 3px;
  border-radius: 2px;
  background: var(--green-bright);
  flex: none;
}
.service-desk__head span { color: var(--text-on-dark-muted); }

.service-desk__grid { display: grid; grid-template-columns: 1fr; gap: 1px; }
@media (min-width: 620px)  { .service-desk__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .service-desk__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.service-desk__item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  min-height: 88px;
  padding: var(--s4) var(--s5);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: background-color .16s ease;
}
.service-desk__item:hover { background: var(--paper); color: var(--ink); }
.service-desk__item:hover .service-desk__value { color: var(--green); }
.service-desk__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--green-tint);
  color: var(--green);
}
.service-desk__icon svg { width: 20px; height: 20px; }
.service-desk__label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-desk__value {
  display: block;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.3;
  transition: color .16s ease;
}
.service-desk__item--call .service-desk__value { font-size: 1.3rem; }
.service-desk__item--call .service-desk__icon { background: var(--ink); color: var(--green-bright); }

/* --------------------------------------------------------------------------
   9. Service lines — one unit, two numbered halves (not two cards)
   -------------------------------------------------------------------------- */
.lines {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
@media (min-width: 860px) { .lines { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.line { display: flex; flex-direction: column; background: var(--white); text-decoration: none; color: var(--text); }
.line__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.line__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.line:hover .line__media img { transform: scale(1.04); }
.line__media--product { background: var(--green-tint); }
.line__media--product img { object-fit: contain; padding: var(--s5) var(--s5) var(--s4); }

.line__index {
  position: absolute;
  left: 0; top: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 9px var(--s4);
  background: var(--ink);
  color: var(--green-bright);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  border-bottom-right-radius: var(--r-xs);
}
.line__index svg { width: 14px; height: 14px; flex: none; }

.line__body { display: flex; flex-direction: column; flex: 1; padding: var(--s6) var(--s5) var(--s5); }
.line__body h3 { font-size: 1.32rem; margin-bottom: var(--s2); }
.line__body > p { color: var(--text-muted); font-size: .99rem; margin-bottom: var(--s5); }
.line__points { list-style: none; margin: 0 0 var(--s5); padding: 0; font-size: .94rem; color: var(--text-muted); }
.line__points li { display: flex; align-items: flex-start; gap: var(--s2); margin-bottom: var(--s2); }
.line__points svg { width: 15px; height: 15px; color: var(--green); flex: none; margin-top: 4px; }
.line__go {
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: 48px;
  font-weight: 800;
  color: var(--navy);
}
.line__go svg { width: 17px; height: 17px; flex: none; transition: transform .18s ease; }
.line:hover .line__go { color: var(--green); }
.line:hover .line__go svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   10. Fleet band — the strongest section; photo bleeds to the viewport edge
   -------------------------------------------------------------------------- */
.fleet { background: var(--ink); color: var(--text-on-dark); overflow: hidden; }
.fleet__grid { display: grid; grid-template-columns: 1fr; }
.fleet__media { position: relative; margin-inline: calc(var(--gutter) * -1); }
.fleet__media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.fleet__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(14,27,42,.55), rgba(14,27,42,0) 45%);
}
.fleet__body { padding: var(--s7) 0; }

/* Livery plate — the number on the truck, shown as a data plate on the photo */
.fleet__plate {
  position: absolute;
  left: 0; bottom: var(--s5);
  z-index: 2;
  padding: var(--s3) var(--s5) var(--s3) var(--s4);
  background: var(--ink);
  border-left: 3px solid var(--green);
  border-top-right-radius: var(--r-xs);
  border-bottom-right-radius: var(--r-xs);
  box-shadow: var(--shadow-md);
}
.fleet__plate span {
  display: block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.fleet__plate a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.fleet__plate a:hover { color: var(--green-bright); }

@media (min-width: 1024px) {
  .fleet__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: var(--s8);
  }
  .fleet__media {
    order: -1;
    margin: 0;
    margin-left: calc(var(--gutter) * -1 - max(0px, (100vw - var(--container)) / 2));
  }
  .fleet__media img { min-height: 540px; }
  .fleet__media::after {
    background: linear-gradient(to left,
      rgba(14,27,42,.9), rgba(14,27,42,.15) 34%, rgba(14,27,42,0) 62%);
  }
  .fleet__plate { bottom: var(--s7); }
  .fleet__body { padding: var(--s9) 0; align-self: center; }
}

/* --------------------------------------------------------------------------
   11. Spec sheet — what every account includes (not a card grid)
   -------------------------------------------------------------------------- */
.spec { border-top: 2px solid var(--ink); }
.spec__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s2);
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 820px) {
  .spec__row {
    grid-template-columns: 56px minmax(0, .9fr) minmax(0, 1.2fr);
    gap: var(--s6);
    align-items: baseline;
    padding: var(--s6) 0;
  }
}
.spec__num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--green);
  line-height: 1.9;
}
.spec__term { font-size: 1.1rem; font-weight: 800; color: var(--ink); line-height: 1.35; }
.spec__detail { color: var(--text-muted); margin: 0; }
.on-dark .spec { border-top-color: var(--green-bright); }
.on-dark .spec__row { border-bottom-color: var(--ink-3); }
.on-dark .spec__term { color: #fff; }
.on-dark .spec__detail { color: var(--text-on-dark-muted); }
.on-dark .spec__num { color: var(--green-bright); }

/* --------------------------------------------------------------------------
   12. Route timeline — an axis, not four boxes
   -------------------------------------------------------------------------- */
.route__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  counter-reset: stop;
}
.route__item { position: relative; margin: 0; padding-left: 62px; }
.route__item::before {
  counter-increment: stop;
  content: "0" counter(stop);
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-xs);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .06em;
}
.route__item::after {
  content: "";
  position: absolute;
  left: 21px; top: 54px; bottom: -38px;
  width: 2px;
  background: var(--line);
}
.route__item:last-child::after { display: none; }
.route__item h3 { margin-bottom: 5px; font-size: 1.1rem; padding-top: 7px; }
.route__item p { color: var(--text-muted); font-size: .96rem; margin: 0; }

@media (min-width: 900px) {
  .route__list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s6); }
  .route__item { padding-left: 0; padding-top: 66px; }
  .route__item::after {
    left: 54px; top: 21px; bottom: auto;
    right: calc(var(--s6) * -1);
    width: auto; height: 2px;
  }
  .route__item h3 { padding-top: 0; }
}
.on-dark .route__item::before { background: var(--green); }
.on-dark .route__item::after { background: var(--ink-3); }
.on-dark .route__item p { color: var(--text-on-dark-muted); }

/* --------------------------------------------------------------------------
   13. Dispatch module — the premium phone path (contact, pay bill, business)
   -------------------------------------------------------------------------- */
.dispatch {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ink);
  color: var(--text-on-dark);
  border-radius: var(--r);
  overflow: hidden;
}
@media (min-width: 880px) { .dispatch { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); } }

.dispatch__main { padding: var(--s7) var(--s6); }
.dispatch .dispatch__label {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin: 0 0 var(--s4);
}
.dispatch .dispatch__label::before {
  content: "";
  width: 24px; height: 3px;
  border-radius: 2px;
  background: var(--green-bright);
  flex: none;
}
.dispatch__num {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  min-height: 56px;
  font-size: clamp(1.85rem, 1.25rem + 2.1vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.dispatch__num svg { width: 28px; height: 28px; color: var(--green-bright); flex: none; }
.dispatch__num:hover { color: var(--green-bright); }
.dispatch__hours {
  display: block;
  margin-top: var(--s2);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.dispatch__main p { color: var(--text-on-dark-muted); margin: var(--s4) 0 0; max-width: 46ch; }
.dispatch__main .btn-row { margin-top: var(--s5); }

.dispatch__side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s6);
  background: rgba(255,255,255,.04);
  border-top: 1px solid var(--ink-3);
}
@media (min-width: 880px) {
  .dispatch__side { border-top: 0; border-left: 1px solid var(--ink-3); padding: var(--s7) var(--s6); }
}
.dispatch__side dl { margin: 0; }
.dispatch__side dt {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 3px;
}
.dispatch__side dd { margin: 0 0 var(--s5); color: #fff; font-size: 1rem; }
.dispatch__side dd:last-child { margin-bottom: 0; }
.dispatch__side h3 { color: #fff; font-size: 1.02rem; margin-bottom: var(--s2); }
.dispatch__side p { color: var(--text-on-dark-muted); font-size: .95rem; margin: 0; }

/* --------------------------------------------------------------------------
   14. Spotlight (residential) — the container, given room
   -------------------------------------------------------------------------- */
.spotlight {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}
@media (min-width: 900px) {
  .spotlight { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: stretch; }
}
.spotlight__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: var(--s7) var(--s6);
  background: var(--green-tint);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .spotlight__media { border-bottom: 0; border-right: 1px solid var(--line); } }
.spotlight__media img { max-width: 240px; width: 100%; }
.spotlight__tag {
  position: absolute;
  left: 0; top: 0;
  padding: 9px var(--s4);
  background: var(--ink);
  color: var(--green-bright);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom-right-radius: var(--r-xs);
}
.spotlight__body { padding: var(--s7) var(--s6); }
.spotlight__body h2 { margin-bottom: var(--s3); }

/* --------------------------------------------------------------------------
   15. Intake band (business) — copy left, fleet strip right
   -------------------------------------------------------------------------- */
.intake {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}
@media (min-width: 900px) { .intake { grid-template-columns: minmax(0, 1fr) minmax(0, .68fr); } }
.intake__body { padding: var(--s7) var(--s6); }
.intake__body h2 { margin-bottom: var(--s3); }
.intake__media { position: relative; min-height: 240px; background: var(--ink); }
.intake__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.intake__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--flag);
}

/* --------------------------------------------------------------------------
   16. Start flow (residential) — compact numbered pairs
   -------------------------------------------------------------------------- */
.startflow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  counter-reset: sf;
}
@media (min-width: 700px) { .startflow { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.startflow li { display: flex; gap: var(--s4); margin: 0; padding: var(--s5); background: var(--white); }
.startflow li::before {
  counter-increment: sf;
  content: "0" counter(sf);
  flex: none;
  padding-top: 4px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--green);
}
.startflow h3 { font-size: 1.04rem; margin-bottom: 3px; }
.startflow p { font-size: .95rem; color: var(--text-muted); margin: 0; }

/* --------------------------------------------------------------------------
   17. Link rows — hairline navigation lists (contact, doorside valet)
   -------------------------------------------------------------------------- */
.linkrows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.linkrows li { margin: 0; border-bottom: 1px solid var(--line); }
.linkrows a {
  display: flex;
  align-items: center;
  gap: var(--s4);
  min-height: 84px;
  padding: var(--s4) 0;
  color: var(--ink);
  text-decoration: none;
}
.linkrows a:hover { color: var(--green); }
.linkrows__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--green-tint);
  color: var(--green);
}
.linkrows__icon svg { width: 20px; height: 20px; }
.linkrows b { display: block; font-size: 1.05rem; font-weight: 800; }
.linkrows small { display: block; font-size: .93rem; color: var(--text-muted); font-weight: 400; }
.linkrows__go { margin-left: auto; flex: none; color: var(--navy); }
.linkrows__go svg { width: 18px; height: 18px; transition: transform .18s ease; }
.linkrows a:hover .linkrows__go { color: var(--green); }
.linkrows a:hover .linkrows__go svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   18. Split + checklist (shared)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr; gap: var(--s6); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s8); }
  .split--reverse .split__media { order: 2; }
}
.split__media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
}
.split__media img { width: 100%; }
.split__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--flag);
}

.checklist { list-style: none; margin: 0 0 var(--s5); padding: 0; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: var(--s3); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .32em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--green-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F6B3F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.band-ink .checklist li::before, .on-dark .checklist li::before {
  background-color: rgba(95,208,138,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235FD08A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --------------------------------------------------------------------------
   19. Panels + CTA band
   -------------------------------------------------------------------------- */
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--r);
  padding: var(--s6) var(--s5);
}
.panel--navy { border-left-color: var(--navy); }
.panel h2 { font-size: 1.4rem; margin-bottom: var(--s3); }
.panel h3 { font-size: 1.05rem; margin-bottom: var(--s2); }
.panel p { color: var(--text-muted); }

.cta-band { background: var(--ink); color: var(--text-on-dark); }
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: center;
  padding: var(--s7) 0;
}
@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: var(--s8);
    padding: var(--s8) 0;
  }
}
.cta-band h2 { color: #fff; margin-bottom: var(--s3); }
.cta-band p { color: var(--text-on-dark); margin: 0; max-width: 52ch; }
.cta-band__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-3);
  border-radius: var(--r);
  padding: var(--s6) var(--s5);
  background: rgba(255,255,255,.04);
}
.cta-band__panel::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--flag);
}
.cta-band__panel .btn { width: 100%; }
.cta-band__panel > * + * { margin-top: var(--s4); }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); font-size: .96rem; }
.site-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  padding: var(--s7) 0 var(--s6);
}
@media (min-width: 700px)  { .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s7); } }
@media (min-width: 1024px) {
  .site-footer__main {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: var(--s7);
    padding: var(--s8) 0 var(--s7);
  }
}

.footer-brand__plaque {
  display: inline-block;
  background: var(--white);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-sm);
  margin-bottom: var(--s4);
}
.footer-brand__plaque img { height: 46px; width: auto; }
.footer-brand p { color: var(--text-on-dark-muted); max-width: 38ch; margin-bottom: var(--s4); }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  min-height: 48px;
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.footer-phone:hover { color: var(--green-bright); }
.footer-phone svg { width: 20px; height: 20px; color: var(--green-bright); flex: none; }

.site-footer h2 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s3);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0; }
.site-footer li a {
  display: flex; align-items: center; min-height: 44px;
  color: var(--text-on-dark); text-decoration: none;
}
.site-footer li a:hover { color: var(--green-bright); text-decoration: underline; }
.footer-fact { color: var(--text-on-dark); margin: 0 0 var(--s4); }
.footer-fact:last-child { margin-bottom: 0; }
.footer-fact strong {
  display: block;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.site-footer__bottom {
  border-top: 1px solid var(--ink-3);
  padding: var(--s5) 0 var(--s6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  align-items: center;
  justify-content: space-between;
  font-size: .87rem;
}
.site-footer__bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   21. Motion — opt-in, safe with JS off
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   22. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .action-bar { display: none !important; }
  body { font-size: 12pt; color: #000; padding-bottom: 0; }
  .hero, .pagehero, .fleet, .band-ink, .dispatch { background: #fff !important; color: #000 !important; }
  .hero h1, .pagehero h1, .fleet h2, .dispatch__num { color: #000 !important; }
}
