/* ============================================================
   SEAL TEAM SIX — Production stylesheet
   Tactical-premium. Asphalt black + safety yellow.
   ============================================================ */

/* -------- TOKENS -------- */
:root {
  /* Colors */
  --asphalt-0: #0B0B0D;
  --asphalt-1: #141417;
  --asphalt-2: #1C1C20;
  --asphalt-3: #26262B;
  --asphalt-4: #34343A;

  --yellow: #FFD200;
  --yellow-deep: #E5BC00;
  --yellow-soft: #FFE066;

  --concrete-1: #6B7076;
  --concrete-2: #9AA0A6;
  --concrete-3: #BFC4C9;

  --road-white: #F4F4F5;
  --hi-vis: #C8FF00;
  --danger: #FF3D2E;

  /* Type */
  --f-display: 'Oswald', 'Archivo Black', 'Arial Black', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --f-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --max-w: 1440px;
  --pad-x: clamp(20px, 4vw, 56px);

  /* Shadows */
  --sh-card: 0 10px 30px rgba(0, 0, 0, .5), 0 2px 6px rgba(0, 0, 0, .3);
  --sh-cta: 0 8px 24px rgba(255, 210, 0, .28), 0 1px 3px rgba(0, 0, 0, .4);
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  /* Keep in-page anchors clear of the sticky header. */
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--asphalt-0);
  color: var(--road-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute; top: -40px; left: 16px; z-index: 100;
  background: var(--yellow); color: var(--asphalt-0);
  padding: 10px 14px; font-family: var(--f-display);
  font-weight: 700; text-decoration: none; letter-spacing: .06em;
  text-transform: uppercase; font-size: 13px;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* -------- TYPE UTILITIES -------- */
.display {
  font-family: var(--f-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: -.01em;
  line-height: .92; margin: 0;
}
.mil-label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow); font-weight: 500;
}
.mil-label-white {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--concrete-2); font-weight: 500;
}

/* -------- LAYOUT -------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* -------- TEXTURES -------- */
.asphalt-grain { position: relative; background-color: var(--asphalt-1); }
.asphalt-grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 22% 38%, rgba(255,255,255,.025) 0 1px, transparent 1.5px),
    radial-gradient(circle at 71% 12%, rgba(255,255,255,.018) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 78%, rgba(255,255,255,.02)  0 1px, transparent 1.5px),
    radial-gradient(circle at 12% 88%, rgba(255,255,255,.015) 0 1px, transparent 1.5px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.012) 0 1px, transparent 1.5px);
  background-size: 6px 6px, 4px 4px, 5px 5px, 7px 7px, 3px 3px;
  opacity: .9; mix-blend-mode: screen;
}

.hud-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,210,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,210,0,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 85%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 85%);
}

.hazard {
  background-image: repeating-linear-gradient(45deg,
    var(--yellow) 0 14px, var(--asphalt-0) 14px 28px);
}
.hazard-thin {
  background-image: repeating-linear-gradient(45deg,
    var(--yellow) 0 6px, var(--asphalt-0) 6px 12px);
}

.road-divider {
  height: 14px; position: relative;
  background-image: repeating-linear-gradient(90deg,
    var(--yellow) 0 56px, transparent 56px 96px);
  background-size: 96px 14px;
  background-repeat: repeat-x;
  background-position: 0 50%;
}
.road-divider::before, .road-divider::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: rgba(255, 210, 0, .18);
}
.road-divider::before { top: 0; }
.road-divider::after  { bottom: 0; }

@keyframes roadLineFlow {
  from { background-position: 0 50%; }
  to   { background-position: -192px 50%; }
}
.road-flow { animation: roadLineFlow 2.2s linear infinite; }

.brackets { position: relative; }
.brackets::before, .brackets::after,
.brackets > .br-tr, .brackets > .br-br {
  content: ''; position: absolute; width: 14px; height: 14px;
  border: 2px solid var(--yellow); opacity: .85;
}
.brackets::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.brackets::after  { bottom: -2px; left: -2px; border-right: 0; border-top: 0; }
.brackets > .br-tr { top: -2px; right: -2px; border-left: 0; border-bottom: 0; }
.brackets > .br-br { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.stencil-arrow {
  display: inline-block; width: 56px; height: 18px; background: var(--yellow);
  clip-path: polygon(0 35%, 60% 35%, 60% 0, 100% 50%, 60% 100%, 60% 65%, 0 65%);
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: .06em;
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--yellow); color: var(--asphalt-0);
  box-shadow: var(--sh-cta);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  padding-left: 28px; padding-right: 28px;
}
.btn-primary:hover { background: var(--yellow-soft); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--road-white);
  border: 1.5px solid rgba(255, 255, 255, .22);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  padding-left: 28px; padding-right: 28px;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.arrow-r { width: 18px; height: 12px; display: inline-block; position: relative; }
.arrow-r::before {
  content: ''; position: absolute; left: 0; right: 6px; top: 50%; height: 2px;
  background: currentColor; transform: translateY(-50%);
}
.arrow-r::after {
  content: ''; position: absolute; right: 0; top: 50%; width: 8px; height: 8px;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* -------- FORM FIELDS -------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--concrete-2);
}
.field input, .field textarea, .field select {
  background: var(--asphalt-0);
  border: 1px solid var(--asphalt-4);
  color: var(--road-white);
  padding: 14px;
  font-family: var(--f-body); font-size: 15px;
  border-radius: 0; outline: none;
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--yellow);
}
.field input::placeholder, .field textarea::placeholder { color: var(--concrete-1); }

/* -------- LOGO MARK --------
   The nav carries the hexagon crest cropped out of the legacy shield: the
   full mark's banner text is unreadable below ~90px, so the crest pairs with
   the typeset name instead. The complete shield lives in the footer. */
/* The flex item is the <picture>, not the <img> inside it, so flex-shrink has
   to go here — otherwise the crest is squeezed to zero width on the narrower
   desktop widths where the nav row is tight. */
