@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #1b1b19;
  --ink-deep: #10110f;
  --navy: #242522;
  --panel: #2a2a27;
  --panel-light: #353530;
  --line: rgba(246, 244, 238, 0.15);
  --line-strong: rgba(246, 244, 238, 0.28);
  --text: #f4f2ed;
  --muted: #aaa79d;
  --soft: #dedbd2;
  --copper: #db7756;
  --copper-light: #f0a07c;
  --aqua: #f0eee8;
  --blue: #8f9cff;
  --violet: #ba9cff;
  --green: #7bd3a0;
  --red: #fa4747;
  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(45, 101, 110, 0.12), transparent 28rem),
    radial-gradient(circle at 14% 42%, rgba(238, 116, 72, 0.06), transparent 24rem),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font-size: 1rem;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

.noise {
  position: fixed;
  z-index: 200;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(7, 19, 29, 0.22);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 19, 29, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  color: #f9e9d8;
  background: linear-gradient(155deg, #273f4a, #0b202c);
  clip-path: polygon(50% 0, 91% 12%, 86% 73%, 50% 100%, 14% 73%, 9% 12%);
  box-shadow: inset 0 0 0 1px rgba(239, 177, 103, 0.6);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  right: -6px;
  left: -6px;
  height: 5px;
  content: "";
  transform: rotate(-15deg);
}

.brand-mark::before {
  top: 12px;
  background: var(--copper);
}

.brand-mark::after {
  top: 22px;
  background: var(--aqua);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark i {
  position: absolute;
  right: 11px;
  bottom: 8px;
  left: 11px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(-16deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: #eaf3f1;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff7ed;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 0.77rem;
  font-weight: 600;
  white-space: nowrap;
}

.phone-dot,
.live-status i,
.map-live i,
.form-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(155, 209, 208, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-copper {
  color: #1b1411;
  background: linear-gradient(100deg, var(--copper-light), var(--copper));
  box-shadow: 0 10px 28px rgba(238, 116, 72, 0.18);
}

.button-copper:hover,
.button-copper:focus-visible {
  background: linear-gradient(100deg, #ffc077, #f47f4e);
  box-shadow: 0 13px 30px rgba(238, 116, 72, 0.3);
}

.button-ghost {
  color: #e4eeef;
  border-color: rgba(221, 237, 234, 0.34);
  background: rgba(9, 26, 37, 0.28);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--aqua);
  background: rgba(156, 211, 210, 0.09);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.68rem;
}

.button-large {
  min-height: 58px;
  padding: 16px 26px;
}

.button-arrow {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--soft);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(820px, 100vh);
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero-image,
.hero-vignette,
.hero-road-lines {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-image {
  background-image: url("./assets/hero-cargo-van.png");
  background-position: center;
  background-size: cover;
  filter: saturate(0.75) contrast(1.05);
  transform: scale(1.04);
  animation: slow-zoom 16s ease-out both;
}

.hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.97) 0%, rgba(5, 15, 22, 0.83) 32%, rgba(5, 15, 22, 0.28) 71%, rgba(5, 15, 22, 0.72) 100%),
    linear-gradient(0deg, rgba(3, 11, 17, 0.87) 0%, transparent 42%, rgba(3, 11, 17, 0.48) 100%);
}

.hero-road-lines {
  z-index: -1;
  opacity: 0.42;
  background:
    linear-gradient(124deg, transparent 0 58%, rgba(248, 168, 95, 0.32) 58.1% 58.3%, transparent 58.4%),
    linear-gradient(125deg, transparent 0 68%, rgba(155, 209, 208, 0.22) 68.1% 68.25%, transparent 68.35%);
  mask-image: linear-gradient(90deg, transparent, #000 48%, transparent);
}

.hero-content {
  display: grid;
  width: 100%;
  padding-top: 82px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--copper-light), transparent);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: #edf4f2;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  line-height: 0.88;
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--copper-light);
  font-style: normal;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 30px;
  color: #bfd0d2;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  color: #adc3c6;
  font-size: 0.78rem;
}

.hero-proof strong {
  color: #edf4f2;
}

.proof-seal,
.label-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(245, 163, 94, 0.66);
  border-radius: 50%;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
}

.route-card {
  position: relative;
  justify-self: end;
  width: min(100%, 380px);
  padding: 22px;
  border: 1px solid rgba(199, 222, 221, 0.23);
  background:
    linear-gradient(145deg, rgba(19, 46, 56, 0.9), rgba(5, 17, 26, 0.93)),
    radial-gradient(circle at top right, rgba(238, 116, 72, 0.2), transparent 48%);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  animation: card-float 7s ease-in-out infinite;
}

.route-card::before {
  position: absolute;
  top: -1px;
  right: 22px;
  left: 22px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--copper-light), transparent);
}

