/* ==========================================================================
   RGR ROAD HAULAGE — white & pure blue system
   Palette drawn from the RGR logo: deep royal, royal blue, sky, on white.
   Type: Overpass (Highway Gothic lineage) + Overpass Mono for manifest data.
   Hero: full-bleed Higgsfield-generated T909 golden-hour run.
   ========================================================================== */

:root {
  --blue: #2447c4;          /* pure royal — primary */
  --blue-deep: #16267f;     /* deep royal ink */
  --blue-lift: #3157d9;     /* hover royal */
  --sky: #43a0e5;           /* accent */
  --logo-royal: #0102c5;    /* the actual royal blue of the RGR logo wordmark */
  --tint: #eef3fc;          /* blue-tinted panel ground */
  --line: rgba(22, 38, 127, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --body: #33405a;

  --font-display: "Overpass", "Segoe UI", sans-serif;
  --font-mono: "Overpass Mono", "Consolas", monospace;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 9vw, 7rem);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
p { margin: 0 0 1rem; }
a { color: var(--blue); }
address { font-style: normal; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--blue); color: var(--white); padding: 0.5rem 1rem;
  border-radius: 4px; transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }

/* ---------- type roles ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 1.1rem;
}
.section-title {
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--blue-deep);
  margin: 0 0 1.4rem;
  max-width: 24ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 4px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-lift); border-color: var(--blue-lift); transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(36,71,196,0.75); }
.btn-outline { color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--tint); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,0.65); color: var(--white); background: transparent; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.8rem; }
.btn-block { width: 100%; font-size: 1rem; padding: 1rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.7rem var(--gutter);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px -22px rgba(22,38,127,0.5); }
.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark-logo { height: 52px; width: auto; }
.site-nav { display: flex; gap: 1.8rem; margin-inline: auto; }
.site-nav a {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-deep);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { color: var(--blue); border-color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  text-decoration: none;
  color: var(--blue-deep);
}
.header-phone:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--blue-deep); border-radius: 2px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--white);
  padding: 7rem var(--gutter) 2rem;
  flex-direction: column;
  gap: 1.4rem;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { text-decoration: none; color: var(--blue-deep); }
.mobile-phone { font-family: var(--font-mono); font-size: 1rem !important; }

/* ==========================================================================
   HERO — full-bleed T909 golden-hour video
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  /* text sits high enough to cover the truck's exhaust stacks */
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(80deg, rgba(10,16,50,0.88) 0%, rgba(10,16,50,0.58) 48%, rgba(10,16,50,0.08) 78%),
    linear-gradient(180deg, rgba(10,16,50,0.2) 0%, rgba(10,16,50,0) 35%, rgba(10,16,50,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 4.5rem var(--gutter) clamp(5rem, 14vh, 9rem);
}
.hero .eyebrow { color: var(--sky); }
.hero-title {
  font-weight: 900;
  font-size: clamp(2.4rem, 5.1vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
}
/* One statement per row — sentences never split across rows on desktop */
.hero-title span { display: block; }
@media (min-width: 1021px) {
  .hero-title span { white-space: nowrap; }
}
.hero-title .accent { color: var(--sky); }
.hero-lede {
  max-width: 52ch;
  margin-top: 1.3rem;
  font-size: 1.12rem;
  color: rgba(240,244,250,0.94);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

/* Hero load reveal */
.hero-in {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 0.85s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-in.h1 { animation-delay: 0.2s; }
.hero-in.h2 { animation-delay: 0.34s; }
.hero-in.h3 { animation-delay: 0.5s; }
.hero-in.h4 { animation-delay: 0.66s; }
.hero-in.h5 { animation-delay: 0.8s; }
@keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   SCROLL REVEAL (js-gated: without JS, content stays visible)
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.js .reveal.visible { opacity: 1; transform: none; }

.section { padding-block: var(--section-pad); }

/* ==========================================================================
   THE RUN — route manifest left, copy right, tinted band
   ========================================================================== */
.section-run { background: var(--tint); }
.run-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.schedule-table { margin-top: 1.6rem; }
.schedule-table th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
  color: var(--white);
  background: var(--blue);
  padding: 0.6rem 0.9rem;
}
.schedule-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  background: var(--white);
}
.schedule-table td.mono { color: var(--blue); font-weight: 600; white-space: nowrap; }
.schedule-table .sep { padding: 0 0.45em; color: var(--blue); }

.route-panel { position: relative; }
.route-svg { width: 100%; height: auto; display: block; }
.graticule path {
  fill: none;
  stroke: rgba(36, 71, 196, 0.08);
  stroke-width: 1;
}
.wa-land { fill: url(#land-g); }
.wa-coast {
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.wa-border {
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 1.5;
  stroke-dasharray: 5 5;
  opacity: 0.55;
}
.north path { fill: var(--blue-deep); opacity: 0.75; }
.north text {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  fill: var(--blue-deep);
  opacity: 0.75;
}
.route-casing {
  fill: none;
  stroke: var(--white);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.route-main {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.route-spur {
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 2 7;
  opacity: 0;
}
.stop { opacity: 0; }
.visible .route-casing,
.visible .route-main { animation: draw 2.4s cubic-bezier(0.5,0,0.2,1) 0.3s forwards; }
.visible .route-spur { animation: fade 0.8s ease 2.6s forwards; }
.visible .stop { animation: stop-in 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.visible .stop.s1 { animation-delay: 0.4s; }
.visible .stop.s2 { animation-delay: 1.1s; }
.visible .stop.s3 { animation-delay: 1.8s; }
.visible .stop.s4 { animation-delay: 2.4s; }
.visible .stop.s5 { animation-delay: 2.9s; }
.visible .stop.s6 { animation-delay: 0.8s; }
.visible .stop.s7 { animation-delay: 1.4s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }
@keyframes stop-in { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }

.stop circle.halo { fill: rgba(36, 71, 196, 0.10); }
.stop circle.ring { fill: var(--white); stroke: var(--blue); stroke-width: 3; }
.stop.agent circle.ring { stroke: var(--sky); }
.stop circle.core { fill: var(--blue); }
.stop.agent circle.core { fill: var(--sky); }
.stop .name { font-weight: 800; font-size: 17px; fill: var(--blue-deep); text-transform: uppercase; letter-spacing: 0.02em; }
.stop.sub circle.ring { stroke-width: 2.2; }
.stop.sub .name { font-weight: 700; font-size: 12.5px; fill: var(--blue); letter-spacing: 0.05em; }
.truck-dot { fill: var(--sky); }
.truck-glow { fill: rgba(67, 160, 229, 0.3); }

/* ==========================================================================
   ABOUT — copy left, photo right, stats
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media { margin: 0; position: relative; order: 2; }
.about-media img { border-radius: 8px; border: 1px solid var(--line); }
.about-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-left: 4px solid var(--blue);
  box-shadow: 0 10px 30px -12px rgba(12,20,36,0.4);
}
.stat-row {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body);
  order: 2;
}
.stat dd { font-weight: 900; font-size: 2.1rem; line-height: 1.1; color: var(--blue); }

/* ==========================================================================
   SERVICES & FLEET — tinted band, left-rule cards
   ========================================================================== */
.section-services { background: var(--tint); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  padding: 1.5rem 1.4rem 1.2rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(22,38,127,0.45); }
.service-card h3 {
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--blue-deep);
  margin-bottom: 0.7rem;
}
.service-card p { font-size: 0.97rem; }
.service-tag { color: var(--blue); font-weight: 600; margin-top: auto; padding-top: 0.9rem; margin-bottom: 0; }

.fleet-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.fleet-intro h3 {
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.8rem;
}
.fleet-intro img { border-radius: 6px; margin-top: 1.2rem; border: 1px solid var(--line); }
.fleet-list { display: grid; grid-template-columns: 1fr; align-content: start; }
.fleet-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
}
.fleet-list li span { color: var(--blue); font-weight: 600; text-align: right; }

/* ==========================================================================
   FEATURE BAND — the promise, solid deep blue
   ========================================================================== */
.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
}
.feature-ground {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.4);
}
.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,38,127,0.7), rgba(22,38,127,0.3), rgba(22,38,127,0.7));
}
.feature-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 9vw, 6.5rem);
  text-align: center;
}
.feature-quote { margin: 0 auto; }
.feature-quote p {
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.feature-quote cite { color: var(--sky); font-style: normal; }

/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.quote-contacts li { display: flex; align-items: baseline; gap: 1rem; padding: 0.45rem 0; }
.quote-contacts .mono { color: var(--blue); font-weight: 600; min-width: 3.6rem; }
.quote-contacts a { color: var(--blue-deep); text-decoration: none; font-weight: 600; }
.quote-contacts a:hover { color: var(--blue); }

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 24px 50px -32px rgba(22,38,127,0.35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.35rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--body);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 0.65rem 0.8rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,71,196,0.15);
}
.form-note { font-size: 0.85rem; color: #5a6a8c; margin: 0.8rem 0 0; }

/* ==========================================================================
   CONTACT — deep blue band, white cards
   ========================================================================== */
.section-contact { background: var(--blue-deep); }
.section-contact .eyebrow { color: var(--sky); }
.section-contact .section-title { color: var(--white); }
.contact-lede { max-width: 62ch; color: rgba(255,255,255,0.88); }
.depot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.2rem;
  margin-top: 2.2rem;
}
/* Desktop: Perth HQ is one tall card on the left; the four depot cards sit 2×2 beside it */
@media (min-width: 1080px) {
  .depot-grid { grid-template-columns: repeat(3, 1fr); }
  .depot-card-hq { grid-row: span 2; }
}
.depot-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--sky);
  border-radius: 6px;
  padding: 1.4rem 1.3rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.depot-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(22,38,127,0.4); }