.nav-logo picture { display: flex; flex: 0 0 auto; }
.logo-crest {
  height: 40px; width: auto; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .55));
}
.logo-text { line-height: 1; display: flex; flex-direction: column; gap: 3px; }
.logo-text strong {
  font-family: var(--f-display); font-weight: 700; font-size: 19px;
  color: var(--road-white); letter-spacing: .04em; text-transform: uppercase;
}
.logo-text small {
  font-family: var(--f-mono); font-size: 9.5px;
  color: var(--concrete-2); letter-spacing: .32em; text-transform: uppercase;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 11, 13, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s ease, border-color .2s ease;
}
.nav.is-scrolled { background: rgba(11, 11, 13, .95); }
.nav-strip { height: 3px; }
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad-x); max-width: var(--max-w); margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-links { display: flex; gap: 28px; margin-left: 20px; }
.nav-links a {
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  color: var(--road-white); text-decoration: none;
  text-transform: uppercase; letter-spacing: .12em; position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--yellow); transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-spacer { flex: 1; }
.nav-phone {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--road-white);
}
.nav-phone svg { color: var(--yellow); }
.nav-phone-text { line-height: 1.1; }
.nav-phone-text small {
  font-family: var(--f-mono); font-size: 9px;
  color: var(--concrete-2); letter-spacing: .2em; text-transform: uppercase;
}
.nav-phone-text strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 15px; letter-spacing: .04em;
}
.nav-cta { font-size: 14px; padding: 12px 22px; }

/* The hamburger switches off at 900px, but the full row does not actually fit
   until ~1400px — the crest lockup is wider than the monogram it replaced. In
   between, every item was breaking onto a second line and the bar grew to
   94px. Keep the items unbreakable and tighten the spacing to close the gap. */
.nav-links a, .nav-phone-text strong, .nav-cta, .logo-text strong { white-space: nowrap; }
@media (max-width: 1400px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 20px; margin-left: 6px; }
}
@media (max-width: 1200px) {
  .logo-text small { display: none; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 12.5px; letter-spacing: .07em; }
  .nav-cta { font-size: 13px; padding: 11px 16px; }
  .logo-crest { height: 34px; }
}

.nav-toggle {
  display: none; width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--asphalt-4);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle-icon, .nav-toggle-icon::before, .nav-toggle-icon::after {
  display: block; width: 20px; height: 2px; background: var(--road-white);
  position: relative; transition: transform .2s ease, background .2s ease;
}
.nav-toggle-icon::before, .nav-toggle-icon::after {
  content: ''; position: absolute; left: 0;
}
.nav-toggle-icon::before { top: -7px; background: var(--yellow); }
.nav-toggle-icon::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 39;
  background: var(--asphalt-0);
  padding: 96px var(--pad-x) 40px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--f-display); font-weight: 700; font-size: 28px;
  color: var(--road-white); text-decoration: none;
  text-transform: uppercase; letter-spacing: .04em;
  padding: 14px 0; border-bottom: 1px solid var(--asphalt-3);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a::after {
  content: '→'; color: var(--yellow); font-size: 22px;
}
.mobile-menu .mobile-cta {
  margin-top: 24px; justify-content: space-between; font-size: 15px; padding: 16px 24px;
}
.mobile-menu .mobile-cta::after { content: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 820px; overflow: hidden;
  background: var(--asphalt-0);
  display: flex; align-items: stretch;
}
.hero-canvas { position: absolute; inset: 0; }
.hero-canvas canvas { width: 100% !important; height: 100% !important; display: block; }
.hero-fallback {
  position: absolute; inset: 0; background-size: cover; background-position: center 70%;
  filter: brightness(.55) contrast(1.15) saturate(.85);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, .92) 0%, rgba(11, 11, 13, .55) 45%, rgba(11, 11, 13, .25) 100%),
    linear-gradient(0deg, rgba(11, 11, 13, .85) 0%, rgba(11, 11, 13, .1) 50%);
}
.hero-reticle {
  position: absolute; top: 80px; right: 64px; width: 220px; height: 220px;
  opacity: .35; pointer-events: none;
}
.hero-side-label {
  position: absolute; left: 24px; top: 50%;
  transform: translateY(-50%) rotate(-90deg); transform-origin: left top;
  white-space: nowrap; pointer-events: none;
}
.hero-side-label .mil-label { font-size: 10px; opacity: .5; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 120px var(--pad-x) 80px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-title {
  font-size: clamp(56px, 9vw, 124px);
  color: var(--road-white); max-width: 1000px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}
.hero-title .yellow {
  color: var(--yellow); position: relative; display: inline-block;
}
.hero-title .yellow::after {
  content: ''; position: absolute; left: 0; bottom: -10px;
  height: 8px; width: 78%; background: var(--yellow);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.45;
  color: var(--concrete-3); max-width: 620px;
  margin-top: 36px; margin-bottom: 40px;
}
.hero-sub strong { color: var(--road-white); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-ctas .btn { font-size: 16px; padding: 18px 32px; }
.hero-ctas .booking {
  display: flex; align-items: center; gap: 10px; margin-left: 12px;
}
.hero-ctas .booking .dot {
  width: 6px; height: 6px; background: var(--hi-vis);
  border-radius: 50%; box-shadow: 0 0 8px var(--hi-vis);
}
.hero-ctas .booking span {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--concrete-2); letter-spacing: .18em; text-transform: uppercase;
}
.hero-stats {
  margin-top: clamp(48px, 8vh, 100px);
  display: flex; gap: clamp(24px, 4vw, 64px); flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: clamp(32px, 4vw, 44px); color: var(--road-white);
  line-height: 1; letter-spacing: -.01em;
}
.hero-stats .stat small {
  display: block; margin-top: 6px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--concrete-2); letter-spacing: .22em;
}
.hero-mascot {
  position: absolute; right: clamp(-40px, 2vw, 80px); bottom: 0;
  width: clamp(280px, 32vw, 540px); aspect-ratio: 1 / 1;
  background: url("../images/mascot-v2-600.webp") no-repeat center bottom / contain;
  pointer-events: none;
  /* Below .hero-inner (z-index 2). They used to tie, so the mascot painted
     over the hero copy and swallowed the end of every line. */
  z-index: 1;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .55));
}
.hero-glow-seam {
  position: absolute; left: 0; right: 0; bottom: 38px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hi-vis), transparent);
  box-shadow: 0 0 14px var(--hi-vis), 0 0 28px rgba(200, 255, 0, .5);
  z-index: 1;
}
.hero-road-flow {
  position: absolute; left: 0; right: 0; bottom: 18px; height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--yellow) 0 64px, transparent 64px 128px);
  background-size: 128px 6px; background-repeat: repeat-x;
  opacity: .95; z-index: 1;
}
.hero-corner { position: absolute; left: 56px; top: 100px; }
.hero-corner .brackets { width: 30px; height: 30px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
/* -------- BRUSH-STROKE ACCENT --------
   Rough painted bar lifted from the flyers' headline treatment. Used
   sparingly — a handful of key headings, never as page furniture. */
.brush {
  position: relative; display: inline-block; isolation: isolate;
  padding: 5px 20px 7px; color: var(--asphalt-0);
}
.brush::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cpath fill='%23FFD200' d='M6,16 L60,9 L120,15 L190,7 L260,14 L330,8 L394,15 L390,67 L320,72 L250,64 L180,71 L110,63 L50,70 L4,62 Z'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
}
.brush-ghost { color: var(--road-white); }
.brush-ghost::before { opacity: .16; }
/* Pale counterpart for the "BEFORE" chip. The flyers put white type on a
   black brush, but the chip sits on an already-dark panel here, so the fill
   is inverted to keep the pair legible. */
