:root {
  --fg: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --surface: #f5f7fa;
  --border: #e5e7eb;
  --accent: #2563eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
a { color: var(--accent); }
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 16px;
}
.brand { font-weight: 800; font-size: 1.25rem; color: var(--fg); text-decoration: none; }
.top-cta { text-decoration: none; font-weight: 600; }
main { max-width: 760px; margin: 0 auto; padding: 4px 16px 32px; }
.crumbs { color: var(--muted); }
.crumbs a { color: var(--muted); }
h1 { font-size: 1.8rem; line-height: 1.2; margin: 8px 0 10px; letter-spacing: -0.01em; }
h2 { font-size: 1.2rem; margin: 28px 0 8px; }
.lead { font-size: 1.05rem; }
.route { margin-top: 24px; }
.route h2 { margin: 0; }
.meta { color: var(--muted); margin: 2px 0 10px; }
.route-svg { display: block; width: 100%; height: auto; }
.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--fg);
  font-weight: 600;
  text-decoration: none;
}
.button.primary { background: var(--accent); color: #fff; }
.steps { padding-left: 1.3em; }
.steps li { margin: 4px 0; }
.steps span { color: var(--muted); white-space: nowrap; }
.cta { margin-top: 32px; padding: 18px 20px; background: var(--surface); border-radius: 16px; }
.cta h2 { margin-top: 0; }
.links { padding-left: 1.2em; }
.elsewhere { line-height: 2; }
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 16px; }
.tile { display: flex; flex-direction: column; gap: 6px; color: var(--fg); text-decoration: none; font-weight: 600; }
.cities { columns: 2; padding-left: 1.2em; font-size: 1.1rem; }
footer { max-width: 760px; margin: 0 auto; padding: 20px 16px 40px; color: var(--muted); border-top: 1px solid var(--border); }
footer a { color: var(--muted); }