.route-card-top,
.route-card-heading,
.route-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-card-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.route-label,
.route-card-heading,
.route-code,
.route-card small {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-status,
.map-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card-heading {
  padding: 20px 0 24px;
  color: #eef5f2;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.route-code {
  color: var(--copper-light);
  font-family: var(--body);
  font-size: 0.61rem;
}

.route-points {
  position: relative;
  padding: 0 0 14px 8px;
}

.route-point {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.route-point-end {
  margin-top: 78px;
}

.route-node {
  position: relative;
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  border: 3px solid var(--panel);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--aqua);
}

.route-node-start {
  background: var(--aqua);
}

.route-node-end {
  background: var(--copper-light);
  box-shadow: 0 0 0 1px var(--copper-light);
}

.route-point small,
.route-point strong {
  display: block;
}

.route-point small {
  margin-bottom: 4px;
}

.route-point strong {
  color: #ecf4f1;
  font-family: var(--display);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.route-track {
  position: absolute;
  top: 18px;
  bottom: 22px;
  left: 14px;
  width: 1px;
  overflow: hidden;
  background: repeating-linear-gradient(to bottom, rgba(155, 209, 208, 0.58) 0 5px, transparent 5px 10px);
}

.route-track-fill {
  position: absolute;
  top: 0;
  width: 100%;
  height: 59%;
  background: var(--copper-light);
}

.route-truck {
  position: absolute;
  top: calc(59% - 8px);
  left: -8px;
  color: var(--copper-light);
  font-size: 0.7rem;
  transform: rotate(90deg);
}

.route-card-bottom {
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.route-card-bottom span {
  display: grid;
  gap: 3px;
}

.route-card-bottom span:last-child {
  text-align: right;
}

.route-card-bottom strong {
  color: #eaf2ef;
  font-size: 0.78rem;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a1b7ba;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-wheel {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 32px;
  border: 1px solid rgba(219, 235, 232, 0.55);
  border-radius: 20px;
}

.scroll-wheel::after {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 2px;
  height: 6px;
  content: "";
  background: var(--copper-light);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(18, 43, 53, 0.52);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 26px;
  color: var(--muted);
  font-size: 0.77rem;
}

.signal-item + .signal-item {
  border-left: 1px solid var(--line);
}

.signal-item strong {
  color: #dce8e7;
  font-weight: 600;
}

.signal-icon {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section {
  padding: 122px 0;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(8, 22, 31, 0.4), rgba(9, 23, 31, 0.97)),
    repeating-linear-gradient(90deg, transparent 0 128px, rgba(155, 209, 208, 0.027) 128px 129px);
}

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: #eaf2ef;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.split-heading > p {
  max-width: 430px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 324px;
  padding: 23px 21px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(16, 39, 49, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:nth-child(1) {
  grid-column: span 2;
}

.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 1;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -64px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(238, 116, 72, 0.26);
  border-radius: 50%;
  content: "";
  transition: transform 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(238, 116, 72, 0.55);
  background: rgba(18, 51, 60, 0.86);
  transform: translateY(-7px);
}

.service-card:hover::after {
  transform: scale(1.18);
}

.service-card-feature {
  background:
    linear-gradient(145deg, rgba(238, 116, 72, 0.14), transparent 54%),
    rgba(16, 39, 49, 0.78);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-index {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(155, 209, 208, 0.28);
  color: var(--aqua);
  background: rgba(155, 209, 208, 0.04);
}

.service-icon-box {
  width: 51px;
  height: 51px;
  color: var(--copper-light);
  border-color: rgba(245, 163, 94, 0.36);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-icon-box svg {
  width: 31px;
  height: 31px;
}

.service-card h3 {
  max-width: 210px;
  margin: auto 0 10px;
  color: #eaf2ef;
  font-size: 1.7rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p {
  max-width: 245px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  color: var(--copper-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.operations-section {
  position: relative;
  overflow: hidden;
  background: #0b2029;
}

.operations-section::before {
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(155, 209, 208, 0.1);
  border-radius: 50%;
  content: "";
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(54px, 9vw, 125px);
}

.operations-visual {
  position: relative;
}

.image-frame {
  position: relative;
  min-height: 532px;
  overflow: hidden;
  border: 1px solid rgba(155, 209, 208, 0.27);
  background: var(--panel);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(5, 15, 20, 0.86));
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 532px;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.06);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.operations-visual:hover .image-frame img {
  transform: scale(1.05);
}

.image-frame::before {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-top: 1px solid var(--copper-light);
  border-right: 1px solid var(--copper-light);
  content: "";
}

.image-frame-label {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dfeae7;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operations-badge {
  position: absolute;
  z-index: 3;
  right: -35px;
  bottom: 52px;
  display: flex;
  min-width: 150px;
  padding: 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(245, 163, 94, 0.55);
  background: var(--copper);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.23);
  transform: rotate(-3deg);
}

.badge-number {
  color: #241713;
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 0.8;
}

.operations-badge span:last-child {
  color: #3e2116;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.operations-copy h2 {
  max-width: 430px;
  margin-bottom: 22px;
  color: #eaf2ef;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.large-copy {
  max-width: 505px;
  margin-bottom: 32px;
  color: #adc2c4;
  font-size: 1.02rem;
}

.standard-list {
  display: grid;
  gap: 17px;
  margin-bottom: 34px;
}

.standard-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 11px;
}

.standard-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(238, 116, 72, 0.55);
  color: var(--copper-light);
  font-size: 0.83rem;
}

.standard-item strong,
.standard-item small {
  display: block;
}

.standard-item strong {
  color: #e3edeb;
  font-size: 0.86rem;
  font-weight: 700;
}

.standard-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.77rem;
}

.text-link-bright {
  color: var(--aqua);
}

.coverage-section {
  background:
    radial-gradient(circle at 20% 40%, rgba(35, 79, 93, 0.16), transparent 26rem),
    #071720;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.7fr);
  gap: 22px;
}

.coverage-map-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: #0c232e;
}

.map-card-top,
.map-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-card-top {
  padding: 0 2px 16px;
}

.map-eyebrow,
.map-card-bottom,
.hub-index {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-live {
  color: var(--aqua);
}

.map-canvas {
  position: relative;
  min-height: 428px;
  overflow: hidden;
  border: 1px solid rgba(155, 209, 208, 0.12);
  background:
    linear-gradient(180deg, rgba(155, 209, 208, 0.03), transparent 30%),
    #081a24;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    linear-gradient(rgba(155, 209, 208, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 209, 208, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.us-map {
  position: absolute;
  inset: 8% 4% 5%;
  width: 92%;
  height: 87%;
  overflow: visible;
}

.map-outline {
  fill: rgba(74, 133, 146, 0.13);
  stroke: rgba(155, 209, 208, 0.54);
  stroke-width: 2;
  stroke-linejoin: round;
}

.map-route {
  fill: none;
  stroke: var(--copper-light);
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  stroke-width: 2.4;
  opacity: 0.88;
  animation: route-dash 13s linear infinite;
}

.map-route-b,
.map-route-d {
  stroke: var(--aqua);
  stroke-width: 1.5;
  opacity: 0.55;
}

.map-route-c {
  animation-delay: -5s;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #d9e8e7;
  background: transparent;
  font-family: var(--body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease, transform 180ms ease;
}

.map-pin i {
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid #08202b;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 0 4px rgba(245, 163, 94, 0.17);
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active {
  color: #fff4e9;
  transform: scale(1.08);
}

.map-pin.is-active i {
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(155, 209, 208, 0.2);
}

.map-pin-chicago {
  top: 39%;
  left: 58%;
}

.map-pin-dallas {
  top: 68%;
  left: 48%;
}

.map-pin-atlanta {
  top: 62%;
  left: 69%;
}

.map-pin-denver {
  top: 51%;
  left: 37%;
}

.map-pin-phoenix {
  top: 73%;
  left: 27%;
}

.map-tooltip {
  position: absolute;
  right: 19px;
  bottom: 17px;
  padding: 8px 10px;
  border: 1px solid rgba(155, 209, 208, 0.2);
  color: var(--muted);
  background: rgba(5, 17, 24, 0.82);
  font-size: 0.65rem;
  backdrop-filter: blur(8px);
}

.map-card-bottom {
  justify-content: flex-start;
  gap: 12px;
  padding: 15px 2px 0;
}

.map-divider {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--copper-light);
}

.coverage-list {
  padding: 20px 0 0 22px;
}

.hub-intro {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hub-intro strong,
.hub-intro small {
  display: block;
}

.hub-intro strong {
  color: #e7f0ed;
  font-family: var(--display);
  font-size: 1.24rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hub-intro small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hub-row {
  display: grid;
  width: 100%;
  padding: 18px 2px;
  grid-template-columns: 45px 1fr 25px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  transition: padding 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hub-row:hover,
.hub-row:focus-visible,
.hub-row.is-active {
  padding-left: 9px;
  border-color: rgba(238, 116, 72, 0.52);
}

.hub-code {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.hub-row strong,
.hub-row small {
  display: block;
}

.hub-row strong {
  color: #dce9e6;
  font-size: 0.84rem;
  font-weight: 600;
}

.hub-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.hub-arrow {
  color: var(--aqua);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.hub-row:hover .hub-arrow,
.hub-row:focus-visible .hub-arrow,
.hub-row.is-active .hub-arrow {
  transform: translate(3px, -3px);
}

.booking-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 15, 22, 0.86), rgba(10, 35, 43, 0.74)),
    url("https://images.unsplash.com/photo-1633521248898-19cbbf9ead88?auto=format&fit=crop&w=2200&q=78") center / cover;
}

.booking-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(155, 209, 208, 0.16), transparent);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.booking-intro {
  max-width: 395px;
}

.booking-intro h2 {
  margin-bottom: 22px;
  color: #eaf2ef;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.booking-intro > p {
  max-width: 340px;
  color: #aec2c3;
  font-size: 0.94rem;
}

.booking-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-icon {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid rgba(155, 209, 208, 0.38);
  color: var(--aqua);
}

.booking-contact small,
.booking-contact a {
  display: block;
}

.booking-contact small {
  color: var(--muted);
  font-size: 0.68rem;
}

.booking-contact a {
  margin-top: 2px;
  color: #e1ece9;
  font-size: 0.79rem;
  font-weight: 600;
}

.booking-contact a:hover {
  color: var(--copper-light);
}

.quote-form {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(183, 211, 209, 0.32);
  background: linear-gradient(150deg, rgba(18, 48, 57, 0.95), rgba(6, 21, 29, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quote-form::before,
.quote-form::after {
  position: absolute;
  width: 50px;
  height: 50px;
  content: "";
  pointer-events: none;
}

.quote-form::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--copper-light);
  border-left: 2px solid var(--copper-light);
}

.quote-form::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--aqua);
  border-bottom: 2px solid var(--aqua);
}

.form-topline,
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-topline {
  padding-bottom: 21px;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-topline > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua);
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.form-status-dot {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px rgba(155, 209, 208, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 14px;
}

.field {
  display: block;
}

.field-wide {
  grid-column: span 1;
}

.field > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #c7d6d5;
  font-size: 0.7rem;
  font-weight: 600;
}

.field > span small {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(175, 205, 207, 0.2);
  border-radius: 0;
  outline: 0;
  color: #e6efed;
  background: rgba(2, 13, 20, 0.45);
  font-size: 0.82rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 48px;
}

.field textarea {
  resize: vertical;
  min-height: 82px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #718b92;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--copper-light) 50%),
    linear-gradient(135deg, var(--copper-light) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 20px,
    calc(100% - 11px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  color: #e6efed;
  background: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--aqua);
  background-color: rgba(15, 44, 53, 0.65);
  box-shadow: 0 0 0 3px rgba(155, 209, 208, 0.09);
}

.field-notes {
  margin-top: 18px;
}

.form-submit-row {
  margin-top: 21px;
  align-items: flex-end;
}

.form-submit-row p {
  max-width: 315px;
  margin: 0;
  color: #81989c;
  font-size: 0.68rem;
  line-height: 1.4;
}

.form-submit-row .button {
  flex: 0 0 auto;
}

.form-success {
  display: none;
  align-items: center;
  gap: 11px;
  margin-top: 17px;
  padding: 12px 14px;
  border: 1px solid rgba(155, 209, 208, 0.26);
  background: rgba(155, 209, 208, 0.07);
}

.form-success.is-visible {
  display: flex;
  animation: success-in 300ms ease both;
}

.success-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--aqua);
  font-weight: 700;
}

.form-success strong,
.form-success small {
  display: block;
}

.form-success strong {
  color: #e5f0ec;
  font-size: 0.78rem;
}

.form-success small {
  color: var(--muted);
  font-size: 0.69rem;
}

.trust-section {
  padding: 106px 0 118px;
  background: #06131c;
}

.centered-heading {
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  max-width: 650px;
  margin-inline: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  display: grid;
  min-height: 166px;
  padding: 25px 20px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--line);
}

.stat-item strong {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.85;
}

.stat-item span:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-section {
  background:
    radial-gradient(circle at 82% 50%, rgba(32, 80, 94, 0.18), transparent 24rem),
    #0b1e28;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 10vw, 160px);
}

.testimonial-label h2 {
  max-width: 350px;
  margin-bottom: 38px;
  color: #e9f2ef;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}

.carousel-button {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(155, 209, 208, 0.35);
  color: var(--aqua);
  background: transparent;
  font-size: 1.1rem;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: var(--copper-light);
  background: rgba(238, 116, 72, 0.1);
  transform: translateY(-2px);
}

.carousel-count {
  min-width: 58px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.9rem;
  text-align: center;
}

.carousel-count strong {
  color: var(--copper-light);
  font-size: 1.2rem;
}

.testimonial-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(155, 209, 208, 0.24);
  background:
    linear-gradient(140deg, rgba(19, 51, 62, 0.78), rgba(6, 20, 28, 0.78)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(155, 209, 208, 0.02) 14px 15px);
}

.testimonial-card::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-right: 1px solid var(--copper-light);
  border-bottom: 1px solid var(--copper-light);
  content: "";
}

.quote-mark {
  display: block;
  height: 66px;
  color: var(--copper-light);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

blockquote {
  max-width: 680px;
  margin: 0 0 39px;
  color: #e2ece9;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(238, 116, 72, 0.52);
  border-radius: 50%;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person strong {
  color: #e6efed;
  font-size: 0.8rem;
}

.testimonial-person small {
  color: var(--muted);
  font-size: 0.68rem;
}

.testimonial-route {
  margin-left: auto;
  color: var(--aqua);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(238, 116, 72, 0.28);
  background: #142f36;
}

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

.cta-section::before {
  top: -90px;
  left: 23%;
  width: 1px;
  height: 360px;
  background: linear-gradient(transparent, rgba(245, 163, 94, 0.54), transparent);
  transform: rotate(36deg);
}

.cta-section::after {
  top: -160px;
  right: 14%;
  width: 1px;
  height: 470px;
  background: linear-gradient(transparent, rgba(155, 209, 208, 0.42), transparent);
  transform: rotate(-36deg);
}

.cta-glow {
  position: absolute;
  top: -12rem;
  left: 35%;
  width: 42rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(238, 116, 72, 0.15);
  filter: blur(50px);
}

.cta-inner {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-inner h2 {
  margin: 0;
  color: #e9f2ef;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.cta-inner .eyebrow {
  margin-bottom: 17px;
}

.site-footer {
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  padding-top: 68px;
  padding-bottom: 54px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand > p {
  max-width: 230px;
  margin: 22px 0 23px;
  color: var(--muted);
  font-size: 0.79rem;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--copper-light);
  color: var(--copper-light);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-title {
  margin-bottom: 9px;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col a,
.footer-address {
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--soft);
}

.footer-address {
  margin-top: 5px;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #657f86;
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: var(--soft);
}

.footer-bottom a:hover {
  color: var(--copper-light);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 110ms !important;
}

.reveal-delay-1 {
  transition-delay: 80ms !important;
}

.reveal-delay-2 {
  transition-delay: 150ms !important;
}

.reveal-delay-3 {
  transition-delay: 220ms !important;
}

@keyframes slow-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.11); }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

@keyframes route-dash {
  to { stroke-dashoffset: -180; }
}

@keyframes success-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  .nav-shell {
    gap: 22px;
  }

  .site-nav {
    gap: 18px;
  }

  .phone-link {
    display: none;
  }

  .hero-content {
    gap: 44px;
  }

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

  .service-card:nth-child(1) {
    grid-column: span 2;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 2;
  }
}

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

  .site-header {
    background: rgba(7, 19, 29, 0.82);
  }

  .nav-shell {
    position: relative;
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    padding: 17px 18px 22px;
    border: 1px solid var(--line);
    border-top: 0;
    background: rgba(7, 19, 29, 0.97);
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.22);
  }

  .site-nav.is-open {
    display: grid;
    justify-items: start;
    gap: 17px;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(4, 12, 18, 0.72) 0%, rgba(5, 15, 22, 0.28) 22%, rgba(5, 15, 22, 0.96) 75%),
      linear-gradient(90deg, rgba(5, 15, 22, 0.62), rgba(5, 15, 22, 0.28));
  }

  .hero-content {
    display: block;
    padding-top: 104px;
    padding-bottom: 75px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(3.65rem, 15vw, 5.6rem);
  }

  .hero-lede {
    max-width: 500px;
  }

  .route-card {
    display: none;
  }

  .scroll-cue {
    right: 16px;
    bottom: 19px;
  }

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

  .signal-item {
    min-height: 70px;
    padding: 12px 0;
  }

  .signal-item + .signal-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading,
  .operations-grid,
  .coverage-layout,
  .booking-shell,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-heading {
    gap: 22px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .service-card {
    min-height: 295px;
  }

  .service-card-feature {
    grid-column: span 2 !important;
    min-height: 265px;
  }

  .operations-visual {
    max-width: 530px;
    margin-inline: auto;
  }

  .operations-copy {
    max-width: 540px;
  }

  .coverage-list {
    padding: 0;
  }

  .booking-section::before {
    display: none;
  }

  .booking-intro {
    max-width: 530px;
  }

  .quote-form {
    padding: 21px 17px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .testimonial-label h2 {
    max-width: 500px;
    margin-bottom: 27px;
  }

  .testimonial-card {
    min-height: 300px;
  }

  .cta-inner {
    min-height: 280px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    padding: 17px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Last-mile layout correction */
.header-logo { width: 156px !important; height: 72px !important; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }
.hero-content { display: grid !important; grid-template-columns: minmax(0, .9fr) minmax(340px, .8fr) !important; text-align: left !important; align-items: center; }
.hero-copy { margin: 0 !important; }
.hero-copy .eyebrow, .hero-actions { justify-content: flex-start !important; }
.hero-visual { display: block !important; }
.numbers-artwork { display: none !important; }
.section-heading, .centered-heading { text-align: left !important; }
.section-heading h2, .operations-copy h2, .booking-intro h2, .testimonial-label h2, .cta-inner h2, .service-card h3 { color: #fff !important; text-align: left !important; }
.section-heading h2 em, .operations-copy h2 em, .booking-intro h2 em, .testimonial-label h2 em, .cta-inner h2 em { color: #ff6a3d !important; background: linear-gradient(90deg,#ffbf79,#ff6a3d 52%,#e92b1e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.services-section, .trust-section { background: #0b1b2d !important; }
@media (max-width: 780px) { .header-logo { width: 118px !important; height: 58px !important; } .hero-content { display: block !important; text-align: left !important; } .hero-copy .eyebrow, .hero-actions { justify-content: flex-start !important; } }

.section-heading h2,
.operations-copy h2,
.booking-intro h2,
.testimonial-label h2,
.cta-inner h2,
.service-card h3 { color: #fff !important; text-align: left; }
.section-heading, .centered-heading { text-align: left; }
.section-heading .eyebrow, .centered-heading .eyebrow { justify-content: flex-start; }
.section-heading h2 em, .operations-copy h2 em, .booking-intro h2 em, .testimonial-label h2 em, .cta-inner h2 em { color: #ff7547 !important; background: linear-gradient(90deg,#ffb06a 0%,#ff5b32 50%,#ed2d20 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.services-section, .trust-section { background: #0b1b2d !important; }
.services-section .service-card { background: #12283d !important; border-color: rgba(255,255,255,.18) !important; }
.services-section .service-card p, .services-section .service-index, .services-section .split-heading>p, .trust-section .stat-item span { color: rgba(255,255,255,.78) !important; }
.numbers-artwork { display:block; width:100%; max-height:420px; object-fit:cover; margin:0 0 28px; border:1px solid rgba(255,255,255,.22); }

.header-logo { width: 142px; height: 68px; object-fit: contain; display: block; }
.hero-content { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, .8fr); text-align: left; align-items: center; }
.hero-copy { margin: 0; }
.hero-copy .eyebrow, .hero-actions { justify-content: flex-start; }
.hero-visual { display: block; position: relative; width: 100%; }
.hero-freight-image { min-height: 420px; border: 1px solid rgba(255,255,255,.35); background: linear-gradient(180deg, rgba(4,18,36,.08), rgba(4,18,36,.6)), url("https://images.unsplash.com/photo-1633521248898-19cbbf9ead88?auto=format&fit=crop&w=1400&q=88") center/cover; box-shadow: 0 24px 55px rgba(0,0,0,.28); }
.hero-quote-form { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; padding: 16px; border: 1px solid rgba(255,255,255,.3); background: rgba(5,18,33,.9); backdrop-filter: blur(12px); }
.hero-quote-form strong { grid-column: 1/-1; color: #fff; font-size: 1rem; }
.hero-quote-form input { min-width: 0; padding: 12px; border: 1px solid rgba(255,255,255,.25); color:#fff; background:rgba(255,255,255,.08); }
.hero-quote-form input::placeholder { color: rgba(255,255,255,.8); }
.hero-quote-form .button { padding: 12px 16px; color: #fff; }
.hero h1, .hero-lede { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.hero-vignette { background: linear-gradient(90deg, rgba(3,15,30,.93), rgba(3,15,30,.48) 58%, rgba(3,15,30,.32)); }
.signal-strip, .freight-visuals { display: block; }
@media (max-width: 780px) { .header-logo { width: 112px; height: 58px; } .hero-content { display:block; text-align:center; } .hero-copy .eyebrow, .hero-actions { justify-content:center; } .hero-visual { margin-top:28px; } .hero-freight-image { min-height:300px; } .hero-quote-form { position:relative; right:auto; bottom:auto; left:auto; grid-template-columns:1fr; margin-top:-55px; } .hero-quote-form strong { grid-column:auto; } }

/* Final homepage direction: centered, lighter, and logo-led in the header. */
body {
  background: #edf3f8;
}

.brand-copy {
  display: none;
}

.brand-logo-real {
  width: 122px;
  height: 58px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-size: contain;
  box-shadow: none;
}

.hero-content {
  display: block;
  padding-top: 92px;
  text-align: center;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.hero-copy .eyebrow,
.hero-actions {
  justify-content: center;
}

.hero-copy h1 {
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.hero-lede {
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-visual {
  display: none;
}

.hero-vignette {
  background:
    linear-gradient(180deg, rgba(5, 19, 38, 0.52), rgba(5, 19, 38, 0.86)),
    linear-gradient(90deg, rgba(5, 19, 38, 0.56), rgba(5, 19, 38, 0.25), rgba(5, 19, 38, 0.56));
}

.signal-strip,
.freight-visuals {
  display: none;
}

.section-heading h2,
.operations-copy h2,
.booking-intro h2,
.testimonial-label h2,
.cta-inner h2 {
  color: #102a4c;
}

@media (max-width: 780px) {
  .brand-logo-real {
    width: 102px;
    height: 52px;
  }

  .hero-content {
    padding-top: 104px;
  }
}

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

  .brand-copy strong {
    font-size: 1.06rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 38px;
    height: 42px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: 62px;
  }

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

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

  .hero-proof {
    align-items: flex-start;
  }

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

  .service-card-feature {
    grid-column: span 1 !important;
  }

  .image-frame,
  .image-frame img {
    min-height: 390px;
  }

  .operations-badge {
    right: 14px;
    bottom: 25px;
  }

  .map-canvas {
    min-height: 340px;
  }

  .map-pin {
    font-size: 0.55rem;
  }

  .map-pin-chicago {
    left: 56%;
  }

  .map-tooltip {
    right: 10px;
    bottom: 10px;
    font-size: 0.58rem;
  }

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

  .form-topline,
  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .testimonial-person {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .testimonial-route {
    width: 100%;
    margin-left: 50px;
  }

  .footer-main {
    gap: 30px 20px;
  }
}

@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;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Warm amber theme update */
body {
  background:
    radial-gradient(circle at 78% 8%, rgba(219, 119, 86, 0.11), transparent 28rem),
    radial-gradient(circle at 14% 42%, rgba(246, 244, 238, 0.04), transparent 24rem),
    var(--ink);
}

.site-header.is-scrolled {
  background: rgba(27, 27, 25, 0.94);
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(15, 16, 14, 0.97) 0%, rgba(23, 23, 21, 0.84) 33%, rgba(23, 23, 21, 0.3) 72%, rgba(15, 16, 14, 0.78) 100%),
    linear-gradient(0deg, rgba(15, 16, 14, 0.88) 0%, transparent 44%, rgba(15, 16, 14, 0.52) 100%);
}

.hero-road-lines {
  opacity: 0.3;
}

.signal-strip {
  background: rgba(42, 42, 39, 0.76);
}

.services-section {
  background:
    linear-gradient(180deg, rgba(27, 27, 25, 0.52), rgba(27, 27, 25, 0.97)),
    repeating-linear-gradient(90deg, transparent 0 128px, rgba(246, 244, 238, 0.027) 128px 129px);
}

.operations-section {
  background: #242522;
}

.coverage-section {
  background:
    radial-gradient(circle at 20% 40%, rgba(246, 244, 238, 0.05), transparent 26rem),
    #1b1b19;
}

.booking-section {
  background:
    linear-gradient(90deg, rgba(15, 16, 14, 0.88), rgba(27, 27, 25, 0.77)),
    url("https://images.unsplash.com/photo-1633521248898-19cbbf9ead88?auto=format&fit=crop&w=2200&q=78") center / cover;
}

.trust-section {
  background: #161715;
}

.testimonial-section {
  background:
    radial-gradient(circle at 82% 50%, rgba(219, 119, 86, 0.1), transparent 24rem),
    #242522;
}

.button {
  border-radius: 999px;
}

.button-copper {
  color: #211612;
  background: linear-gradient(100deg, #f0a07c, #db7756);
}

.button-copper:hover,
.button-copper:focus-visible {
  background: linear-gradient(100deg, #ffc0a1, #ec8765);
}

.button-ghost {
  border-color: rgba(246, 244, 238, 0.42);
  background: rgba(27, 27, 25, 0.42);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--copper-light);
  background: rgba(240, 160, 124, 0.11);
}

.route-card,
.service-card,
.image-frame,
.coverage-map-card,
.quote-form,
.testimonial-card {
  border-radius: 16px;
}

.service-card {
  background: rgba(42, 42, 39, 0.84);
}

.service-card-feature {
  background:
    linear-gradient(145deg, rgba(219, 119, 86, 0.17), transparent 54%),
    rgba(42, 42, 39, 0.9);
}

.service-icon,
.contact-icon,
.standard-check,
.carousel-button,
.social-links a {
  border-radius: 10px;
}

.field input,
.field select,
.field textarea {
  border-radius: 11px;
  background: rgba(15, 16, 14, 0.56);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper-light);
  background-color: rgba(53, 53, 48, 0.72);
  box-shadow: 0 0 0 3px rgba(240, 160, 124, 0.1);
}

.form-success {
  border-radius: 12px;
  background: rgba(246, 244, 238, 0.07);
}

.success-check {
  color: #211612;
  background: var(--copper-light);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  min-height: 530px;
}

.hero-stitch-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 238, 0.34);
  border-radius: 18px;
  background: #2a2a27;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0, 1), box-shadow 500ms ease;
}

.hero-visual:hover .hero-stitch-frame {
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(240, 160, 124, 0.12);
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) translateY(-5px);
}

.hero-stitch-frame::before {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-top: 1px solid var(--copper-light);
  border-right: 1px solid var(--copper-light);
  content: "";
  pointer-events: none;
}

.hero-stitch-top,
.hero-stitch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  color: #f4f2ed;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stitch-top {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(246, 244, 238, 0.1);
  background: #2a2a27;
}

.hero-stitch-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--copper-light);
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.hero-stitch-live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 0 4px rgba(240, 160, 124, 0.12);
}

.hero-stitch-window {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #181815;
}

.hero-stitch-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.06) brightness(0.78);
  transform: scale(1.08);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.hero-visual:hover .hero-stitch-window img {
  transform: scale(1.13);
}

.hero-stitch-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 16, 14, 0.2), rgba(15, 16, 14, 0.12) 35%, rgba(15, 16, 14, 0.9)),
    linear-gradient(90deg, rgba(15, 16, 14, 0.44), transparent 64%);
}

.hero-stitch-note {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 18px;
  border: 1px solid rgba(246, 244, 238, 0.23);
  border-radius: 12px;
  background: rgba(27, 27, 25, 0.76);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(9px);
}

.hero-stitch-note small,
.hero-stitch-note strong {
  display: block;
}

.hero-stitch-note small {
  margin-bottom: 6px;
  color: var(--copper-light);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stitch-note strong {
  color: #faf8f2;
  font-family: var(--display);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-stitch-footer {
  color: var(--muted);
  border-top: 1px solid rgba(246, 244, 238, 0.1);
  background: #2a2a27;
}

.hero-stitch-footer span:last-child {
  color: var(--copper-light);
}

.hero-visual .route-card {
  position: absolute;
  z-index: 6;
  right: -40px;
  bottom: -49px;
  width: min(100%, 350px);
  justify-self: auto;
  border-color: rgba(246, 244, 238, 0.28);
  background:
    linear-gradient(145deg, rgba(53, 53, 48, 0.96), rgba(27, 27, 25, 0.97)),
    radial-gradient(circle at top right, rgba(219, 119, 86, 0.2), transparent 48%);
}

.hero-visual .route-card::before {
  background: linear-gradient(90deg, transparent, var(--copper-light), transparent);
}

.route-node-end,
.route-track-fill,
.route-truck {
  color: var(--copper-light);
}

.route-node-end,
.map-pin i {
  background: var(--copper-light);
}

.map-pin.is-active i {
  background: #faf8f2;
  box-shadow: 0 0 0 5px rgba(246, 244, 238, 0.18);
}

.map-tooltip {
  border-radius: 10px;
  background: rgba(15, 16, 14, 0.86);
}

.operations-badge {
  border-radius: 13px;
  background: var(--copper);
}

.cta-section {
  background: #393a35;
}

.cta-glow {
  background: rgba(219, 119, 86, 0.19);
}

.footer-brand .brand-copy strong,
.footer-col a:hover,
.footer-col a:focus-visible {
  color: #f4f2ed;
}

@media (max-width: 1040px) {
  .hero-visual {
    width: min(100%, 430px);
  }

  .hero-visual .route-card {
    right: -17px;
  }
}

@media (max-width: 780px) {
  .hero-visual {
    display: none;
  }
}

/* Glassmorphism reference pass */
body {
  color: #f7f5ef;
  font-family: var(--body);
}

.preview-watermark {
  position: fixed;
  z-index: 180;
  top: 39%;
  right: -10vw;
  left: -10vw;
  display: flex;
  justify-content: space-around;
  gap: 13vw;
  pointer-events: none;
  opacity: 0.055;
  color: #f7f5ef;
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  transform: rotate(-22deg);
  user-select: none;
}

.preview-watermark span:nth-child(2),
.preview-watermark span:nth-child(4) {
  color: var(--copper-light);
}

.brand-logo-real {
  display: block;
  width: 47px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 238, 0.24);
  border-radius: 12px;
  background-color: #161715;
  background-image: url("./assets/essential-express-logo.png");
  background-position: center 17%;
  background-repeat: no-repeat;
  background-size: 155% auto;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-copy strong {
  font-family: var(--display);
  letter-spacing: -0.04em;
}

.brand-copy small {
  font-family: var(--body);
  letter-spacing: 0.2em;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.065em;
  text-transform: none;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 7.7vw, 7.6rem);
  font-weight: 700;
  line-height: 0.93;
}

h1 em,
h2 em {
  color: #f2efe7;
  background: linear-gradient(110deg, #f4f1ea 12%, #db7756 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow,
.section-heading h2,
.operations-copy h2,
.booking-intro h2,
.testimonial-label h2,
.cta-inner h2 {
  text-transform: none;
}

.hero {
  background: #090a09;
}

.hero-image {
  background-image: url("./assets/hero-cargo-van.png");
  filter: saturate(0.52) contrast(1.12) brightness(0.66);
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.99) 0%, rgba(9, 10, 9, 0.9) 36%, rgba(9, 10, 9, 0.4) 74%, rgba(9, 10, 9, 0.88) 100%),
    linear-gradient(0deg, rgba(9, 10, 9, 0.94), transparent 53%, rgba(9, 10, 9, 0.54));
}

.hero-visual {
  min-height: 565px;
}

.hero-stitch-frame {
  border-color: rgba(246, 244, 238, 0.2);
  border-radius: 24px;
  background: rgba(42, 42, 39, 0.33);
  backdrop-filter: blur(18px);
}

.hero-stitch-top,
.hero-stitch-footer {
  background: rgba(42, 42, 39, 0.57);
  font-family: var(--body);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.hero-brand-window {
  position: relative;
  height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(219, 119, 86, 0.2), transparent 20rem),
    #121310;
}

.hero-logo-real {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(58%, 290px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(246, 244, 238, 0.2);
  border-radius: 20px;
  background-color: #151613;
  background-image: url("./assets/essential-express-logo.png");
  background-position: center 22%;
  background-repeat: no-repeat;
  background-size: 178% auto;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 80px rgba(219, 119, 86, 0.1);
  transform: translate(-50%, -50%) rotate(-3deg);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0, 1);
}

.hero-visual:hover .hero-logo-real {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.03);
}

.hero-brand-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 244, 238, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  border-color: rgba(219, 119, 86, 0.52);
  transform: translate(-50%, -50%) rotate(16deg) scaleY(0.42);
}

.orbit-two {
  border-color: rgba(143, 156, 255, 0.45);
  transform: translate(-50%, -50%) rotate(-22deg) scaleX(0.42);
}

.hero-brand-caption {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 19px;
  left: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 244, 238, 0.16);
  border-radius: 14px;
  background: rgba(15, 16, 14, 0.69);
  backdrop-filter: blur(10px);
}

.hero-brand-caption small,
.hero-brand-caption strong {
  display: block;
}

.hero-brand-caption small {
  margin-bottom: 5px;
  color: var(--copper-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-brand-caption strong {
  color: #f7f5ef;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-visual .route-card {
  bottom: -62px;
  border-radius: 18px;
  background: rgba(32, 33, 30, 0.9);
  backdrop-filter: blur(16px);
}

.section-heading h2,
.operations-copy h2,
.booking-intro h2,
.testimonial-label h2,
.cta-inner h2 {
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.25rem);
  line-height: 0.94;
}

.service-card h3 {
  letter-spacing: -0.05em;
  text-transform: none;
}

.service-card:nth-child(2) .service-icon {
  color: var(--blue);
  border-color: rgba(143, 156, 255, 0.37);
}

.service-card:nth-child(3) .service-icon {
  color: var(--copper-light);
  border-color: rgba(240, 160, 124, 0.37);
}

.service-card:nth-child(4) .service-icon {
  color: var(--green);
  border-color: rgba(123, 211, 160, 0.37);
}

.service-card:nth-child(5) .service-icon {
  color: var(--violet);
  border-color: rgba(186, 156, 255, 0.37);
}

.signal-strip {
  position: relative;
  overflow: hidden;
}

.signal-strip::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--copper), var(--blue) 34%, var(--green) 68%, var(--violet));
}

.signal-item:nth-child(2) .signal-icon {
  color: var(--blue);
}

.signal-item:nth-child(3) .signal-icon {
  color: var(--green);
}

.stats-grid .stat-item:nth-child(1) strong {
  color: var(--copper-light);
}

.stats-grid .stat-item:nth-child(2) strong {
  color: var(--blue);
}

.stats-grid .stat-item:nth-child(3) strong {
  color: var(--green);
}

.stats-grid .stat-item:nth-child(4) strong {
  color: var(--violet);
}

.booking-section {
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.94), rgba(9, 10, 9, 0.82)),
    url("https://images.unsplash.com/photo-1633521248898-19cbbf9ead88?auto=format&fit=crop&w=2200&q=78") center / cover;
}