.brush-pale { color: var(--asphalt-0); }
.brush-pale::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cpath fill='%23F4F4F5' d='M6,16 L60,9 L120,15 L190,7 L260,14 L330,8 L394,15 L390,67 L320,72 L250,64 L180,71 L110,63 L50,70 L4,62 Z'/%3E%3C/svg%3E");
}

/* Flyer tagline sitting under a section headline. */
.section-kicker { margin: 18px 0 0; }
.section-kicker .brush {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(15px, 1.8vw, 19px);
  text-transform: uppercase; letter-spacing: .05em;
}
/* Two-line variant: each line gets its own stroke rather than one tall slab
   with the brush stretched over the wrap. */
.section-kicker-stack {
  display: flex; flex-direction: column; align-items: flex-start; gap: 7px;
}

.trust-bar {
  background: var(--asphalt-0); border-top: 1px solid var(--asphalt-3);
  padding: 30px 0 0;
}
/* Brand band: the full emblem sits directly under the hero, with the flyer
   proof points beside it. */
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; gap: 38px;
}
.trust-brand { flex: 0 0 auto; }
.trust-brand img {
  width: 196px; height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}
.trust-body {
  flex: 1 1 auto; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  border-left: 1px solid var(--asphalt-3); padding-left: 38px;
}
.trust-tagline {
  margin: 0; font-family: var(--f-display); font-weight: 700;
  font-size: clamp(17px, 2.2vw, 22px); text-transform: uppercase;
  letter-spacing: .04em;
}
/* Explicit grid, not flex-wrap: wrapping would settle on 3+1 at some widths
   and strand the fourth badge beneath an orphaned divider. */
.trust-badges {
  list-style: none; margin: 0; padding: 0; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-badges .badge {
  display: flex; align-items: center; justify-content: center; gap: 13px;
  padding: 6px 18px; color: var(--yellow); min-width: 0;
}
.trust-badges .badge + .badge { border-left: 1px solid var(--asphalt-3); }
/* Two-up once the emblem leaves too little room for four across; the divider
   then belongs only between the columns, never at the start of a row. */
@media (max-width: 1180px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .trust-badges .badge:nth-child(odd) { border-left: 0; }
}
.trust-badges .badge svg { width: 30px; height: 30px; flex-shrink: 0; }
.trust-badges .badge span {
  font-family: var(--f-display); font-weight: 600; font-size: 13.5px;
  color: var(--road-white); text-transform: uppercase;
  letter-spacing: .1em; line-height: 1.35;
}
/* Full-bleed yellow band, the flyer's closing strip. The torn top and bottom
   edges echo the flyers' ripped-tape banding. */
.trust-strip {
  margin: 26px 0 0; padding: 19px var(--pad-x);
  background: var(--yellow); color: var(--asphalt-0);
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .2em; text-align: center;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2px 10px;
  clip-path: polygon(
    0 13%, 7% 2%, 15% 11%, 24% 3%, 33% 12%, 43% 1%, 52% 10%,
    61% 3%, 70% 12%, 79% 2%, 88% 11%, 96% 3%, 100% 12%,
    100% 88%, 94% 98%, 85% 89%, 76% 97%, 66% 88%, 56% 98%, 46% 89%,
    36% 97%, 27% 88%, 18% 98%, 9% 89%, 0 97%
  );
}
/* -------- CREW WATERMARK --------
   Emblem figures reused as a faint background motif. Silhouettes, not the
   colour cutouts: the source figures are mostly black ink and would vanish
   against asphalt. */
.crew-watermark {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  z-index: 0;
}
.crew-watermark img {
  position: absolute; bottom: 0; width: auto; opacity: .05;
}
.crew-watermark img:first-child { left: -3%; height: 62%; }
.crew-watermark img:last-child { right: -2%; height: 56%; }
.why-us .section-inner { z-index: 1; }
@media (max-width: 900px) {
  .crew-watermark img:last-child { display: none; }
  .crew-watermark img:first-child { height: 42%; opacity: .04; }
}

.trust-strip .ph { white-space: nowrap; }
.trust-strip .dot { opacity: .45; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section { padding: clamp(64px, 10vh, 110px) var(--pad-x); position: relative; }
.section .road-divider {
  position: absolute; top: 0; left: 0; right: 0;
}
.section-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(40px, 6vw, 84px);
  color: var(--road-white);
}
.section-head h2 .yellow { color: var(--yellow); }
.section-head p {
  font-size: 16px; line-height: 1.55; color: var(--concrete-2);
  max-width: 360px; margin: 0 0 12px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background-color: var(--asphalt-1); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--asphalt-3);
}
.service-card {
  background: var(--asphalt-1); padding: 36px 32px 32px; min-height: 320px;
  position: relative; display: flex; flex-direction: column;
}
.service-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px;
}
.service-card .num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--yellow); letter-spacing: .18em;
}
.service-card h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 32px; color: var(--road-white);
  margin: 0 0 10px; text-transform: uppercase; letter-spacing: -.01em;
}
.service-card p {
  font-size: 14.5px; color: var(--concrete-2);
  line-height: 1.55; margin: 0 0 20px;
}
.service-card ul {
  list-style: none; padding: 0; margin: 0; margin-top: auto;
  display: flex; flex-direction: column; gap: 6px;
}
.service-card li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--concrete-3);
}
/* Yellow check-in-box marker, matching the flyers' service checklist. */
.service-card li::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0;
  border: 1.5px solid var(--yellow);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.4 6.4 12 13 4.6' fill='none' stroke='%23FFD200' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 11px 11px no-repeat;
}
.service-card .tag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--f-mono); font-size: 9px;
  color: var(--asphalt-0); background: var(--yellow);
  padding: 3px 8px; letter-spacing: .18em;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after-meta {
  display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 12px;
}
.before-after-meta .col strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 22px; color: var(--road-white); letter-spacing: .04em; margin-top: 4px;
}

