/* ==========================================================================
   Responsive Hauling — site.css
   Royal blue + fresh green, Archivo display / Inter body.
   Mobile-first. Sticky mobile call bar. Balanced grids (see DESIGN-SPEC.md).
   ========================================================================== */

:root {
  /* Design v2 blue ramp */
  --blue: #1E5FBF;
  --blue-dark: #123E82;
  --blue-ink: #0C2A57;
  --band-dark: #081C3A;
  --blue-soft: #EAF2FD;

  /* Design v2 green ramp — logo green promoted to the CTA fill.
     Text on --green-cta is --blue-ink (7.37:1), never white (1.92:1). */
  --green: #7ED07E;
  --green-cta: #70D070;
  --green-cta-dark: #5EC463;
  --green-deep: #2FA84F;
  --green-ink: #1E7E3C;
  --green-soft: #ECF8EE;
  --on-cta: #0C2A57;

  /* neutrals */
  --ink: #13181F;
  --ink-2: #344357;
  --muted: #64748B;
  --muted-2: #8895A6;
  --paper: #FFFFFF;
  --mist: #F2F6FB;
  --line: #DCE5F0;

  /* Barlow Semi Condensed caps display + Barlow body */
  --font-display: 'Barlow Semi Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Barlow', Helvetica, Arial, sans-serif;
  --track-display: .005em;
  --track-eyebrow: .16em;

  /* Industrial radius scale — 999px is deliberately absent from the system. */
  --radius-none: 0;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-round: 50%;
  /* legacy aliases remapped onto the new scale */
  --radius: 6px;
  --radius-btn: 6px;
  --shadow-soft: 0 8px 24px rgba(12,42,87,.08), 0 2px 6px rgba(12,42,87,.05);
  --shadow-lift: 0 20px 48px rgba(12,42,87,.16), 0 4px 12px rgba(12,42,87,.08);
  --gutter: 32px;
  --section-y: clamp(64px, 8vw, 104px);
  --focus: 0 0 0 3px rgba(30,95,191,.35);
}

/* ───────── Reset ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ───────── Typography ───────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
  line-height: 1.02;
  color: var(--blue-ink);
  text-wrap: balance;
}
.h1 { font-size: clamp(3rem, 4.6vw + 1.2rem, 4.75rem); }
.h2 { font-size: clamp(2.1rem, 2.4vw + .9rem, 3.05rem); line-height: 1.04; }
.h3 { font-size: 1.4375rem; line-height: 1.12; text-transform: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--green-ink);
}
.eyebrow.on-dark { color: var(--green); }
.eyebrow.on-blue { color: var(--blue); }

.lede {
  font-size: 1.1875rem;
  color: var(--ink-2);
  line-height: 1.62;
  max-width: 58ch;
  text-wrap: pretty;
}
p, li { text-wrap: pretty; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

.section { padding: var(--section-y) 0; }
.section-alt { background: var(--mist); }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-lg { height: 58px; padding: 0 32px; font-size: 1.1875rem; }
.btn-sm { height: 42px; padding: 0 18px; font-size: .9375rem; }

.btn-cta {
  background: var(--green-cta);
  color: var(--on-cta);
  box-shadow: 0 8px 20px rgba(112, 208, 112, 0.38);
}
.btn-cta:hover { background: var(--green-cta-dark); transform: translateY(-1px); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(30, 95, 191, 0.24); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--blue-ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(30,95,191,0.05); }

.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: #fff; color: var(--blue-dark); border-color: #fff; }

.btn-ghost { background: transparent; color: var(--blue-ink); height: auto; padding: 0; }

.btn .icon-arrow { transition: transform .15s ease; }
.btn:hover .icon-arrow { transform: translateX(3px); }

/* ───────── Utility bar ───────── */
.utility { background: var(--blue-ink); color: #fff; font-size: 12.5px; }
.utility-inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 18px; }
.utility a { color: #fff; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.utility a:hover { color: var(--green); }
.utility .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(126,208,126,0.25);
}
.utility .sep { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }
.utility-muted { color: rgba(255,255,255,0.72); }
@media (max-width: 700px) {
  .utility .hide-sm { display: none; }
}

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--green-cta);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--blue-ink);
}
.nav-phone:hover { color: var(--blue); }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--line); border-radius: 10px;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--blue-ink); position: relative; }
.nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--blue-ink); transition: transform .2s ease;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* Services dropdown — desktop hover */
.has-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; background: none; border: none; }
.dropdown-trigger .caret { transition: transform .15s ease; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 18px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  z-index: 50;
}
.dropdown-panel a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink-2);
}
.dropdown-panel a:hover { background: var(--mist); color: var(--blue); }
.dropdown-panel .dd-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--mist); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (min-width: 881px) {
  .has-dropdown:hover .dropdown-panel,
  .has-dropdown.force-open .dropdown-panel { display: grid; }
  .has-dropdown:hover .caret { transform: rotate(180deg); }
}

