/* ───────── Reset / base ───────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #F4EFE6;
  color: #11100E;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ───────── Tokens ───────── */
:root {
  --bg: #F4EFE6;
  --bg-2: #ECE5D7;
  --ink: #11100E;
  --navy: #16304A;
  --ink-2: #2A2622;
  --dim: #6B6258;
  --line: #DCD3C0;
  --line-2: #C9BEA6;
  --accent: #F65C02;
  --accent-deep: #C44600;
  --brick: #7A2A0A;
  --display: 'Space Grotesk', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
}

/* ───────── Typography ───────── */
.display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.display-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.display-accent::after {
  content: '';
  position: absolute;
  left: -6px; right: -6px; bottom: 6%;
  height: 14%;
  background: var(--accent);
  opacity: 0.13;
  z-index: -1;
}
.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.accent { color: var(--accent); font-style: italic; font-weight: 500; }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.mono--dim { color: var(--dim); }

/* ───────── Layout ───────── */
.app { overflow-x: hidden; }
.section {
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 72px);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.section--ink {
  background: var(--ink);
  color: var(--bg);
  max-width: none;
  border-radius: 0;
}
.section--ink .section { max-width: 1440px; margin: 0 auto; }
.section--ink .h2 { color: var(--bg); }
.section--ink .section-sub { color: #B8B0A4; }
.section--cream { background: var(--bg-2); max-width: none; }
.section--cream .section-inner { max-width: 1440px; margin: 0 auto; }

.section-head { max-width: 880px; margin-bottom: 64px; }
.section-eyebrow { margin-bottom: 28px; padding-top: 10px; border-top: 1px solid currentColor; opacity: 0.85; max-width: 220px; }
.section--ink .section-eyebrow { border-color: #3A332C; }
.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--dim);
  max-width: 580px;
  margin: 0;
  line-height: 1.55;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 22px; font-size: 15px; }