.ba-slider {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden; cursor: ew-resize;
  border: 1px solid var(--asphalt-3);
  user-select: none; touch-action: none;
  background: var(--asphalt-1);
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.ba-slider .ba-before-wrap {
  position: absolute; inset: 0; width: 50%;
  overflow: hidden; pointer-events: none;
}
.ba-slider .ba-before-wrap img {
  width: 200vw; max-width: none;
  /* width is recalculated by JS so the before image stays aligned */
}
.ba-label {
  position: absolute; top: 20px;
  background: rgba(11, 11, 13, .85);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
}
.ba-label.before {
  left: 20px; border: 1px solid rgba(255, 255, 255, .12);
}
.ba-label.after {
  right: 20px; border: 1px solid rgba(255, 210, 0, .4);
}
.ba-label .mil-label-white { font-size: 10px; margin-top: 6px; }
.ba-label strong {
  display: inline-block; font-family: var(--f-display); font-weight: 700;
  font-size: 18px; letter-spacing: .06em; text-transform: uppercase;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 210, 0, .6);
  transform: translateX(-1px); pointer-events: none;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(255, 210, 0, .5), 0 8px 24px rgba(0, 0, 0, .5);
  pointer-events: auto;
}
.ba-knob:focus-visible { outline: 3px solid var(--road-white); }
.ba-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 28px;
  background: linear-gradient(0deg, rgba(11, 11, 13, .95), transparent);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 14px; pointer-events: none;
}

.ba-thumbs {
  margin-top: 16px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.ba-thumb {
  position: relative; height: 88px; cursor: pointer; padding: 0;
  border: 1px solid var(--asphalt-3); background: var(--asphalt-0);
  overflow: hidden;
}
.ba-thumb.is-active { outline: 2px solid var(--yellow); outline-offset: -2px; }
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity .2s; }
.ba-thumb.is-active img { opacity: 1; }
.ba-thumb .label {
  position: absolute; left: 8px; bottom: 8px;
  font-family: var(--f-mono); font-size: 9px; color: var(--road-white);
  letter-spacing: .18em; background: rgba(11, 11, 13, .85); padding: 3px 6px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background-color: var(--asphalt-1); }
.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.gallery-filters button {
  background: transparent; color: var(--concrete-2);
  border: 1px solid var(--asphalt-4); padding: 8px 14px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; cursor: pointer;
}
.gallery-filters button.is-active { background: var(--yellow); color: var(--asphalt-0); border-color: var(--yellow); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden; background: var(--asphalt-1);
  cursor: zoom-in; border: 0; padding: 0;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,11,13,.92) 0%, transparent 45%);
  pointer-events: none;
}
.gallery-item-meta {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 1;
}
.gallery-item-meta .mil-label { font-size: 10px; margin-bottom: 4px; }
.gallery-item-meta strong {
  display: block; font-family: var(--f-display); font-weight: 600;
  font-size: 18px; color: var(--road-white);
  text-transform: uppercase; letter-spacing: .04em;
}
.gallery-item-meta .open-ico {
  width: 32px; height: 32px;
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(11, 11, 13, .96);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 88vh; object-fit: contain;
  border: 1px solid rgba(255, 210, 0, .3);
}
.lightbox .lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px;
  background: transparent; border: 1px solid var(--asphalt-4);
  color: var(--road-white); font-size: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox .lightbox-close:hover { border-color: var(--yellow); color: var(--yellow); }
.lightbox .lightbox-meta {
  position: absolute; left: 32px; bottom: 32px; max-width: 80%;
}
.lightbox .lightbox-meta .mil-label { margin-bottom: 6px; }
.lightbox .lightbox-meta strong {
  display: block; font-family: var(--f-display); font-weight: 700; font-size: 24px;
  color: var(--road-white); text-transform: uppercase; letter-spacing: .04em;
}
.lightbox .lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid var(--asphalt-4);
  color: var(--road-white); width: 56px; height: 56px;
  font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox .lightbox-nav:hover { border-color: var(--yellow); color: var(--yellow); }
