:root {
  --blue: #31599c;
  --blue-dark: #18355f;
  --orange: #ff6426;
  --ink: #111827;
  --paper: #f5f7fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
}

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 70px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(17,24,39,.08);
  backdrop-filter: blur(10px);
}

.brand img {
  display: block;
  width: min(315px, 42vw);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-cta):hover { color: var(--orange); }

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/truck-night.jpg") center / cover no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,10,22,.92) 0%, rgba(8,20,39,.72) 48%, rgba(5,11,20,.22) 100%),
    linear-gradient(0deg, rgba(0,0,0,.34), rgba(0,0,0,.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 140px);
  padding-top: 90px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--orange);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--blue); }

h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  margin-top: 0;
  line-height: .96;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7.6vw, 7.7rem);
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 34px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

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

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

.button-secondary {
  border: 1px solid rgba(255,255,255,.65);
  color: var(--white);
}

.button-secondary:hover { background: rgba(255,255,255,.1); }

.scroll-link {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 70px);
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
}

.section {
  padding: clamp(80px, 10vw, 145px) clamp(20px, 8vw, 140px);
}

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

.section-label {
  position: absolute;
  right: 2vw;
  top: 45px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 800;
  color: rgba(49,89,156,.055);
  text-transform: uppercase;
  pointer-events: none;
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
  text-transform: uppercase;
}

.intro-copy {
  padding-top: 42px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #4b5563;
}

.intro-copy p:first-child { margin-top: 0; }

.image-band {
  min-height: min(72vw, 720px);
  background:
    linear-gradient(rgba(12,27,49,.06), rgba(12,27,49,.06)),
    url("assets/truck-day.jpg") center / cover no-repeat;
}

.services {
  color: var(--white);
  background: var(--blue-dark);
}

.services-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
}

.service-card {
  min-height: 300px;
  padding: 38px;
  background: var(--blue-dark);
}

.service-card span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 55px 0 16px;
  font-size: 2.25rem;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
  background: var(--paper);
}

.contact-copy > p:last-child {
  max-width: 620px;
  color: #5b6472;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-card {
  padding: clamp(30px, 5vw, 56px);
  color: var(--white);
  background: var(--blue);
  box-shadow: 20px 20px 0 var(--orange);
}

.contact-card h3 {
  margin-bottom: 26px;
  font-size: 2.8rem;
  text-transform: uppercase;
}

.contact-card address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.7;
}

.contact-card > a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  font-weight: 700;
  text-decoration: none;
}

.contact-card > a:hover { text-decoration: underline; }

.contact-card .route-link {
  margin-top: 28px;
  color: #fff3ed;
}

footer {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px clamp(20px, 8vw, 140px);
  background: #080d15;
  color: rgba(255,255,255,.58);
  font-size: .87rem;
}

footer img {
  width: min(270px, 52vw);
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }
  .intro-grid,
  .contact { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 28px; }
  .image-band { min-height: 68vh; background-position: 44% center; }
}

@media (max-width: 620px) {
  .site-header { height: 74px; }
  .brand img { width: 210px; }
  .nav-cta { padding: 10px 13px; }
  .hero-content { padding-top: 95px; }
  h1 { font-size: clamp(3.1rem, 17vw, 5rem); }
  .hero-media { background-position: 42% center; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .scroll-link { display: none; }
  .contact-card { box-shadow: 10px 10px 0 var(--orange); }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