.quote-form {
  border-color: rgba(246, 244, 238, 0.23);
  border-radius: 20px;
  background: rgba(21, 22, 20, 0.81);
  backdrop-filter: blur(18px);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(246, 244, 238, 0.15);
  border-radius: 12px;
  background: rgba(15, 16, 14, 0.78);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper-light);
  background-color: rgba(38, 39, 35, 0.9);
}

.form-submit-row .button {
  color: #151613;
  background: #f6f4ee;
  box-shadow: 0 12px 28px rgba(246, 244, 238, 0.13);
}

.form-submit-row .button:hover,
.form-submit-row .button:focus-visible {
  background: var(--copper-light);
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(57, 58, 53, 0.97), rgba(49, 51, 47, 0.88)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(246, 244, 238, 0.03) 14px 15px);
}

.site-footer {
  background: #10110f;
}

@media (max-width: 780px) {
  .preview-watermark {
    top: 46%;
    font-size: 3.5rem;
  }

  .brand-logo-real {
    width: 40px;
    height: 42px;
  }
}

/* Traditional freight hero pass: clear offer, full logo, fewer interface labels. */
.hero-content {
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  gap: clamp(38px, 6vw, 86px);
}

.hero-copy h1 {
  max-width: 630px;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 530px;
  color: rgba(247, 245, 239, 0.8);
}