.lightbox .lightbox-prev { left: 24px; }
.lightbox .lightbox-next { right: 24px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--asphalt-1); overflow: hidden; }
.why-bg-num {
  position: absolute; right: -40px; top: 40px;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(220px, 30vw, 480px);
  color: var(--asphalt-2); letter-spacing: -.04em; line-height: .8;
  pointer-events: none; user-select: none;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.why-card {
  position: relative; padding: 32px 24px 28px;
  border-left: 2px solid var(--yellow);
  background: linear-gradient(180deg, rgba(255, 210, 0, .04) 0%, transparent 100%);
}
.why-card .num { font-family: var(--f-mono); font-size: 12px; color: var(--yellow); letter-spacing: .22em; margin-bottom: 18px; }
.why-card h3 {
  font-family: var(--f-display); font-weight: 700; font-size: 26px;
  color: var(--road-white); margin: 0 0 12px;
  text-transform: uppercase; letter-spacing: -.01em;
}
.why-card p { font-size: 14.5px; color: var(--concrete-2); line-height: 1.55; margin: 0; }

/* Testimonials */
.testimonials-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin: 64px 0 24px;
}
.testimonials-head h3 {
  font-family: var(--f-display); font-weight: 700; font-size: clamp(24px, 3vw, 36px);
  color: var(--road-white); margin: 0; text-transform: uppercase;
}
.testimonials-head h3 .yellow { color: var(--yellow); }
.testimonials-rating {
  display: flex; gap: 16px; align-items: center;
  border: 1px solid var(--asphalt-3); padding: 12px 18px;
}
.testimonials-rating strong {
  font-family: var(--f-display); font-weight: 700; font-size: 36px;
  color: var(--yellow); line-height: 1;
}
.testimonials-rating .stars { color: var(--yellow); letter-spacing: .12em; font-size: 14px; }
.testimonials-rating small {
  font-family: var(--f-mono); font-size: 10px; color: var(--concrete-2);
  letter-spacing: .18em; display: block;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.testimonial-card {
  background: var(--asphalt-0); border: 1px solid var(--asphalt-3);
  padding: 28px 26px; position: relative;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card .quote {
  font-family: var(--f-body); font-size: 15.5px; line-height: 1.55;
  color: var(--road-white); margin: 0;
}
.testimonial-card .stars { color: var(--yellow); font-size: 14px; letter-spacing: .15em; }
.testimonial-card footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--asphalt-3);
}
.testimonial-card .name {
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  color: var(--road-white); letter-spacing: .04em; text-transform: uppercase;
  display: block;
}
.testimonial-card .meta {
  font-family: var(--f-mono); font-size: 10px; color: var(--concrete-2);
  letter-spacing: .18em; text-transform: uppercase;
}
.testimonial-card .source {
  font-family: var(--f-mono); font-size: 9px; color: var(--yellow);
  letter-spacing: .2em; text-transform: uppercase;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.service-area-grid h2 { font-size: clamp(40px, 5.5vw, 78px); margin-bottom: 24px; }
.service-area-grid p {
  font-size: 17px; line-height: 1.55; color: var(--concrete-3);
  max-width: 540px; margin: 0 0 32px;
}
.town-wall { display: flex; flex-wrap: wrap; gap: 6px; max-width: 560px; }
.town-pill {
  font-family: var(--f-display); font-weight: 500; font-size: 13px;
  color: var(--concrete-3); background: transparent;
  border: 1px solid var(--asphalt-4); padding: 6px 12px;
  text-transform: uppercase; letter-spacing: .06em;
}
.town-pill.is-hq {
  background: var(--yellow); color: var(--asphalt-0); border: 0;
}
.town-extra {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--concrete-2); letter-spacing: .18em;
  padding: 7px 12px; text-transform: uppercase;
}
.area-meta { margin-top: 36px; display: flex; gap: 24px; flex-wrap: wrap; }
.area-meta .col strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 18px; color: var(--road-white); margin-top: 4px;
}

.wny-map {
  /* Track the SVG's own aspect so the frame never crops the coverage area —
     a fixed height sliced Niagara Falls and Clarence off on a phone. */
  position: relative; aspect-ratio: 1000 / 889;
  background: var(--asphalt-0); border: 1px solid var(--asphalt-3);
  overflow: hidden;
}
.wny-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* -------- WNY MAP --------
   Geometry is generated from real coordinates by scripts/make_wny_map.py.
   Inner-ring suburbs sit ~20px apart at this zoom, so they ride as unlabelled
   dots until hovered — from the map itself or from the town list beside it. */
.wny-town .lbl,
.wny-town .dot,
.wny-town .halo { transition: opacity .18s ease, r .18s ease, fill .18s ease; }
.wny-town.is-quiet .lbl { opacity: 0; }
.wny-town.is-quiet .dot { fill: var(--concrete-2); r: 3.4; }

.wny-town.is-lit .halo { opacity: .18; }
.wny-town.is-lit .dot { fill: var(--yellow); r: 6; }
.wny-town.is-lit .lbl { opacity: 1; fill: var(--yellow); }

.wny-sweep { animation: wnySweep 7s linear infinite; }
@keyframes wnySweep { to { transform: rotate(360deg); } }

.wny-map .pulse { animation: wnyPulse 2.6s ease-out infinite; transform-box: fill-box;
  transform-origin: center; }
@keyframes wnyPulse {
  0%   { transform: scale(1);   opacity: .35; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Town list doubles as the map legend. */
.town-pill { cursor: default; transition: border-color .15s ease, color .15s ease; }
.town-pill.is-lit { border-color: var(--yellow); color: var(--yellow); }
.wny-map .corner-tl { position: absolute; top: 16px; left: 16px; }
.wny-map .corner-bl { position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-mono); font-size: 10px; color: var(--concrete-1); letter-spacing: .18em;
}
.wny-map .corner-br {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--f-mono); font-size: 10px; color: var(--concrete-2); letter-spacing: .18em;
}
.wny-map .corner-br .dot { width: 6px; height: 6px; border-radius: 50%; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; padding: 80px var(--pad-x);
  background: var(--asphalt-0);
  text-align: center; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    rgba(255, 210, 0, .03) 0 14px,
    transparent 14px 28px);
  pointer-events: none;
}
.crew-flank { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.crew-flank img { position: absolute; bottom: 0; height: 80%; width: auto; opacity: .13; }
.crew-flank img:first-child { left: 2%; }
.crew-flank img:last-child { right: 2%; }
@media (max-width: 1100px) { .crew-flank { display: none; } }

.cta-band-inner { max-width: 800px; margin: 0 auto; position: relative; }
.cta-band h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px); color: var(--road-white);
  margin: 0 0 16px; text-transform: uppercase; letter-spacing: -.01em;
}
.cta-band h2 .yellow { color: var(--yellow); }
.cta-band p { font-size: 17px; color: var(--concrete-3); margin: 0 0 28px; }
.cta-band .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
}
.contact-grid h2 { font-size: clamp(48px, 6vw, 84px); margin-bottom: 24px; }
.contact-grid > .left > p {
  font-size: 17px; line-height: 1.55; color: var(--concrete-3);
  max-width: 460px; margin: 0 0 40px;
}
.contact-phone-block {
  display: block; text-decoration: none;
  border: 1px solid var(--yellow); padding: 24px 28px; margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(255, 210, 0, .06), transparent);
  transition: background .2s ease;
}
.contact-phone-block:hover { background: rgba(255, 210, 0, .12); }
.contact-phone-block .mil-label { margin-bottom: 6px; }
.contact-phone-block strong {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px); color: var(--road-white);
  letter-spacing: .02em; line-height: 1;
}
.contact-email-block {
  display: block; text-decoration: none;
  border: 1px solid var(--asphalt-3); padding: 20px 28px; margin-bottom: 32px;
}
.contact-email-block .mil-label-white { margin-bottom: 6px; }
.contact-email-block strong {
  font-family: var(--f-body); font-weight: 600;
  font-size: 17px; color: var(--road-white); word-break: break-all;
}
.contact-meta-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.contact-meta-grid .col { border: 1px solid var(--asphalt-3); padding: 16px; }
.contact-meta-grid .col strong {
  display: block; font-family: var(--f-display); font-weight: 600;
  font-size: 15px; color: var(--road-white); margin-top: 6px; line-height: 1.5;
}

