:root {
  --ink: #172033;
  --muted: #5c6575;
  --line: #e3e7ee;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --navy: #0e2a47;
  --blue: #1d67a8;
  --gold: #f0b23f;
  --green: #32866b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 16px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--blue);
}

.hero {
  min-height: 590px;
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(9, 25, 42, 0.84), rgba(9, 25, 42, 0.42), rgba(9, 25, 42, 0.1)), url("../images/hero-containers.jpg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: #1c2533;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.band {
  padding: 76px 0;
}

.band.soft {
  background: var(--soft);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.lead {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

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

.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
}

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

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat {
  min-height: 120px;
  padding: 22px;
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero {
  padding: 108px 0 72px;
  color: #fff;
  background: linear-gradient(90deg, rgba(9, 25, 42, 0.9), rgba(9, 25, 42, 0.5)), url("../images/multimodal-logistics.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  margin-bottom: 0;
}

.careers-hero {
  background-image: linear-gradient(90deg, rgba(9, 25, 42, 0.9), rgba(9, 25, 42, 0.5)), url("../images/warehouse-trucks.jpg");
}

.contact-strip {
  color: #fff;
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0b1724;
  font-size: 14px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  color: #fff;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 560px;
  }

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

  .service-grid,
  .stats {
    grid-template-columns: 1fr;
  }

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