.hero-brand-panel {
  width: min(100%, 500px);
  margin-left: auto;
  border-color: rgba(247, 245, 239, 0.25);
  background: rgba(8, 10, 13, 0.78);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.hero-brand-window {
  display: grid;
  min-height: 482px;
  overflow: hidden;
  place-items: center;
  background: #020305;
}

.hero-logo-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 470px);
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.36));
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 300ms ease;
}

.hero-brand-panel:hover .hero-logo-image {
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.46));
  transform: scale(1.025);
}

.hero-stitch-top,
.hero-stitch-footer {
  color: rgba(247, 245, 239, 0.68);
}

.hero-stitch-live {
  color: #fff;
}

.hero-stitch-footer span:first-child {
  color: var(--copper-light);
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.93) 0%, rgba(4, 11, 18, 0.8) 34%, rgba(4, 11, 18, 0.27) 71%, rgba(4, 11, 18, 0.7) 100%),
    linear-gradient(0deg, rgba(2, 6, 11, 0.88) 0%, transparent 45%, rgba(2, 6, 11, 0.44) 100%);
}

.services-section,
.trust-section {
  background-color: #f7f5ef;
}

.services-section .section-heading h2,
.trust-section .section-heading h2 {
  color: #101b31;
}

.services-section .split-heading > p,
.trust-section .stat-item span {
  color: #526071;
}