/* FORM */
.contact-form {
  background: var(--asphalt-1); padding: 40px; border: 1px solid var(--asphalt-3);
  position: relative;
}
.contact-form .hazard-thin { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.contact-form .form-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.contact-form .form-head .mil-label { margin-bottom: 8px; }
.contact-form .form-head h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(24px, 3vw, 32px); color: var(--road-white);
  margin: 0; text-transform: uppercase;
}
.contact-form .response {
  text-align: right;
}
.contact-form .response strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 18px; color: var(--hi-vis); margin-top: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--asphalt-4);
  font-family: var(--f-body); font-size: 13px;
  color: var(--road-white); cursor: pointer;
  background: var(--asphalt-0); transition: border-color .15s ease, background .15s ease;
}
.chip:hover, .chip:has(input:checked) { border-color: var(--yellow); }
.chip input { accent-color: var(--yellow); width: 16px; height: 16px; }
.contact-form .form-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-top: 8px;
}
.contact-form .form-foot small {
  font-family: var(--f-mono); font-size: 11px; color: var(--concrete-1);
  letter-spacing: .16em; text-transform: uppercase;
}
.form-success {
  display: none; padding: 24px 28px; border: 1px solid var(--hi-vis);
  background: linear-gradient(180deg, rgba(200, 255, 0, .06), transparent);
  text-align: center;
}
.form-success.is-active { display: block; }
.form-success img { margin: 0 auto 14px; width: 120px; height: auto; }
.form-success strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 24px; color: var(--road-white);
  text-transform: uppercase; margin-bottom: 8px; letter-spacing: .04em;
}
.form-success p { font-size: 15px; color: var(--concrete-3); margin: 0; }
.form-error {
  display: none; padding: 16px 18px;
  background: rgba(255, 61, 46, .08); border: 1px solid var(--danger);
  color: var(--road-white); font-size: 14px;
  margin-top: 12px;
}
.form-error.is-active { display: block; }

/* Per-field validation messages. Red on the field's own near-black ground
   clears AA for body text. */
.field-error {
  margin: 0; color: var(--danger);
  font-family: var(--f-body); font-size: 12.5px; line-height: 1.4;
}
.field-error[hidden] { display: none; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
}
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus,
.field select[aria-invalid="true"]:focus {
  border-color: var(--danger);
  outline-color: var(--danger);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--asphalt-0); border-top: 1px solid var(--asphalt-3);
  position: relative;
}
.footer-strip { height: 4px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 64px var(--pad-x) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo-block { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
/* The full legacy shield at readable size — this is the mark customers know
   from the original site and the crew's flyers. */
.footer-shield {
  width: 216px; height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}
/* Historic script wordmark, kept small as a heritage signature. */
.footer-script { width: 168px; height: auto; opacity: .78; margin-top: -4px; }
.footer-logo-block p {
  font-size: 14px; color: var(--concrete-2); line-height: 1.6;
  max-width: 320px; margin: 0;
}
.footer-mascot {
  width: 84px; height: auto; align-self: flex-start; margin: 6px 0 16px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .5));
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid var(--asphalt-4);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); text-decoration: none;
  font-family: var(--f-display); font-weight: 700;
  transition: border-color .15s ease;
}
.footer-socials a:hover { border-color: var(--yellow); }

.footer-col h4 {
  font-family: var(--f-display); font-weight: 700; font-size: 14px;
  color: var(--yellow); text-transform: uppercase; letter-spacing: .16em;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--concrete-3); text-decoration: none; }
.footer-col a:hover { color: var(--yellow); }

.footer-direct strong {
  font-family: var(--f-display); font-weight: 700; font-size: 24px;
  color: var(--road-white); letter-spacing: .02em; display: block;
}
.footer-direct .email {
  font-size: 13px; color: var(--concrete-3); margin: 8px 0 18px;
  line-height: 1.5; word-break: break-all;
}
.footer-direct .btn { font-size: 13px; padding: 10px 18px; }
/* `.footer-col a` outranks `.btn-primary` on specificity, which was leaving
   the footer CTA light gray on yellow. Restore the button's own contrast. */
.footer-col a.btn-primary { color: var(--asphalt-0); }
.footer-col a.btn-ghost { color: var(--road-white); }

/* Fallback office line. Body font rather than the bar's wide-tracked mono so a
   full sentence stays readable, but sized and coloured to sit well below the
   main number in the hierarchy — and pointedly not styled as a button. */
.footer-fallback {
  margin: 34px 0 0; max-width: 620px;
  font-size: 12.5px; line-height: 1.6; color: var(--concrete-2);
}
.footer-fallback a {
  color: var(--concrete-3); text-decoration: underline;
  text-underline-offset: 3px; white-space: nowrap;
}
.footer-fallback a:hover { color: var(--road-white); }

.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--asphalt-3);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--concrete-1); letter-spacing: .16em; gap: 16px; flex-wrap: wrap;
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a { color: var(--concrete-1); text-decoration: none; }
.footer-bottom .badge { color: var(--yellow); }

/* ============================================================
   SARGE — chat launcher + nudge + panel
   ============================================================ */
.sarge-launcher {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 14px;
  background: var(--yellow); color: var(--asphalt-0);
  border: 0; cursor: pointer;
  padding: 6px 22px 6px 6px; border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5), 0 0 0 4px rgba(255, 210, 0, .18);
  font-family: var(--f-body); transform: translateY(80px); opacity: 0;
  transition: transform .35s cubic-bezier(.2, .8, .25, 1), opacity .35s ease;
}
.sarge-launcher.is-visible { transform: translateY(0); opacity: 1; }
.sarge-launcher.is-hidden { transform: translateY(80px); opacity: 0; pointer-events: none; }
.sarge-launcher .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--asphalt-0);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative; flex-shrink: 0;
}
.sarge-launcher .avatar img { width: 84%; transform: translateY(8%); }
.sarge-launcher .avatar .status {
  position: absolute; top: 5px; right: 5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--hi-vis); box-shadow: 0 0 6px var(--hi-vis);
}
.sarge-launcher .label { text-align: left; line-height: 1.1; }
.sarge-launcher .label small {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: .2em; color: var(--asphalt-0); opacity: .7;
  text-transform: uppercase; display: block;
}
.sarge-launcher .label strong {
  font-family: var(--f-display); font-weight: 700; font-size: 17px;
  text-transform: uppercase; letter-spacing: .04em; display: block;
}
.sarge-launcher .label span {
  font-size: 11px; font-weight: 500; color: var(--asphalt-0); opacity: .75;
  display: block;
}
.sarge-launcher:hover { transform: translateY(-2px); }

