:root {
  --paper: #ece8df;
  --paper-dark: #e2ddd2;
  --ink: #141310;
  --muted: #5a564f;
  --rust: #9c3b2e;
  --rust-deep: #7a2e23;
  --road: #2c4a3e;
  --line: rgba(20, 19, 16, 0.16);
  --ticket: #faf8f4;
  --shadow: 0 18px 50px rgba(20, 19, 16, 0.1);
  --radius: 6px;
  --radius-lg: 10px;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: calc(4.5rem + env(safe-area-inset-top, 0));
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding-top: env(safe-area-inset-top, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 4.5rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo {
  display: block;
  width: clamp(9.5rem, 34vw, 17rem);
  max-width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -0.35rem;
}

.nav-toggle-bars::after {
  top: 0.35rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  border: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: #fff;
}

/* Corridor ticker */

.corridor-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #d8d4cb;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: ticker 38s linear infinite;
}

.ticker-track span::after {
  content: "·";
  margin-left: 2.5rem;
  opacity: 0.45;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--rust);
  border-color: var(--rust-deep);
}

.btn-primary:hover {
  background: var(--rust-deep);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper-dark);
  border-color: var(--line);
}

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

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f5f2eb 0%, var(--paper) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0 2rem;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--road);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.35rem);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.lede,
.section-body {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-facts {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
}

.fact-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-value {
  font-weight: 500;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Dispatch ticket */

.dispatch-ticket {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ticket);
  box-shadow: var(--shadow);
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.5rem;
  border-bottom: 1px dashed var(--line);
}

.ticket-head h2 {
  margin: 0.15rem 0 0;
  font-size: 1.55rem;
}

.ticket-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-stamp {
  margin: 0;
  padding: 0.35rem 0.5rem;
  border: 2px solid var(--rust);
  color: var(--rust);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  transform: rotate(-8deg);
}

.ticket-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(156, 59, 46, 0.25);
  border-color: var(--rust);
}

textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-note.success {
  color: var(--road);
  font-weight: 600;
}

/* Route illustration */

.hero-route {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2.5rem;
}

.hero-route svg {
  display: block;
  width: 100%;
  height: 5rem;
}

.route-line {
  fill: none;
  stroke: var(--road);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  opacity: 0.55;
  animation: dash 24s linear infinite;
}

.route-node {
  fill: var(--paper);
  stroke: var(--road);
  stroke-width: 2;
}

.route-node-end {
  fill: var(--rust);
  stroke: var(--rust-deep);
}

@keyframes dash {
  to {
    stroke-dashoffset: -200;
  }
}

/* Proof strip */

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip article {
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  background: #f7f4ed;
}

.proof-strip h2 {
  font-size: 1.15rem;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Sections */

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-intro {
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* Services bento */

.service-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.service-card {
  grid-column: span 4;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f7f4ed;
}

.service-card-feature {
  grid-column: span 8;
  grid-row: span 2;
  padding: 1.75rem;
  background: var(--ink);
  color: #ece8df;
}

.service-card-feature p {
  color: rgba(236, 232, 223, 0.78);
}

.service-card-wide {
  grid-column: span 8;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-aside {
  margin-top: 1.25rem !important;
  font-family: var(--mono);
  font-size: 0.72rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(236, 232, 223, 0.55) !important;
}

/* Process */

.process-section {
  border-top: 1px solid var(--line);
  background: #f7f4ed;
  width: 100%;
  max-width: none;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.process-intro {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.step-index {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--rust);
  padding-top: 0.15rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Accounts */

.accounts-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.ledger-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ledger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.ledger-header code {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--rust);
}

.ledger-rows {
  margin: 0;
  padding: 0.5rem 0;
}

.ledger-rows > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid rgba(20, 19, 16, 0.06);
}

.ledger-rows dt {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ledger-rows dd {
  margin: 0;
  font-weight: 500;
}

.ledger-active dd {
  color: var(--road);
}

/* Track */

.track-section {
  border-top: 1px solid var(--line);
}

.track-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.track-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.track-form input {
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-result {
  margin: 0;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

.track-result.success {
  color: var(--road);
  background: rgba(44, 74, 62, 0.08);
}

/* Coverage */

.coverage-section {
  border-top: 1px solid var(--line);
  background: #f7f4ed;
  width: 100%;
  max-width: none;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.coverage-list {
  display: grid;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
}

.coverage-list li {
  padding-left: 1rem;
  border-left: 2px solid var(--rust);
}

.map-frame-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 22rem;
  box-shadow: var(--shadow);
}

.map-frame {
  display: block;
  width: 100%;
  height: 22rem;
  border: 0;
}

/* FAQ */

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  padding: 1.1rem 1.25rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-family: var(--mono);
  color: var(--muted);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Closing CTA */

.closing-cta {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #ece8df;
}

.closing-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.closing-inner h2 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: rgba(236, 232, 223, 0.72);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 1.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
}

.footer-brand p {
  margin: 0;
  line-height: 1.5;
}

.footer-col h3 {
  margin: 0 0 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 232, 223, 0.5);
}

.footer-col p,
.footer-col a {
  margin: 0;
  font-size: 0.92rem;
}

.footer-social {
  display: grid;
  gap: 0.35rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
}

.footer-col code {
  font-family: var(--mono);
  font-size: 0.85rem;
}

.footer-legal {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2rem;
  font-size: 0.82rem;
  color: rgba(236, 232, 223, 0.45);
}

/* Responsive */

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: calc(4.5rem + env(safe-area-inset-top, 0)) 0 0 0;
    z-index: 25;
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1.25rem max(1rem, env(safe-area-inset-right, 0))
      calc(1.25rem + env(safe-area-inset-bottom, 0))
      max(1rem, env(safe-area-inset-left, 0));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 220ms ease,
      opacity 220ms ease,
      visibility 220ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    color: var(--ink);
  }

  .nav-links a::after {
    display: none;
  }

  .site-nav .header-cta {
    width: 100%;
    min-height: 3rem;
    text-align: center;
    justify-content: center;
  }

  .hero-grid,
  .process-layout,
  .accounts-grid,
  .track-layout,
  .coverage-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .service-card,
  .service-card-feature,
  .service-card-wide {
    grid-column: span 12;
    grid-row: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .map-frame-wrap,
  .map-frame {
    min-height: 16rem;
    height: 16rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(1180px, calc(100% - 1.25rem));
    min-height: 4rem;
  }

  .hero-grid,
  .section,
  .hero-route,
  .closing-inner,
  .footer-inner,
  .footer-legal,
  .process-layout,
  .coverage-grid {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .hero-grid {
    padding-top: 2rem;
    padding-bottom: 1.25rem;
    gap: 1.75rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .process-layout,
  .coverage-grid {
    padding: 2.75rem 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .lede,
  .section-body {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3rem;
  }

  .accounts-copy .btn {
    width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .ticket-form,
  .track-form {
    padding: 1rem;
  }

  .dispatch-ticket {
    scroll-margin-top: 5rem;
  }

  .ledger-rows > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .proof-strip article {
    padding: 1.25rem 1rem;
  }

  .faq-list summary {
    padding: 1rem 1rem;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .faq-list p {
    padding: 0 1rem 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .footer-col a {
    overflow-wrap: anywhere;
  }

  .closing-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .closing-inner .btn {
    width: 100%;
    min-height: 3rem;
  }

  .corridor-ticker {
    font-size: 0.66rem;
  }

  .hero-route {
    padding-bottom: 1.5rem;
  }

  .hero-route svg {
    height: 3.5rem;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 8.5rem;
  }

  .ticket-head {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track,
  .route-line {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}