.services-section .service-card {
  border-color: rgba(16, 27, 49, 0.16);
  background: #fff;
  box-shadow: 0 16px 32px rgba(16, 27, 49, 0.07);
}

.services-section .service-card h3 {
  color: #101b31;
}

.services-section .service-card p,
.services-section .service-index {
  color: #5b6876;
}

.services-section .freight-visual-intro {
  border-color: rgba(16, 27, 49, 0.15);
  background:
    linear-gradient(150deg, rgba(42, 80, 180, 0.16), transparent 54%),
    #eef2f6;
}

.services-section .freight-visual-intro h3 {
  color: #101b31;
}

.services-section .freight-visual-intro > p:last-child {
  color: #5b6876;
}

.trust-section .stats-grid {
  border-top-color: rgba(16, 27, 49, 0.16);
  border-bottom-color: rgba(16, 27, 49, 0.16);
}

.trust-section .stat-item + .stat-item {
  border-left-color: rgba(16, 27, 49, 0.12);
}

@media (max-width: 780px) {
  .hero-content {
    display: flex;
    padding-top: 104px;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .hero-visual {
    display: block;
    width: 100%;
  }

  .hero-brand-panel {
    width: 100%;
    margin: 0;
  }

  .hero-brand-window {
    min-height: 330px;
  }

  .hero-logo-image {
    width: min(100%, 340px);
  }

  .hero-stitch-top,
  .hero-stitch-footer {
    font-size: 0.62rem;
  }

  .hero-stitch-top span:first-child {
    max-width: 190px;
  }
}

/* Freight visual break — keeps the page image-led without adding noise. */
.freight-visuals {
  display: grid;
  margin-top: 78px;
  grid-template-columns: minmax(210px, 0.72fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.freight-visual-intro {
  display: flex;
  min-height: 272px;
  padding: 24px 19px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(246, 244, 238, 0.16);
  background:
    linear-gradient(150deg, rgba(143, 156, 255, 0.18), transparent 54%),
    rgba(21, 22, 20, 0.84);
}

.freight-visual-intro .eyebrow {
  margin-bottom: auto;
  color: var(--blue);
}

.freight-visual-intro h3 {
  max-width: 185px;
  margin: 0 0 10px;
  color: #f7f5ef;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.freight-visual-intro h3 em {
  color: var(--copper-light);
  font-style: normal;
}

.freight-visual-intro > p:last-child {
  max-width: 190px;
  margin: 0;
  color: rgba(246, 244, 238, 0.62);
  font-size: 0.79rem;
  line-height: 1.45;
}

.freight-photo {
  position: relative;
  min-height: 272px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 238, 0.18);
  background: #191a18;
}

.freight-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 37%, rgba(8, 9, 8, 0.85) 100%);
  pointer-events: none;
}

