/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --ink:        #0A0E12;
  --ink-mid:    #111820;
  --ink-lift:   #18232E;
  --ink-border: #1F2E3D;
  --ink-muted:  #2A3D52;

  --white:      #F2F6FA;
  --off-white:  #B8CAD9;
  --grey:       #617D94;
  --grey-dim:   #3A5268;

  --red:        #C1271A;
  --red-bright: #E03B2C;
  --red-glow:   rgba(193,39,26,0.25);
  --amber:      #E09820;

  --focus:      #3B82F6;

  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;

  --r0: 0px;
  --r1: 2px;
  --r2: 4px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 140ms;
  --mid:  240ms;
}

[data-theme="light"] {
  --ink:        #F0F5FA;
  --ink-mid:    #E4EDF5;
  --ink-lift:   #D8E5EF;
  --ink-border: #C0D2E0;
  --ink-muted:  #A8BFD0;
  --white:      #0A0E12;
  --off-white:  #2A3D52;
  --grey:       #3A5268;
  --grey-dim:   #617D94;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .wrap { padding: 0 16px; } }

/* ═══════════════════════════════════════════
   TYPE SCALE
═══════════════════════════════════════════ */
.d1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.d2 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.d3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.eyebrow {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}
.eyebrow-red { color: var(--red-bright); }

/* ═══════════════════════════════════════════
   BUTTONS — min 52px height, hard corners
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: var(--r1);
  cursor: pointer;
  transition: background var(--fast) var(--ease), transform var(--fast), box-shadow var(--fast);
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.975); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover:not(:disabled) { background: var(--red-bright); box-shadow: 0 0 28px var(--red-glow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--ink-border); }
.btn-outline:hover:not(:disabled) { border-color: var(--grey); background: var(--ink-lift); }
.btn-full { width: 100%; }

/* Mobile: full-width CTAs */
@media (max-width: 480px) {
  .btn { font-size: 1rem; padding: 0 20px; }
  .hero-ctas .btn { flex: 1 1 100%; }
}

/* ═══════════════════════════════════════════
   EMERGENCY TOPBAR
═══════════════════════════════════════════ */
#topbar {
  background: var(--red);
  padding: 9px 16px;
  text-align: center;
  position: relative;
  z-index: 200;
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-msg {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 480px) {
  .topbar-msg { font-size: 0.72rem; letter-spacing: 0.08em; }
}
.topbar-tel {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--amber);
  letter-spacing: 0.04em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--fast);
}
.topbar-tel:hover { color: #fff; }

/* ═══════════════════════════════════════════
   NAV — sticky, dark steel
═══════════════════════════════════════════ */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 16px;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 600px) { .nav-row { padding: 0 16px; } }

.nav-logo {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--red-bright); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-site {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--fast);
}
.nav-site:hover { color: var(--white); }
.nav-phone {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--red-bright);
  letter-spacing: 0.02em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--fast);
}
.nav-phone:hover { color: var(--amber); }
@media (max-width: 540px) { .nav-phone { font-size: 1.1rem; } }
@media (max-width: 400px) {
  .nav-site { display: none; }
  .nav-phone { font-size: 1rem; }
}

#theme-btn {
  width: 38px; height: 38px;
  background: none;
  border: 1px solid var(--ink-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: border-color var(--fast), color var(--fast);
  flex-shrink: 0;
}
#theme-btn:hover { border-color: var(--grey); color: var(--white); }

/* ── LOGO IMAGES ── */
.nav-logo-img {
  display: block;
  height: 42px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.6);
  transition: opacity 140ms;
}
.nav-logo-img:hover { opacity: 0.85; }
.foot-logo-img {
  display: block;
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.5);
  margin-bottom: 10px;
}
[data-theme="light"] .nav-logo-img,
[data-theme="light"] .foot-logo-img {
  mix-blend-mode: multiply;
  filter: brightness(0.3);
}

@media (max-width: 480px) {
  .nav-logo-img { height: 34px; }
}

/* ═══════════════════════════════════════════
   HERO — full-bleed photo, hard overlay
═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: clamp(480px, 80vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-truck.jpg');
  background-size: cover;
  background-position: center 55%;
  filter: grayscale(20%) brightness(0.52);
  transition: filter 0.4s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,14,18,0.98) 0%,
    rgba(10,14,18,0.75) 40%,
    rgba(10,14,18,0.25) 75%,
    transparent 100%
  );
}
.hero-redline {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 24px 64px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 600px) {
  .hero-content { padding: 60px 16px 48px; }
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-rule { width: 36px; height: 2px; background: var(--red); flex-shrink: 0; }

.hero-hed { max-width: 840px; margin-bottom: 22px; }
.hero-hed-main { display: block; color: var(--white); }
.hero-hed-red  { display: block; color: var(--red-bright); }

.hero-deck {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--off-white);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.trust-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   URGENCY STRIPE
═══════════════════════════════════════════ */
#urgency {
  background: var(--red);
  padding: 28px 24px;
}
.urgency-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.urgency-head {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 6px;
}
.urgency-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
@media (max-width: 480px) { .urgency-sub { font-size: 0.88rem; } }
.urgency-phone {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--amber);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  transition: color var(--fast);
}
.urgency-phone:hover { color: #fff; }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section       { padding: 88px 0; }
.section-alt   { background: var(--ink-mid); }
.section-dark  { background: var(--ink); }
.section-head  { margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 12px; }

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
}

