/* ============================================================
   FAST RESPONSE FREIGHT — GLOBAL STYLESHEET
   Brand: Navy #1B2C3E · Orange #FE8702 · Blue #0377BC
   Type: Barlow Condensed (headings) · IBM Plex Sans (body)
   ============================================================ */

/* ── 1. FONT FACES ─────────────────────────────────────────── */

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/barlow/BarlowCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/barlow/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/barlow/BarlowCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/assets/fonts/ibm/IBMPlexSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/assets/fonts/ibm/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── 2. CUSTOM PROPERTIES ──────────────────────────────────── */

:root {
  /* Brand */
  --navy:         #1B2C3E;
  --navy-dark:    #121E2B;
  --navy-900:     #0B131C;
  --navy-400:     #3E5164;
  --blue:         #0377BC;
  --blue-link:    #025F96;
  --orange:       #FE8702;
  --orange-hover: #CB6C02;

  /* Neutrals */
  --offwhite:  #FAFAF7;
  --paper:     #F3F1EC;
  --warmgray:  #E8E6E1;
  --midgray:   #6B7280;
  --charcoal:  #111827;
  --white:     #FFFFFF;

  /* Functional */
  --success: #16A34A;
  --error:   #DC2626;

  /* Typography */
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;   /* 8px */
  --space-sm:  1rem;     /* 16px */
  --space-md:  1.5rem;   /* 24px */
  --space-lg:  2rem;     /* 32px */
  --space-xl:  3rem;     /* 48px */
  --space-2xl: 4rem;     /* 64px */
  --space-3xl: 5rem;     /* 80px */
  --space-4xl: 6rem;     /* 96px */

  /* Misc */
  --radius:       4px;
  --radius-lg:    8px;
  --shadow-sm:    0 1px 3px rgba(27, 44, 62, 0.08);
  --shadow-md:    0 4px 16px rgba(27, 44, 62, 0.10);
  --shadow-lg:    0 8px 32px rgba(27, 44, 62, 0.14);
  --transition:   0.2s ease;
  --header-h:     72px;
}

/* ── 3. RESET & BASE ───────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--offwhite);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-link);
  text-decoration: underline;
  transition: color var(--transition);
}
a:hover { color: var(--navy); }

ul, ol { list-style: none; }

/* ── 4. TYPOGRAPHY ─────────────────────────────────────────── */

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-xs);
}

.kicker--light { color: var(--orange); }
.kicker--muted { color: var(--midgray); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.25rem, 3vw, 1.625rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { max-width: 66ch; }
p + p { margin-top: var(--space-sm); }

.text-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal);
}

strong { font-weight: 600; }

/* ── 5. LAYOUT ─────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--narrow {
  max-width: 760px;
}

.section {
  padding-block: var(--space-4xl);
}

.section--sm {
  padding-block: var(--space-2xl);
}

.section--bg-white   { background: var(--white); }
.section--bg-paper   { background: var(--paper); }
.section--bg-offwhite{ background: var(--offwhite); }
.section--bg-navy    { background: var(--navy); }
.section--bg-dark    { background: var(--navy-dark); }

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header--center {
  text-align: center;
}
.section-header--center p {
  margin-inline: auto;
}

/* ── 6. NAVIGATION ─────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1248px;
  z-index: 100;
  background: rgba(2, 95, 150, 0.35);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: opacity 0.35s ease, box-shadow var(--transition);
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: var(--header-h);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-icon {
  height: 36px;
  width: 36px;
  flex-shrink: 0;
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-cta { margin-left: var(--space-sm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--orange); }

.mobile-nav-cta { align-self: flex-start; }

/* ── 7. BUTTONS ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn-sm  { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-md  { padding: 0.75rem 1.75rem; }
.btn-lg  { padding: 0.875rem 2.25rem; font-size: 0.9375rem; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ── 8. HERO SECTIONS ──────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-block: var(--space-4xl);
  background: var(--navy-dark);
  overflow: hidden;
}

.hero--photo {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 19, 28, 0.92) 0%,
    rgba(18, 30, 43, 0.75) 60%,
    rgba(18, 30, 43, 0.4) 100%
  );
  z-index: 1;
}

.hero--photo::before {
  background: linear-gradient(
    to right,
    rgba(11, 19, 28, 0.9) 0%,
    rgba(11, 19, 28, 0.6) 60%,
    rgba(11, 19, 28, 0.3) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 580px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-sub strong {
  color: var(--white);
}

/* Hero with split layout (about page) */
.hero--split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero--split .hero-image {
  position: relative;
  display: flex;
  gap: var(--space-sm);
}