@media (max-width: 880px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { height: 68px; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 68px 0 0 0;
  background: #fff;
  z-index: 39;
  overflow-y: auto;
  padding: 8px 24px 100px;
  display: none;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a, .mobile-menu button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: var(--blue-ink); background: none; border-top: none; border-left: none; border-right: none;
}
.mobile-submenu { display: none; padding-left: 12px; }
.mobile-submenu.is-open { display: block; }
.mobile-submenu a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); border-bottom: 1px dashed var(--line); padding: 12px 4px;
}
.mobile-menu .mm-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .caret-btn { transition: transform .2s ease; }
.mobile-menu .caret-btn.is-open { transform: rotate(180deg); }

/* ───────── Logo ───────── */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img { height: 46px; width: auto; }
.logo-sm .logo-img { height: 34px; }
.logo-lg .logo-img { height: 58px; }
.recycle-mark { height: 28px; width: auto; display: inline-block; }

/* ───────── Hero (home) ───────── */
.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(128deg, var(--blue-dark) 0%, var(--band-dark) 62%);
  color: #fff;
  padding: clamp(48px,6vw,84px) 0 clamp(96px,10vw,132px);
}
.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 420px at 88% 8%, rgba(126,208,126,0.22), transparent 60%),
    radial-gradient(600px 400px at 4% 100%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.hero-home h1 { color: #fff; }
.hero-home h1 .hi-accent { color: var(--green); }
.hero-sub { margin-top: 20px; font-size: clamp(16px, 1.3vw, 19px); color: rgba(255,255,255,0.86); max-width: 46ch; text-wrap: pretty; }
.hero-ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trustline {
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 20px 26px;
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.hero-trustline span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trustline .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-visual { position: relative; }
.hero-ghost {
  position: absolute; right: -130px; top: -120px; width: 520px;
  opacity: .07; filter: brightness(4); pointer-events: none; z-index: 0;
}
.hero-ground {
  position: absolute; left: 8%; right: 8%; bottom: -26px; height: 44px;
  background: radial-gradient(ellipse at center, rgba(4,14,30,.55) 0%, rgba(4,14,30,0) 70%);
  filter: blur(6px);
}
.hero-photo-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 5/4;
  transform: rotate(-1deg);
}
.hero-chip {
  position: absolute; left: -18px; bottom: 26px; z-index: 2;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero-chip .num {
  font-family: var(--font-display); font-weight: 800; font-size: 34px;
  line-height: 1; color: var(--blue-ink);
}
.hero-chip .sub { font-size: 12px; color: var(--muted); line-height: 1.35; }
.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 72px; display: block; }
.trust-lift { margin-top: -58px; position: relative; z-index: 2; }
@media (max-width: 860px) {
  .hero-ghost { display: none; }
  .hero-photo-wrap { transform: none; }
  .hero-chip { left: 12px; bottom: 12px; padding: 11px 14px; }
  .hero-chip .num { font-size: 27px; }
  .trust-lift { margin-top: 0; }
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(12,42,87,0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { aspect-ratio: 16/9; }
}

/* ───────── Hero (compact, subpages) ───────── */
.hero-compact {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 54px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-compact::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 92% 0%, rgba(126,208,126,0.22), transparent 65%);
}
.hero-compact-inner { position: relative; max-width: 74ch; }
.hero-compact h1 { color: #fff; font-size: clamp(32px, 4.6vw, 50px); }
.hero-compact .hero-sub { color: rgba(255,255,255,0.85); max-width: 60ch; }
.hero-breadcrumb {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 14px;
}

/* ───────── USP strip ───────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}
.usp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
}
.usp-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blue-ink); }
.usp-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
@media (max-width: 860px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ───────── Icon chip ───────── */
.icon-chip {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(150deg, #e9f8ea, #d6f0d8);
  color: var(--green-cta-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-chip.blue { background: linear-gradient(150deg, #e7effb, #d4e3f8); color: var(--blue); }
.icon-chip.on-dark { background: rgba(255,255,255,0.14); color: #fff; }
.icon-chip.sm { width: 40px; height: 40px; }
.icon-chip.lg { width: 64px; height: 64px; }

/* ───────── Category grid (8 cards, balanced 4x2 desktop / 2-col tablet / 1-col mobile) ───────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}
.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 12px;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: transparent; }
.category-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--blue-ink); }
.category-card p { font-size: 13px; color: var(--muted); line-height: 1.48; flex-grow: 1; }
.category-card .cc-more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--green-cta-dark); }
/* 8 cards: 4-wide desktop (two clean rows), 2-wide tablet, 1-col mobile */
@media (max-width: 900px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .category-grid { grid-template-columns: 1fr; } }

/* ───────── Sub-service / related grid (dynamic cols) ───────── */
.service-grid { display: grid; gap: var(--gutter); }
.service-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.service-card-sm {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px; height: 100%;
  display: flex; flex-direction: column; gap: 10px;
}
.service-card-sm h4 { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--blue-ink); }
.service-card-sm p { font-size: 13px; color: var(--muted); flex-grow: 1; }
.service-card-sm .sc-link { font-size: 12.5px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 860px) {
  .service-grid.cols-3, .service-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .service-grid.cols-2, .service-grid.cols-3, .service-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ───────── Steps row ───────── */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.step-card { position: relative; padding: 8px 4px; }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 40px;
  color: var(--line); line-height: 1; margin-bottom: 12px;
}
.step-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--blue-ink); margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.steps-row .step-card:not(:last-child)::after {
  content: '';
  position: absolute; top: 24px; right: -12px;
  width: 0; height: 0;
}
@media (max-width: 880px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-row { grid-template-columns: 1fr; } }

.steps-row.compact { gap: 18px; }
.steps-row.compact .step-num { font-size: 28px; margin-bottom: 6px; }

/* ───────── Eco band ───────── */
.eco-band {
  background: linear-gradient(120deg, #1f7a3f, var(--green-cta-dark));
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.eco-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px 320px at 8% 100%, rgba(255,255,255,0.12), transparent 60%);
}
.eco-inner { position: relative; display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 44px; align-items: center; }
.eco-inner h2 { color: #fff; }
.eco-inner .lede { color: rgba(255,255,255,0.9); }
.eco-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.14); border-radius: var(--radius-sm); padding: 8px 16px;
  font-size: 13px; font-weight: 700; margin-top: 18px;
}
@media (max-width: 880px) { .eco-inner { grid-template-columns: 1fr; } }

/* ───────── Before / after gallery ───────── */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.ba-pair {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-imgs figure { margin: 0; position: relative; aspect-ratio: 1/1; overflow: hidden; }
.ba-imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ba-pair:hover img { transform: scale(1.04); }
.ba-imgs figcaption {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(12,42,87,0.82); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px;
}
.ba-imgs figure.after figcaption { background: var(--green-cta-dark); }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ba-grid { grid-template-columns: 1fr; } }

/* ───────── Review badges ───────── */
.review-band { text-align: center; }
.review-platforms { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.review-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 24px; box-shadow: var(--shadow-soft);
}
.review-badge .rb-name { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--blue-ink); }
.review-badge .rb-stars { color: #F5A623; display: flex; gap: 2px; }
.review-badge:hover { border-color: var(--blue); }

/* ───────── City chips ───────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.city-chip {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--blue-ink);
}
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
.city-chip-link { cursor: pointer; transition: border-color .15s, color .15s, background .15s; }
.city-chip-link:hover { border-color: var(--blue); color: var(--blue); background: #fff; }

/* ───────── CTA band ───────── */
.cta-band {
  background: var(--blue-ink);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 340px at 90% 10%, rgba(126,208,126,0.18), transparent 60%);
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); max-width: 22ch; }
.cta-inner p { color: rgba(255,255,255,0.82); margin-top: 8px; max-width: 46ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ───────── Footer ───────── */
.footer { background: var(--blue-ink); color: rgba(255,255,255,0.82); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.78); }
.footer ul a:hover { color: var(--green); }
.footer-tagline { margin-top: 16px; font-size: 14.5px; color: rgba(255,255,255,0.7); max-width: 30ch; line-height: 1.6; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--green); }
.footer-cities-list { display: flex; flex-wrap: wrap; gap: 6px 10px; }
.footer-cities-list span { font-size: 13px; color: rgba(255,255,255,0.62); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--green-cta); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--green); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ───────── Mobile call bar ───────── */
.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(18,62,130,0.12);
}
.mobile-call-bar .btn {
  flex: 1 1 0;
  padding-left: 8px; padding-right: 8px;
  font-size: 12.5px;
  white-space: nowrap;
}
.mobile-call-bar .btn span { overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 760px) {
  .mobile-call-bar { display: flex; }
  /* keep the footer clear of the fixed 3-button bar */
  body { padding-bottom: 84px; }
}
@media (max-width: 400px) {
  .mobile-call-bar { gap: 6px; padding-left: 8px; padding-right: 8px; }
  .mobile-call-bar .btn { font-size: 11.5px; padding-left: 4px; padding-right: 4px; }
}

/* ───────── About page ───────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.team-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px; }
.team-photo {
  width: 108px; height: 108px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px;
  border: 3px solid var(--mist); box-shadow: var(--shadow-soft);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar {
  width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--blue), var(--blue-dark));
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 34px;
  box-shadow: var(--shadow-soft);
}
.team-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--blue-ink); }
.team-card .team-role { font-size: 12.5px; font-weight: 700; color: var(--green-ink); text-transform: uppercase; letter-spacing: 0.05em; margin: 4px 0 10px; }
.team-card p { font-size: 13.5px; color: var(--muted); }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-strip figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); margin-top: 40px; }
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--blue); }
.stat-item .lbl { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 4px; }
@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ───────── Contact / quote form ───────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; }
.contact-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--blue-ink); }
.contact-card a, .contact-card p { font-size: 14.5px; color: var(--muted); }
.contact-card a:hover { color: var(--blue); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; font-size: 14.5px; color: var(--ink-2); }
.contact-meta p { display: flex; align-items: center; gap: 8px; }
.contact-meta a { color: var(--blue); font-weight: 600; }

/* ───────── What-we-haul grid (construction debris page) ───────── */
.haul-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.haul-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; display: flex; flex-direction: column; gap: 10px;
}
.haul-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--blue-ink); }
.haul-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 980px) { .haul-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .haul-grid { grid-template-columns: 1fr; } }