/* ═══════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border: 1px solid var(--ink-border);
}
.pillar {
  padding: 36px 28px;
  border-right: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  position: relative;
  transition: background var(--mid) var(--ease);
}
.pillar:hover { background: var(--ink-lift); }
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--mid) var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.pillar-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar-body {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.72;
}

@media (max-width: 480px) {
  .pillar { padding: 28px 20px; }
  .pillar-num { font-size: 3rem; }
}

/* ═══════════════════════════════════════════
   STATS ROW
═══════════════════════════════════════════ */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--ink-border);
  border-radius: var(--r1);
  overflow: hidden;
}
.stat {
  flex: 1 1 140px;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--ink-border);
  background: var(--ink-mid);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--red-bright);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
  display: block;
}
@media (max-width: 600px) {
  .stat { border-right: none; border-bottom: 1px solid var(--ink-border); flex: 1 1 45%; }
  .stat:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════
   SERVICES — hard-edged cards
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--ink-border);
  border: 1px solid var(--ink-border);
}
.svc {
  background: var(--ink-mid);
  padding: 32px 26px;
  transition: background var(--mid) var(--ease);
  position: relative;
  overflow: hidden;
}
.svc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--mid) var(--ease);
}
.svc:hover { background: var(--ink-lift); }
.svc:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--ink-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--red-bright);
  border-radius: var(--r1);
}
.svc-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-body { font-size: 0.88rem; color: var(--off-white); line-height: 1.72; }

/* ═══════════════════════════════════════════
   COMPLIANCE SPLIT
═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.body-copy {
  font-size: 0.97rem;
  color: var(--off-white);
  line-height: 1.78;
  margin-bottom: 20px;
}
.checklist { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--off-white);
}
.check-box {
  width: 20px; height: 20px;
  border: 1px solid var(--red);
  border-radius: var(--r0);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-box svg { width: 10px; height: 10px; stroke: var(--red-bright); stroke-width: 2.5; fill: none; }

.callout {
  background: var(--ink-lift);
  border-left: 3px solid var(--red);
  padding: 32px 28px;
}
@media (max-width: 480px) { .callout { padding: 24px 20px; } }
.callout-hed {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.callout-body {
  font-size: 0.88rem;
  color: var(--off-white);
  line-height: 1.72;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════
   QUOTE FORM
═══════════════════════════════════════════ */
#quote { background: var(--ink); }
.form-shell {
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.col-full { grid-column: 1 / -1; }

.fgroup { display: flex; flex-direction: column; gap: 6px; }
.flabel {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 4px;
}
.freq { color: var(--red-bright); line-height: 1; }

.finput {
  background: var(--ink-mid);
  border: 1px solid var(--ink-border);
  border-radius: var(--r1);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.97rem;
  min-height: 48px;
  width: 100%;
  transition: border-color var(--fast);
  -webkit-appearance: none;
}
.finput::placeholder { color: var(--grey-dim); }
.finput:focus { outline: none; border-color: var(--focus); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.finput.err { border-color: var(--red-bright); }

select.finput {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23617D94' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
select.finput option { background: var(--ink-mid); }
textarea.finput { resize: vertical; min-height: 116px; }

.ferr {
  display: none;
  font-size: 0.76rem;
  color: #FF8A80;
  align-items: center;
  gap: 4px;
}
.ferr.show { display: flex; }

.form-foot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
}
.form-note a { color: var(--red-bright); font-weight: 600; }

/* Submit states */
#submit-btn { min-width: 260px; position: relative; }
.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#form-success {
  display: none;
  background: var(--ink-lift);
  border: 1px solid var(--ink-border);
  border-left: 3px solid var(--red);
  padding: 28px 24px;
  text-align: center;
  margin-top: 24px;
}
#form-success.show { display: block; }
.success-hed {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.success-body { font-size: 0.9rem; color: var(--off-white); }
.success-body a { color: var(--red-bright); font-weight: 600; }

/* Toast notification */
#toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink-lift);
  border: 1px solid var(--red);
  padding: 12px 24px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: var(--r1);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 3px solid var(--red);
  padding: 48px 0 40px;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px 48px;
}
.foot-brand {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 8px;
}
.foot-brand span { color: var(--red-bright); }
.foot-addr {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.8;
  font-style: normal;
}
.foot-addr a { color: var(--grey); transition: color var(--fast); }
.foot-addr a:hover { color: var(--white); }
.foot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 560px) { .foot-links { flex-direction: row; flex-wrap: wrap; gap: 16px; } }
.foot-link {
  font-size: 0.84rem;
  color: var(--grey);
  transition: color var(--fast);
}
.foot-link:hover { color: var(--white); }
.foot-copy {
  width: 100%;
  font-size: 0.75rem;
  color: var(--grey-dim);
  padding-top: 24px;
  border-top: 1px solid var(--ink-border);
}

/* ═══════════════════════════════════════════
   STICKY MOBILE CALL BAR
═══════════════════════════════════════════ */
#sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  border-top: 2px solid var(--red-bright);
  z-index: 200;
  /* iPhone safe area */
  padding-bottom: env(safe-area-inset-bottom);
}
#sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: background var(--fast);
}
#sticky a:hover { background: rgba(0,0,0,0.15); }
@media (max-width: 640px) {
  #sticky { display: block; }
  body { padding-bottom: calc(54px + env(safe-area-inset-bottom)); }
}

/* ── STATION TRUST STRIP ── */
.stations-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.station-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 32px;
  text-align: center;
}
.station-ico { color: var(--red-bright); margin-bottom: 2px; }
.station-name {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.station-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.station-tag-new { color: var(--amber); }
.station-divider {
  width: 1px;
  height: 48px;
  background: var(--ink-border);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .station-divider { display: none; }
  .station-item { padding: 12px 20px; }
}

/* SVG icon helper */
.ico {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ico-sm { width: 14px; height: 14px; }
.ico-md { width: 20px; height: 20px; }
.ico-lg { width: 24px; height: 24px; }
.ico-xl { width: 30px; height: 30px; }
