:root {
  --ink: #1e2426;
  --muted: #626b6d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ddd8cc;
  --red: #bd493c;
  --green: #556b4d;
  --blue: #245d6b;
  --yellow: #d99b35;
  --shadow: 0 18px 52px rgba(30, 36, 38, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.brand { align-items: center; display: flex; gap: 12px; }
.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.brand small { color: var(--muted); display: block; margin-top: 2px; }
.topbar, .choice-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 68px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.topbar nav, .choice-header nav { display: flex; gap: 20px; color: var(--muted); font-size: 0.95rem; }
.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.lede { color: rgba(255, 255, 255, 0.84); font-size: 1.1rem; line-height: 1.7; max-width: 680px; }

.choice-main { padding: clamp(32px, 7vw, 86px) clamp(18px, 4vw, 68px); }
.choice-hero { max-width: 900px; }
.choice-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.94;
  margin-bottom: 24px;
}
.choice-hero p:last-child { color: var(--muted); font-size: 1.08rem; line-height: 1.7; max-width: 680px; }
.choice-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
}
.choice-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  min-height: 440px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.choice-card::before {
  content: "";
  inset: 0;
  opacity: 0.9;
  position: absolute;
  z-index: -1;
}
.editorial-card::before { background: linear-gradient(145deg, #1e2426, #bd493c 58%, #d99b35); }
.neighborhood-card::before { background: linear-gradient(145deg, #245d6b, #556b4d 60%, #fbfaf6); }
.indexed-card::before { background: linear-gradient(145deg, #ffffff, #d9e3e5 42%, #1e2426); }
.choice-card span { font-weight: 900; opacity: 0.8; text-transform: uppercase; }
.choice-card h2 { font-family: Georgia, "Times New Roman", serif; font-size: 2.35rem; line-height: 1; margin: 12px 0; }
.choice-card p { line-height: 1.65; margin-bottom: 0; max-width: 330px; }

.editorial-hero {
  background: linear-gradient(90deg, rgba(30, 36, 38, 0.9), rgba(30, 36, 38, 0.2)), url("../assets/cafe-hero.svg");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 8vw, 100px) clamp(18px, 4vw, 68px);
}
.editorial-hero > div { align-self: end; padding-bottom: 8vh; }
.editorial-hero h1, .map-hero h1, .index-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  margin-bottom: 22px;
}
.lead-story {
  align-self: end;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 26px;
}
.lead-story span, [data-journal] span { color: var(--red); display: block; font-size: 0.78rem; font-weight: 900; margin-bottom: 10px; text-transform: uppercase; }
.lead-story h2 { font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; line-height: 1.08; }
.lead-story p, .feature-card p, .route-card p, .area-card p, .venue-row p, [data-journal] p { color: var(--muted); line-height: 1.65; }

.content-band, .area-band, .journal-strip, .table-section {
  padding: 70px clamp(18px, 4vw, 68px);
}
.section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}
.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}
.feature-card, .route-card, .area-card, .venue-row {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(30, 36, 38, 0.07);
  overflow: hidden;
}
.feature-card > div:last-child, .route-card > div:last-child { padding: 22px; }
.visual { aspect-ratio: 4 / 3; }
.visual-1 { background: linear-gradient(135deg, var(--green), var(--blue)); }
.visual-2 { background: linear-gradient(135deg, var(--red), var(--yellow)); }
.visual-3 { background: linear-gradient(135deg, var(--blue), var(--ink)); }
.visual-4 { background: linear-gradient(135deg, #f4ead7, var(--green)); }
.pill {
  background: rgba(85, 107, 77, 0.12);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 14px;
  padding: 7px 10px;
}
.feature-card h3, .route-card h3 { font-size: 1.34rem; line-height: 1.2; margin-bottom: 10px; }
.area-band { background: #f0eee8; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.area-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
.area-card { padding: 22px; }
.area-card strong { display: block; font-size: 1.18rem; margin-bottom: 8px; }
.area-card span { color: var(--red); font-weight: 900; }
.journal-strip article {
  background: var(--panel);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
  max-width: 920px;
  padding: clamp(22px, 4vw, 40px);
}
.journal-strip h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.08; }
.footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 68px);
}

.map-hero {
  background: #e8efe9;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  min-height: 650px;
  padding: clamp(42px, 8vw, 100px) clamp(18px, 4vw, 68px);
}
.map-hero .lede, .index-hero .lede { color: var(--muted); }
.route-panel { align-self: center; }
.route-lines {
  align-self: center;
  background:
    linear-gradient(90deg, transparent 49%, rgba(36, 93, 107, 0.28) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(189, 73, 60, 0.22) 50%, transparent 51%),
    #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 430px;
  position: relative;
}
.route-lines span {
  background: var(--red);
  border: 6px solid #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  height: 42px;
  position: absolute;
  width: 42px;
}
.route-lines span:nth-child(1) { left: 18%; top: 22%; }
.route-lines span:nth-child(2) { left: 62%; top: 28%; background: var(--blue); }
.route-lines span:nth-child(3) { left: 38%; top: 58%; background: var(--green); }
.route-lines span:nth-child(4) { left: 76%; top: 70%; background: var(--yellow); }
.route-list { display: grid; gap: 16px; margin-top: 28px; }
.route-card { align-items: center; display: grid; grid-template-columns: 180px minmax(0, 1fr); }
.route-card .visual { aspect-ratio: 1; min-height: 180px; }

.index-hero {
  align-items: end;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) 420px;
  min-height: 560px;
  padding: clamp(42px, 8vw, 100px) clamp(18px, 4vw, 68px);
}
.stats { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); margin: 0; }
.stats div { background: #f1f5f5; border: 1px solid #d5e0e2; border-radius: 8px; padding: 18px; }
.stats dt { font-size: 2.4rem; font-weight: 900; }
.stats dd { color: var(--muted); margin: 0; }
.venue-table { border-top: 1px solid var(--line); margin-top: 26px; }
.venue-row {
  align-items: start;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 2fr;
  padding: 18px 0;
}
.venue-row strong { font-size: 1.05rem; }
.venue-row span { color: var(--muted); }
.venue-row p { margin: 0; }

@media (max-width: 900px) {
  .topbar, .choice-header, .footer { align-items: flex-start; flex-direction: column; }
  .topbar nav, .choice-header nav { flex-wrap: wrap; }
  .choice-grid, .feature-grid, .area-grid, .editorial-hero, .map-hero, .index-hero { grid-template-columns: 1fr; }
  .choice-card { min-height: 320px; }
  .editorial-hero, .map-hero, .index-hero { min-height: auto; }
  .route-card, .venue-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

