:root {
  --ink: #070707;
  --muted: #62605d;
  --line: #e9e4dc;
  --paper: #fffdf9;
  --soft: #f5f1eb;
  --orange: #f05d2a;
  --orange-dark: #c8421d;
  --green: #214f43;
  --sea: #0f5f72;
  --shadow: 0 24px 60px rgba(19, 17, 14, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.nav-links a,
.nav-pill {
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
  background: var(--ink);
}

.nav-pill {
  color: #fff;
  background: var(--ink);
}

.nav-pill:hover {
  transform: translateY(-2px);
  background: var(--orange);
}

.hero,
.route-section,
.split-section,
.services,
.testimonial-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 64px 0 76px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange);
  font-style: italic;
}

.hero-lede,
.section-intro {
  max-width: 710px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 -24px;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(240, 93, 42, 0.22);
}

.btn-primary,
.btn-small {
  color: #fff;
  background: var(--orange);
}

.btn-primary:hover,
.btn-small:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff;
}

.btn-secondary:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.btn-small {
  min-height: 38px;
  padding: 0 18px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.hero-media::after,
.split-image::after,
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(7, 7, 7, 0.18));
  pointer-events: none;
}

.hero-media img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-media:hover img,
.split-image:hover img,
.image-band:hover img {
  transform: scale(1.04);
}

.route-section,
.services,
.testimonial-section {
  padding: 72px 0;
}

.route-section {
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

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

.process-card,
.service-card,
.principle-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.process-card {
  min-height: 210px;
  padding: 30px 24px 24px;
}

.process-card:hover,
.service-card:hover,
.principle-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--orange) 38%, var(--line));
  box-shadow: var(--shadow);
  background: #fff;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #eee8df;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 44px;
  border-radius: 50%;
  background: var(--soft);
  font-weight: 800;
}

.process-card p,
.service-card p,
.accordion-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  padding: 0;
  border: 0;
  color: var(--orange);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.25s ease, transform 0.25s ease;
}

.read-more:hover {
  color: var(--orange-dark);
  transform: translateX(4px);
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
  padding: 54px 0 84px;
}

.split-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.accordion-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  transition: color 0.25s ease;
}

summary:hover {
  color: var(--orange);
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft);
}

.split-image img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.service-card {
  min-height: 360px;
  padding: 0 26px 26px;
  background: #f7f4ef;
}

.service-illustration {
  position: relative;
  height: 170px;
  margin: 0 -26px 26px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #dbeefa 0%, #f6efe2 100%);
}

.service-illustration span {
  position: absolute;
  display: block;
}

.service-illustration.freight .sun {
  top: 24px;
  left: 32px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5a44b;
  box-shadow: 0 0 34px rgba(245, 164, 75, 0.45);
}

.service-illustration.freight .ship {
  left: 50px;
  bottom: 40px;
  width: 210px;
  height: 44px;
  border-radius: 0 0 46px 46px;
  background: #132f3c;
  transform: skewX(-13deg);
}

