/* ============================================
   VONEX TRANSPORT — Design tokens
   Display: Michroma (industrial, geometric — matches wordmark)
   Body: Barlow (highway-signage heritage — built for transport)
   Motif: the "route line" — a dashed lane-marker rule that threads
   through the page, and the logo's arrow mark reused as a bullet.
   ============================================ */

:root {
  --ink: #14181d;
  --slate: #5b6570;
  --slate-light: #8a929b;
  --steel: #29628c;
  --steel-dark: #1b4560;
  --steel-light: #6ea5cd;
  --paper: #ffffff;
  --fog: #f3f5f6;
  --fog-dark: #e7eaec;
  --line: #dadfe3;
  --navy: #0f1a22;
  --navy-2: #16242e;

  --display: 'Michroma', 'Arial Black', sans-serif;
  --body: 'Barlow', Arial, Helvetica, sans-serif;

  --container: 1160px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Route-line motif ---------- */
.route-line {
  height: 0;
  border-top: 3px dashed var(--steel);
  opacity: 0.55;
  margin: 0;
}
.route-line.tight { border-top-width: 2px; }

.route-divider {
  position: relative;
  padding: 0;
}
.route-divider::before {
  content: "";
  display: block;
  height: 0;
  border-top: 2px dashed var(--line);
}

/* Arrow mark — reused from the logo as a recurring bullet */
.mark {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  position: relative;
  flex-shrink: 0;
}
.mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--steel);
  clip-path: polygon(0% 0%, 35% 0%, 100% 65%, 100% 100%, 65% 100%, 0% 35%);
}

/* ---------- Eyebrow / sign badge ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 16px;
}
.eyebrow .tag {
  background: var(--ink);
  color: var(--paper);
  padding: 4px 9px;
  border-radius: var(--radius);
  letter-spacing: 1.5px;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(34px, 5vw, 58px); letter-spacing: 0; }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 19px; }
p { margin: 0 0 1em; color: var(--slate); }
.lede { font-size: 19px; color: var(--slate); max-width: 60ch; }

.text-ink { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--steel);
  color: var(--paper);
}
.btn-primary:hover { background: var(--steel-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); }

/* ---------- Coming soon overlay ---------- */
body.cs-locked { overflow: hidden; height: 100vh; }

.cs-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 26, 34, 0.93);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}
.cs-inner { max-width: 560px; }
.cs-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 36px;
  display: block;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel-light);
  border: 1px solid rgba(110,165,205,0.35);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 26px;
}
.cs-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel-light);
}
.cs-inner h1 {
  font-family: var(--display);
  color: var(--paper);
  font-size: clamp(26px, 4.5vw, 38px);
  line-height: 1.25;
  margin: 0 0 18px;
}
.cs-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 30px;
}
.cs-route {
  height: 0;
  border-top: 2px dashed rgba(110,165,205,0.4);
  max-width: 280px;
  margin: 0 auto 30px;
}
.cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  background: var(--steel);
  padding: 15px 30px;
  border-radius: 3px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.cs-cta:hover { background: #1b4560; transform: translateY(-1px); }
.cs-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { border-color: var(--steel); color: var(--steel-dark); }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone { display: none; font-weight: 700; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-mobile-panel {
  display: none;
  flex-direction: column;
  padding: 6px 28px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.nav-mobile-panel a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.nav-mobile-panel a.active { color: var(--steel-dark); }
.nav-mobile-panel .btn { margin-top: 16px; justify-content: center; }

@media (min-width: 720px) {
  .nav-phone { display: inline; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open .nav-mobile-panel { display: flex; }
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 64px;
  background:
    linear-gradient(180deg, var(--fog) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { margin-bottom: 20px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-route {
  margin-top: 48px;
}
.hero-route .route-line { margin-bottom: 10px; }
.hero-route-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--slate);
  text-transform: uppercase;
}
.hero-route-labels span:last-child { color: var(--steel); }

.hero-panel {
  background: var(--navy);
  border-radius: 6px;
  padding: 34px;
  color: var(--paper);
}
.hero-panel .eyebrow { color: var(--steel-light); }
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat .num {
  font-family: var(--body);
  font-weight: 700;
  font-size: 28px;
  color: var(--paper);
  flex-shrink: 0;
  min-width: 78px;
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.4px;
  flex: 1;
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-alt { background: var(--fog); }
.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--steel); transform: translateY(-2px); }
.card .mark { margin-bottom: 18px; width: 0.9em; height: 0.9em; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 15px; }
.card a.card-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
}

/* Service list rows (for services page) */
.service-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px dashed var(--line);
}
.service-row:first-of-type { padding-top: 0; }
.service-row:last-of-type { border-bottom: none; }
.service-row .mark { margin-top: 6px; width: 22px; height: 22px; }
.service-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.service-meta span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--slate);
  padding: 6px 10px;
  background: var(--fog);
  border-radius: var(--radius);
}

/* ---------- Shipment visibility tracker ---------- */
.tracker { position: relative; margin-top: 20px; }
.tracker-line {
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  border-top: 3px dashed var(--steel);
  opacity: 0.5;
}
.tracker-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.tracker-step { padding-top: 32px; position: relative; }
.tracker-step .dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--steel);
}
.tracker-step.is-final .dot { background: var(--steel); }
.tracker-step h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tracker-step p { font-size: 13px; margin-bottom: 0; }

@media (max-width: 760px) {
  .tracker-line { display: none; }
  .tracker-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tracker-step {
    padding-top: 0;
    padding-left: 34px;
    padding-bottom: 26px;
    border-left: 3px dashed var(--line);
    margin-left: 11px;
  }
  .tracker-step:last-child { border-left-color: transparent; padding-bottom: 0; }
  .tracker-step .dot { top: 2px; left: -14px; }
}

/* ---------- Values / About grid ---------- */
.value {
  padding: 26px 0 26px 24px;
  border-left: 3px solid var(--steel);
}
.value h3 { margin-bottom: 6px; }
.value p { font-size: 15px; margin-bottom: 0; }

.founder {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
}
@media (max-width: 720px) {
  .founder { grid-template-columns: 1fr; }
}
.founder-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-avatar .mark { width: 46px; height: 46px; }
.founder-name {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 4px;
}
.founder-title {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--paper);
  border-radius: 6px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--paper); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.68); margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .mark { margin-top: 4px; }
.contact-info-item .lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}
.contact-info-item .val { font-weight: 600; font-size: 16px; }
.contact-info-item .val a { text-decoration: none; color: var(--ink); }

form.quote-form {
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(41,98,140,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--slate-light); margin-top: 14px; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-2);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}
footer h4 {
  color: var(--paper);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer p { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links a:hover { color: var(--steel-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 56px 0 44px;
  background: var(--fog);
  border-bottom: 1px solid var(--line);
}
.page-hero .lede { margin-top: 14px; }

/* Utility */
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
