:root {
  --ink: #1f1d1f;
  --muted: #62656b;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --surface-soft: #eef4f2;
  --line: #dde3df;
  --orange: #ff7f18;
  --orange-dark: #cf5b08;
  --harbor: #1c6d75;
  --harbor-dark: #123f47;
  --gold: #c79b43;
  --shadow: 0 22px 70px rgba(31, 29, 31, 0.14);
  --shadow-soft: 0 14px 40px rgba(19, 35, 41, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f9faf7 0%, var(--paper) 42%, #f4f0ea 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

::selection {
  background: rgba(255, 127, 24, 0.28);
  color: var(--ink);
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(249, 250, 247, 0.84);
  border-bottom: 1px solid rgba(230, 223, 212, 0.7);
  box-shadow: 0 16px 40px rgba(31, 29, 31, 0.05);
  backdrop-filter: blur(18px) saturate(1.1);
}

.brand img {
  width: auto;
  height: clamp(48px, 4.4vw, 62px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: #343236;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--orange-dark);
}

.site-nav svg {
  width: 17px;
  height: 17px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action,
.client-login-action,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-action::before,
.client-login-action::before,
.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
  content: "";
}

.header-action {
  background: linear-gradient(135deg, var(--ink), #2f2b2f);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 29, 31, 0.18);
}

.client-login-action {
  border: 1px solid rgba(255, 127, 24, 0.34);
  background: linear-gradient(135deg, var(--orange), #ff9b3d);
  color: #1b1510;
  box-shadow: 0 14px 30px rgba(255, 127, 24, 0.2);
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), #ff9b3d);
  color: #1b1510;
  box-shadow: 0 14px 30px rgba(255, 127, 24, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(31, 29, 31, 0.16);
  box-shadow: 0 10px 22px rgba(31, 29, 31, 0.08);
}

.button.dark {
  background: linear-gradient(135deg, var(--harbor-dark), var(--harbor));
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 63, 71, 0.2);
}

.header-action:hover,
.client-login-action:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(31, 29, 31, 0.18);
}

.header-action:hover::before,
.client-login-action:hover::before,
.button:hover::before {
  transform: translateX(120%);
}

.button:focus-visible,
.client-login-action:focus-visible,
.header-action:focus-visible {
  outline: 2px solid rgba(255, 127, 24, 0.45);
  outline-offset: 3px;
}

.button svg,
.header-action svg,
.client-login-action svg,
.menu-toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(560px, 68svh, 700px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(12, 50, 56, 0.98) 0%, rgba(18, 63, 71, 0.92) 48%, rgba(31, 29, 31, 0.72) 100%),
    #123f47;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 74%);
  animation: gridDrift 18s linear infinite;
}

.hero::after {
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(4, 21, 24, 0.46));
}

#shipping-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.84;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: center;
  gap: clamp(32px, 7vw, 92px);
  min-height: inherit;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 74px) 0 clamp(34px, 5vw, 56px);
  color: #fff;
}

.hero-copy-wrap {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(700px, 100%);
  margin: 34px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.hero-metrics div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease;
}

.hero-metrics div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.hero-metrics dt {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.shipment-widget {
  position: relative;
  z-index: 1;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.18);
  animation: widgetFloat 7s ease-in-out infinite;
}

.shipment-widget::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 44%, transparent 72%);
  transform: translateX(-110%);
  animation: panelSheen 6.5s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

.widget-header,
.widget-route,
.widget-list div {
  position: relative;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
}

.widget-header strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 127, 24, 0.18);
  color: #fff3e8;
  font-size: 0.76rem;
}

.widget-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 31, 35, 0.28);
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.widget-route svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.widget-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.widget-track span {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.widget-track .done {
  background: var(--orange);
}

.widget-track .current {
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.24), var(--orange));
  background-size: 180% 100%;
  animation: trackSweep 1.8s linear infinite;
}

.widget-list {
  display: grid;
  gap: 10px;
}

.widget-list div {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.widget-list svg {
  width: 18px;
  height: 18px;
  color: #ffb066;
}

.widget-list span {
  font-weight: 800;
}

.widget-list strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(238, 244, 242, 0.95));
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-width: 108px;
  padding: 10px 14px;
  border: 1px solid rgba(230, 223, 212, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #4a474b;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.section,
.split-section,
.portal-section,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2,
.portal-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.portal-copy p,
.about-copy p,
.contact-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid,
.why-grid,
.insight-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.why-grid article,
.insight-card,
.process-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(31, 29, 31, 0.06);
  position: relative;
  overflow: hidden;
}

.reveal .service-card,
.reveal .why-grid article,
.reveal .insight-card,
.reveal .process-grid article,
.reveal .route-board,
.reveal .portal-panel,
.reveal .quote-form,
.reveal .map-info,
.reveal iframe {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.reveal.is-visible .service-card,
.reveal.is-visible .why-grid article,
.reveal.is-visible .insight-card,
.reveal.is-visible .process-grid article,
.reveal.is-visible .route-board,
.reveal.is-visible .portal-panel,
.reveal.is-visible .quote-form,
.reveal.is-visible .map-info,
.reveal.is-visible iframe {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .service-card:hover,
.reveal.is-visible .why-grid article:hover,
.reveal.is-visible .insight-card:hover,
.reveal.is-visible .process-grid article:hover {
  transform: translateY(-8px);
}

.reveal.is-visible .portal-panel:hover {
  transform: translateY(-6px) rotateX(1.5deg) rotateY(-1.5deg);
}

.service-card {
  min-height: 276px;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before,
.why-grid article::before,
.insight-card::before,
.process-grid article::before {
  position: absolute;
  inset: auto auto -30px -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 127, 24, 0.16), transparent 70%);
  transition: transform 220ms ease;
  content: "";
}

.service-card:hover,
.why-grid article:hover,
.insight-card:hover,
.process-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 127, 24, 0.26);
  box-shadow: 0 24px 54px rgba(31, 29, 31, 0.12);
}

