/* ---------- Tokens ---------- */
:root{
  --ink: #14181F;
  --ink-soft: #232936;
  --paper: #F6F5F1;
  --paper-dim: #EAE8E1;
  --slate: #495168;
  --steel: #D8DCE3;
  --route: #FF5A1F;
  --route-dark: #DE4B15;
  --signal: #1E8F5F;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --wrap: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
h1,h2,h3{
  font-family: var(--font-display);
  margin: 0 0 .5em;
  line-height: 1.08;
}
p{ margin: 0 0 1em; color: var(--slate); }
a{ color: inherit; }
img,svg{ display:block; max-width:100%; }
ul,ol{ margin:0; padding:0; list-style:none; }

:focus-visible{
  outline: 3px solid var(--route);
  outline-offset: 2px;
}

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

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

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary{
  background: var(--route);
  color: #fff;
}
.btn-primary:hover{ background: var(--route-dark); }
.btn-ghost{
  background: transparent;
  border-color: currentColor;
}
.hero-copy .btn-ghost{ color: var(--paper); }
.hero-copy .btn-ghost:hover{ background: rgba(246,245,241,.1); }
.btn-wide{ width: 100%; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(246,245,241,.12);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color: var(--paper);
  flex-shrink: 0;
}
.logo-mark{ width: 30px; height: 30px; color: var(--route); }
.logo-word{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 35px;
  letter-spacing: -0.01em;
}
.logo-word em{ font-style: normal; color: var(--route); }

.site-nav{
  display:flex; gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.site-nav a{ text-decoration:none; color: var(--paper); opacity: .85; }
.site-nav a:hover{ opacity: 1; }

.header-actions{ display:flex; align-items:center; gap: 16px; }
.phone-pill{
  display:flex; align-items:center; gap:8px;
  border: 1px solid rgba(246,245,241,.3);
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration:none;
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.phone-pill .dot{
  width:7px; height:7px; border-radius:50%;
  background: var(--signal);
  flex-shrink:0;
}
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width: 36px; height: 36px;
  background:none; border:none; cursor:pointer;
  padding: 0;
}
.nav-toggle span{
  height:2px; width:100%;
  background: var(--paper);
}

/* ---------- Hero ---------- */
.hero{
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items:center;
}
.eyebrow{
  font-family: var(--font-mono);
  font-size: 25px;
  color: var(--route);
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.hero h1{
  font-size: 35px;
  max-width: 950px;
}
.hero-sub{
  color: #C7CBD4;
  max-width: 46ch;
  font-size: 17px;
}
.hero-ctas{ display:flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-visual{ padding: 20px 0; }
.route-svg{ width:100%; height:auto; overflow: visible; }
.route-line{
  fill:none;
  stroke: var(--route);
  stroke-width: 2.5;
  stroke-dasharray: 8 8;
}
.pin circle{ fill: var(--paper); }
.pin-end circle{ fill: var(--route); }
.pin text{
  font-family: var(--font-mono);
  font-size: 12px;
  fill: #C7CBD4;
  text-anchor: middle;
  letter-spacing: .03em;
}
.van{ fill: var(--route); }

.manifest-strip{
  margin-top: 56px;
  border-top: 1px solid rgba(246,245,241,.15);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
}
.manifest-field{
  padding: 20px 24px;
  border-left: 1px solid rgba(246,245,241,.15);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.manifest-field:first-child{ padding-left: 0; border-left:none; }
.manifest-label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #8991A3;
  letter-spacing: .03em;
}
.manifest-value{
  font-weight: 600;
  font-size: 15px;
}

/* ---------- Section shared ---------- */
section{ padding: 96px 0; }
.section-head{ max-width: 56ch; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(26px, 3vw, 36px); }
.section-head.light p{ color: #A9AEBB; }

/* ---------- Services ---------- */
.services{ background: var(--paper); }
.manifest-list{
  border-top: 1px solid var(--steel);
}
.manifest-list li{
  display:flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--steel);
  align-items: flex-start;
}
.service-code{
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--route);
  border: 1px solid var(--route);
  border-radius: 3px;
  padding: 4px 9px;
  flex-shrink: 0;
  margin-top: 4px;
}
.service-body h3{ font-size: 20px; margin-bottom: 6px; }
.service-body p{ margin:0; max-width: 60ch; }

/* ---------- How it works ---------- */
.how{ background: var(--ink-soft); color: var(--paper); }
.how h3{ color: var(--paper); }
.how p{ color: #A9AEBB; }
.checkpoints{
  position: relative;
  padding-left: 52px;
}
.checkpoints::before{
  content:"";
  position:absolute;
  left: 17px; top: 8px; bottom: 8px;
  border-left: 2px dashed rgba(246,245,241,.25);
}
.checkpoints li{
  position: relative;
  padding-bottom: 40px;
}
.checkpoints li:last-child{ padding-bottom: 0; }
.checkpoint-code{
  position:absolute;
  left: -52px; top: -2px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--route);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  display:flex; align-items:center; justify-content:center;
}
.checkpoints h3{ font-size: 18px; margin-bottom: 4px; }
.checkpoints p{ margin: 0; max-width: 58ch; }

/* ---------- Coverage ---------- */
.coverage{ background: var(--paper); }
.coverage-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items:center;
}
.coverage h2{ font-size: clamp(26px,3vw,36px); }
.area-tags{
  display:flex; flex-wrap:wrap; gap: 10px;
  margin: 20px 0;
}
.area-tags li{
  border: 1px solid var(--steel);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
}
.coverage-note{ font-size: 14px; color: var(--slate); }
.radius-ring{ fill:none; stroke: var(--route); stroke-width: 1.5; opacity: .5; }
.radius-ring--dim{ opacity: .25; }
.depot-dot{ fill: var(--ink); }
.depot-label, .radius-label{
  font-family: var(--font-mono);
  font-size: 11px;
  fill: var(--slate);
  letter-spacing: .04em;
}

/* ---------- About ---------- */
.about{ background: var(--ink-soft); color: var(--paper); }
.about .section-head h2{ color: var(--paper); }
.about-body{ max-width: 68ch; }
.about-body p{ color: #A9AEBB; font-size: 20px; }
.about-body p:last-child{ margin-bottom: 0; }

/* ---------- Testimonial ---------- */
.testimonial{
  background: var(--route);
  color: #fff;
  text-align: left;
}
.testimonial .wrap{ max-width: 780px; }
.quote{
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 20px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.attribution{ color: rgba(255,255,255,.85); font-size: 20px; margin:0; }

/* ---------- Contact ---------- */
.contact{ background: var(--paper-dim); }
.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
}
.contact-direct{ margin-top: 28px; display:flex; flex-direction:column; gap: 14px; }
.contact-direct p{ margin:0; display:flex; flex-direction:column; gap:2px; }
.contact-direct a{ text-decoration:none; font-weight:600; }

.waybill-form{
  background: var(--paper);
  border: 1px solid var(--steel);
  border-radius: 4px;
  padding: 32px;
  display:flex;
  flex-direction:column;
  gap: 20px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.waybill-form label{ display:flex; flex-direction:column; gap:6px; }
.form-full{ grid-column: 1 / -1; }
.waybill-form input,
.waybill-form select,
.waybill-form textarea{
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--steel);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}
.waybill-form input:focus,
.waybill-form select:focus,
.waybill-form textarea:focus{
  border-color: var(--route);
}
.form-status{
  font-size: 14px;
  font-weight: 600;
  color: var(--signal);
  min-height: 1.2em;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: #A9AEBB; padding-top: 64px; }
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246,245,241,.12);
}
.footer-brand .logo-word{ color: var(--paper); }
.footer-brand p{ color: #A9AEBB; margin-top: 10px; }
.footer-col p{ margin: 0 0 6px; }
.footer-col a{ text-decoration:none; color: var(--paper); }
.footer-legal{ padding: 20px 24px; font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px){
  .site-nav{
    display:none;
    position: absolute;
    top: 72px; left:0; right:0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(246,245,241,.12);
  }
  .site-nav.is-open{ display:flex; }
  .site-nav a{ padding: 16px 24px; border-top: 1px solid rgba(246,245,241,.08); }
  .nav-toggle{ display:flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .manifest-strip{ grid-template-columns: repeat(2, 1fr); }
  .manifest-field:nth-child(2){ border-left: 1px solid rgba(246,245,241,.15); }
  .manifest-field:nth-child(3){ padding-left:0; border-left:none; }
  .coverage-grid{ grid-template-columns: 1fr; }
  .coverage-visual{ order: -1; max-width: 320px; margin: 0 auto; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px){
  .form-row{ grid-template-columns: 1fr; }
  .manifest-strip{ grid-template-columns: 1fr; }
  .manifest-field{ border-left:none !important; border-top: 1px solid rgba(246,245,241,.15); padding-left:0; }
  .manifest-field:first-child{ border-top:none; }
  .header-actions .phone-pill{ display:none; }
}