/* ───────── Accessibility / prose ───────── */
.prose { max-width: 74ch; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--blue-ink); margin: 32px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.7; }
.prose ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.prose li { color: var(--ink-2); margin-bottom: 6px; }

/* ───────── City page local note ───────── */
.city-local-note { margin-top: 20px; max-width: 74ch; padding: 16px 20px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; }

/* ───────── Blog article ───────── */
.article-body { max-width: 70ch; margin: 0 auto; }
.article-body .prose { max-width: none; }
.article-callout {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--green-cta-dark);
  background: rgba(126,208,126,0.14); border: 1px solid rgba(126,208,126,0.4);
  border-radius: var(--radius-sm); padding: 8px 16px; margin-bottom: 28px;
}

/* ───────── 404 ───────── */
.notfound { padding: 100px 0; text-align: center; }
.notfound h1 { font-size: clamp(40px, 6vw, 64px); }
.notfound p { margin: 16px auto 28px; color: var(--muted); max-width: 50ch; }

/* ───────── Misc utility classes ───────── */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.stack { display: flex; flex-direction: column; gap: 14px; }
.row-wrap { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ==========================================================================
   v2 additions — consolidated IA
   Item pages folded into anchored sections on their category page; new
   services hub, service-areas hub, and Housecall Pro online booking.
   ========================================================================== */

/* ───────── Call + Book CTA row ───────── */
.ctarow {
  background: var(--mist);
  border-block: 1px solid var(--line);
  padding: 18px 0;
}
.ctarow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.ctarow-note {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 640px) {
  .ctarow-inner > .btn { flex: 1 1 100%; justify-content: center; }
  .ctarow-note { flex: 1 1 100%; text-align: center; }
}

/* ───────── Jump nav (anchor chips on long category pages) ───────── */
.jumpnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.jumpnav-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.jumpnav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jumpchip {
  display: inline-block;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: border-color .15s, color .15s, background .15s;
}
.jumpchip:hover { border-color: var(--blue); color: var(--blue); background: var(--mist); }

/* ───────── Item block (was its own route in v1) ───────── */
.itemblock { scroll-margin-top: 96px; }   /* clears the sticky jumpnav on anchor jump */
.itemblock-head { margin-bottom: 18px; }
.itemblock-title {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.18;
  text-wrap: balance;
  margin-top: 6px;
}
.itemblock .prose { max-width: 76ch; }
.itemblock .prose p { text-wrap: pretty; }
.itemblock .prose p + p { margin-top: 14px; }
.itemblock-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
@media (max-width: 640px) {
  .itemblock-cta > .btn { flex: 1 1 100%; justify-content: center; }
}

/* ───────── Service areas grid ───────── */
/* 12 cities → 2/3/4 columns all divide evenly, so no orphan card at any breakpoint. */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}
.area-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--blue);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 14px 0 6px;
}
.area-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
@media (max-width: 1024px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .area-grid { grid-template-columns: repeat(2, 1fr); } }