.freight-photo img {
  width: 100%;
  height: 100%;
  min-height: 272px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 300ms ease;
}

.freight-photo:hover img,
.freight-photo:focus-within img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.07);
}

.freight-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7f5ef;
  font-family: var(--display);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.freight-photo figcaption span {
  color: var(--copper-light);
  font-size: 0.68rem;
}

.freight-photo-dock figcaption span {
  color: var(--green);
}

.freight-photo-highway figcaption span {
  color: var(--violet);
}

@media (max-width: 1040px) {
  .freight-visuals {
    grid-template-columns: repeat(3, 1fr);
  }

  .freight-visual-intro {
    grid-column: span 3;
    min-height: 185px;
  }

  .freight-visual-intro h3,
  .freight-visual-intro > p:last-child {
    max-width: 430px;
  }
}

@media (max-width: 780px) {
  .freight-visuals {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .freight-visual-intro {
    grid-column: auto;
    min-height: 185px;
  }

  .freight-photo,
  .freight-photo img {
    min-height: 245px;
  }
}

/* Final requested positioning and contrast overrides */
.header-logo { width: 156px !important; height: 72px !important; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }
.hero-content { display: grid !important; grid-template-columns: minmax(0, .9fr) minmax(340px, .8fr) !important; text-align: left !important; }
.hero-copy { margin: 0 !important; }
.hero-copy .eyebrow, .hero-actions { justify-content: flex-start !important; }
.hero-visual { display: block !important; }
.numbers-artwork { display: none !important; }
.section-heading, .centered-heading { text-align: left !important; }
.section-heading h2, .operations-copy h2, .booking-intro h2, .testimonial-label h2, .cta-inner h2, .service-card h3 { color: #fff !important; text-align: left !important; }
.section-heading h2 em, .operations-copy h2 em, .booking-intro h2 em, .testimonial-label h2 em, .cta-inner h2 em { color: #ff6a3d !important; background: linear-gradient(90deg,#ffbf79,#ff6a3d 52%,#e92b1e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.services-section, .trust-section { background: #0b1b2d !important; }
@media (max-width: 780px) { .header-logo { width: 118px !important; height: 58px !important; } .hero-content { display: block !important; text-align: left !important; } .hero-copy .eyebrow, .hero-actions { justify-content: flex-start !important; } }

/* =========================================================
   2026 COMPLETE WEBSITE REFINEMENT
   Requested: no white logo box, cleaner hero, no hero image card,
   properly aligned heading/buttons, supplied numbers artwork.
   ========================================================= */

/* Header logo: supplied artwork only, no forced white plate */
.site-header .brand,
.site-footer .brand {
  gap: 0 !important;
}

.header-logo {
  width: clamp(168px, 16vw, 226px) !important;
  height: 74px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .25));
}

.site-footer .header-logo {
  width: 205px !important;
  height: 82px !important;
}

.nav-shell {
  grid-template-columns: minmax(190px, auto) 1fr auto !important;
  min-height: 88px !important;
}

.site-header {
  background: rgba(6, 17, 27, .72) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(6, 17, 27, .94) !important;
}

/* HERO — image is part of the hero, never a separate boxed card */
.hero {
  min-height: 760px !important;
  display: flex !important;
  align-items: center !important;
  background: #06111b !important;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1633521248898-19cbbf9ead88?auto=format&fit=crop&w=2400&q=90") !important;
  background-position: 62% center !important;
  background-size: cover !important;
  filter: saturate(.86) contrast(1.08) brightness(.93) !important;
  transform: scale(1.015) !important;
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(3, 11, 18, .99) 0%, rgba(4, 14, 23, .96) 31%, rgba(4, 14, 23, .66) 48%, rgba(4, 14, 23, .18) 74%, rgba(4, 14, 23, .38) 100%),
    linear-gradient(0deg, rgba(3, 10, 17, .9) 0%, transparent 43%, rgba(3, 10, 17, .32) 100%) !important;
}

