:root {
  --ink: #1e3a2f;
  --paper: #f6f4ee;
  --card: #ffffff;
  --accent: #c8562b;
  --accent-dark: #9c3f1c;
  --muted: #4a5d54;
  --line: #d8d2c4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  padding: 2rem 1rem 4rem;
  max-width: 44rem;
  margin: 0 auto;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: bold;
}

h1 {
  font-size: 2.4rem;
  margin: 0.4rem 0 0.6rem;
  line-height: 1.15;
}

.lede { color: var(--muted); font-size: 1.05rem; max-width: 34rem; }

.routes { margin-top: 2.5rem; }

h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
}

.status { color: var(--muted); font-style: italic; }

.route-list { list-style: none; }

.route-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.7rem;
}

.route-name { font-size: 1.1rem; font-weight: bold; }

.route-length {
  color: var(--accent-dark);
  font-weight: bold;
  white-space: nowrap;
  font-size: 1.05rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 2px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

a:focus-visible, li:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .route-list li { flex-direction: column; gap: 0.15rem; }
}