.hero--split .hero-image img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 420px;
}

/* ── 8b. VIDEO HERO ────────────────────────────────────────── */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* ── 9. STATS BAR ──────────────────────────────────────────── */

.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--warmgray);
  box-shadow: var(--shadow-sm);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-right: 1px solid var(--warmgray);
  gap: 0.25rem;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-sub {
  font-size: 0.75rem;
  color: var(--midgray);
  line-height: 1.4;
}

/* ── 9b. TRUCK SCROLL SECTION ──────────────────────────────── */

.truck-scroll-section {
  height: 200vh;
  background: var(--offwhite);
}

.truck-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-scroll-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  word-spacing: 0.25em;
  color: var(--navy);
  text-align: center;
  padding-inline: var(--space-lg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.truck-scroll-text.is-visible {
  opacity: 1;
}

.truck-word {
  display: inline;
}

.truck-word--accent {
  color: var(--orange);
  margin-inline: 0.18em;
}

.truck-scroll-truck {
  position: absolute;
  bottom: 8%;
  width: min(72vw, 860px);
  transform: translateX(100vw);
  will-change: transform;
  pointer-events: none;
}

.truck-scroll-truck img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(27, 44, 62, 0.22)) drop-shadow(0 4px 10px rgba(27, 44, 62, 0.14));
}

/* ── 10. SECTION HEADER ────────────────────────────────────── */

.section-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-xs);
}

.section h2 {
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--midgray);
  max-width: 56ch;
}

/* ── 11. FEATURE CARDS ─────────────────────────────────────── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--white);
  border: 1px solid var(--warmgray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--paper);
  border: 1px solid var(--warmgray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--orange);
  flex-shrink: 0;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--midgray);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: none;
}

/* ── 12. PERSON CARDS ──────────────────────────────────────── */

.person-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.person-card {
  background: var(--white);
  border: 1px solid var(--warmgray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}

.person-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-xs);
}

.person-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.person-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--navy-400);
  text-decoration: none;
  transition: color var(--transition);
}

.person-contact a:hover { color: var(--orange); }
.person-contact svg { flex-shrink: 0; color: var(--orange); }

.person-bio {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--midgray);
  max-width: none;
}

/* ── 13. NUMBERED LIST (Why Choose Us) ─────────────────────── */

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  counter-reset: reasons;
}

.reason-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-lg);
  align-items: start;
  counter-increment: reasons;
}

.reason-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  padding-top: 4px;
}

.reason-content h3 {
  margin-bottom: var(--space-sm);
}

.reason-content p {
  color: var(--midgray);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: none;
}

/* ── 14. JOB DETAILS TABLE ─────────────────────────────────── */

.job-table {
  width: 100%;
  border-collapse: collapse;
}

.job-table tr {
  border-bottom: 1px solid var(--warmgray);
  transition: background var(--transition);
}

.job-table tr:last-child { border-bottom: none; }
.job-table tr:hover { background: var(--paper); }

.job-table th,
.job-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  vertical-align: top;
}

.job-table th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  width: 160px;
  white-space: nowrap;
}

.job-table td {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── 15. FAQ ACCORDION ─────────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--warmgray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--warmgray);
}

.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}

.faq-trigger:hover { background: var(--paper); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding: 0 var(--space-xl) var(--space-lg);
  background: var(--white);
}

.faq-item.is-open .faq-body {
  display: block;
}

.faq-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--midgray);
  max-width: none;
}

/* ── 16. TEAM GRID ─────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.team-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.team-member:hover .team-photo img {
  transform: scale(1.03);
}

.team-member-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
}

.team-member-role {
  font-size: 0.8125rem;
  color: var(--midgray);
}

/* ── 17. VALUES GRID ───────────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.value-item {
  background: var(--white);
  border: 1px solid var(--warmgray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.value-item h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.value-item p {
  font-size: 0.9375rem;
  color: var(--midgray);
  line-height: 1.65;
  max-width: none;
}

/* ── 18. MID-PAGE BANNER ───────────────────────────────────── */

.mid-banner {
  background: var(--navy);
  padding-block: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.mid-banner--photo {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.mid-banner--half {
  padding-block: 8rem;
}

.mid-banner--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 43, 0.78);
}

.mid-banner-inner {
  position: relative;
  z-index: 2;
}

.mid-banner p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  max-width: 800px;
}