.depot-card h3 {
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.6rem;
}
.depot-card address { font-size: 0.94rem; margin-bottom: 0.8rem; }
.depot-details li { display: flex; gap: 0.7rem; align-items: center; padding: 0.28rem 0; font-size: 0.94rem; }
.depot-details .ic {
  display: inline-flex;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--blue);
}
.depot-details .ic svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.depot-details li > :not(.ic) { min-width: 0; overflow-wrap: anywhere; }
.depot-details a { text-decoration: none; color: inherit; }
.depot-details a:hover { color: var(--blue); }

/* HQ card — dark variant; must follow the base rules above so its
   colours win at equal specificity */
.depot-card-hq { display: flex; flex-direction: column; background: var(--blue-deep); border-color: rgba(255,255,255,0.4); border-top-color: var(--sky); color: rgba(255,255,255,0.92); }
/* Map snippet sits inset at the bottom of the card and soaks up the tall card's spare height */
.hq-map {
  flex: 1 1 220px;
  min-height: 220px;
  margin: 1.2rem 0 0;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  overflow: hidden;
  display: block;
}
.hq-map img { width: 100%; height: 100%; object-fit: cover; }
.depot-card-hq h3 { color: var(--white); }
.depot-card-hq .depot-details .ic { color: var(--sky); }
.depot-card-hq a { color: var(--white); }
.depot-card-hq .depot-details a:hover { color: var(--sky); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--white);
  color: var(--body);
  border-top: 4px solid var(--blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.wordmark-footer { margin: 0 0 1rem; display: flex; justify-content: flex-start; max-width: 34ch; }
.wordmark-footer .wordmark-logo { height: 112px; }
.footer-line { font-size: 0.95rem; max-width: 34ch; }
.footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--blue); }
.footer-meta p { font-size: 0.92rem; margin-bottom: 0.4rem; }
.footer-meta a { color: var(--blue); }
.footer-fine { color: #5a6a8c; font-size: 0.82rem !important; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.1rem; }
.footer-bottom .mono { color: #5a6a8c; font-size: 0.7rem; letter-spacing: 0.18em; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px) {
  .site-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .run-grid, .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .about-media { order: 0; }
  .fleet-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wordmark-logo { height: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .stat dd { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-in { opacity: 1; transform: none; }
  .js .reveal { opacity: 1; transform: none; }
  .route-main { stroke-dashoffset: 0; }
  .route-spur, .stop { opacity: 1; }
}