.btn--primary { background: var(--accent); color: white; box-shadow: 0 1px 0 0 var(--accent-deep) inset, 0 1px 0 0 rgba(0,0,0,0.04); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; opacity: 0.85; }
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); opacity: 1; }
.section--ink .btn--ghost:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ───────── Nav ───────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px clamp(24px, 5vw, 72px);
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark img { height: 100%; width: auto; display: block; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--navy); }
/* footer / dark placements: sit the mark on a soft light tile so the navy van reads */
.brand--dark .brand-word { color: var(--bg); }
.brand--dark .brand-mark {
  background: var(--bg);
  border-radius: 12px;
  padding: 8px 12px;
}
.nav-links { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-link:hover { color: var(--ink); background: rgba(17,16,14,0.06); }
.nav-link.is-active { color: var(--ink); background: rgba(17,16,14,0.08); }
.nav-cta { }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ───────── Hero ───────── */
.hero {
  padding: 144px clamp(24px, 5vw, 72px) 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid > * { min-width: 0; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 7px 13px 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; box-shadow: 0 0 0 4px rgba(246, 92, 2, 0.18); }
.dot--live { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246, 92, 2, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(246, 92, 2, 0); }
}

.lede {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-marquee {
  margin-top: 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 36px;
  animation: marquee 22s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span { color: var(--ink); }
.marquee-track span:nth-child(2n) { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ───────── Ticker ───────── */
.ticker {
  background: var(--ink);
  color: var(--bg);
  border-radius: 16px;
  padding: 18px 18px 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
}
.ticker-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2A2622;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ticker-meta { margin-left: auto; color: #8A8278; }
.ticker-list { list-style: none; margin: 0; padding: 0; }
.ticker-row {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #25221E;
  animation: fadeUp .5s ease backwards;
  animation-delay: calc(var(--i) * 0.05s);
}
.ticker-row:last-child { border-bottom: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.ticker-id { color: var(--accent); }
.ticker-route { display: flex; align-items: center; gap: 6px; color: #D9D2C3; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ticker-route svg { flex-shrink: 0; color: #8A8278; }
.ticker-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: #25221E;
  color: #D9D2C3;
  font-size: 10px;
}
.ticker-eta { color: #B8B0A4; }
@media (max-width: 520px) {
  .ticker-row { grid-template-columns: 60px 1fr auto; }
  .ticker-tag { display: none; }
}

/* ───────── Map ───────── */
.map {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.map-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.map-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #FAF6EE;
}
.map-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dim);
}
.map-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ───────── Trusted ───────── */
.trusted {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trusted-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trusted-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.trusted-logos {
  display: flex;
  flex: 1;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: space-between;
}
.trusted-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.65;
  transition: opacity .2s ease;
}
.trusted-logo:hover { opacity: 1; }

/* ───────── Services ───────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #2A2622;
  border: 1px solid #2A2622;
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--ink);
  padding: 36px 30px 28px;
  position: relative;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.service:hover { background: #1A1814; }
.service-num { color: var(--accent); margin-bottom: 36px; }
.service-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--bg);
}
.service-blurb {
  font-size: 14.5px;
  line-height: 1.55;
  color: #B8B0A4;
  margin: 0;
}
.service-bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease, margin .25s ease;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #D9D2C3;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.service.is-open .service-bullets { max-height: 200px; opacity: 1; margin-top: 18px; }
.service-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #4A4238;
  transition: color .25s, transform .25s;
}
.service:hover .service-arrow { color: var(--accent); transform: rotate(-30deg); }

/* ───────── Process ───────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding-top: 28px;
}
.process-num {
  position: absolute;
  top: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
}
.process-line {
  height: 2px;
  background: var(--line);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.process-line span {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  animation: lineFill 1.2s ease forwards;
  transform: scaleX(0);
}
@keyframes lineFill { to { transform: scaleX(1); } }
.process-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.process-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--dim);
  margin: 0;
}

/* ───────── Stats ───────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 72px;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: var(--bg-2);
  padding: 32px 28px 28px;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 5.6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--accent);
}
.stat-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ───────── Quote ───────── */
.quote {
  margin: 0;
  padding: 56px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}
.quote-mark {
  font-family: var(--display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--accent);
  margin-top: -10px;
}
.quote p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 800px;
  text-wrap: balance;
}
.quote-foot { font-style: normal; }
@media (max-width: 620px) {
  .quote { grid-template-columns: 1fr; gap: 12px; }
  .quote-mark { font-size: 80px; }
}

/* ───────── Contact ───────── */
.contact { padding-top: clamp(80px, 12vw, 140px); padding-bottom: clamp(80px, 12vw, 140px); }
.contact-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } .contact-grid > * { min-width: 0; } }

.contact-left .section-eyebrow { color: var(--bg); }

.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #2A2622;
}
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-block span { display: block; }
.contact-block p, .contact-block a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-block a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg);
  color: var(--ink);
  border-radius: 20px;
  padding: 36px 32px;
}
.form-head { margin-bottom: 24px; }
.form-head h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  position: relative;
}
.field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}
.field input, .field textarea {
  font: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--ink);
  font-size: 16px;
  resize: vertical;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: #B0A698; }
.field.has-error input, .field.has-error textarea { border-bottom-color: var(--accent-deep); }
.field-error { color: var(--accent-deep); font-size: 12.5px; margin-top: 4px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.chip {
  padding: 7px 13px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  transition: all .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-mini { font-size: 11.5px; color: var(--dim); max-width: 280px; line-height: 1.4; }
.form-send-error { color: var(--accent-deep); font-size: 13px; margin: 12px 0 0; }
.btn:disabled { opacity: 0.6; cursor: default; transform: none; }

.form-sent { text-align: center; padding: 36px 16px; }
.form-sent-icon { display: flex; justify-content: center; margin-bottom: 20px; }
.form-sent h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.form-sent p { color: var(--dim); margin: 0 0 24px; }

/* ───────── Footer ───────── */
.foot {
  background: var(--ink);
  color: var(--bg);
  padding: 64px clamp(24px, 5vw, 72px) 28px;
}
.foot-top {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2A2622;
}
@media (max-width: 760px) { .foot-top { grid-template-columns: minmax(0, 1fr); } .foot-top > * { min-width: 0; } }
.foot-brand .brand-word { color: var(--bg); font-size: 22px; }
.foot-tag {
  margin: 18px 0 0;
  color: #B8B0A4;
  font-size: 14px;
  max-width: 320px;
  line-height: 1.5;
}
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 520px) { .foot-cols { grid-template-columns: 1fr 1fr; } }
.foot-cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot-cols > div > span:first-child { margin-bottom: 4px; }
.foot-cols a, .foot-cols span:not(:first-child) {
  font-size: 14px;
  color: #D9D2C3;
  transition: color .15s;
}
.foot-cols a:hover { color: var(--accent); }

.foot-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: #6B6258;
  flex-wrap: wrap;
}