.service-illustration.freight .container {
  bottom: 84px;
  width: 62px;
  height: 32px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.service-illustration.freight .c1 {
  left: 112px;
}

.service-illustration.freight .c2 {
  left: 178px;
  background: #236474;
}

.service-illustration.freight .wave {
  left: 0;
  right: 0;
  height: 24px;
  border-top: 3px solid rgba(15, 95, 114, 0.3);
  border-radius: 50%;
}

.service-illustration.freight .w1 {
  bottom: 24px;
}

.service-illustration.freight .w2 {
  bottom: 8px;
  border-color: rgba(240, 93, 42, 0.22);
}

.service-illustration.warehouse .building {
  left: 34px;
  right: 34px;
  bottom: 32px;
  height: 92px;
  border-radius: 16px 16px 4px 4px;
  background: #f7fbfb;
  box-shadow: inset 0 -28px 0 #d2ded8, 0 16px 34px rgba(19, 17, 14, 0.1);
}

.service-illustration.warehouse .door {
  left: 126px;
  bottom: 32px;
  width: 58px;
  height: 54px;
  border-radius: 8px 8px 0 0;
  background: #214f43;
}

.service-illustration.warehouse .box {
  bottom: 32px;
  width: 44px;
  height: 36px;
  border-radius: 5px;
  background: #d99548;
}

.service-illustration.warehouse .b1 {
  left: 52px;
}

.service-illustration.warehouse .b2 {
  left: 80px;
  bottom: 68px;
  background: #efb46a;
}

.service-illustration.warehouse .b3 {
  right: 56px;
  background: var(--orange);
}

.service-illustration.warehouse .forklift {
  right: 96px;
  bottom: 28px;
  width: 64px;
  height: 24px;
  border-radius: 6px 6px 3px 3px;
  background: #132f3c;
}

.service-illustration.lane .road {
  left: 0;
  right: 0;
  bottom: -52px;
  height: 140px;
  background: #263843;
  clip-path: polygon(38% 0, 62% 0, 86% 100%, 14% 100%);
}

.service-illustration.lane .road::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: 4px;
  height: 90px;
  background: repeating-linear-gradient(#fff 0 14px, transparent 14px 28px);
  transform: translateX(-50%);
}

.service-illustration.lane .truck {
  left: 94px;
  bottom: 58px;
  width: 124px;
  height: 44px;
  border-radius: 8px;
  background: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.service-illustration.lane .cab {
  left: 220px;
  bottom: 58px;
  width: 48px;
  height: 44px;
  border-radius: 8px 12px 8px 4px;
  background: #f7fbfb;
}

.service-illustration.lane .pin {
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: rotate(-45deg);
  box-shadow: 0 5px 14px rgba(19, 17, 14, 0.18);
}

.service-illustration.lane .p1 {
  top: 28px;
  left: 56px;
}

.service-illustration.lane .p2 {
  top: 46px;
  right: 58px;
  background: #214f43;
}

.service-illustration.lane .p3 {
  top: 74px;
  left: 164px;
  background: #0f5f72;
}

.service-arrow {
  position: absolute;
  top: 24px;
  right: 26px;
  transition: transform 0.25s ease;
}

.service-card:hover .service-arrow {
  transform: translate(3px, -3px);
}

.service-card h3 {
  margin-top: 0;
}

.image-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 420px;
  margin: 8px 0 0;
  overflow: hidden;
  background: #170f0a;
}

.image-band img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-band-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: 54px min(7vw, 94px);
  color: #fff;
  background: linear-gradient(90deg, rgba(23, 15, 10, 0.2), rgba(23, 15, 10, 0.82));
}

.image-band-copy h2 {
  max-width: 540px;
  color: #fff1e9;
  font-size: clamp(28px, 4vw, 44px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
  text-align: center;
}

.metrics strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.testimonial-section {
  text-align: center;
}

.principle-card {
  max-width: 560px;
  margin: 36px auto 0;
  padding: 30px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20, 17, 14, 0.09);
}

.stars {
  color: var(--orange);
  letter-spacing: 0.08em;
}

.principle-card p {
  color: #373431;
  line-height: 1.7;
}

.principle-card strong,
.principle-card span {
  display: block;
}

.principle-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  margin-top: 0;
  padding: 54px max(24px, calc((100vw - 1120px) / 2)) 34px;
  color: #fff;
  background: #050505;
}

.site-footer p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.site-footer small {
  color: rgba(255, 255, 255, 0.48);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.56);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal[aria-hidden="false"] .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel h2 {
  font-size: clamp(30px, 5vw, 44px);
}

.modal-panel p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-close:hover {
  transform: rotate(90deg);
  color: var(--orange);
  border-color: var(--orange);
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .process-grid,
  .service-grid,
  .split-section,
  .image-band,
  .metrics {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 28px;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .image-band {
    min-height: 0;
  }

  .image-band img {
    aspect-ratio: 4 / 3;
  }

  .metrics {
    width: min(520px, calc(100% - 40px));
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .route-section,
  .split-section,
  .services,
  .testimonial-section {
    width: min(100% - 28px, 1120px);
  }

  .brand span:last-child {
    max-width: 210px;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 18px;
  }

  .process-card,
  .service-card,
  .principle-card {
    border-radius: 14px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