/* Speech-bubble nudge */
/* Sits above the launcher, not beside it. The old right:100px assumed a small
   round button; the launcher is a ~240px pill anchored at right:20px, so the
   bubble was rendering underneath it and getting clipped. Stacking it means
   the launcher's width no longer matters. */
.sarge-nudge {
  position: fixed; right: 20px; bottom: 98px;
  z-index: 61;
  max-width: 240px;
  background: var(--asphalt-1); color: var(--road-white);
  border: 1px solid var(--asphalt-3);
  padding: 12px 14px 12px 16px;
  border-radius: 14px;
  font-size: 13.5px; line-height: 1.45;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .5);
  transform: translateY(8px) scale(.96); opacity: 0; transform-origin: bottom right;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.sarge-nudge.is-visible { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.sarge-nudge::after {
  content: ''; position: absolute; right: 42px; bottom: -7px;
  width: 12px; height: 12px;
  background: var(--asphalt-1);
  border-right: 1px solid var(--asphalt-3);
  border-bottom: 1px solid var(--asphalt-3);
  transform: rotate(45deg);
}
.sarge-nudge .dismiss {
  position: absolute; top: 4px; right: 6px;
  background: transparent; border: 0; color: var(--concrete-2);
  font-size: 16px; cursor: pointer; padding: 2px 6px;
}

/* Chat panel */
.sarge-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 400px; height: min(640px, calc(100vh - 40px));
  background: var(--asphalt-1);
  border: 1px solid var(--asphalt-4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .65), 0 0 0 4px rgba(255, 210, 0, .06);
  display: none; flex-direction: column;
  font-family: var(--f-body);
  overflow: hidden;
}
.sarge-panel.is-open { display: flex; }
.sarge-panel-head {
  padding: 16px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--asphalt-3); background: var(--asphalt-2);
  position: relative; flex-shrink: 0;
}
.sarge-panel-head .hazard-thin { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.sarge-panel-head .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--asphalt-0); border: 2px solid var(--yellow);
  overflow: hidden; display: flex; align-items: flex-end; justify-content: center;
  flex-shrink: 0;
}
.sarge-panel-head .avatar img { width: 86%; transform: translateY(8%); }
.sarge-panel-head .title { flex: 1; min-width: 0; }
.sarge-panel-head .title strong {
  display: block; font-family: var(--f-display); font-weight: 700; font-size: 16px;
  color: var(--road-white); text-transform: uppercase; letter-spacing: .04em;
}
/* Tracking is tighter than the other mono labels on purpose: this status line
   is long, and the header shares its width with the avatar and close button,
   so at .18em it wrapped "HRS" onto a second line. */
.sarge-panel-head .title small {
  font-family: var(--f-mono); font-size: 10px; color: var(--hi-vis);
  letter-spacing: .07em; display: block; margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .sarge-panel-head .title small { font-size: 9px; letter-spacing: .04em; }
}
.sarge-panel-head .close {
  background: transparent; border: 0; color: var(--concrete-2);
  font-size: 26px; cursor: pointer; padding: 0 6px;
  line-height: 1;
}
.sarge-panel-head .close:hover { color: var(--yellow); }

.sarge-messages {
  flex: 1; padding: 16px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
  scrollbar-width: thin; scrollbar-color: var(--asphalt-3) transparent;
}
.sarge-messages::-webkit-scrollbar { width: 6px; }
.sarge-messages::-webkit-scrollbar-thumb { background: var(--asphalt-3); }

.sarge-msg { max-width: 88%; display: flex; flex-direction: column; gap: 4px; }
.sarge-msg.bot { align-self: flex-start; }
.sarge-msg.user { align-self: flex-end; align-items: flex-end; }
.sarge-msg .bubble {
  font-size: 14px; line-height: 1.5; padding: 10px 14px;
  color: var(--road-white);
}
.sarge-msg.bot .bubble {
  background: var(--asphalt-3);
  border-radius: 2px 12px 12px 12px;
}
.sarge-msg.user .bubble {
  background: var(--yellow); color: var(--asphalt-0);
  border-radius: 12px 2px 12px 12px; font-weight: 500;
}
.sarge-msg .time {
  font-family: var(--f-mono); font-size: 9.5px;
  color: var(--concrete-1); letter-spacing: .1em;
}
.sarge-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.sarge-chip {
  background: transparent; border: 1px solid var(--asphalt-4);
  color: var(--road-white); padding: 11px 14px;
  font-family: var(--f-body); font-size: 13.5px; font-weight: 500;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: border-color .15s, color .15s, background .15s;
}
.sarge-chip:hover { border-color: var(--yellow); color: var(--yellow); }
.sarge-chip::after { content: '→'; color: var(--yellow); font-size: 14px; flex-shrink: 0; }

.sarge-typing {
  display: inline-flex; gap: 4px; padding: 12px 14px;
  background: var(--asphalt-3); border-radius: 2px 12px 12px 12px;
  align-self: flex-start;
}
.sarge-typing span {
  width: 6px; height: 6px; background: var(--concrete-2); border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
}
.sarge-typing span:nth-child(2) { animation-delay: .2s; }
.sarge-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.sarge-input {
  border-top: 1px solid var(--asphalt-3);
  padding: 12px; display: flex; gap: 8px;
  background: var(--asphalt-0); flex-shrink: 0;
}
.sarge-input input {
  flex: 1; background: var(--asphalt-1);
  border: 1px solid var(--asphalt-3); color: var(--road-white);
  padding: 12px 14px; font-family: var(--f-body); font-size: 14px;
}
.sarge-input input:focus { border-color: var(--yellow); outline: none; }
.sarge-input button {
  background: var(--yellow); color: var(--asphalt-0); border: 0;
  padding: 0 18px; font-family: var(--f-display); font-weight: 700;
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer;
}
.sarge-input button:hover { background: var(--yellow-soft); }
.sarge-input button:disabled { background: var(--asphalt-3); color: var(--concrete-1); cursor: not-allowed; }

