/* =========================================================
   MAIZARE LLC — Design Tokens
   Palette: Navy / White / Light Gray + Gold accent
   Display: Barlow Semi Condensed · Body: Inter · Data: IBM Plex Mono
   Signature: the "route line" — a dashed haul route with waypoint
   markers that threads through the page.
   ========================================================= */

:root {
  --navy-deep: #071427;
  --navy: #0B1E33;
  --navy-soft: #12294A;
  --white: #FFFFFF;
  --gray-light: #F1F3F6;
  --gray-mid: #7C8798;
  --line: #E1E5EB;
  --text: #1C2733;
  --text-soft: #4B5768;
  --gold: #E3A34B;
  --gold-deep: #C98A34;

  --display: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  --container: 1160px;
}

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.05;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--text-soft); }
a { color: inherit; }

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

.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.contact-pay { margin-top: 18px; width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--white);
  font-family: var(--display);
}
.brand-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gold); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Helvetica', var(--body); font-weight: 700; font-size: 1.05rem;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-mark {
  font-weight: 700; font-size: 1.28rem; letter-spacing: .02em; color: var(--white);
}
.brand-tag {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .1em;
  color: var(--gold); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.82);
  font-size: .95rem; font-weight: 500;
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { color: var(--white); text-decoration: none; font-family: var(--mono); font-size: .9rem; display: none; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer;
}

@media (min-width: 860px) {
  .nav-phone { display: inline; }
}
@media (max-width: 859px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column; align-items: flex-start;
    padding: 10px 28px 24px; gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- Route line signature ---------- */
.route-track {
  display: flex; align-items: center; gap: 0;
}
.route-track .seg { flex: 1; height: 2px; background-image: linear-gradient(to right, rgba(255,255,255,.35) 0 6px, transparent 6px 14px); background-size: 14px 2px; background-repeat: repeat-x; }

/* ---------- Hero (full-bleed photo) ---------- */
.hero-bg {
  position: relative;
  background:
    linear-gradient(105deg, rgba(7,20,39,.97) 0%, rgba(7,20,39,.93) 42%, rgba(7,20,39,.72) 62%, rgba(7,20,39,.4) 85%, rgba(7,20,39,.25) 100%),
    url('images/van-hero.jpg') center 55% / cover no-repeat;
  color: var(--white);
  padding: 120px 0 100px;
}
.hero-bg .hero-inner { max-width: 640px; position: relative; }
.hero-bg h1 { color: var(--white); }
.hero-bg p.lead { color: rgba(255,255,255,.94); font-size: 1.12rem; max-width: 600px; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

.hero-route {
  margin-top: 64px;
  display: flex; align-items: center; gap: 10px;
}
.hero-route .stop {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .08em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  white-space: nowrap;
}
.hero-route .stop b { color: var(--white); font-weight: 600; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-alt { background: var(--gray-light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy p { color: rgba(255,255,255,.72); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 28px;
  position: relative;
}
.card .num {
  font-family: var(--mono); font-size: .74rem; color: var(--gold-deep);
  letter-spacing: .1em; display: block; margin-bottom: 12px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: .95rem; }

.badge-soon {
  display: inline-block;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid var(--gold); border-radius: 20px;
  padding: 3px 10px; margin-left: 8px; vertical-align: middle;
}

/* ---------- Why-choose list ---------- */
.feature-row {
  display: flex; gap: 20px; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.feature-row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.feature-row .mk { font-family: var(--mono); color: var(--gold); font-size: .85rem; padding-top: 3px; }
.feature-row h3 { margin-bottom: 4px; font-size: 1.08rem; }
.feature-row p { margin-bottom: 0; font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-deep);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 26px; }
.cta-band .actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Vehicle spec strip ---------- */
.spec-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
.spec {
  flex: 1 1 200px; padding: 22px 24px; border-right: 1px solid var(--line);
}
.spec:last-child { border-right: none; }
.spec-strip.stack { flex-direction: column; }
.spec-strip.stack .spec { flex: none; border-right: none; border-bottom: 1px solid var(--line); }
.spec-strip.stack .spec:last-child { border-bottom: none; }
.spec .k { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; color: var(--gray-mid); text-transform: uppercase; display: block; margin-bottom: 6px; }
.spec .v { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--navy); }

/* ---------- Vehicle photo ---------- */
.vehicle-art { width: 100%; height: auto; display: block; border-radius: 6px; border: 1px solid var(--line); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}
fieldset { border: none; padding: 0; margin: 0 0 34px; }
legend {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-deep);
  padding: 0 0 14px; margin-bottom: 18px; width: 100%;
  border-bottom: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .form-grid, .form-grid.cols-3, .form-grid.cols-4 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--text); }
.field .hint { font-size: .78rem; color: var(--gray-mid); }
input, select, textarea {
  font-family: var(--body); font-size: .96rem; color: var(--text);
  background: var(--white);
  border: 1px solid var(--line); border-radius: 3px;
  padding: 11px 13px;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(227,163,75,.18);
}
textarea { resize: vertical; min-height: 100px; }

.upload-box {
  border: 1.5px dashed var(--line);
  border-radius: 4px;
  padding: 28px;
  text-align: center;
  color: var(--gray-mid);
  font-size: .9rem;
}
.upload-box b { color: var(--navy); }

.radio-row { display: flex; gap: 22px; align-items: center; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-weight: 500; font-size: .92rem; color: var(--text-soft); }
.radio-row input { width: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.68);
  padding: 56px 0 26px;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top h4 {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-brand { font-family: var(--display); font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }
.site-footer a { color: rgba(255,255,255,.68); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.footer-pay { margin-top: 6px; }
.footer-pay .btn { padding: 10px 20px; font-size: .9rem; }
.site-footer .btn-primary, .site-footer .btn-primary:hover { color: var(--navy-deep); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 22px; font-size: .82rem; font-family: var(--mono);
}
.footer-ids { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.5); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy-deep); color: var(--white);
  padding: 64px 0 48px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.72); max-width: 600px; }

.breadcrumb {
  font-family: var(--mono); font-size: .76rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}

/* ---------- Utility ---------- */
.notice {
  border-left: 3px solid var(--gold);
  background: var(--gray-light);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text-soft);
  border-radius: 0 4px 4px 0;
}
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.industry-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tags span {
  font-size: .86rem; padding: 8px 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  color: var(--text-soft);
}

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