:root {
  --black: #030405;
  --ink: #090b0e;
  --panel: #101317;
  --panel-strong: #151a21;
  --gold: #ffc400;
  --gold-deep: #bd8500;
  --white: #f8f8f3;
  --muted: #c8c8c0;
  --blue: #00a6ff;
  --green: #30d158;
  --purple: #b82cff;
  --orange: #ff8a1f;
  --line: rgba(255, 196, 0, 0.42);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.svg-sprite {
  display: none;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

#coverage,
#routes,
#weekend,
#gallery,
#contact {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 44px);
  background: rgba(3, 4, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 118px;
  height: 50px;
  object-fit: cover;
  object-position: left top;
}

.brand span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-call {
  color: var(--gold);
  white-space: nowrap;
}

.header-call:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.2) 78%),
    linear-gradient(0deg, rgba(3, 4, 5, 0.72), rgba(3, 4, 5, 0.04) 42%),
    url("assets/hero-truck-clean.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  margin-left: clamp(16px, 6vw, 84px);
  padding: clamp(52px, 8vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
.hero-statement,
.section-intro h2,
.section-heading-row h2,
.feature-copy h2,
.weekend-copy h2,
.contact-section h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
}

h1 {
  max-width: 720px;
  font-size: clamp(4.1rem, 9vw, 8rem);
}

.hero-statement {
  margin: 8px 0 16px;
  color: var(--gold);
  font-size: clamp(2.35rem, 5.2vw, 4.6rem);
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button-primary {
  color: var(--black);
  background: linear-gradient(180deg, #ffe78a, var(--gold) 54%, #d49200);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 34px rgba(255, 196, 0, 0.18);
}

.button-secondary {
  color: var(--white);
  background: rgba(0, 166, 255, 0.14);
  border-color: rgba(0, 166, 255, 0.64);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-metrics div {
  padding: clamp(16px, 3vw, 26px);
  background: rgba(3, 4, 5, 0.9);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.55rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.proof-band,
.route-section,
.daypart-section,
.industry-section {
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.06), rgba(0, 166, 255, 0.04)),
    var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.proof-item {
  min-height: 210px;
  padding: 34px 26px;
  background: var(--black);
}

.proof-item .icon,
.weekend-schedule .icon,
.benefit-grid .icon,
.daypart .icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
}

.proof-item h2,
.benefit-grid h3,
.daypart h3,
.industry-grid h3 {
  margin-top: 18px;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.proof-item p,
.benefit-grid p,
.industry-grid p,
.daypart li,
.daypart p {
  color: var(--muted);
}

.split-section,
.feature-section,
.daypart-section,
.corridor-section,
.gallery-section,
.contact-section,
.industry-section {
  padding: clamp(66px, 8vw, 112px) 0;
}

.section-intro {
  max-width: 760px;
}

.section-intro.narrow {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro h2,
.section-heading-row h2,
.feature-copy h2,
.weekend-copy h2,
.contact-section h2 {
  font-size: clamp(2.5rem, 5.8vw, 5.6rem);
}

.section-intro p:not(.eyebrow),
.feature-copy > p,
.weekend-copy > p,
.contact-section p {
  color: var(--muted);
  font-size: 1.1rem;
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-top: 34px;
}

.coverage-copy {
  padding: clamp(24px, 4vw, 40px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-copy h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  text-transform: uppercase;
}

.coverage-copy p {
  color: var(--muted);
}

.coverage-panel img,
.feature-media img,
.corridor-item img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.route-controls {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.route-filter {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.route-filter.active,
.route-filter:hover,
.route-filter:focus-visible {
  color: var(--black);
  background: var(--gold);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card {
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, opacity 180ms ease;
}

.route-card.hidden {
  display: none;
}

.route-card:hover {
  transform: translateY(-4px);
}

.route-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.8rem;
}

.route-card h3 {
  min-height: 76px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.route-card p {
  color: var(--muted);
}

.route-card strong {
  margin-top: auto;
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1;
}

.route-card span:last-child {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.route-purple { border-color: rgba(184, 44, 255, 0.72); }
.route-green { border-color: rgba(48, 209, 88, 0.72); }
.route-blue { border-color: rgba(0, 166, 255, 0.72); }
.route-orange { border-color: rgba(255, 138, 31, 0.72); }
.route-gold { border-color: rgba(255, 196, 0, 0.72); }
.route-sky { border-color: rgba(75, 210, 255, 0.72); }

.feature-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.96), rgba(3, 4, 5, 0.78)),
    url("assets/prime-route-front.jpg") center / cover fixed;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.feature-copy {
  padding: 10px 0;
}

.impact-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.impact-stack div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 2px;
  padding: 18px;
  background: rgba(16, 19, 23, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.impact-stack .icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.impact-stack strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.impact-stack span {
  color: var(--muted);
}

.daypart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.daypart {
  min-height: 360px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.daypart p {
  margin: 8px 0 18px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.daypart ul {
  margin: 0;
  padding-left: 20px;
}

.daypart li + li {
  margin-top: 10px;
}

.corridor-section {
  background: var(--black);
}

.corridor-grid {
  display: grid;
  gap: 26px;
}

.corridor-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.corridor-item:nth-child(even) {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.corridor-item:nth-child(even) img {
  order: 2;
}

.corridor-item h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.corridor-item p {
  color: var(--muted);
  font-size: 1.05rem;
}

dl {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  background: var(--line);
}

dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  background: var(--panel);
}

dt {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.weekend-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 126px) 0;
  border-block: 1px solid var(--line);
}

.weekend-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.93), rgba(3, 4, 5, 0.62) 44%, rgba(3, 4, 5, 0.16)),
    linear-gradient(0deg, rgba(3, 4, 5, 0.7), rgba(3, 4, 5, 0.08)),
    url("assets/weekend-front.jpg") center / cover no-repeat;
}

.weekend-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.weekend-copy p {
  max-width: 610px;
}

.weekend-schedule {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  max-width: 560px;
  margin-top: 28px;
  padding: 20px;
  background: rgba(3, 4, 5, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.weekend-schedule .icon {
  grid-row: span 2;
}

.weekend-schedule strong {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}

.weekend-schedule span {
  color: var(--white);
  font-weight: 800;
}

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

.benefit-grid article {
  min-height: 210px;
  padding: 22px;
  background: rgba(9, 11, 14, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

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

.industry-grid article {
  min-height: 170px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.industry-grid article:nth-child(1) { border-color: rgba(184, 44, 255, 0.72); }
.industry-grid article:nth-child(2) { border-color: rgba(255, 196, 0, 0.72); }
.industry-grid article:nth-child(3) { border-color: rgba(48, 209, 88, 0.72); }
.industry-grid article:nth-child(4) { border-color: rgba(0, 166, 255, 0.72); }
.industry-grid article:nth-child(5) { border-color: rgba(75, 210, 255, 0.72); }
.industry-grid article:nth-child(6) { border-color: rgba(255, 138, 31, 0.72); }

.gallery-section {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.05);
  opacity: 0.94;
}

.gallery-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(180deg, rgba(3, 4, 5, 0), rgba(3, 4, 5, 0.94));
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.8rem;
  text-align: left;
  text-transform: uppercase;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.92), rgba(3, 4, 5, 0.8)),
    url("assets/weekend-back.jpg") center / cover no-repeat;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(3, 4, 5, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-layout p {
  max-width: 760px;
}

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

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(9, 11, 14, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: 0;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.16);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(248, 248, 243, 0.48);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.booking-page {
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.72), var(--black) 46%),
    url("assets/hero-truck-clean.jpg") center top / cover fixed no-repeat;
}

.national-page {
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.46), var(--black) 34%),
    url("assets/hero-truck-clean.jpg") center top / cover fixed no-repeat;
}

.booking-hero {
  padding: clamp(68px, 8vw, 112px) 0 clamp(34px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.booking-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.booking-copy h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.booking-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.booking-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.booking-impact {
  display: grid;
  gap: 14px;
}

.booking-impact article {
  padding: 24px;
  background: rgba(9, 11, 14, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-impact .icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.booking-impact h2 {
  margin-top: 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.booking-impact p {
  color: var(--muted);
}

.booking-panel {
  padding: clamp(62px, 8vw, 106px) 0;
}

.booking-form {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 36px auto 0;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(9, 11, 14, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.national-hero {
  min-height: 76svh;
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 124px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 166, 255, 0.16), transparent 36%),
    linear-gradient(90deg, rgba(3, 4, 5, 0.94), rgba(3, 4, 5, 0.64) 52%, rgba(3, 4, 5, 0.22));
}

.national-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.national-hero-copy h1,
.operator-layout h2,
.launch-section h2,
.national-cta h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
}

.national-hero-copy h1 {
  max-width: 920px;
  font-size: clamp(3.7rem, 8.5vw, 8.8rem);
}

.national-hero-copy p:not(.eyebrow) {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.national-signal {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.09), rgba(0, 166, 255, 0.11)),
    rgba(9, 11, 14, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.national-signal strong {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.national-signal span {
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
}

.national-proof {
  background: var(--black);
}

.national-section,
.operator-section,
.launch-section,
.national-cta {
  padding: clamp(66px, 8vw, 112px) 0;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.market-card {
  min-height: 260px;
  padding: 24px;
  background: rgba(16, 19, 23, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.market-card h3 {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.market-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.market-card li {
  padding: 10px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.market-card.southeast { border-color: rgba(255, 196, 0, 0.7); }
.market-card.texas { border-color: rgba(255, 138, 31, 0.72); }
.market-card.west { border-color: rgba(0, 166, 255, 0.72); }
.market-card.midwest { border-color: rgba(48, 209, 88, 0.72); }
.market-card.pacific { border-color: rgba(75, 210, 255, 0.72); }
.market-card.california { border-color: rgba(184, 44, 255, 0.72); }

.operator-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.95), rgba(3, 4, 5, 0.78)),
    url("assets/prime-route-back.jpg") center / cover no-repeat;
  border-block: 1px solid var(--line);
}

.operator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.operator-layout h2,
.launch-section h2,
.national-cta h2 {
  font-size: clamp(2.6rem, 5.6vw, 5.4rem);
}

.operator-layout p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
}

.operator-panel {
  padding: clamp(22px, 4vw, 36px);
  background: rgba(9, 11, 14, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.operator-panel h3 {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
}

.operator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.operator-tags span {
  padding: 10px 12px;
  color: var(--white);
  background: rgba(0, 166, 255, 0.13);
  border: 1px solid rgba(0, 166, 255, 0.5);
  border-radius: 6px;
  font-weight: 800;
}

.launch-section {
  background: var(--ink);
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.launch-grid article {
  min-height: 300px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.launch-grid span {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3rem;
}

.launch-grid h3 {
  margin-top: 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.launch-grid p {
  color: var(--muted);
}

.national-cta {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.9), rgba(3, 4, 5, 0.82)),
    url("assets/weekend-front.jpg") center / cover no-repeat;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020202;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 110px;
  color: var(--muted);
}

.footer-brand img {
  width: 150px;
  height: 58px;
  object-fit: cover;
  object-position: left top;
}

.footer-layout p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.footer-layout a:last-child {
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  text-decoration: none;
}

.gallery-dialog {
  width: min(1320px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.gallery-dialog h2 {
  margin: 0 58px 14px 0;
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 58px 16px 0;
}

.dialog-actions .button {
  min-height: 42px;
  padding: 10px 14px;
}

.gallery-dialog img {
  width: 100%;
  max-height: calc(100dvh - 176px);
  object-fit: contain;
  border-radius: 6px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    padding: 24px;
    background: rgba(3, 4, 5, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .header-call {
    justify-self: end;
  }

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

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

  .feature-layout,
  .coverage-panel,
  .weekend-layout,
  .industry-layout,
  .contact-layout,
  .booking-hero-layout,
  .national-hero-layout,
  .operator-layout {
    grid-template-columns: 1fr;
  }

  .market-grid,
  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corridor-item,
  .corridor-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .corridor-item:nth-child(even) img {
    order: 0;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    min-height: 68px;
    gap: 12px;
    padding: 9px 12px;
  }

  .brand img {
    width: 86px;
    height: 42px;
  }

  .brand span {
    display: none;
  }

  .header-call {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    inset: 68px 0 auto 0;
  }

  #coverage,
  #routes,
  #weekend,
  #gallery,
  #contact {
    scroll-margin-top: 82px;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54)),
      linear-gradient(0deg, rgba(3, 4, 5, 0.78), rgba(3, 4, 5, 0.1)),
      url("assets/hero-truck-clean.jpg") 58% center / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 22px, 760px);
    margin-left: auto;
    padding: 44px 0 22px;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.8rem);
  }

  .hero-statement {
    font-size: clamp(2.1rem, 12vw, 3.65rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics,
  .proof-grid,
  .route-grid,
  .daypart-grid,
  .benefit-grid,
  .industry-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 14px 16px;
  }

  .proof-item,
  .daypart,
  .route-card {
    min-height: unset;
  }

  .section-heading-row {
    display: block;
  }

  .route-controls {
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
  }

  .route-filter {
    flex: 1 0 auto;
  }

  .coverage-copy,
  .contact-layout {
    padding: 22px;
  }

  .contact-actions {
    min-width: 0;
  }

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

  .market-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .national-signal,
  .market-card,
  .launch-grid article {
    min-height: unset;
  }

  .booking-form {
    padding: 20px;
  }

  .footer-layout {
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .feature-section {
    background-attachment: scroll;
  }
}