/* ───────── Booking (Housecall Pro) ───────── */
.booking-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
.booking-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  min-height: 520px;
}
/* Inline HCP booking iframe */
.booking-frame {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity .25s ease;
}
.booking-frame.is-loaded { opacity: 1; }
.booking-loading {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}
.booking-fallback {
  padding: 28px 20px;
  text-align: center;
}
.booking-fallback p { margin-bottom: 14px; color: var(--muted); }
.booking-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
}
.booking-note a { color: var(--blue); font-weight: 600; }
.booking-aside {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--mist);
  border: 1px solid var(--line);
}
.booking-aside h3 { font-size: 22px; margin-bottom: 10px; text-wrap: balance; }
.booking-aside p { color: var(--ink-2); }
.tick-list { margin-top: 20px; display: grid; gap: 10px; }
.tick-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.tick-list svg { color: var(--green-cta); flex: none; }
@media (max-width: 900px) {
  .booking-wrap { grid-template-columns: 1fr; }
}

/* ───────── Nav dropdown: "All Services" head link ───────── */
.dropdown-panel .dd-all {
  font-weight: 700;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  padding-bottom: 10px;
}


/* ───────── Design v2 additions ───────── */
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: none; box-shadow: var(--focus); }
.section-dark { background: var(--band-dark); color: #fff; }
.section-dark .h-display, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p, .section-dark .lede { color: #B8CCE8; }
.eco-band { background: var(--green-soft); border-block: 1px solid #CFE9D5; }
.usp-card h3, .category-card h3, .service-card-sm h4 { text-transform: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(112,208,112,.16); border: 1px solid rgba(112,208,112,.45);
  color: #CFF3D2; border-radius: var(--radius-sm); padding: 7px 15px 7px 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em;
}
.hero-badge .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--green-cta); box-shadow: 0 0 0 4px rgba(112,208,112,.22); }

/* photo service cards (Design v2) */
.category-card.has-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.category-card .cc-photo { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--mist); }
.category-card .cc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.category-card.has-photo:hover .cc-photo img { transform: scale(1.045); }
.category-card.has-photo h3 { margin: 18px 18px 0; }
.category-card.has-photo p { margin: 8px 18px 0; }
.category-card.has-photo .cc-more { margin: 12px 18px 18px; }