.service-card:hover::before,
.why-grid article:hover::before,
.insight-card:hover::before,
.process-grid article:hover::before {
  transform: scale(1.2);
}

.service-card svg,
.why-grid svg {
  width: 34px;
  height: 34px;
  color: var(--harbor);
  transition: transform 220ms ease, color 220ms ease;
}

.service-card:hover svg,
.why-grid article:hover svg {
  transform: translateY(-3px) scale(1.08);
  color: var(--orange-dark);
}

.service-card h3,
.why-grid h3,
.insight-card h3,
.process-grid h3 {
  margin: 20px 0 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.service-card p,
.why-grid p,
.insight-card p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.auctions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #38363a;
  font-weight: 800;
}

.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--orange-dark);
}

.route-board {
  padding: 28px;
  background: linear-gradient(135deg, #183f45 0%, #0e3034 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.route-board::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 127, 24, 0.18), transparent 42%, rgba(255, 255, 255, 0.08));
  content: "";
  pointer-events: none;
}

.route-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 22px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.route-line::before {
  position: absolute;
  top: 27px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  content: "";
}

.route-line.active::before {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 127, 24, 0.2);
}

.route-line span {
  color: rgba(255, 255, 255, 0.72);
}

.route-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #fff1df;
  font-weight: 800;
}

.route-status svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

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

.process-grid article {
  min-height: 224px;
  padding: 24px;
}

.process-grid span {
  color: var(--gold);
  font-weight: 900;
}

.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  color: #fff;
  background: linear-gradient(135deg, #0e3b41 0%, #1b5c66 100%);
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  position: relative;
  overflow: hidden;
}

.portal-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 127, 24, 0.14), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 76px);
  content: "";
  pointer-events: none;
}

.portal-copy h2,
.portal-copy p {
  color: #fff;
}

.portal-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.portal-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(230, 223, 212, 0.8);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.portal-panel:hover {
  transform: translateY(-6px) rotateX(1.5deg) rotateY(-1.5deg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.portal-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.portal-top span {
  color: var(--muted);
  font-weight: 800;
}

.portal-top strong {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(28, 109, 117, 0.12);
  color: var(--harbor-dark);
  font-size: 0.82rem;
}

.portal-progress {
  height: 12px;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e3d9;
}

.portal-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffad63, var(--orange));
  background-size: 180% 100%;
  border-radius: inherit;
  animation: trackSweep 2.4s linear infinite;
}

.portal-items {
  display: grid;
  gap: 12px;
}

.portal-items div {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portal-items svg {
  color: var(--harbor);
}

.portal-items span {
  font-weight: 800;
}

.portal-items strong {
  color: var(--muted);
  font-size: 0.84rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

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

.why-grid article {
  padding: 24px;
}

.insights-section {
  border-top: 1px solid var(--line);
}

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

.insight-card {
  min-height: 236px;
  padding: 24px;
}

.insight-card span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #343236;
  font-weight: 800;
}

.contact-methods svg {
  width: 20px;
  height: 20px;
  color: var(--orange-dark);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 246, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #343236;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8d0c4;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.quote-form input:hover,
.quote-form textarea:hover {
  transform: translateY(-1px);
}

.quote-form input {
  min-height: 48px;
  padding: 0 13px;
}

.quote-form textarea {
  resize: vertical;
  padding: 13px;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--harbor);
  box-shadow: 0 0 0 3px rgba(28, 109, 117, 0.14);
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--harbor-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(70px, 8vw, 110px);
}

.map-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 246, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.map-info h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.map-info p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
}

.map-section iframe {
  width: 100%;
  height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e7e1d7;
  filter: saturate(0.92) contrast(1.02);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 38px 20px;
  background: linear-gradient(145deg, #1f1d1f, #2c282c);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.site-footer img {
  width: 180px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.site-footer p {
  max-width: 580px;
  margin: 0;
}

.site-footer span {
  font-size: 0.86rem;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 74px 74px, 74px 74px;
  }
}

@keyframes widgetFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes panelSheen {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes trackSweep {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 180% 50%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .portal-section,
  .about-section,
  .contact-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .portal-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(118px, auto) 44px;
    justify-content: stretch;
    gap: 10px;
    min-height: 72px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

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

  .header-actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .header-action {
    display: none;
  }

  .client-login-action {
    min-height: 42px;
    padding: 0 14px;
    gap: 7px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero {
    min-height: min(650px, 76svh);
    background:
      linear-gradient(180deg, rgba(18, 63, 71, 0.9) 0%, rgba(18, 63, 71, 0.78) 58%, rgba(18, 63, 71, 0.9) 100%),
      #224e52;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shipment-widget {
    display: none;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding-top: 36px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-metrics div {
    padding: 10px;
  }

  .hero-metrics dt {
    font-size: 1.12rem;
  }

  .hero-metrics dd {
    font-size: 0.7rem;
  }

  .trust-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .feature-list,
  .insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .split-section,
  .contact-section,
  .map-section {
    width: min(100% - 28px, 560px);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

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

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

  .service-card,
  .process-grid article,
  .insight-card {
    min-height: auto;
  }

  .route-board,
  .portal-panel,
  .quote-form {
    padding: 20px;
  }

  .portal-items div {
    grid-template-columns: 32px 1fr;
  }

  .portal-items strong {
    grid-column: 2;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .map-section iframe {
    height: 320px;
  }
}