.hero-road-lines {
  opacity: .24 !important;
}

.hero-content-clean {
  display: grid !important;
  grid-template-columns: minmax(0, 720px) 1fr !important;
  align-items: center !important;
  gap: clamp(32px, 6vw, 100px) !important;
  padding-top: 104px !important;
  padding-bottom: 70px !important;
  text-align: left !important;
}

.hero-copy {
  max-width: 720px !important;
  margin: 0 !important;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  justify-content: flex-start !important;
  margin-bottom: 20px !important;
  color: #ffb06d !important;
}

.hero-title {
  max-width: 720px !important;
  margin: 0 0 24px !important;
  font-size: clamp(4rem, 6.4vw, 6.85rem) !important;
  line-height: .88 !important;
  letter-spacing: -.048em !important;
  text-align: left !important;
  text-wrap: initial !important;
}

.hero-title span,
.hero-title em {
  display: block;
}

.hero-title span {
  color: #f7f8f8 !important;
}

.hero-title em {
  margin-top: 5px;
  color: #ff6a3d !important;
  background: linear-gradient(90deg, #ffba73 0%, #ff743d 50%, #e93222 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-lede {
  max-width: 610px !important;
  margin: 0 0 30px !important;
  color: #d3dde0 !important;
  font-size: clamp(1rem, 1.45vw, 1.16rem) !important;
  line-height: 1.72 !important;
}

.hero-actions {
  justify-content: flex-start !important;
  gap: 13px !important;
  margin-bottom: 31px;
}

.button-hero {
  min-height: 56px !important;
  padding-inline: 24px !important;
  border-radius: 3px !important;
}

.hero-phone {
  font-size: .94rem;
  color: #ff9a68;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 670px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-trust > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding-right: 18px;
}

.hero-trust > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.hero-trust-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 126, 72, .72);
  border-radius: 50%;
  color: #ff9d68;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 800;
}

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  color: #fff;
  font-size: .77rem;
  letter-spacing: .02em;
}