/* crew shot */
.crew-shot {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lift); margin-bottom: 40px;
}
.crew-shot img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: 50% 32%; }


/* ==========================================================================
   INDUSTRIAL PASS (Codex consult, 2026-08-25)
   Less fluffy: no pills, no circular icon wells, no card lift, no soft glow.
   Cards become keyed panels. Stats read like specifications.
   ========================================================================== */

/* --- kill every pill --- */
.eco-badge, .city-chip, .article-callout, .jumpchip, .hero-badge,
.ba-pair figcaption, .review-badge, .stat-item, .booking-note {
  border-radius: var(--radius-sm);
}

/* --- icon wells: equipment-label blocks, not circles --- */
.icon-chip, .dropdown-panel .dd-icon, .footer-social a {
  border-radius: var(--radius-sm) !important;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  color: var(--blue-dark);
}
.icon-chip { width: 44px; height: 44px; }
.dropdown-panel .dd-icon { width: 34px; height: 34px; }
.team-photo, .team-avatar { border-radius: var(--radius-sm) !important; }

/* genuine status dots stay round */
.utility .dot, .hero-trustline .pip, .hero-badge .pip { border-radius: 50% !important; }

/* --- cards become keyed panels: hairline box, blue top key, no shadow --- */
.usp-card, .category-card, .step-card, .area-card, .contact-card,
.service-card-sm, .team-card, .review-badge {
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-md);
  box-shadow: none;
}
.usp-card:hover, .category-card:hover, .area-card:hover, .service-card-sm:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
  border-top-color: var(--green-ink);
}
.category-card.has-photo:hover .cc-photo img,
.ba-pair:hover img { transform: none; }
.btn-cta:hover, .btn-primary:hover { transform: none; }

/* --- photo frames sit tight --- */
.hero-photo-wrap, .crew-shot, .ba-imgs figure, .gallery-strip figure,
.category-card .cc-photo, .hero-photo-wrap img {
  border-radius: var(--radius-sm);
}
.hero-photo-wrap { transform: none; }

/* --- display type: tighter, harder --- */
.h1 { font-size: clamp(2.6rem, 3.2vw + 1rem, 4rem); line-height: .92; letter-spacing: 0; }
.h2 { font-size: clamp(1.9rem, 1.9vw + .9rem, 2.625rem); line-height: 1; letter-spacing: 0; }
.h3 { text-transform: none; }

/* eyebrow: plain caps with a green bar, no pill, no chip */
.eyebrow {
  background: none;
  border: 0;
  padding: 0;
  border-radius: 0;
  gap: 10px;
  color: var(--green-ink);
}
.eyebrow::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--green-cta);
  flex: 0 0 3px;
}
.eyebrow.on-dark { color: var(--green); }

/* rule under every section heading */
.section-head h2::after,
.section-head .h-display::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--blue);
  margin: 16px 0 0;
}
.section-dark .section-head h2::after { background: var(--green-cta); }

