:root {
  --navy-950: #061123;
  --navy-900: #0a1830;
  --navy-800: #102544;
  --navy-700: #183557;
  --gold-500: #e7b94f;
  --gold-400: #f1ca6b;
  --cream: #f8f5ed;
  --paper: #ffffff;
  --ink: #132033;
  --muted: #5d6878;
  --line: #dfe4ea;
  --success: #1f7950;
  --danger: #ad2c32;
  --shadow: 0 24px 60px rgba(6, 17, 35, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(6, 17, 35, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}
.compact-header { position: relative; }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  border-radius: 14px 14px 14px 3px;
  box-shadow: 0 10px 30px rgba(231,185,79,.25);
  font-weight: 900;
  letter-spacing: -0.06em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: .02em; }
.brand-copy small { margin-top: 5px; color: #aeb8c7; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: #d9e1eb; text-decoration: none; font-size: .94rem; font-weight: 650; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold-400); }
.primary-nav .nav-phone { padding: 11px 16px; color: var(--navy-950); background: var(--gold-400); border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; }
.header-button { padding: 10px 18px; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(231,185,79,.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, #000 40%);
}
.hero-grid { position: relative; min-height: 660px; padding: 96px 0 88px; display: grid; grid-template-columns: 1.04fr .96fr; gap: 60px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--gold-500); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.1; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.8rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4vw, 3.7rem); }
h3 { font-size: 1.45rem; }
.hero-lead { max-width: 700px; margin: 0; color: #cbd5e2; font-size: clamp(1.05rem, 2vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border: 1px solid transparent; border-radius: 11px; text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold-400); box-shadow: 0 14px 32px rgba(231,185,79,.22); }
.button-primary:hover { background: #f6d783; }
.button-secondary { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.24); }
.dark-text-button { color: var(--navy-900); border-color: var(--navy-900); background: transparent; }
.credentials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.credentials span { padding: 9px 13px; color: #c7d1df; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: .84rem; }
.credentials strong { color: #fff; }

.hero-visual { position: relative; min-height: 455px; }
.hero-visual::before { content: ""; position: absolute; inset: 35px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: rotate(-12deg); }
.route-line { position: absolute; left: 11%; right: 9%; top: 52%; height: 3px; background: linear-gradient(90deg, var(--gold-500), rgba(231,185,79,.15)); transform: rotate(-8deg); }
.route-line::after { content: ""; position: absolute; right: -2px; top: -5px; border-left: 12px solid var(--gold-500); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.route-card { position: absolute; z-index: 2; min-width: 150px; padding: 16px 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 15px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.route-card-one { top: 62px; left: 0; }
.route-card-two { right: 0; bottom: 58px; }
.route-card p { margin: 0; color: #fff; font-weight: 850; }
.route-card small { color: #b9c4d3; }
.route-dot { float: right; width: 10px; height: 10px; margin-top: 7px; background: var(--gold-400); border-radius: 50%; box-shadow: 0 0 0 7px rgba(231,185,79,.14); }
.truck-graphic { position: absolute; z-index: 3; left: 18%; top: 42%; width: 68%; height: 125px; transform: rotate(-8deg); }
.truck-cab { position: absolute; right: 0; bottom: 27px; width: 33%; height: 82px; background: linear-gradient(145deg, var(--gold-400), #d69e2e); clip-path: polygon(0 24%, 56% 24%, 72% 0, 100% 0, 100% 100%, 0 100%); border-radius: 7px; }
.truck-cab span { position: absolute; right: 12%; top: 15%; width: 23%; height: 25%; background: var(--navy-900); clip-path: polygon(0 100%, 25% 0, 100% 0, 100% 100%); }
.truck-chassis { position: absolute; left: 0; right: 0; bottom: 27px; height: 17px; background: #cad3df; border-radius: 8px; }
.wheel { position: absolute; bottom: 0; width: 38px; height: 38px; background: var(--navy-950); border: 7px solid #526076; border-radius: 50%; }
.wheel::after { content: ""; position: absolute; inset: 7px; background: #aab5c4; border-radius: 50%; }
.wheel-one { left: 11%; }
.wheel-two { right: 23%; }
.wheel-three { right: 5%; }
.falcon-lines { position: absolute; top: 45px; right: 12%; width: 210px; height: 140px; transform: rotate(5deg); opacity: .45; }
.falcon-lines span { position: absolute; right: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-400)); transform-origin: right; }
.falcon-lines span:nth-child(1) { top: 0; transform: rotate(-25deg); }
.falcon-lines span:nth-child(2) { top: 25px; width: 85%; transform: rotate(-16deg); }
.falcon-lines span:nth-child(3) { top: 50px; width: 72%; transform: rotate(-7deg); }
.falcon-lines span:nth-child(4) { top: 74px; width: 58%; transform: rotate(3deg); }
.falcon-lines span:nth-child(5) { top: 97px; width: 43%; transform: rotate(13deg); }

.trust-strip { background: var(--gold-400); }
.trust-grid { min-height: 120px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid div { padding: 16px 24px; border-right: 1px solid rgba(6,17,35,.18); }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy-950); font-size: 1.05rem; }
.trust-grid span { color: #4c421f; font-size: .84rem; }

.section { padding: 105px 0; }
.section-alt { background: var(--cream); }
.section-dark { color: #fff; background: var(--navy-950); }
.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.prose { color: var(--muted); font-size: 1.1rem; }
.prose p:first-child { margin-top: 5px; }
.section-heading { max-width: 730px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 290px; padding: 34px; background: #fff; border: 1px solid #e6e0d4; border-radius: var(--radius-md); box-shadow: 0 20px 50px rgba(40,34,20,.06); }
.service-card::after { content: ""; position: absolute; left: 34px; bottom: 34px; width: 45px; height: 4px; background: var(--gold-500); border-radius: 99px; }
.card-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 45px; color: var(--navy-900); background: #f7e8bc; border-radius: 50%; font-size: .8rem; font-weight: 900; }
.service-card p { color: var(--muted); }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.coverage-map { min-height: 410px; display: grid; place-items: center; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); overflow: hidden; }
.map-outline { position: relative; width: 78%; height: 60%; background: #1c4568; clip-path: polygon(2% 22%, 14% 16%, 25% 20%, 31% 9%, 49% 13%, 60% 8%, 70% 17%, 85% 14%, 98% 28%, 91% 45%, 87% 58%, 77% 64%, 72% 82%, 60% 86%, 50% 75%, 39% 78%, 31% 66%, 18% 62%, 9% 47%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.map-outline::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 30px 30px; }
.map-point { position: absolute; z-index: 1; width: 12px; height: 12px; background: var(--gold-400); border: 3px solid rgba(255,255,255,.85); border-radius: 50%; box-shadow: 0 0 0 8px rgba(231,185,79,.16); }
.point-one { left: 18%; top: 34%; }.point-two { left: 36%; top: 50%; }.point-three { left: 54%; top: 38%; }.point-four { left: 71%; top: 52%; }.point-five { left: 82%; top: 36%; }
.large-copy { color: var(--muted); font-size: 1.1rem; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }

.contact-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: #b8c4d3; font-size: 1.08rem; }
.contact-details { display: grid; gap: 20px; margin-top: 42px; font-style: normal; }
.contact-details a, .contact-details p { margin: 0; color: #fff; text-decoration: none; }
.contact-details span { display: block; margin-bottom: 4px; color: var(--gold-400); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.form-panel { padding: 38px; color: var(--ink); background: #fff; border-radius: var(--radius-md); box-shadow: 0 30px 75px rgba(0,0,0,.25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; font-size: .88rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 1px solid #cfd6df; border-radius: 9px; outline: none; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(24,53,87,.1); }
.field small { display: block; margin-top: 6px; color: var(--muted); font-size: .76rem; }
.sms-consent { margin: 4px 0 23px; padding: 18px; background: #f4f6f9; border: 1px solid #dce2e9; border-radius: 11px; }
.checkbox-label { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: .82rem; line-height: 1.55; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--navy-800); }
.sms-consent p { margin: 10px 0 0 32px; color: var(--muted); font-size: .77rem; }
.sms-consent a { color: var(--navy-800); font-weight: 800; }
.sms-consent .form-error { color: var(--danger); font-weight: 750; }
.submit-button { width: 100%; border: 0; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .74rem; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { padding: 68px 0 20px; color: #d2dbe7; background: #030b18; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-bottom: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p { max-width: 360px; color: #96a5b8; }
.footer-grid h2 { margin: 0 0 9px; color: var(--gold-400); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { color: #d2dbe7; text-decoration: none; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-brand { margin-bottom: 13px; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.footer-bottom a { color: var(--gold-400); text-decoration: none; }
.footer-bottom nav { display: flex; gap: 22px; }
.simple-footer { padding-top: 20px; }

.legal-main { background: #fbfcfd; }
.legal-hero { padding: 80px 0 58px; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.legal-hero h1 { margin-bottom: 12px; font-size: clamp(2.7rem, 6vw, 4.7rem); }
.legal-hero p:last-child { margin: 0; color: #c5cfdd; }
.legal-content { padding-top: 70px; padding-bottom: 95px; color: #2d3848; font-size: 1.02rem; }
.legal-content > p:first-child { font-size: 1.12rem; }
.legal-content h2 { margin-top: 48px; margin-bottom: 14px; color: var(--navy-900); font-size: 1.62rem; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: #155f95; }
.legal-address { padding: 24px; background: #f0f3f7; border-left: 4px solid var(--gold-500); border-radius: 0 10px 10px 0; font-style: normal; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 50px; }

.status-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: #fff; background: radial-gradient(circle at top right, rgba(231,185,79,.18), transparent 30%), var(--navy-950); }
.status-card { width: min(100%, 640px); padding: 58px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 24px; text-align: center; box-shadow: var(--shadow); }
.centered-brand { margin-bottom: 38px; text-align: left; }
.status-icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 24px; color: var(--navy-950); background: var(--gold-400); border-radius: 50%; font-size: 2rem; font-weight: 900; }
.status-card h1 { margin-bottom: 18px; font-size: 3.4rem; }
.status-card p:not(.eyebrow) { margin: 0 auto 30px; color: #c5cfdd; }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 82px; left: 0; right: 0; display: none; padding: 24px 20px 30px; align-items: stretch; flex-direction: column; gap: 20px; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.1); }
  .primary-nav.is-open { display: flex; }
  .primary-nav .nav-phone { text-align: center; }
  .hero-grid, .split-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 75px; }
  .hero-visual { min-height: 390px; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 14px 0; }
  .trust-grid div { padding: 14px; border-right: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container, .narrow-container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .primary-nav { top: 72px; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-grid { padding: 64px 0 60px; gap: 25px; }
  h1 { font-size: 3rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 330px; transform: scale(.92); }
  .route-card { min-width: 130px; padding: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { padding: 12px 0; border-bottom: 1px solid rgba(6,17,35,.14); }
  .trust-grid div:last-child { border-bottom: 0; }
  .section { padding: 75px 0; }
  .split-grid, .coverage-grid, .contact-grid { gap: 45px; }
  .coverage-map { min-height: 300px; }
  .form-panel { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .checkbox-label { font-size: .78rem; }
  .sms-consent p { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding: 60px 0 42px; }
  .legal-content { padding-top: 45px; }
  .status-card { padding: 38px 22px; }
  .header-button { padding: 9px 12px; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
