:root {
  --navy: #071a3b;
  --blue: #0a38ed;
  --blue-dark: #082a9e;
  --red: #ec0b2f;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --silver: #d8deea;
  --gray: #667085;
  --text: #13213a;
  --black: #05070b;
  --shadow: 0 18px 45px rgba(7, 26, 59, .14);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
}

.skip-link:focus {
  left: 8px;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .88rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar-actions {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.topbar-actions a:hover {
  color: #b9c8ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #e9edf5;
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: min(380px, 42vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width .2s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(236, 11, 47, .2);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/truck-heavy-haul.jpg");
  background-position: center 54%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 34, .95) 0%, rgba(4, 13, 34, .84) 39%, rgba(4, 13, 34, .28) 72%, rgba(4, 13, 34, .14) 100%),
    linear-gradient(0deg, rgba(4, 13, 34, .38), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 88px;
}

.hero-copy {
  max-width: 700px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: #d9e3ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin: 0 0 20px;
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--white);
  text-shadow: 3px 3px 0 var(--red);
}

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: #edf2ff;
  font-size: 1.14rem;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(236, 11, 47, .25);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(236, 11, 47, .34);
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

.btn-outline {
  border-color: #cbd4e8;
  background: var(--white);
  color: var(--navy);
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: #f5f8ff;
  font-size: .82rem;
  font-weight: 800;
  background: rgba(4, 13, 34, .28);
}

.intro-band {
  position: relative;
  background: var(--off-white);
  border-bottom: 1px solid #e3e8f2;
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(var(--red) 0 33.33%, var(--white) 33.33% 66.66%, var(--blue) 66.66%);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  padding-block: 54px;
}

.intro-grid h2,
.section-heading h2,
.about-copy h2,
.area-grid h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.05rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.intro-grid > p {
  margin: 0;
  color: #455169;
  font-size: 1.05rem;
}

.section {
  padding: 100px 0;
}

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

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 1.03rem;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e3e8f2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(7, 26, 59, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #bdc9e5;
  box-shadow: var(--shadow);
}

.service-number {
  margin-bottom: 24px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.3rem;
}

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

.featured-service {
  border-color: var(--blue);
  background: linear-gradient(145deg, #071a3b, #0c2a62);
}

.featured-service .service-number,
.featured-service h3 {
  color: var(--white);
}

.featured-service p {
  color: #dae5ff;
}

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

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  padding: 12px 20px;
  border: 3px solid var(--white);
  background: var(--blue);
  color: var(--white);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.about-copy > p:not(.eyebrow) {
  margin: 19px 0 0;
  color: #4d596f;
}

.values {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.values div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid #d9e0ed;
}

.values strong {
  color: var(--navy);
}

.values span {
  color: var(--gray);
}

.fleet-section {
  background: var(--navy);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light > p:last-child {
  color: #c9d5ef;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0b214d;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(4, 13, 34, .8));
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
}

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

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 70px;
  align-items: start;
}

.area-grid > div > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--gray);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-tags span {
  padding: 8px 11px;
  border: 1px solid #ccd5e7;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
}

.quote-panel {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10,56,237,.96), rgba(8,42,158,.98)),
    var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-kicker {
  margin: 0 0 8px;
  color: #dbe4ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-panel h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.quote-panel > p:not(.quote-kicker) {
  margin: 16px 0 22px;
  color: #edf2ff;
}

.quote-panel .btn + .btn {
  margin-top: 10px;
}

.contact-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 440px;
  height: 440px;
  border: 65px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-section .eyebrow {
  color: #ffe1e7;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p:not(.eyebrow) {
  max-width: 500px;
  color: #fff0f3;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-link {
  min-height: 110px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  transition: background .18s ease, transform .18s ease;
}

.contact-link:not(.nonlink):hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}

.contact-link span,
.contact-link strong {
  display: block;
}

.contact-link span {
  margin-bottom: 5px;
  color: #ffe1e7;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.site-footer {
  padding: 54px 0 22px;
  background: var(--black);
  color: #cfd6e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 60px;
}

.footer-brand img {
  width: min(330px, 100%);
  padding: 7px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand p {
  margin: 16px 0 0;
}

.site-footer h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid #202838;
  font-size: .82rem;
  color: #929db0;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > p {
    display: none;
  }

  .brand {
    width: min(335px, 72vw);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-top: 1px solid #e4e8f0;
    background: var(--white);
    box-shadow: 0 16px 28px rgba(7, 26, 59, .12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 610px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 13, 34, .93), rgba(4, 13, 34, .55));
  }

  .intro-grid,
  .about-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-photo {
    max-width: 680px;
  }

  .about-photo img {
    aspect-ratio: 16 / 10;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 270px;
  }

  .gallery-tall,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .header-inner {
    min-height: 82px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    background-position: 40% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 13, 34, .93), rgba(4, 13, 34, .69));
  }

  .hero-content {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .intro-grid {
    gap: 24px;
    padding-block: 44px;
  }

  .section {
    padding: 72px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .about-grid {
    gap: 34px;
  }

  .about-photo img {
    aspect-ratio: 4 / 4.7;
  }

  .photo-badge {
    left: 10px;
    bottom: 16px;
  }

  .values div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
  }
}