/* --- stats read like specifications --- */
.stat-item, .hero-chip {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-cta);
  box-shadow: none;
  background: var(--paper);
}
.stat-item .num, .hero-chip .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: .9;
  color: var(--blue-ink);
}
.stat-item .lbl, .hero-chip .sub {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-2);
}

/* --- hero proportion (Codex numbers) --- */
.hero-home { padding: 72px 0 80px; }
.hero-grid {
  grid-template-columns: minmax(0, 498px) minmax(0, 682px);
  gap: 36px;
  align-items: center;
}
.hero-photo-wrap { aspect-ratio: 4 / 3; }
.hero-chip { left: 24px; bottom: 24px; min-width: 184px; padding: 14px 16px 12px; }
.hero-ghost { display: none; }

/* hero CTAs: booking full width, then call + text side by side */
.hero-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.hero-ctas > :first-child { grid-column: 1 / -1; }
.hero-ctas .btn { width: 100%; }

/* straight structural break instead of the curve */
.hero-curve { display: none; }
.hero-home { border-bottom: 4px solid var(--blue); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-home { padding: 48px 0 56px; }
}
@media (max-width: 640px) {
  .hero-ctas { grid-template-columns: 1fr; }
  .hero-ctas > :first-child { grid-column: auto; }
}

/* ───────── Split-parent nav disclosure ───────── */
.dd-parent { display: inline-flex; align-items: stretch; }
.dd-label { display: inline-flex; align-items: center; padding-right: 10px; }
.dd-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; min-height: 44px; padding: 0;
  background: none; border: 0; border-left: 1px solid var(--line);
  color: var(--ink-2); cursor: pointer;
}
.dd-toggle:hover { color: var(--blue); }
.has-dropdown.is-open .dd-toggle .caret { transform: rotate(180deg); }

.dropdown-panel[hidden] { display: none; }
.has-dropdown.is-open > .dropdown-panel { display: block; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(8, 28, 58, .16);
  padding: 16px;
  z-index: 60;
}
.dd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.dd-grid > a {
  display: flex; align-items: center; gap: 11px;
  min-height: 48px; padding: 12px 14px;
  border: 1px solid var(--line); margin: -0.5px;
  border-radius: 0;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  color: var(--ink-2);
}
.dd-grid > a:hover { background: var(--mist); color: var(--blue-dark); }
.dd-grid-plain > a { font-weight: 600; }
.dd-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .06em; color: var(--blue);
  min-height: 44px;
}
.dd-foot:hover { color: var(--blue-dark); }
.has-dropdown:has(> .dropdown-panel:not([hidden])) { position: relative; }

/* Service Areas panel is narrower — 12 cities in 3 columns */
#areas-panel { width: 600px; }

/* mobile accordion rows */
.mm-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mm-row > a { flex: 1; }
.mm-row > button {
  width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; border-left: 1px solid var(--line); color: var(--ink-2); cursor: pointer;
}
.caret-btn { transition: transform .15s ease; }
.caret-btn.is-open { transform: rotate(180deg); }

@media (max-width: 1080px) {
  .dropdown-panel { width: 560px; }
  .dd-grid { grid-template-columns: repeat(2, 1fr); }
  #areas-panel { width: 460px; }
}


/* ==========================================================================
   ACCESSIBILITY FIXES (audited in-browser 2026-08-25)
   Every ratio below was measured against the real painted backdrop.
   ========================================================================== */

/* eco band: I turned the panel light in the industrial pass but its text was
   still white (1.09:1). Light panel now carries dark text. */
