:root {
  --ink: #121723;
  --muted: #5c6675;
  --line: #d9dee7;
  --surface: #f5f7fa;
  --white: #ffffff;
  --navy: #171f5f;
  --blue: #263488;
  --red: #c51d2c;
  --red-dark: #9f1722;
  --steel: #727f8d;
  --shadow: 0 24px 70px rgba(18, 23, 35, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 14, 24, 0.72), rgba(10, 14, 24, 0));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(18, 23, 35, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  height: 58px;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  padding: 126px clamp(20px, 5vw, 70px) 42px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-truck.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 22, 0.84) 0%, rgba(8, 12, 22, 0.52) 42%, rgba(8, 12, 22, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 12, 22, 0.72) 0%, rgba(8, 12, 22, 0.08) 36%);
}

.hero-content,
.hero-metrics {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-content {
  padding-bottom: 44px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb2b8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.7rem, 9vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-metrics div {
  padding: 22px 26px 0 0;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.section,
.intro-section,
.fleet-section,
.cert-section,
.contact-section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 70px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.intro-grid > *,
.coverage-grid > *,
.tech-grid > *,
.fleet-grid > *,
.cert-grid > *,
.contact-grid > * {
  min-width: 0;
}

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  border-color: rgba(197, 29, 44, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background: #222834;
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.coverage-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.route-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 18px);
}

.route-line {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--red), rgba(255, 255, 255, 0.32));
}

.route-stop {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 120px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.route-stop.major {
  background: var(--red);
  color: var(--white);
}

.route-stop strong,
.route-stop span {
  display: block;
}

.route-stop span {
  margin-top: 8px;
  color: currentColor;
  opacity: 0.72;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  min-height: 560px;
  background: var(--surface);
}

.media-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.media-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 84px);
}

.media-copy p:not(.section-kicker) {
  color: var(--muted);
}

.tech-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.video-stack {
  display: grid;
  gap: 14px;
}

.video-stack video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #0c1018;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(18, 23, 35, 0.16);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.feature-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--muted);
}

.feature-list strong {
  color: var(--ink);
}

.fleet-section {
  background: #eef1f5;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.fleet-grid p {
  color: var(--muted);
}

.fleet-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fleet-grid img {
  width: 100%;
  height: min(620px, 65vw);
  object-fit: cover;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.fleet-stats div {
  min-height: 118px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
}

.fleet-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 2.4rem;
  line-height: 1;
}

.fleet-stats span {
  color: var(--muted);
  font-weight: 700;
}

.values-section {
  background: var(--white);
}

.values-grid,
.cert-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.values-grid span,
.cert-list span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.values-grid span:nth-child(3n + 1),
.cert-list span:nth-child(3n + 1) {
  border-color: rgba(197, 29, 44, 0.28);
}

.cert-section {
  color: var(--white);
  background: var(--navy);
}

.cert-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.cert-list span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.contact-grid p {
  max-width: 680px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(18, 23, 35, 0.1);
  font-style: normal;
}

.contact-card strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--red);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.78);
  background: #111521;
}

.site-footer img {
  width: 126px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--white);
  font-weight: 800;
}

.footer-links a:hover {
  color: #ffb2b8;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, 0.72);
  backdrop-filter: blur(8px);
}

.quote-modal {
  position: relative;
  width: min(100%, 620px);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: clamp(28px, 5vw, 42px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.quote-modal h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(197, 29, 44, 0.24);
  border-color: var(--red);
  background: var(--white);
}

.quote-form textarea {
  resize: vertical;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 86svh;
    padding-top: 116px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 12, 22, 0.88), rgba(8, 12, 22, 0.38)),
      linear-gradient(0deg, rgba(8, 12, 22, 0.78), rgba(8, 12, 22, 0.12));
  }

  .hero-metrics,
  .intro-grid,
  .coverage-grid,
  .tech-grid,
  .fleet-grid,
  .cert-grid,
  .contact-grid,
  .media-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .values-grid,
  .cert-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-band {
    min-height: auto;
  }

  .media-image img {
    min-height: 340px;
  }

  .fleet-grid img {
    height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 68px;
    padding-inline: 16px;
  }

  .brand {
    width: 126px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 88svh;
    padding: 104px 18px 28px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.75rem, 11vw, 2.75rem);
  }

  .hero-content {
    padding-bottom: 26px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .service-grid,
  .values-grid,
  .cert-list,
  .fleet-stats {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding-top: 16px;
  }

  .section,
  .intro-section,
  .fleet-section,
  .cert-section,
  .contact-section,
  .coverage-section {
    padding: 62px 18px;
  }

  .route-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .route-line {
    display: none;
  }

  .service-card {
    min-height: 210px;
    padding: 22px;
  }

  .media-copy {
    padding: 48px 18px;
  }

  .fleet-grid img {
    height: 310px;
  }

  .site-footer {
    padding: 30px 18px;
  }
}