.hero-trust small {
  margin-top: 3px;
  color: #aebdc1;
  font-size: .67rem;
  line-height: 1.35;
}

.hero-route-note {
  align-self: end;
  justify-self: end;
  width: min(100%, 260px);
  margin-bottom: 64px;
  padding: 18px 0 18px 20px;
  border-left: 1px solid rgba(255, 137, 79, .8);
  text-align: left;
}

.hero-route-note span,
.hero-route-note strong,
.hero-route-note small {
  display: block;
}

.hero-route-kicker {
  margin-bottom: 10px;
  color: #ff9b68;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.hero-route-note strong {
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-route-note small {
  color: #c6d0d2;
  font-size: .72rem;
  line-height: 1.5;
}

/* Retire the previous boxed hero image + quote strip if old cached markup exists */
.hero-visual,
.hero-freight-image,
.hero-quote-form {
  display: none !important;
}

/* Keep section headings consistently left aligned in the dark theme */
.section-heading,
.centered-heading,
.operations-copy,
.booking-intro,
.testimonial-label {
  text-align: left !important;
}

.section-heading h2,
.operations-copy h2,
.booking-intro h2,
.testimonial-label h2,
.cta-inner h2 {
  color: #f4f6f5 !important;
  text-align: left !important;
}

/* NUMBERS ARTWORK — supplied user visual, with corrected normal headline alignment */
.numbers-showcase {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fbf8f2;
}

.numbers-showcase-shell {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background: #fbf8f2;
}

.numbers-showcase-shell > img {
  display: block;
  width: 100%;
  height: auto;
}

.numbers-title-mask {
  position: absolute;
  z-index: 3;
  top: 5.6%;
  left: 50%;
  width: min(48%, 760px);
  min-height: 45%;
  padding: 28px 44px 22px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(251,248,242,.94), #fbf8f2 10%, #fbf8f2 90%, rgba(251,248,242,.94));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.numbers-eyebrow {
  margin: 0 0 15px;
  color: #e55a38;
  font-family: var(--display);
  font-size: clamp(.63rem, .9vw, .78rem);
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.numbers-title-mask h2 {
  max-width: 690px;
  margin: 0;
  color: #061c3d !important;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .93;
  text-align: center !important;
  text-transform: none;
}

.numbers-title-mask h2 em {
  display: block;
  margin-top: 4px;
  color: #f05d37 !important;
  background: linear-gradient(90deg, #f5b08d, #f26442 52%, #e84328);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

/* Footer keeps logo readable without a white background */
.footer-brand .brand {
  display: inline-flex;
}

/* Responsive refinements */
@media (max-width: 1080px) {
  .header-actions .phone-link { display: none; }
  .hero-content-clean { grid-template-columns: minmax(0, 680px) 1fr !important; }
  .hero-route-note { display: none; }
  .numbers-title-mask { width: 52%; padding-inline: 24px; }
}

@media (max-width: 860px) {
  .header-logo { width: 165px !important; height: 64px !important; }
  .nav-shell { grid-template-columns: 1fr auto !important; min-height: 74px !important; }
  .site-nav { top: 74px !important; }
  .hero { min-height: 720px !important; }
  .hero-image { background-position: 68% center !important; }
  .hero-vignette {
    background: linear-gradient(90deg, rgba(3,11,18,.98) 0%, rgba(3,11,18,.92) 52%, rgba(3,11,18,.48) 100%), linear-gradient(0deg, rgba(3,10,17,.9), transparent 58%) !important;
  }
  .hero-content-clean { display: block !important; padding-top: 112px !important; padding-bottom: 72px !important; }
  .hero-copy { max-width: 650px !important; }
  .hero-title { font-size: clamp(3.45rem, 11vw, 5.4rem) !important; }
  .hero-trust { grid-template-columns: 1fr; max-width: 430px; }
  .hero-trust > div { padding: 10px 0 !important; border-left: 0 !important; }
  .hero-trust > div + div { border-top: 1px solid rgba(255,255,255,.1); }
  .numbers-showcase-shell > img { min-height: 560px; object-fit: cover; object-position: center; }
  .numbers-title-mask { top: 4%; width: 62%; min-height: 42%; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--max)) !important; }
  .header-actions { display: none !important; }
  .hero { min-height: 760px !important; }
  .hero-image { background-position: 72% center !important; }
  .hero-vignette {
    background: linear-gradient(90deg, rgba(3,11,18,.98) 0%, rgba(3,11,18,.94) 60%, rgba(3,11,18,.6) 100%), linear-gradient(0deg, rgba(3,10,17,.9), transparent 50%) !important;
  }
  .hero-title { font-size: clamp(3.15rem, 16vw, 4.55rem) !important; line-height: .9 !important; }
  .hero-lede { font-size: .98rem !important; }
  .hero-actions { display: grid !important; grid-template-columns: 1fr; }
  .button-hero { width: 100%; }
  .scroll-cue { display: none !important; }
  .numbers-showcase-shell { min-height: 640px; }
  .numbers-showcase-shell > img { width: auto; max-width: none; height: 640px; transform: translateX(-34%); }
  .numbers-title-mask {
    top: 5%;
    left: 50%;
    width: calc(100% - 32px);
    min-height: 230px;
    padding: 24px 18px 18px;
    border-radius: 2px;
  }
  .numbers-title-mask h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
}