.mid-banner p strong {
  color: var(--orange);
}

/* ── 19. CONTACT FORM ──────────────────────────────────────── */

.contact-form {
  background: var(--white);
  border: 1px solid var(--warmgray);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--offwhite);
  border: 1.5px solid var(--warmgray);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 44, 62, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--midgray); }

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

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--midgray);
  pointer-events: none;
}

.form-submit {
  margin-top: var(--space-md);
}

/* ── 19b. CONTACT FIND GRID ────────────────────────────────── */

.contact-find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* ── 20. MAP SECTION ───────────────────────────────────────── */

.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--warmgray);
  margin-top: var(--space-md);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.office-info {
  margin-bottom: var(--space-md);
}

.office-info p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: none;
}

/* ── 21. CTA BANNER ────────────────────────────────────────── */

.cta-banner {
  background: var(--navy-dark);
  padding-block: var(--space-4xl);
  text-align: center;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.cta-banner-content {
  max-width: 640px;
}

.cta-banner-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.cta-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-inline: auto;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ── 22. FOOTER ────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.65);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-block: var(--space-3xl);
}

.footer-logo { opacity: 0.9; }
.footer-logo-link:hover .footer-logo { opacity: 1; }

.footer-tagline {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: none;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.footer-contact svg {
  color: var(--orange);
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  padding-block: var(--space-lg);
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.6875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.3);
  max-width: 70ch;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer-copy a:hover { color: var(--orange); }

/* ── 23. ABOUT PAGE — SPLIT INTRO ──────────────────────────── */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.about-intro-text h2 { margin-bottom: var(--space-lg); }

.about-intro-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: none;
  margin-bottom: var(--space-md);
}

.about-intro-text p:last-child { margin-bottom: 0; }

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── 24. PRIVACY PAGE ──────────────────────────────────────── */

.privacy-content {
  max-width: 760px;
  margin-inline: auto;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.privacy-content h3 {
  font-size: 1rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.privacy-content p,
.privacy-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: none;
}

.privacy-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.privacy-content a { color: var(--blue-link); }

/* ── 25. ANIMATIONS ────────────────────────────────────────── */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }
[data-animate-delay="500"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 26. RESPONSIVE — TABLET (≤ 1024px) ───────────────────── */

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── 27. RESPONSIVE — MOBILE (≤ 768px) ────────────────────── */

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .container {
    padding-inline: var(--space-md);
  }

  .section {
    padding-block: var(--space-2xl);
  }

  /* Nav */
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    align-items: flex-end;
    padding-block: var(--space-2xl);
    padding-bottom: var(--space-3xl);
  }

  .hero--split .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero--split .hero-image {
    display: none;
  }

  /* Stats */
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--warmgray); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--warmgray); border-right: none; }

  /* Cards */
  .cards-grid,
  .person-cards-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Reason items */
  .reason-item {
    grid-template-columns: 48px 1fr;
    gap: var(--space-md);
  }

  .reason-number {
    font-size: 2rem;
  }

  /* Job table — stack as definition list */
  .job-table thead { display: none; }
  .job-table,
  .job-table tbody,
  .job-table tr,
  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
  }
  .job-table tr {
    padding-block: var(--space-md);
    border-bottom: 1px solid var(--warmgray);
  }
  .job-table th {
    padding: 0 0 4px 0;
    color: var(--orange);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
  }
  .job-table td {
    padding: 0;
    font-size: 0.9375rem;
  }

  /* Contact find/form grid */
  .contact-find-grid {
    grid-template-columns: 1fr;
  }

  /* About intro */
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro-image { display: none; }

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

  /* CTA banner */
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-block: var(--space-2xl);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy { align-self: flex-start; }

  /* Mid banner */
  .mid-banner--photo {
    background-attachment: scroll;
  }

  /* Truck scroll */
  .truck-scroll-section {
    height: 130vh;
  }

  .truck-scroll-text {
    flex-direction: column;
    gap: 0.1em;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .truck-word {
    display: block;
    text-align: center;
  }

  .truck-word--accent {
    margin-inline: 0;
  }

  .truck-scroll-truck {
    width: min(88vw, 500px);
  }
}

/* ── 28. RESPONSIVE — SMALL MOBILE (≤ 480px) ──────────────── */

@media (max-width: 480px) {
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: var(--space-lg) var(--space-md);
  }

  .stat-value {
    font-size: 1.5rem;
  }

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

  .hero-sub {
    font-size: 1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}
