:root {
  --navy-950: #020f24;
  --navy-900: #071c36;
  --navy-800: #102c4d;
  --blue-600: #3354a3;
  --orange-600: #f4511e;
  --orange-500: #ff640d;
  --orange-100: #fff0e8;
  --ink: #102038;
  --muted: #607088;
  --line: #cfd8e4;
  --soft: #eef2f6;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(6, 26, 60, 0.08);
  --shadow-lg: 0 24px 64px rgba(6, 26, 60, 0.15);
  --radius: 2px;
  --container: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
p, h1, h2, h3, a, strong { overflow-wrap: break-word; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }
.section--navy { color: var(--white); background: var(--navy-950); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before { width: 28px; height: 3px; background: currentColor; content: ""; }
.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section--navy .section-title { color: var(--white); }
.section-intro { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }
.section--navy .section-intro { color: #c1cbdb; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 36px; margin-bottom: 46px; }
.section-head .section-intro { margin: 0; max-width: 450px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav-toggle:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(255, 100, 13, 0.38);
  outline-offset: 3px;
}

.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); box-shadow: 0 10px 28px rgba(244, 81, 30, 0.24); }
.btn--outline { color: var(--navy-950); border-color: var(--navy-950); background: transparent; }
.btn--white { color: var(--navy-950); background: var(--white); }
.btn--small { min-height: 44px; padding: 10px 18px; font-size: 0.9rem; }
.arrow { font-size: 1.2em; transition: transform 180ms ease; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(2,15,36,.9), rgba(2,15,36,.2));
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.header-inner { display: flex; min-height: 104px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; min-width: 245px; align-items: center; gap: 15px; }
.brand img { width: 146px; height: 70px; object-fit: contain; padding: 7px; background: rgba(255,255,255,.96); }
.brand-name { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.35); color: var(--white); font-size: 0.85rem; font-weight: 850; line-height: 1.25; letter-spacing: 0.02em; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a { position: relative; padding: 39px 0; color: var(--white); font-size: 0.91rem; font-weight: 700; }
.site-nav > a:not(.btn)::after { position: absolute; right: 0; bottom: 29px; left: 0; height: 3px; transform: scaleX(0); transform-origin: right; background: var(--orange-500); content: ""; transition: transform 180ms ease; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.site-nav .btn { color: var(--white); padding: 11px 17px; }
.site-nav .btn::after { display: none; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 6px auto; background: var(--navy-950); transition: 180ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { position: relative; min-height: 700px; overflow: hidden; background: #fbfcfe; }
.hero::before { position: absolute; inset: 0 56% 0 0; background-image: radial-gradient(rgba(23,54,111,.09) 1px, transparent 1px); background-size: 22px 22px; content: ""; mask-image: linear-gradient(to right, black, transparent); }
.hero-grid { position: relative; display: grid; min-height: 700px; grid-template-columns: 60% 40%; align-items: center; }
.hero-copy { position: relative; z-index: 2; max-width: 680px; padding: 88px 8% 78px 0; }
.hero-title { max-width: 680px; margin: 0; color: var(--navy-950); font-size: clamp(3.2rem, 6vw, 5.7rem); line-height: 0.95; letter-spacing: -0.065em; }
.hero-title span { color: var(--orange-600); }
.hero-lead { max-width: 610px; margin: 27px 0 0; color: #59667b; font-size: clamp(1.08rem, 1.7vw, 1.34rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 58px; color: #46536a; font-size: 0.91rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-500); }
.hero-visual { position: absolute; top: 0; right: 0; bottom: 0; width: 42%; overflow: hidden; clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,26,60,.13), transparent 35%); content: ""; }
.hero-stripe { display: none; }

.stats { position: relative; z-index: 3; margin-top: -44px; }
.stats-grid { display: grid; overflow: hidden; border-radius: 8px; background: var(--navy-950); box-shadow: var(--shadow-lg); grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px; color: var(--white); border-right: 1px solid rgba(255,255,255,.16); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1; }
.stat span { display: block; margin-top: 9px; color: #b9c5d7; font-size: 0.86rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 310px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform 200ms ease, box-shadow 200ms ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__image { height: 150px; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.service-card:hover img { transform: scale(1.04); }
.service-card__body { position: relative; z-index: 2; padding: 26px; background: var(--white); }
.service-card h3 { margin: 0 0 10px; color: var(--navy-950); font-size: 1.18rem; line-height: 1.3; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.93rem; }
.service-card .text-link { margin-top: 20px; }
.service-card__number { position: absolute; top: 130px; right: 19px; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: var(--white); background: var(--orange-600); border: 5px solid var(--white); font-size: 0.77rem; font-weight: 850; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-600); font-weight: 800; }

.split { display: grid; align-items: center; gap: 74px; grid-template-columns: 1fr 1fr; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 470px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-media::before { position: absolute; z-index: -1; right: -18px; bottom: -18px; width: 52%; height: 54%; background: var(--orange-500); border-radius: 0 0 var(--radius) 0; content: ""; }
.split-copy p { color: var(--muted); }
.check-list { display: grid; margin: 28px 0 0; padding: 0; gap: 14px; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: #35435a; font-weight: 650; }
.check-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: var(--white); background: var(--orange-500); content: "\2713"; font-size: 0.72rem; }

.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card { position: relative; min-height: 400px; overflow: hidden; border-radius: var(--radius); background: var(--navy-900); }
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: transform 500ms ease; }
.industry-card:hover img { transform: scale(1.05); }
.industry-card::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,26,60,.98) 8%, rgba(6,26,60,.25) 78%); content: ""; }
.industry-card__body { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 30px; color: var(--white); }
.industry-card__body span { color: #ff9a65; font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.industry-card h3 { margin: 8px 0 8px; font-size: 1.45rem; }
.industry-card p { margin: 0; color: #d5deeb; font-size: .92rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.value { min-height: 132px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.05); }
.value strong { display: block; color: var(--white); font-size: 1.05rem; }
.value span { display: block; margin-top: 8px; color: #aebbd0; font-size: .84rem; }

.footprint { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.footprint-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.location-chip { padding: 16px 18px; border: 1px solid var(--line); border-left: 4px solid var(--orange-500); border-radius: 6px; background: var(--white); box-shadow: var(--shadow-sm); }
.location-chip strong { display: block; color: var(--navy-950); font-size: .92rem; }
.location-chip span { color: var(--muted); font-size: .8rem; }

.cta-band { position: relative; overflow: hidden; padding: 72px 0; color: var(--white); background: var(--navy-950); }
.cta-band::after { position: absolute; top: -120px; right: -80px; width: 430px; height: 430px; transform: rotate(34deg); border: 60px solid rgba(255,100,13,.15); content: ""; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-band h2 { max-width: 720px; margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.035em; }
.cta-band p { max-width: 700px; margin: 15px 0 0; color: #c1ccdc; }

.page-hero { position: relative; overflow: hidden; padding: 112px 0 94px; color: var(--white); background: var(--navy-950); }
.page-hero--about { --page-image: url('../images/hero-multimodal.jpg'); }
.page-hero--services { --page-image: url('../images/hero-freight.jpg'); }
.page-hero--industries { --page-image: url('../images/project-bulk.jpg'); }
.page-hero--locations { --page-image: url('../images/facility.jpg'); }
.page-hero--contact { --page-image: url('../images/warehouse-operations.jpg'); }
.page-hero--full { display: grid; min-height: 100vh; align-items: center; }
.page-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,26,60,.98) 0%, rgba(6,26,60,.84) 56%, rgba(6,26,60,.42) 100%), var(--page-image, none) center/cover; content: ""; }
.page-hero::after { position: absolute; right: -120px; bottom: -180px; width: 260px; height: 420px; transform: rotate(30deg); border: 40px solid rgba(255,100,13,.22); content: ""; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 800px; margin: 0; font-size: clamp(3rem, 7vw, 5.6rem); line-height: .98; letter-spacing: -.055em; }
.page-hero p { max-width: 680px; margin: 22px 0 0; color: #cbd5e2; font-size: 1.18rem; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; color: #aebbd0; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: #ff9760; }

.prose { max-width: 820px; }
.prose h2 { margin: 0 0 20px; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; letter-spacing: -.035em; }
.prose h3 { margin: 36px 0 10px; color: var(--navy-950); font-size: 1.25rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.mission-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.mission-card--navy { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); }
.mission-card span { color: var(--orange-600); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.mission-card h3 { margin: 10px 0 12px; color: var(--navy-950); font-size: 1.65rem; line-height: 1.25; }
.mission-card--navy h3 { color: var(--white); }
.mission-card p { margin: 0; color: var(--muted); }
.mission-card--navy p { color: #c0cbdb; }

.license-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.license-card { padding: 28px; border-top: 4px solid var(--orange-500); background: var(--white); box-shadow: var(--shadow-sm); }
.license-card strong { display: block; color: var(--navy-950); }
.license-card p { margin: 9px 0 0; color: var(--muted); font-size: .9rem; }

.detail-list { display: grid; gap: 24px; }
.detail-card { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); grid-template-columns: 35% 65%; }
.detail-card:nth-child(even) { grid-template-columns: 65% 35%; }
.detail-card:nth-child(even) .detail-card__media { order: 2; }
.detail-card__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.detail-card__body { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.detail-card__body span { color: var(--orange-600); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.detail-card__body h2 { margin: 9px 0 15px; color: var(--navy-950); font-size: 1.85rem; line-height: 1.2; }
.detail-card__body p { margin: 0; color: var(--muted); }
.detail-card__body ul { margin: 18px 0 0; padding-left: 20px; color: #4c5b72; font-size: .91rem; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 55px; align-items: start; }
.contact-panel { overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--navy-950); box-shadow: var(--shadow-lg); }
.contact-panel__body { padding: 38px; }
.contact-panel__body h2 { margin: 0; font-size: 1.8rem; }
.contact-panel__body > p { color: #b8c5d8; }
.contact-item { display: grid; gap: 4px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-item span { color: #8ea0bb; font-size: .73rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-item a, .contact-item strong { font-size: 1rem; overflow-wrap: anywhere; }
.contact-panel img { width: 100%; height: 245px; object-fit: cover; }
.contact-form { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-form h2 { margin: 0 0 8px; color: var(--navy-950); font-size: 2rem; }
.contact-form > p { margin: 0 0 28px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #27354d; font-size: .86rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #ccd5e1; border-radius: 7px; color: var(--ink); background: var(--white); padding: 13px 14px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange-500); outline: 3px solid rgba(255,100,13,.12); }
.field--check { display: flex; align-items: flex-start; gap: 10px; }
.field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--orange-500); }
.field--check label { color: var(--muted); font-size: .82rem; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-status { display: none; margin: 0 0 22px; padding: 13px 16px; border-radius: 7px; font-weight: 700; }
.form-status.is-visible { display: block; }
.form-status--success { color: #0d5b37; background: #e6f7ef; }
.form-status--error { color: #8e251d; background: #fff0ee; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .78rem; }

.site-footer { color: #c0cad9; background: #04142f; }
.footer-main { display: grid; padding: 64px 0 48px; gap: 46px; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
.footer-brand img { width: 170px; height: 82px; object-fit: contain; background: var(--white); border-radius: 6px; }
.footer-brand p { max-width: 370px; margin: 20px 0 0; color: #9eacc0; font-size: .9rem; }
.footer-col h3 { margin: 0 0 18px; color: var(--white); font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; color: #aab6c8; font-size: .88rem; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--orange-500); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.11); color: #8494ab; font-size: .78rem; }
.footer-bottom nav { display: flex; gap: 18px; }

.back-to-top { position: fixed; z-index: 800; right: 22px; bottom: 22px; display: grid; width: 46px; height: 46px; transform: translateY(20px); place-items: center; border: 0; border-radius: 50%; opacity: 0; color: var(--white); background: var(--orange-600); box-shadow: var(--shadow-lg); cursor: pointer; pointer-events: none; transition: 180ms ease; }
.back-to-top.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.reveal { transform: translateY(18px); opacity: 0; transition: transform 500ms ease, opacity 500ms ease; }
.reveal.is-visible { transform: translateY(0); opacity: 1; }
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mt-30 { margin-top: 30px; }

@media (max-width: 1050px) {
  .brand { min-width: auto; }
  .brand-name { display: none; }
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: .84rem; }
  .hero { min-height: 640px; }
  .hero-grid { min-height: 640px; }
  .hero-title { font-size: clamp(3rem, 7vw, 4.7rem); }
  .hero-copy { padding-right: 8%; }
  .hero-visual { width: 40%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 105px; height: 48px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: 72px; right: 0; bottom: 0; left: 0; display: flex; transform: translateX(100%); flex-direction: column; align-items: stretch; gap: 0; padding: 24px 26px 38px; overflow-y: auto; background: var(--white); transition: transform 220ms ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .site-nav > a::after { display: none; }
  .site-nav .btn { margin-top: 20px; border-bottom: 0; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { display: block; }
  .hero-copy { padding: 76px 0 405px; }
  .hero-title { font-size: clamp(3.2rem, 14vw, 5.6rem); }
  .hero-visual { top: auto; bottom: 0; width: 100%; height: 370px; clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%); }
  .hero-stripe { display: none; }
  .hero-trust { margin-top: 36px; }
  .stats { margin-top: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); border-radius: 0 0 8px 8px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .section-head { display: block; }
  .section-head .section-intro { margin-top: 18px; }
  .split, .footprint, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .split--reverse .split-media { order: initial; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 340px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 28px; }
  .license-strip { grid-template-columns: 1fr; }
  .detail-card, .detail-card:nth-child(even) { grid-template-columns: 1fr; }
  .detail-card:nth-child(even) .detail-card__media { order: initial; }
  .mission-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 62px 0; }
  .hero-copy { padding-top: 56px; padding-bottom: 355px; }
  .hero-title { font-size: clamp(2.8rem, 15vw, 4.1rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { height: 325px; }
  .hero-trust { display: grid; gap: 9px; }
  .stats-grid, .service-grid, .values-grid, .footprint-list { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .stat:last-child { border-bottom: 0; }
  .split-media img { min-height: 340px; }
  .page-hero { padding: 84px 0 72px; }
  .page-hero::after { display: none; }
  .detail-card__body { padding: 28px 24px; }
  .detail-card__media img { min-height: 240px; }
  .contact-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { transform: none; opacity: 1; }
}

/* Visual direction 1 — Global Freight Confidence */
.section { padding: 108px 0; }
.section--soft { background: linear-gradient(180deg, #eef2f6, #f8fafc); }
.section-title { font-weight: 850; }
.btn { min-height: 56px; padding-inline: 28px; border-radius: 0; letter-spacing: .01em; }
.btn--outline { color: var(--white); border-color: rgba(255,255,255,.62); background: rgba(2,15,36,.2); }
.btn--outline:hover { border-color: var(--orange-500); background: rgba(2,15,36,.62); }
.hero { min-height: 900px; color: var(--white); background: var(--navy-950); }
.hero::before {
  z-index: 1; inset: 0; mask-image: none;
  background: linear-gradient(90deg, rgba(2,15,36,.98) 0%, rgba(2,15,36,.88) 35%, rgba(2,15,36,.35) 72%, rgba(2,15,36,.18) 100%), linear-gradient(0deg, rgba(2,15,36,.82), transparent 42%);
}
.hero-grid { min-height: 900px; grid-template-columns: 64% 36%; }
.hero-copy { padding: 184px 0 92px; }
.hero-title { max-width: 860px; color: var(--white); font-size: clamp(3.65rem, 6.1vw, 6.25rem); line-height: 1.02; letter-spacing: -.06em; }
.hero-title span { color: var(--white); }
.hero-lead { max-width: 630px; color: #d6deea; font-size: clamp(1.12rem, 1.5vw, 1.34rem); }
.hero-trust { color: #bdc9da; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.hero-visual { inset: 0; width: 100%; clip-path: none; }
.hero-visual img { object-position: center; }
.hero-visual::after { inset: 0; background: rgba(2,15,36,.14); }
.stats { margin-top: -58px; }
.stats-grid { border: 1px solid rgba(255,255,255,.12); border-radius: 0; background: rgba(2,15,36,.97); }
.stat { padding: 34px; }
.service-card, .mission-card, .detail-card, .contact-form, .contact-panel, .industry-card, .value, .split-media img, .footer-brand img { border-radius: 0; }
.service-card { border: 0; border-bottom: 3px solid transparent; box-shadow: 0 18px 45px rgba(2,15,36,.11); }
.service-card:hover { border-bottom-color: var(--orange-500); }
.service-card__number { border-radius: 0; border-width: 4px; }
.cta-band { background: linear-gradient(100deg, #020f24, #0a2343); }
.page-hero { padding: 178px 0 108px; min-height: 520px; display: grid; align-items: end; }
.page-hero::before { background: linear-gradient(90deg, rgba(2,15,36,.99) 0%, rgba(2,15,36,.84) 48%, rgba(2,15,36,.42) 100%), var(--page-image, none) center/cover; }
.page-hero h1 { font-weight: 850; }

@media (max-width: 1050px) {
  .hero, .hero-grid { min-height: 780px; }
  .hero-visual { width: 100%; }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .header-inner { min-height: 82px; }
  .nav-toggle span { background: var(--white); }
  .site-nav { top: 82px; }
  .site-nav > a { color: var(--navy-950); }
  .hero, .hero-grid { min-height: 760px; }
  .hero-copy { padding: 158px 0 96px; }
  .hero-visual { top: 0; bottom: 0; width: 100%; height: 100%; clip-path: none; }
  .hero-title { font-size: clamp(3.05rem, 12vw, 5rem); }
}

@media (max-width: 560px) {
  .brand img { width: 112px; height: 54px; }
  .brand-name { display: none; }
  .hero, .hero-grid { min-height: 720px; }
  .hero-copy { padding: 136px 0 76px; }
  .hero-title { font-size: clamp(2.75rem, 13vw, 3.8rem); }
  .hero-lead { color: #eef3f9; }
  .hero-trust { margin-top: 30px; }
  .page-hero { padding: 138px 0 76px; min-height: 440px; }
}