.eco-band { background: var(--green-soft); border-block: 1px solid #CFE9D5; }
.eco-band .h-display,
.eco-band h2,
.eco-band h3 { color: var(--blue-ink); }
.eco-band p,
.eco-band .lede { color: var(--ink-2); }
.eco-band .eyebrow,
.eco-band .eyebrow.on-dark { color: var(--green-ink); }
.eco-band .eco-badge {
  background: var(--paper);
  border: 1px solid #CFE9D5;
  color: var(--blue-ink);
}

/* "Learn more" was --green-cta-dark on white = 2.20:1 -> --green-ink = 5.12:1 */
.category-card .cc-more { color: var(--green-ink); }

/* step numbers were --line on white = 1.27:1. They are ornamental, so they are
   hidden from assistive tech AND darkened enough to be legible. */
.step-num { color: var(--blue-soft); }
.step-card .step-num { color: #9DB6D6; }

/* before/after captions: white on --green-cta-dark was 2.20:1 */
.ba-pair figure.after figcaption { background: var(--green-ink); color: #fff; }
.ba-pair figcaption { background: var(--blue-ink); color: #fff; }

/* hero badge: lift the label so it clears AA on the dark gradient */
.hero-badge { color: #EAFBEC; background: rgba(112,208,112,.20); border-color: rgba(112,208,112,.55); }

/* touch targets: 44px minimum on primary nav and footer social */
.nav-links > a, .dd-label { min-height: 44px; display: inline-flex; align-items: center; }
.footer-social a { width: 44px; height: 44px; }

/* visually hidden, still announced */
.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;
}
.footer .foot-h {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .06em; color: #fff;
}

/* step numbers: #9DB6D6 on white measured 2.08:1. Large-text needs 3:1.
   --muted (#64748B) measures ~4.8:1 and still reads as a quiet ordinal. */
.step-num, .step-card .step-num { color: var(--muted); }

/* chevron hit area to the 44px minimum */
.dd-toggle { width: 44px; }


/* ==========================================================================
   UX PASS 2026-08-25 — tighter rhythm, solid chips, review rail, eco media
   ========================================================================== */

/* --- whitespace: the page was too airy end to end --- */
:root { --section-y: clamp(48px, 5.2vw, 76px); }
.section { padding: var(--section-y) 0; }
.section-tight { padding: clamp(32px, 3.6vw, 48px) 0; }
.section-head { margin-bottom: 32px; }
.hero-home { padding: 56px 0 64px; }
.eco-band { padding: clamp(44px, 5vw, 68px) 0; }
.review-band { padding-bottom: clamp(40px, 4.4vw, 60px); }
.footer { padding-top: clamp(44px, 5vw, 64px); }
.usp-grid, .category-grid, .steps-row, .area-grid { gap: 20px; }

/* --- city chips: solid white so they read against the mist band --- */
.city-chip, .city-chip-link {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--blue-ink);
  font-weight: 700;
}
.city-chip-link:hover {
  background: var(--blue-ink);
  border-color: var(--blue-ink);
  color: #fff;
}

/* --- nav: no vertical keylines around the chevrons --- */
.dd-toggle { border-left: 0; }
.mm-row > button { border-left: 0; }

/* --- footer wordmark reads white on the navy --- */
.footer .logo-img { filter: brightness(0) invert(1); opacity: .96; }
.footer .logo span, .footer .footer-tagline { color: #fff; }

/* --- eco band: real photo on the left --- */
.eco-inner { align-items: center; gap: 44px; }
.eco-media { position: relative; }
.eco-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-sm); display: block;
}
.eco-media .eco-badge {
  position: absolute; left: 16px; bottom: 16px; margin: 0;
  background: var(--paper); border: 1px solid #CFE9D5; color: var(--blue-ink);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 9px 14px; border-radius: var(--radius-sm);
}

/* --- review rail: horizontal scroll-snap of real reviews --- */
.rev-rail-wrap { margin-top: 28px; }
.rev-rail {
  display: flex; gap: 20px; list-style: none; margin: 0;
  padding: 4px var(--gutter) 20px;
  max-width: calc(1216px + var(--gutter) * 2);
  margin-inline: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}
.rev-rail:focus-visible { outline: none; box-shadow: var(--focus); }
.rev-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green-cta);
  border-radius: var(--radius-md);
  padding: 22px 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.rev-card blockquote {
  margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2);
}
.rev-card footer {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.rev-who {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: .04em; color: var(--blue-ink);
}
.rev-src { font-size: 12.5px; color: var(--muted); }
.rev-card-cta {
  background: var(--blue-ink); border-top-color: var(--green-cta);
  align-items: flex-start; justify-content: center; gap: 6px;
}
.rev-cta-num {
  font-family: var(--font-display); font-weight: 800; font-size: 52px;
  line-height: .9; color: #fff;
}
.rev-cta-lbl {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #B8CCE8;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .rev-card { flex-basis: 82%; }
  .eco-inner { gap: 28px; }
}


/* ==========================================================================
   FABLE PASS 2026-08-25 — badges band, job plates, road truck, eco stencil
   ========================================================================== */
.badges-band { background: var(--mist); border-bottom: 1px solid var(--line); }
.badges-band .review-platforms { display: flex; gap: 16px; justify-content: center; padding: 0 0 22px; }
.badges-band .trust-lift { margin-top: -26px; position: relative; z-index: 5; }
.badges-band .review-badge { background: var(--paper); }

.hero-road-truck {
  position: absolute; right: 6%; bottom: -4px; width: 140px; height: auto;
  z-index: 3; pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(4,14,30,.35));
}
@media (max-width: 900px) { .hero-road-truck { display: none; } }

.ba-plate {
  display: inline-flex; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--green-cta);
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; color: var(--blue-ink);
  padding: 8px 12px; margin-bottom: 12px;
}

.eco-band { position: relative; overflow: hidden; }
.eco-stencil {
  position: absolute; right: -90px; bottom: -110px; width: 400px; height: auto;
  opacity: .12; pointer-events: none;
  filter: brightness(0) saturate(100%) invert(31%) sepia(44%) saturate(700%) hue-rotate(90deg);
}
.eco-inner, .eco-band .container { position: relative; }