/* Sarge estimate-form view */
/* Layout lives here rather than inline: as an inline style it outranked the
   `is-hidden` class the script toggles, so the chat view and its input bar
   stayed on screen behind the estimate form. */
.sarge-chat-view { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.sarge-chat-view.is-hidden { display: none; }

.sarge-form-view {
  display: none; flex-direction: column; gap: 12px;
  padding: 16px; overflow-y: auto;
}
.sarge-form-view.is-active { display: flex; }
.sarge-form-view .intro {
  font-size: 14px; line-height: 1.5; color: var(--road-white);
  background: var(--asphalt-3); padding: 12px 14px;
  border-radius: 2px 12px 12px 12px;
}
.sarge-form-view .field input,
.sarge-form-view .field textarea,
.sarge-form-view .field select { padding: 10px 12px; font-size: 14px; }
.sarge-form-view .field label { font-size: 10px; }
.sarge-form-view button[type=submit] {
  margin-top: 4px; justify-content: space-between; font-size: 14px;
  padding: 14px 20px; width: 100%;
}
.sarge-back {
  background: transparent; border: 1px solid var(--asphalt-4);
  color: var(--concrete-2); padding: 8px 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .2em; cursor: pointer;
  text-transform: uppercase; align-self: flex-start;
}
.sarge-back:hover { color: var(--yellow); border-color: var(--yellow); }

.sarge-success {
  display: none; padding: 24px; text-align: center;
  flex-direction: column; align-items: center; gap: 14px;
}
.sarge-success.is-active { display: flex; }
.sarge-success img { width: 160px; height: auto; }
.sarge-success strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 22px; color: var(--road-white);
  text-transform: uppercase; letter-spacing: .04em;
}
.sarge-success p { font-size: 14.5px; color: var(--concrete-3); margin: 0; }
.sarge-success .actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.sarge-success .actions .btn { font-size: 13px; padding: 12px 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid .footer-col:nth-child(5) { grid-column: 1 / -1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Nav collapses at 930, not 900: even with the row tightened it overflowed the
   page by up to 27px between 901 and 929px, which put a horizontal scrollbar on
   the whole document. Must sit after the base .nav-toggle rule to take effect. */
@media (max-width: 930px) {
  .nav-links { display: none; }
  .nav-phone .nav-phone-text { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { gap: 16px; }
}

@media (max-width: 900px) {
  .nav-inner { gap: 16px; }

  /* Stack the emblem above the proof points once they no longer sit side by side. */
  .trust-bar-inner { flex-direction: column; gap: 26px; }
  .trust-brand img { width: 168px; }
  .trust-body { border-left: 0; padding-left: 0; width: 100%; }

  .service-area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.large { grid-row: span 2; }

  .hero-reticle { width: 140px; height: 140px; top: 60px; right: 16px; }
  .hero-corner { left: 24px; top: 80px; }
  .hero-side-label { display: none; }
  /* Off below 900px. At tablet width and down he overlaps the hero copy, and
     on a phone the paragraph runs straight across his face. As a background
     image, display:none also means he is never downloaded here. */
  .hero-mascot { display: none; }
  .hero-inner { padding-top: 80px; padding-bottom: 60px; }
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid .footer-col:nth-child(5) { grid-column: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ba-thumbs { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-form { padding: 28px 22px; }
  .testimonials-head { flex-direction: column; align-items: flex-start; }
  .why-bg-num { font-size: 200px; }
  .hero { min-height: 720px; }
  .hero-title { font-size: clamp(48px, 13vw, 80px); }
  .hero-stats { gap: 20px; }
  .trust-badges .badge { padding: 10px 12px; gap: 10px; }
  /* Sized so the longest line ("Local. Reliable.") still clears one row at
     this width — the explicit breaks stay, so the copy reads as on the flyer. */
  .trust-badges .badge span { font-size: 11px; letter-spacing: .03em; }
  .trust-badges .badge svg { width: 24px; height: 24px; }
  .trust-strip { letter-spacing: .12em; font-size: 11.5px; }

  /* The pairs are 4:3. A 16:9 crop leaves barely 220px of height on a phone,
     which the chips and caption then fight over — so show the full frame and
     drop the secondary status lines. */
  .ba-slider { aspect-ratio: 4 / 3; }
  .ba-label { top: 12px; padding: 6px 10px; }
  .ba-label.before { left: 12px; }
  .ba-label.after { right: 12px; }
  .ba-label strong { font-size: 13px; padding: 4px 12px 6px; }
  .ba-label .mil-label-white { display: none; }
  .ba-caption { padding: 10px 14px; font-size: 12px; }

  /* At phone width the map scales to ~0.4, which would render town labels at
     about 7px. The pill list carries the names there, so the map keeps only
     the HQ label plus whichever town is currently lit. */
  .wny-town:not(.is-hq) .lbl { opacity: 0; }
  .wny-town.is-lit .lbl { opacity: 1; }
  .wny-town .dot { r: 5; }
  /* The HTML corner overlays are fixed-size, so they crowd the smaller frame. */
  .wny-map .corner-bl { display: none; }
  .wny-map .corner-br { font-size: 8.5px; letter-spacing: .1em; gap: 5px; }
  .wny-map .corner-tl .mil-label { font-size: 9px; letter-spacing: .12em; }
  .before-after-meta { gap: 12px 20px; margin-bottom: 8px; }
  .before-after-meta .col strong { font-size: 15px; margin-top: 2px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* The crest is wider than the monogram it replaced; drop the tagline so the
     lockup stays on one line instead of wrapping the nav to two rows. */
  .logo-crest { height: 34px; }
  .logo-text small { display: none; }
  .logo-text strong { font-size: 17px; }
  .footer-shield { width: 184px; }

  .sarge-panel {
    inset: 0; width: 100%; height: 100vh; height: 100dvh;
    border-radius: 0; border: 0;
  }
  .sarge-launcher { right: 16px; bottom: 16px; }
  .sarge-nudge { right: 16px; bottom: 94px; max-width: min(220px, calc(100vw - 32px)); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .road-flow { animation: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .sarge-launcher, .sarge-nudge, .sarge-panel, .hero-canvas { display: none !important; }
  body { background: white; color: black; }
}