.city-label {
  display: flex; align-items: baseline; justify-content: center; gap: 18px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.city-label-note { font-size: 15px; font-weight: 600; color: var(--ink-2); }


/* ───────── Item accordion grid (services slim, 2026-08-25) ───────── */
.item-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px;
  align-items: start;
}
.item-cell {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-md);
  scroll-margin-top: 96px;
}
.item-cell.is-open { border-left-color: var(--green-cta); }
.item-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: 0; cursor: pointer; text-align: left;
  min-height: 56px; padding: 14px 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  text-transform: none; color: var(--blue-ink);
}
.item-toggle:hover { color: var(--blue); }
.item-body { padding: 0 18px 18px; }
.item-body p { font-size: 15.5px; line-height: 1.62; color: var(--ink-2); margin-bottom: 12px; }
.item-body .itemblock-cta { display: flex; gap: 12px; margin-top: 4px; }
@media (max-width: 760px) { .item-grid { grid-template-columns: 1fr; } }

/* ctarow-note measured 4.39:1 on the mist band — under AA's 4.5. */
.ctarow-note { color: var(--ink-2); }

/* step blurbs measured 4.39:1 (muted on mist). ink-2 clears AA everywhere. */
.step-card p, .steps-row p { color: var(--ink-2); }


/* ───────── Service landing hero (2026-08-25) ───────── */
.hero-service { padding: 44px 0 60px; }
.hero-service .hero-grid {
  grid-template-columns: minmax(0, 520px) minmax(0, 660px);
  gap: 36px;
}
.hero-service .h1 { font-size: clamp(2.3rem, 2.6vw + 1rem, 3.4rem); }
.hero-service .hero-sub { max-width: 52ch; }
.hero-photo-service { aspect-ratio: 3 / 2; transform: none; }
.hero-service .hero-trustline { align-items: center; }
.hero-service .hero-trustline strong { color: #fff; }
@media (max-width: 900px) {
  .hero-service .hero-grid { grid-template-columns: 1fr; }
  .hero-service { padding: 36px 0 48px; }
}


/* ───────── Nav v2: chevronless, consistent spacing (2026-08-25) ───────── */
.dd-parent { display: contents; }
.nav-links { gap: 4px; }
.nav-links > a, .has-dropdown > .dd-label {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 13px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2);
}
.nav-links > a:hover, .has-dropdown > .dd-label:hover,
.has-dropdown.is-open > .dd-label { background: var(--mist); color: var(--blue-dark); }
.nav-links > a.active { color: var(--blue-dark); }
.dd-toggle { display: none; }

/* the panel: cleaner rows, aligned under the trigger, no cell borders */
.dropdown-panel {
  left: 0; transform: none;
  padding: 10px;
  border-radius: var(--radius-md);
  border-top-width: 3px;
}
.dd-grid { gap: 2px; }
.dd-grid > a {
  border: 0; margin: 0; border-radius: var(--radius-sm);
  min-height: 46px; padding: 10px 12px;
  font-weight: 600; font-size: 15px; color: var(--ink-2);
}
.dd-grid > a:hover { background: var(--blue-soft); color: var(--blue-dark); }
.dd-foot { margin-top: 10px; padding-top: 12px; }

/* mobile menu polish */
.mm-row { border-top: 1px solid var(--line); }
.mm-row > a { min-height: 52px; display: flex; align-items: center;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.mm-plus { position: relative; width: 16px; height: 16px; display: inline-block; }
.mm-plus::before, .mm-plus::after {
  content: ''; position: absolute; background: var(--blue-ink); transition: transform .18s ease;
}
.mm-plus::before { left: 0; right: 0; top: 7px; height: 2px; }
.mm-plus::after { top: 0; bottom: 0; left: 7px; width: 2px; }
.mm-plus.is-open::after { transform: scaleY(0); }
.mobile-submenu { background: var(--mist); border-radius: var(--radius-sm); }
.mobile-submenu.is-open { padding: 8px 0; }
.mobile-submenu a { min-height: 44px; display: flex; align-items: center; padding-left: 18px; font-size: 15.5px; }

/* ───────── City map (2026-08-25) ───────── */
.citymap-frame {
  position: relative;
  background: linear-gradient(150deg, #0E2A52 0%, #061631 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: var(--shadow-lift);
}
.citymap-frame svg { width: 100%; height: auto; display: block; }
.citymap-note {
  position: absolute; right: 12px; bottom: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em; color: #6D89B4;
}
.hero-city .hero-grid { align-items: center; }
@media (max-width: 900px) { .hero-city .hero-visual { margin-top: 8px; } }
