/* ============================================================
   bestofmpls
   Scandinavian municipal modernism. A beloved cultural utility for
   Minneapolis — not a lifestyle publication. Civic typography over
   editorial luxury. IBM Plex Sans + Plex Mono. Strong sans, monospace
   numerals, transit-board rhythm. Read DESIGN.md before changing this.
   ============================================================ */

/* Display + body fonts loaded from Google Fonts via <link> in HTML head. */

:root {
  /* Light mode (default). Cool off-paper, near-black, signal red.
     Nordic municipal palette — closer to a transit map than to a magazine.
     Don't push back toward cream + serif unless DESIGN.md changes. */
  --paper:    #F4F2EC;     /* cool paper, slight warmth, not cream */
  --paper-2:  #ECE9E1;     /* card surface */
  --paper-3:  #E0DCD2;
  --ink:      #141414;     /* near-black, neutral undertone */
  --ink-soft: #4A4A48;
  --ink-faint:#878683;
  --rule:     #141414;
  --rule-soft: rgba(20, 20, 20, 0.14);
  --accent:   #C8200F;     /* sign red — flat, matte, civic */
  --clay:     #C8200F;     /* alias so existing rules keep working */
  --forest:   #141414;
  --sage:     #4A4A48;
  --sky:      #4A4A48;

  /* Fonts — civic over editorial.
     Marquee = the compressed grotesk used for page-title display moments
     (cover headline, section titles, big civic signage). Archivo Narrow
     gives us actual signage register, not a tasteful publication header.
     Plex Sans = entry names, secondary headlines, UI face. Plex Mono =
     numerals, times, temperatures, schedules, neighborhood codes.
     Archivo (regular width) stays for labels. Source Sans for long body. */
  /* Signature display: Schibsted Grotesk (Nordic news grotesk) carries every
     headline + the wordmark. Source Sans 3 body, IBM Plex Mono numerals. */
  --font-marquee: 'Schibsted Grotesk', 'Archivo Narrow', 'Helvetica Neue', Helvetica, sans-serif;
  --font-display: 'Schibsted Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-label:   'Schibsted Grotesk', 'Helvetica Neue', Helvetica, sans-serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Helvetica, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --max-w: 1180px;
  --gutter: clamp(28px, 5vw, 56px);

  /* Spacing scale (4px base) + radius — use these, not one-off clamps. */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;
  --sec-y: clamp(40px, 6vw, 88px);
  --radius: 8px;
}

/* Dark mode: warm dark, not cold black. Same accent ratios, inverted base. */
html[data-mode="dark"] {
  /* Dark mode — same Nordic register, inverted. Neutral charcoals, signal red.
     No warm tint anywhere; cold concrete + steel + sodium-vapor accent. */
  --paper:    #0E0E10;
  --paper-2:  #18181B;
  --paper-3:  #24242A;
  --ink:      #F5F4F0;
  --ink-soft: #B8B8B4;
  --ink-faint:#7A7A78;
  --rule:     #F5F4F0;
  --accent:   #FF3825;
  --clay:     #FF3825;
  --forest:   #F5F4F0;
  --sage:     #B8B8B4;
  --sky:      #B8B8B4;
  --rule-soft: rgba(245, 244, 240, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Smooth mode-toggle transition. Applied broadly so every element fades together. */
html.mode-ready,
html.mode-ready body,
html.mode-ready .site-header,
html.mode-ready .primary-nav,
html.mode-ready .cluster,
html.mode-ready .cat-card,
html.mode-ready .entry,
html.mode-ready .festival-entry,
html.mode-ready .calendar-feature,
html.mode-ready .site-footer,
html.mode-ready .mode-toggle {
  transition: background-color 0.32s ease, color 0.32s ease, border-color 0.32s ease;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  /* App feel: never allow sideways page wiggle. clip (not hidden) so no
     phantom horizontal scroll container is created. */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  /* Defensive: prevent any oversized child from forcing horizontal scroll */
  overflow-x: hidden;
}

/* Paper grain. Subtle SVG noise overlay. Gives the cream a "printed" feel.
   Inline data URI so no extra request. Pointer-events none so it doesn't
   intercept clicks. Pinned to viewport so it doesn't scroll with content. */
body::before {
  /* Lightly textured paper. Kept very subtle so it reads as municipal
     poster paper rather than printed magazine. Dropped in dark mode —
     dark mode should feel like clean concrete, not aged paper. */
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.022;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
html[data-mode="dark"] body::before {
  opacity: 0;
}
/* Make sure clickable content sits above the grain */
.site-header, .site-footer, main, section, footer { position: relative; z-index: 2; }

/* Subtle scroll-fade for cards and entries.
   Set base hidden state, animation triggers when .is-in-view added by IO. */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* Arrow links nudge right on hover — a small premium tell. */
.cat-card-arrow, .concierge-more, .see-all, .entry-detail-back, .entry-upcoming-all {
  display: inline-block;
  transition: transform 0.2s ease, color 0.18s ease, border-color 0.18s ease;
}
.cat-card-arrow:hover, .concierge-more:hover, .see-all:hover,
.entry-detail-back:hover, .entry-upcoming-all:hover {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .cat-card:hover { transform: none; }
  .cat-card-arrow:hover, .concierge-more:hover, .see-all:hover,
  .entry-detail-back:hover, .entry-upcoming-all:hover { transform: none; }
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--clay); }
p { margin: 0 0 1em; }

/* ===== Layout primitives ===== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.rule { border: 0; border-top: 1px solid var(--ink); margin: 0; opacity: 0.85; }
.rule-thin { border: 0; border-top: 1px solid var(--ink); margin: 0; opacity: 0.18; }

/* ===== Header ===== */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0 4px;
  gap: 20px;
  flex-wrap: wrap;
}
.masthead-date {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.masthead-tagline {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 18px 0 22px;
}
.logo .dot { color: var(--clay); }
.logo:hover { color: var(--ink); }

/* ===== Primary nav ===== */
.primary-nav {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.primary-nav-inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
}
.primary-nav a {
  flex: 0 0 auto;
  padding: 13px 22px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  border-right: 1px solid rgba(31, 27, 23, 0.15);
}
.primary-nav a:hover {
  background: var(--paper-2);
  color: var(--clay);
}
.primary-nav a.active {
  background: var(--ink);
  color: var(--paper);
  border-right-color: transparent;
}

/* ===== Cover. Calm, plenty of breathing room. ===== */
.cover {
  border-bottom: 1px solid var(--rule-soft);
}
.cover-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule-soft);
}
.cover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
@media (max-width: 720px) {
  .cover-photo { aspect-ratio: 4 / 3; }
}
.cover-wrap {
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(64px, 9vw, 128px);
  max-width: 1080px;
}
.cover-issue {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.cover-headline {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-size: clamp(42px, 11vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  color: var(--ink);
  max-width: 1000px;
  /* Never break a city name mid-word; the clamp min is sized so "Minneapolis"
     fits one line even on a 320px phone. */
  overflow-wrap: normal;
  word-break: keep-all;
  text-transform: uppercase;
}
.cover-deck {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 clamp(40px, 5vw, 64px);
  color: var(--ink-soft);
}
.cover-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cover-cta {
  /* Reset browser-default button chrome so this class works on either an
   * <a> or a <button> without a gray background pill showing up. */
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 0 6px;
  transition: color 0.18s ease, border-color 0.18s ease, padding 0.18s ease;
}
.cover-cta:hover {
  color: var(--clay);
  border-color: var(--clay);
  padding-bottom: 10px;
}
.cover-meta {
  display: flex;
  gap: 8px 24px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex-wrap: wrap;
}

/* ===== Section header =====
   Hard solid rule (not soft) — the page should read like a printed civic
   schedule, with crisp section breaks instead of soft transitions. */
.section-head {
  padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 3.5vw, 40px);
  border-bottom: 2px solid var(--ink);
}
.section-eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 920px;
  text-transform: uppercase;
}
.section-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--clay);
}
.cover-headline em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  color: var(--clay);
}
.section-deck {
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1.3vw, 18px);
  line-height: 1.6;
  max-width: 660px;
  color: var(--ink-soft);
}

/* ===== Homepage clusters. Calm, generous spacing. ===== */
.cluster {
  border-bottom: 1px solid var(--rule-soft);
}
.cluster:last-of-type { border-bottom: 1px solid var(--ink); }
.cluster-head {
  padding: clamp(36px, 4.5vw, 56px) var(--gutter) clamp(20px, 2.5vw, 28px);
  max-width: 1080px;
}
.cluster-eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.cluster-title {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  max-width: 760px;
  text-transform: uppercase;
}
.cluster-deck {
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 640px;
  color: var(--ink-soft);
  margin: 0;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}
.cluster-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) {
  .cluster-grid:not(.cluster-grid--2) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cluster-grid { grid-template-columns: 1fr; }
}

.cat-card {
  display: block;
  padding: clamp(28px, 3.5vw, 44px) var(--gutter);
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.18s ease;
  position: relative;
}
.cluster-grid .cat-card:nth-child(3n) { border-right: 0; }
.cluster-grid--2 .cat-card:nth-child(2n) { border-right: 0; }
.cluster-grid .cat-card:last-child { border-right: 0; }
@media (max-width: 960px) {
  .cluster-grid:not(.cluster-grid--2) .cat-card { border-right: 1px solid var(--rule-soft); }
  .cluster-grid:not(.cluster-grid--2) .cat-card:nth-child(2n) { border-right: 0; }
  .cluster-grid .cat-card:last-child { border-right: 0; }
}
@media (max-width: 600px) {
  .cat-card { border-right: 0 !important; }
}
.cat-card { transform: translateY(0); transition: background 0.18s ease, transform 0.22s ease, box-shadow 0.22s ease; }
.cat-card:hover { background: var(--paper-2); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.07); z-index: 3; }
html[data-mode="dark"] .cat-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.45); }
.cat-card:hover .cat-card-title { color: var(--clay); }
.cat-card-eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.cat-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
  transition: color 0.18s ease;
}
.cat-card-deck {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 16px;
}
.cat-card-arrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-block;
}

/* ===== Category page list ===== */
.entry-list { border-top: 1px solid var(--ink); }
.entry {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px var(--gutter);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.18s ease, border-left-color 0.18s ease, padding-left 0.18s ease;
}
/* Unranked entries (everything except the Editor's Pick) skip the rank column */
.entry--unranked {
  display: block;
  padding: 32px var(--gutter);
  border-bottom: 1px solid var(--rule-soft);
}
.entry:hover { background: var(--paper-2); }
.entry--unranked:hover { border-left: 3px solid var(--clay); padding-left: calc(var(--gutter) - 3px); }
.entry-rank {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  color: var(--clay);
  letter-spacing: -0.02em;
  padding-top: 4px;
}
.entry-body { min-width: 0; max-width: 720px; }
.entry-meta {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.entry-meta-style { color: var(--forest); font-weight: 600; }
.entry-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--ink);
}
.entry-description {
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.entry-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.entry-footer-price { color: var(--clay); font-weight: 600; }
.entry-footer-access {
  display: block;
  flex-basis: 100%;
  margin-top: 6px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.entry-footer-access strong {
  font-style: normal;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 6px;
}

/* Clickable entry-footer items: address (opens Google Maps) and website */
.entry-meta-link {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px dotted var(--ink-faint);
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease, border-bottom-style 0s;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.entry-meta-link:hover {
  color: var(--clay);
  border-color: var(--clay);
  border-bottom-style: solid;
}
.entry-meta-link--website {
  color: var(--clay);
  font-weight: 600;
  border-color: var(--clay);
  border-bottom-style: solid;
}
.entry-meta-link--website:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.entry-meta-link-icon {
  font-size: 0.8em;
  opacity: 0.55;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.entry-meta-link:hover .entry-meta-link-icon {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* Legacy .entry-website alias (used in renderNeighborhoodPage) */
.entry-website {
  color: var(--clay) !important;
  font-weight: 600;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 1px;
}
.entry-website:hover { color: var(--ink) !important; border-color: var(--ink); }

/* Featured entry (top pick). True magazine treatment.
   Wider grid layout, oversized rank as a graphic moment, larger name. */
.entry--featured {
  background: var(--paper-2);
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(40px, 6vw, 80px) calc(var(--gutter) - 3px);
  grid-template-columns: 1fr;
  gap: 32px;
  border-bottom: 2px solid var(--ink);
  border-left: 3px solid var(--clay);
}
.entry--featured .entry-rank {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--clay);
  font-size: clamp(72px, 10vw, 144px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  padding-top: 0;
}
.entry--featured .entry-meta { font-size: 12px; }
.entry--featured .entry-name {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 720px;
}
.entry--featured .entry-description {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  max-width: 700px;
}
.entry--featured .entry-body { max-width: 900px; }
.entry-meta-pick {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay) !important;
  border: 1px solid var(--clay);
  padding: 3px 9px 4px;
  border-radius: 999px;
}
/* Honest paid-placement label on the featured-event banner + landing page.
   Mirrors the entry-meta-pick badge. */
.sponsored-mark {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 2px 8px 3px;
  border-radius: 999px;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .entry { grid-template-columns: 1fr; gap: 8px; padding: 28px var(--gutter); }
  .entry-rank { font-size: 32px; padding-top: 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { border-right: 0; padding: 28px var(--gutter); }
  body { font-size: 16px; }
}

/* ===== Footer =====
   Always dark — uses fixed colors so it doesn't flip white in dark mode,
   which was eye-burningly bright after a long scroll. */
.site-footer {
  background: #0A0A0A;
  color: #F4EEDF;
  padding: 56px 0 32px;
}
.site-footer a { color: #F4EEDF; border-bottom: 1px dotted rgba(244, 238, 223, 0.4); }
.site-footer a:hover { color: var(--clay); border-color: var(--clay); }
html[data-mode="dark"] .site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/* Footer layout — three stacked rows: brand+newsletter, daily nav, cluster grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(244, 238, 223, 0.15);
  align-items: start;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.footer-brand .dot { color: var(--clay); }
.footer-tag {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(244, 238, 223, 0.72);
  max-width: 460px;
  margin: 0;
}

.footer-daily {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid rgba(244, 238, 223, 0.15);
}
.footer-daily-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}
.footer-daily-nav {
  display: flex;
  gap: 8px 22px;
  flex-wrap: wrap;
}
.footer-daily-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  border-bottom: 1px solid transparent !important;
}
.footer-daily-nav a:hover { color: var(--clay); border-bottom-color: var(--clay) !important; }

.footer-clusters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(244, 238, 223, 0.15);
}
.footer-cluster .footer-list-title { color: var(--clay); margin-bottom: 12px; }

.footer-list-title {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--clay);
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.4;
}
.footer-list a { border-bottom: 1px dotted rgba(244, 238, 223, 0.25) !important; }
.footer-list a:hover { border-bottom-color: var(--clay) !important; }

.colophon {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.colophon-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.colophon-links a {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent !important;
}
.colophon-links a:hover { color: var(--clay); border-bottom-color: var(--clay) !important; }
.colophon-meta {
  display: flex;
  gap: 14px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 238, 223, 0.5);
}

@media (max-width: 900px) {
  .footer-clusters { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-clusters { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .colophon { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== Calendar feature on homepage ===== */
.calendar-feature {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.calendar-feature-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  padding: 64px var(--gutter);
}
@media (max-width: 820px) {
  .calendar-feature-inner { grid-template-columns: 1fr; gap: 40px; }
}
.calendar-feature-text .cluster-eyebrow { color: var(--clay); }
.calendar-feature-text .cluster-title { color: var(--paper); }
.calendar-feature-text .cluster-deck { color: rgba(244, 238, 223, 0.78); }
.calendar-feature-text .cat-card-arrow {
  margin-top: 24px;
  color: var(--clay);
}
.calendar-feature-text .cat-card-arrow:hover { color: var(--paper); }

.calendar-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(244, 238, 223, 0.18);
}
@media (max-width: 540px) {
  .calendar-feature-list { grid-template-columns: 1fr; }
}
.calendar-feature-item {
  padding: 22px 24px;
  border-right: 1px solid rgba(244, 238, 223, 0.18);
  border-bottom: 1px solid rgba(244, 238, 223, 0.18);
}
.calendar-feature-item:nth-child(2n) { border-right: 0; }
.calendar-feature-item:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 540px) {
  .calendar-feature-item:nth-child(n) { border-right: 0; border-bottom: 1px solid rgba(244, 238, 223, 0.18); }
  .calendar-feature-item:last-child { border-bottom: 0; }
}
.calendar-feature-month {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.calendar-feature-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.15;
  margin-bottom: 4px;
}
.calendar-feature-style {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(244, 238, 223, 0.65);
}

/* ===== Upcoming-events strip on festivals page ===== */
.upcoming-strip {
  background: var(--clay);
  color: var(--paper);
}
html[data-mode="dark"] .upcoming-strip { color: #1A1714; }
.upcoming-strip-inner {
  padding: 28px var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .upcoming-strip-inner { grid-template-columns: 1fr; gap: 16px; }
}
.upcoming-strip-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.upcoming-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .upcoming-strip-grid { grid-template-columns: 1fr; gap: 14px; }
}
.upcoming-strip-month {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}
.upcoming-strip-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ===== Festivals page (seasonal layout) ===== */
.festival-season {
  border-bottom: 1px solid var(--ink);
}
.festival-season-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--clay);
  margin: 56px 0 12px;
}
.festival-list {
  border-top: 1px solid var(--ink);
}
.festival-entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 32px var(--gutter);
  border-bottom: 1px solid rgba(31, 27, 23, 0.12);
}
.festival-entry:last-child { border-bottom: 0; }
.festival-entry:hover { background: var(--paper-2); }
.festival-when { padding-top: 4px; }
.festival-month {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.festival-style {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.festival-body { max-width: 720px; }
.festival-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
}
.festival-description {
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1.15vw, 17px);
  line-height: 1.65;
  margin: 0 0 10px;
}
.festival-where {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .festival-entry { grid-template-columns: 1fr; gap: 8px; padding: 28px var(--gutter); }
  .festival-when { padding-top: 0; }
}

/* ===== Color theme variants per category ===== */
/* Per-category accent themes intentionally do NOT override --clay anymore.
   Stark Editorial is monochrome with one consistent red accent across the
   whole site for brand cohesion. Old theme classes kept as no-ops in case
   we want them back later. */
body[data-theme="forest"],
body[data-theme="clay"],
body[data-theme="sage"],
body[data-theme="sky"],
body[data-theme="default"] {
  /* keep --clay = the new red from :root */
}

/* ===== About page ===== */
.about-body {
  max-width: 640px;
  padding: 56px 0;
}
.about-body p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--ink);
}
.about-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 0.9;
  float: left;
  padding: 8px 12px 0 0;
  color: var(--clay);
}

/* ===== 404 ===== */
.notfound { text-align: center; padding: 100px 0; }
.notfound-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--clay);
  margin: 0;
}
.notfound-msg {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 32px);
  margin: 14px 0 22px;
}

/* ===== Neighborhood page ===== */
.nb-section { border-bottom: 1px solid var(--ink); }
.nb-section-head {
  padding: 36px var(--gutter) 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}
.nb-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}
@media (max-width: 720px) {
  .nb-list { grid-template-columns: 1fr; }
}
.nb-entry {
  padding: 28px var(--gutter);
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.18s ease;
}
.nb-entry:nth-child(2n) { border-right: 0; }
.nb-entry:hover { background: var(--paper-2); }
.nb-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.nb-entry-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
}
.nb-entry-description {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 12px;
}
@media (max-width: 720px) {
  .nb-entry { border-right: 0 !important; }
}

/* ----- Neighborhood page: Explore by category ----- */
.nb-explore-cats {
  border-top: 1px solid var(--ink);
  padding: 48px 0;
}
.nb-cat-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nb-cat-links li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 6px 12px;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.nb-cat-links li a:hover {
  background: var(--ink);
  color: var(--paper);
}
.nb-cat-count {
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}

/* ===== Now Showing / Exhibitions page ===== */
.exhibition-section {
  border-bottom: 1px solid var(--rule-soft);
}
.exhibition-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--clay);
  margin: clamp(48px, 6vw, 80px) 0 12px;
}
.exhibition-section-note { font-family: var(--font-body); font-size: 14px; color: var(--ink-faint); margin: 0 0 var(--s4); max-width: 56ch; }
.exhibition-section-note a { color: var(--ink-soft); }
.exhibition-list {
  border-top: 1px solid var(--rule-soft);
}
.exhibition {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 32px var(--gutter);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.18s ease;
}
.exhibition:last-child { border-bottom: 0; }
.exhibition:hover { background: var(--paper-2); }
.exhibition-when { padding-top: 4px; }
.exhibition-dates {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.exhibition-venue {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.exhibition-body { max-width: 720px; }
.exhibition-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
}
.exhibition-title a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.exhibition-title a:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}
.exhibition-artist {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.exhibition-subtitle {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-style: normal;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.exhibition-description {
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1.15vw, 17px);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 720px) {
  .exhibition { grid-template-columns: 1fr; gap: 8px; padding: 28px var(--gutter); }
  .exhibition-when { padding-top: 0; }
}

/* ===== Mode toggle (light/dark) ===== */
.mode-toggle {
  appearance: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.mode-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}
.mode-toggle .mode-toggle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
}

.masthead-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Newsletter form (footer) ===== */
.footer-newsletter {
  margin-top: 14px;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(244, 238, 223, 0.4);
  max-width: 380px;
}
.footer-newsletter-form input {
  flex: 1 1 auto;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(244, 238, 223, 0.5); }
.footer-newsletter-form button {
  appearance: none;
  border: 0;
  background: var(--clay);
  color: #1A1714;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 18px;
  cursor: pointer;
  transition: background 0.18s ease;
}
.footer-newsletter-form button:hover { background: var(--paper); }

/* ===== Contribute page ===== */
.contribute-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 24px 0 48px;
}
.contribute-form label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 6px;
}
.contribute-form input,
.contribute-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--rule-soft);
  border-radius: 0;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease;
}
.contribute-form input:focus,
.contribute-form textarea:focus { border-color: var(--clay); }
.contribute-form textarea { min-height: 160px; resize: vertical; }
.contribute-form button {
  appearance: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  justify-self: start;
  transition: background 0.18s ease, color 0.18s ease;
}
.contribute-form button:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: #1A1714;
}

/* ===== Verification banner (newer categories that need community fact-checking) ===== */
.verify-banner {
  background: var(--paper-2);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 18px var(--gutter);
}
.verify-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.verify-banner-inner strong {
  color: var(--ink);
  font-weight: 600;
}
.verify-banner-inner a {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
}
.verify-banner-inner a:hover { color: var(--ink); border-color: var(--ink); }

/* ===== External link callout (used on Dispensaries to point at TCC) ===== */
.external-callout {
  background: var(--ink);
  color: var(--paper);
  padding: 28px var(--gutter);
}
.external-callout-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.external-callout-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 720px;
}
.external-callout-link {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  border: 1px solid var(--clay);
  padding: 12px 20px;
  white-space: nowrap;
}
.external-callout-link:hover {
  background: var(--clay);
  color: #1A1714;
}

/* ===== Safety/notes pill on entries (used sparingly) ===== */
.entry-note {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  background: var(--paper-2);
  border-left: 3px solid var(--clay);
  padding: 8px 12px;
}

/* ===== First-time / Itineraries page ===== */
.plan-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.plan-nav-link {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.plan-nav-link:hover {
  background: var(--ink);
  color: var(--paper);
}
.basics {
  background: var(--paper-2);
  border-bottom: 1px solid var(--ink);
}
.basics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 56px;
  padding: 48px var(--gutter);
}
@media (max-width: 720px) {
  .basics-grid { grid-template-columns: 1fr; gap: 24px; padding: 32px var(--gutter); }
}
.basic-block-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.basic-block-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.plan {
  border-bottom: 1px solid var(--ink);
}
.plan-head {
  padding: 56px var(--gutter) 24px;
}
.plan-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.plan-stops {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}
.plan-stop {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 28px var(--gutter);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.18s ease;
}
.plan-stop:hover { background: var(--paper-2); }
.plan-stop-time {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  padding-top: 4px;
}
.plan-stop-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0 0 10px;
}
.plan-stop-body-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.plan-stop-link {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 1px;
}
.plan-stop-link:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 720px) {
  .plan-stop { grid-template-columns: 1fr; gap: 6px; }
  .plan-stop-time { padding-top: 0; }
}

/* ===== Slang glossary ===== */
.slang-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 24px 0 56px;
}
@media (max-width: 720px) {
  .slang-list { grid-template-columns: 1fr; }
}
.slang-entry {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft);
  padding-right: 32px;
}
.slang-entry:nth-child(2n) { padding-right: 0; padding-left: 32px; }
@media (max-width: 720px) {
  .slang-entry { padding-right: 0; padding-left: 0 !important; }
}
.slang-term {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
  color: var(--clay);
}
.slang-def {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ===== Search ===== */
.search-wrap {
  padding: 32px var(--gutter) 64px;
  max-width: 800px;
}
.search-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink);
  outline: none;
  letter-spacing: -0.015em;
  transition: border-color 0.18s ease;
}
.search-input::placeholder { color: var(--ink-faint); }
.search-input:focus { border-color: var(--clay); }
.search-results {
  margin-top: 32px;
  display: grid;
  gap: 4px;
}
.search-empty {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--ink-soft);
  margin-top: 24px;
}
.search-result {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.15s ease, padding 0.15s ease;
}
.search-result:hover { background: var(--paper-2); padding: 18px 14px; }
.search-result-meta {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}
.search-result-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--ink);
}
.search-result-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Primary nav: 5 items + a Menu trigger ===== */
.nav-menu-trigger {
  appearance: none;
  background: var(--ink);
  border: 0;
  color: var(--paper);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease;
}
.nav-menu-trigger:hover { background: var(--clay); }

/* ===== Menu overlay (full-screen table of contents) =====
 * Hardcoded bg + very high z-index. Earlier version used var(--paper)
 * which made the overlay match the page bg in dark mode but could be
 * thwarted if a parent established its own stacking context. The overlay
 * now lives as a sibling of <header>, which prevents the prior bleed.
 */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--paper);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  overflow-y: auto;
}
html[data-mode="dark"] .nav-overlay { background: #0A0A0A; }
html:not([data-mode="dark"]) .nav-overlay { background: #FFFFFF; }
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-overlay-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px var(--gutter) 64px;
}
.nav-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 36px;
}
.nav-overlay-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-overlay-logo .dot { color: var(--clay); }
.nav-overlay-close {
  appearance: none;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-overlay-close:hover { background: var(--ink); color: var(--paper); }
.nav-overlay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px 48px;
}
.nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-group-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.nav-group-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.nav-group-list a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
  transition: padding-left 0.12s ease;
}
.nav-group-list a:hover {
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(225,25,0,0.04), transparent);
}
.nav-group-list a:hover .nav-item-label { color: var(--clay); }
.nav-item-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 2px;
}
.nav-item-deck {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.3;
}
.nav-overlay-foot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-overlay-foot a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.nav-overlay-foot a:hover { color: var(--clay); border-bottom-color: var(--clay); }

@media (max-width: 720px) {
  .primary-nav-inner { gap: 8px; flex-wrap: nowrap; overflow-x: auto; }
  .primary-nav-inner a {
    border-right: 0 !important;
    padding: 14px 12px;
    flex-shrink: 0;
  }
  .nav-menu-trigger { flex-shrink: 0; padding: 7px 12px; font-size: 10.5px; }
  .nav-overlay-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-overlay-inner { padding: 20px var(--gutter) 64px; }
}

/* ===== Live calendar (scraped events) ===== */
.cal-controls {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 16px 0;
}
.cal-controls-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cal-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cal-filter-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 4px;
}
.cal-chip {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.12s ease;
}
.cal-chip:hover { border-color: var(--ink); }
.cal-chip.is-on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cal-chip-all.is-on {
  background: var(--clay);
  border-color: var(--clay);
}
.cal-stream { padding: 32px 0 80px; }
.cal-day { margin-bottom: 32px; }
.cal-day-header {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
  margin-bottom: 0;
}
.cal-day-date {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.01em;
  margin: 0;
  padding: 16px 0 4px;
}
.cal-day-list { border-top: 1px solid var(--rule); }
.cal-event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--rule-soft);
  max-width: var(--max-w);
  margin: 0 auto;
}
.cal-event-time {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding-top: 4px;
}
.cal-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.cal-event-cat {
  background: var(--clay);
  color: var(--paper);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 700;
}
.cal-event-venue { color: var(--ink); font-weight: 600; }
.cal-event-neigh::before { content: "· "; color: var(--ink-faint); }
.cal-event-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.25;
  margin: 0 0 6px;
}
.cal-event-title a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.cal-event-title a:hover {
  border-bottom-color: var(--clay);
  color: var(--clay);
}
.cal-event-sub {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 600px) {
  .cal-event {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px var(--gutter);
  }
  .cal-event-time { padding-top: 0; }
}

/* ===== Live events feature on homepage ===== */
.live-feature {
  background: #0F1115;
  color: #FFFFFF;
  padding: var(--sec-y) 0;
}
.live-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.live-feature-text .cluster-eyebrow { color: var(--clay); }
.live-feature-text .cluster-title { color: var(--paper); }
.live-feature-text .cluster-deck { color: rgba(255,255,255,0.78); }
.live-feature-text .cat-card-arrow { color: var(--clay); }
.live-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.live-feature-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.live-feature-day {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  padding-top: 4px;
}
.live-feature-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 4px;
}
.live-feature-name a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.live-feature-name a:hover { border-bottom-color: var(--clay); color: var(--clay); }
.live-feature-meta {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .live-feature-inner { grid-template-columns: 1fr; gap: 32px; }
  .live-feature-item { grid-template-columns: 90px 1fr; gap: 14px; }
}

/* ===== Horoscope page ===== */
.horoscope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding: 48px var(--gutter) 96px;
}
.horoscope-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: 4px;
  transition: border-color 0.12s ease;
}
.horoscope-card:hover { border-color: var(--ink); }
.horoscope-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.horoscope-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.horoscope-symbol svg {
  width: 100%;
  height: 100%;
}
.horoscope-sign {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1;
}
.horoscope-dates {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.horoscope-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ===== Horoscope feature on homepage ===== */
.horoscope-feature {
  padding: var(--sec-y) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.horoscope-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.horoscope-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.horoscope-feature-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.12s ease, transform 0.12s ease;
}
.horoscope-feature-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.horoscope-feature-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}
.horoscope-feature-symbol svg { width: 100%; height: 100%; }
.horoscope-feature-sign {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.horoscope-feature-snippet {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 12px 0 0;
}
@media (max-width: 720px) {
  .horoscope-feature-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Tools index on homepage =====
   Replaces the previous tools-strip card grid. Now a single tall
   transit-board index: each tool is a row with a station-style letter
   code, name, short status, and an arrow. Reads as the front index of
   a printed civic guide, not a SaaS launcher. */
.tools-index {
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 0;
}
.tools-index .wrap { padding-top: 18px; padding-bottom: 0; }
.tools-index-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.tools-index-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--clay);
}
.tools-index-stamp {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}
.tools-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tools-index-row {
  border-bottom: 1px solid var(--rule-soft);
}
.tools-index-row:last-child { border-bottom: none; padding-bottom: 12px; }
.tools-index-row a {
  display: grid;
  grid-template-columns: 56px 1.1fr 2fr 24px;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.12s ease;
}
.tools-index-row a:hover {
  background: var(--paper-2);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}
.tix-code {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--clay);
  border: 1.5px solid var(--clay);
  padding: 4px 0;
  min-width: 36px;
  text-align: center;
  text-transform: uppercase;
}
.tix-name {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.tix-deck {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.tix-arrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-faint);
  text-align: right;
  transition: color 0.12s ease, transform 0.12s ease;
}
.tools-index-row a:hover .tix-arrow {
  color: var(--clay);
  transform: translateX(4px);
}
@media (max-width: 720px) {
  .tools-index-row a {
    grid-template-columns: 44px 1fr 22px;
    grid-template-rows: auto auto;
    gap: 4px 12px;
  }
  .tix-code { grid-row: 1 / 3; align-self: center; }
  .tix-name { grid-column: 2; }
  .tix-deck { grid-column: 2; }
  .tix-arrow { grid-column: 3; grid-row: 1 / 3; align-self: center; }
}
html[data-mode="dark"] .tools-index-row a:hover { background: var(--paper-2); }

/* ===== Today feature on homepage ===== */
.today-feature {
  background: #0F1115;
  color: var(--paper);
  padding: var(--sec-y) 0;
}
.today-feature-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.today-feature .cluster-eyebrow { color: var(--clay); }
.today-feature-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  color: var(--paper);
}
.today-feature-body-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px;
}
.today-feature .cat-card-arrow { color: var(--clay); }
@media (max-width: 720px) {
  .today-feature-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Today page ===== */
.today-page {
  background: #0F1115;
  color: var(--paper);
  padding: var(--sec-y) 0 calc(var(--sec-y) + 32px);
  min-height: calc(100vh - 200px);
}
.today-essay {
  max-width: 720px;
  margin: 0 auto;
}
.today-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.today-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 32px;
}
.today-body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  margin: 0;
}
.today-body::first-letter {
  font-style: normal;
  font-weight: 900;
  font-size: 1.4em;
  color: var(--clay);
}
.today-foot {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.today-foot a { color: var(--clay); border-bottom: 1px solid var(--clay); text-decoration: none; }

/* ===== The Map ===== */
.map-controls {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  padding: 14px 0;
}
.map-controls-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.map-controls-inner .cal-chip[data-cluster].is-on:not(.cal-chip-all) {
  background: var(--chip-color, var(--ink));
  border-color: var(--chip-color, var(--ink));
  color: var(--paper);
}
.bom-map {
  height: 70vh;
  min-height: 520px;
  width: 100%;
  border-bottom: 1px solid var(--rule);
}
.bom-marker span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.bom-popup { font-family: var(--font-body); min-width: 180px; }
.bom-popup-cat {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bom-popup-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.bom-popup-name a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--clay); }
.bom-popup-name a:hover { color: var(--clay); }
.bom-popup-neigh {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
}

/* ===== Departed page ===== */
.departed-list {
  padding: 48px var(--gutter) 96px;
  max-width: 880px;
}
.departed-entry {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.departed-when {
  font-family: var(--font-label);
}
.departed-closed {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--clay);
  margin-bottom: 4px;
}
.departed-opened {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.departed-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--ink);
}
.departed-meta {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.departed-epitaph {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-style: normal;
}
@media (max-width: 600px) {
  .departed-entry { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== Take Them To / Situations ===== */
.situations-list {
  padding: 48px var(--gutter) 96px;
  display: grid;
  gap: 64px;
}
.situation {
  border-top: 4px solid var(--ink);
  padding-top: 24px;
}
.situation-head { margin-bottom: 28px; max-width: 720px; }
.situation-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--ink);
}
.situation-deck {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.situation-picks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  counter-reset: pick;
}
.situation-pick {
  position: relative;
  padding: 22px 22px 22px 60px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  counter-increment: pick;
}
.situation-pick::before {
  content: counter(pick);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.situation-pick-kind {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}
.situation-pick-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2px;
}
.situation-pick-where {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.situation-pick-why {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Surprise me ===== */
.surprise-page {
  padding: var(--sec-y) 0 calc(var(--sec-y) + 32px);
  min-height: 60vh;
}
.surprise-inner {
  max-width: 640px;
  text-align: center;
}
.surprise-card {
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 48px 36px;
  margin: 24px 0;
  text-align: left;
}
.surprise-cat {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.surprise-name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.surprise-name a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--clay); }
.surprise-name a:hover { color: var(--clay); }
.surprise-where {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.surprise-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.surprise-addr {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.surprise-addr a {
  color: var(--ink-faint);
  border-bottom: 1px dotted var(--ink-faint);
  text-decoration: none;
}
.surprise-addr a:hover { color: var(--clay); border-bottom-color: var(--clay); }
.surprise-button { display: inline-block; margin-top: 12px; cursor: pointer; border: none; }

/* ===== Right Now panel on homepage =====
   Civic data board. Taller, harder rules, tabular-mono values. Reads as
   a piece of public information infrastructure rather than a content card. */
.rightnow-strip {
  background: #0E0E10;
  color: #F5F4F0;
  padding: 28px 0 30px;
  border-top: 3px solid var(--clay);
  border-bottom: 1px solid rgba(245, 244, 240, 0.10);
  position: relative;
}
.rightnow-strip::before {
  /* Hairline "live" indicator that reads as a transit-board status bar. */
  content: 'LIVE · UPDATED HOURLY';
  position: absolute;
  top: 8px;
  left: var(--gutter);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--clay);
}
.rightnow-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 18px 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245, 244, 240, 0.10);
}
.rightnow-badge {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(245, 244, 240, 0.86);
  padding: 4px 9px;
  border: 1px solid rgba(245, 244, 240, 0.24);
  text-transform: uppercase;
  white-space: nowrap;
}
.rightnow-badge:first-child {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--paper);
}
.rightnow-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: 0;
}
.rightnow-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid rgba(245, 244, 240, 0.16);
  padding: 0 22px;
}
.rightnow-item:first-child { border-left: none; padding-left: 0; }
.rightnow-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.55);
}
.rightnow-value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.rightnow-value-event {
  font-family: var(--font-marquee);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
/* Signature numeral. Plex Mono tabular figures, station-clock register.
   Sits on the right-now strip like a public-information display reading. */
.rightnow-item--temp { gap: 2px; }
.rightnow-temp {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.rightnow-temp-num {
  font-size: clamp(52px, 6.5vw, 80px);
}
.rightnow-temp-unit {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--clay);
  margin-left: 2px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .rightnow-temp-num { font-size: 60px; }
}
.rightnow-link {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a.rightnow-link:hover { color: var(--clay); border-bottom-color: var(--clay); }
@media (max-width: 900px) {
  .rightnow-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 24px; }
  .rightnow-item:nth-child(odd) { border-left: none; padding-left: 0; }
}

/* Optional: subtle data-mood treatments on the cover for live signals.
   Patio days warm the issue line; brutal cold cools it; rain darkens slightly. */
.cover[data-mood="patio"] .cover-issue { color: #FFB347; }
.cover[data-mood="brutal"] .cover-issue { color: #9CC2FF; }
.cover[data-mood="rain"] .cover-issue { color: #B8C4D0; }
.cover[data-mood="snow"] .cover-issue { color: #D8E6F2; }

/* ===== /tonight/ page ===== */
.tonight-hero {
  background: #0F1115;
  color: var(--paper);
  padding: 72px 0 56px;
}
.tonight-hero-inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.tonight-hero-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
}
.tonight-hero-headline {
  font-family: var(--font-marquee);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.tonight-hero-headline em { color: var(--clay); font-style: normal; }
/* Marquee numeral — the giant temperature display. Plex Mono, station-
   clock energy. Tabular figures so a 99°F and a 12°F sit on the same
   baseline. This is the site's signature typographic move — civic, not
   editorial. */
.tonight-hero-marquee {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin: 0 0 36px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245, 244, 240, 0.18);
}
.tonight-hero-temp {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.tonight-hero-temp-num { font-size: clamp(96px, 15vw, 176px); }
.tonight-hero-temp-unit {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--clay);
  margin-left: 4px;
  font-weight: 500;
  letter-spacing: 0;
}
.tonight-hero-condition {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(245, 244, 240, 0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 14px;
}
.tonight-hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.tonight-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tonight-meta-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.tonight-meta-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--paper);
}
.tonight-pick-section {
  padding: 64px var(--gutter) 32px;
  max-width: 880px;
}
.tonight-pick {
  border: 1px solid var(--rule);
  border-left: 6px solid var(--clay);
  padding: 32px 36px;
  border-radius: 4px;
}
.tonight-pick-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.tonight-pick-name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.tonight-pick-where {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.tonight-pick-why {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.tonight-others {
  padding: 32px var(--gutter) 32px;
  max-width: 880px;
}
.tonight-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.tonight-week-day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin: 28px 0 12px;
  color: var(--ink-soft);
}
.tonight-others-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.tonight-other {
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}
.tonight-other-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}
.tonight-other-where {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.tonight-other-why {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.tonight-countdowns {
  padding: 32px var(--gutter) 96px;
  max-width: 880px;
}
.countdowns-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.countdown {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}
.countdown:first-child { border-top: none; }
.countdown {
  grid-template-columns: 130px 1fr;
}
.countdown-days {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.countdown-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--clay);
}
.countdown-unit {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.countdown-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
}
.countdown-blurb {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* ===== Open Now status pips + bar ===== */
.entry-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-left: 8px;
}
.entry-status:empty { display: none; }
.status-pip {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-faint);
}
.status-pip.is-open { background: #2E9E4A; box-shadow: 0 0 0 3px rgba(46,158,74,0.18); }
.status-pip.is-closed { background: #C44; }
.entry.is-open-now .entry-status { color: #2E9E4A; }
.entry.is-open-now {
  border-left-color: rgba(46,158,74,0.4);
}

.opennow-bar {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  background: var(--paper);
}
.opennow-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.opennow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2E9E4A;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(46,158,74,0.22);
}
.opennow-note {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-left: auto;
}
.cal-chip-opennow.is-on { background: #2E9E4A; border-color: #2E9E4A; color: var(--paper); }
.cal-chip-opennow.is-on .opennow-dot { background: var(--paper); box-shadow: none; }


/* ===== /near/ — geolocation walking radius ===== */
.near-controls {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  background: var(--paper);
}
.near-controls-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.near-radius-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.near-results {
  padding: 32px var(--gutter) 96px;
}
.near-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.near-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  align-items: start;
}
.near-dist {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--clay);
  line-height: 1;
  padding-top: 4px;
}
.near-cat {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.near-name {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-bottom: 4px;
}
.near-name:hover { color: var(--clay); border-bottom-color: var(--clay); }
.near-neigh {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.near-status {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.near-empty {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 18px;
  color: var(--ink-soft);
  padding: 32px 0;
}

/* ===== /quiz/ ===== */
.quiz-page {
  padding: 32px var(--gutter) 96px;
  max-width: 720px;
}
.quiz-form { display: grid; gap: 36px; }
.quiz-q {
  border: none;
  margin: 0;
  padding: 0;
}
.quiz-q-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.quiz-q-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.12s ease;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}
.quiz-opt:hover { border-color: var(--ink); }
.quiz-opt input { margin: 0; }
.quiz-opt:has(input:checked) {
  border-color: var(--clay);
  background: rgba(225, 25, 0, 0.04);
}
.quiz-submit {
  margin-top: 16px;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-label);
}
.quiz-result {
  margin-top: 64px;
}
.quiz-result:empty { display: none; }
.quiz-winner {
  border-top: 4px solid var(--clay);
  padding: 32px 0;
}
.quiz-winner-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.quiz-winner-name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.05;
}
.quiz-winner-deck {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.quiz-winner-picks {
  margin-top: 24px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.quiz-picks-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.quiz-winner-picks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quiz-winner-picks li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 8px 0;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink);
}
.quiz-winner-picks li:first-child { border-top: none; }
.quiz-runnerup {
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed var(--rule);
  border-radius: 4px;
}
.quiz-runnerup-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.quiz-runnerup a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
}

/* ===== /skyway/ ===== */
.skyway-controls {
  background: #0F1115;
  color: var(--paper);
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.skyway-controls-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}
.skyway-route {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skyway-route label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.skyway-route select {
  appearance: none;
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
}
.skyway-route .cover-cta {
  margin-top: 8px;
  background: var(--clay);
  color: var(--paper);
  border: none;
  cursor: pointer;
}
.skyway-result {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.92);
}
.skyway-result:empty::before {
  content: 'Pick a starting building and a destination, then "Show route." We will draw it on the map and walk you through it stop by stop.';
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  display: block;
}
.sk-route-summary {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.sk-route-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: skstep;
}
.sk-route-list li {
  counter-increment: skstep;
  padding: 14px 0 14px 44px;
  border-top: 1px solid rgba(255,255,255,0.18);
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--paper);
}
.sk-route-list li:first-child { border-top: none; }
.sk-route-list li::before {
  content: counter(skstep);
  position: absolute;
  left: 0;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--font-label);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sk-step-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.sk-marker span {
  display: block;
  width: 12px;
  height: 12px;
  background: #FF3825;
  border: 2px solid #0E0E10;
  box-shadow: 0 0 0 1px rgba(255,56,37,0.6);
}
.sk-marker-saintpaul span {
  background: #FFB400;
  box-shadow: 0 0 0 1px rgba(255,180,0,0.6);
}
/* City toggle chips above the routing controls. */
.skyway-toggle {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.skyway-chip {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.skyway-chip:hover { border-color: #FFFFFF; }
.skyway-chip.is-on {
  background: #FFFFFF;
  color: #0E0E10;
  border-color: #FFFFFF;
}
/* Popup typography on the dark Leaflet base. */
.leaflet-popup-content .sk-pop {
  font-family: var(--font-body);
}
.sk-pop-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 4px;
}
.sk-pop b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: block;
}
.sk-pop-neigh {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 2px 0 6px;
}
.sk-pop-note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}
.skyway-tips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.skyway-tips li {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  padding: 18px 22px;
  border-left: 4px solid var(--clay);
  background: var(--paper);
}
@media (max-width: 700px) {
  .skyway-controls-inner { grid-template-columns: 1fr; }
}

/* ===== /history/ — On This Day ===== */
.hist-today {
  padding: 48px var(--gutter) 32px;
  max-width: 880px;
}
.hist-today-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clay);
}
.hist-empty {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 18px;
  color: var(--ink-soft);
}
.hist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hist-list-today .hist-entry { background: rgba(225, 25, 0, 0.04); }
.hist-entry {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--rule-soft);
}
.hist-entry:first-child { border-top: none; }
.hist-entry-date {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--clay);
  line-height: 1.1;
  padding-top: 4px;
}
.hist-entry-year {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.hist-ago { color: var(--ink-faint); font-weight: 500; }
.hist-entry-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--ink);
}
.hist-kind {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  vertical-align: middle;
  margin-right: 6px;
}
.hist-kind-opened { background: #2E9E4A; }
.hist-kind-closed { background: #C44; }
.hist-kind-born   { background: #1E5AAA; }
.hist-kind-died   { background: #555; }
.hist-kind-first  { background: #B8860B; }
.hist-kind-event  { background: #7B2CBF; }
.hist-kind-show   { background: #E11900; }
.hist-kind-release { background: #B86A00; }
.hist-entry-blurb {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.hist-rest {
  background: var(--paper);
  padding: 32px 0 96px;
  border-top: 1px solid var(--rule);
}
.hist-rest-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 24px 0;
}
.hist-month { padding: 32px var(--gutter); max-width: 880px; }
.hist-month-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 600px) {
  .hist-entry { grid-template-columns: 1fr; gap: 6px; }
}

/* ===== /mystery/ — sealed envelope itineraries ===== */
.mystery-grid {
  padding: 48px var(--gutter) 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.mystery-card {
  display: block;
  padding: 28px 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  background: var(--paper);
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
}
.mystery-card::before {
  content: "✉";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  color: var(--clay);
  opacity: 0.55;
}
.mystery-card:hover {
  border-color: var(--clay);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}
.mystery-card-tier {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.mystery-card-label {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 18px;
}
.mystery-card-cta {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.mystery-reveal {
  padding: 48px var(--gutter) 96px;
  max-width: 720px;
}
.mystery-back { margin-bottom: 18px; }
.mystery-back a {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
}
.mystery-titleblock { margin-bottom: 32px; }
.mystery-tier {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.mystery-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.mystery-instructions {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mystery-versions {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  padding: 3px 10px;
  border: 1px solid var(--clay);
  border-radius: 999px;
}
.mystery-reroll {
  appearance: none;
  background: transparent;
  border: 1.5px solid var(--clay);
  color: var(--clay);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 32px;
  transition: all 0.15s ease;
}
.mystery-reroll:hover {
  background: var(--clay);
  color: var(--paper);
}
.mystery-stops { list-style: none; padding: 0; margin: 0; counter-reset: ms; }
.mystery-stop {
  margin-bottom: 16px;
}
.mystery-stop-btn {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border: 1px dashed var(--rule);
  border-radius: 4px;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}
.mystery-stop-btn:hover {
  border-color: var(--clay);
  border-style: solid;
}
.mystery-stop-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.mystery-stop-kind {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  flex: 1;
}
.mystery-stop-cta {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.mystery-stop.is-revealed .mystery-stop-content {
  border-left: 4px solid var(--clay);
  background: var(--paper);
  padding: 22px 24px;
  border-radius: 0 4px 4px 0;
  animation: fadein 0.3s ease;
}
.mystery-stop-kind-revealed {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.mystery-stop-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Force-light overrides for hardcoded-dark sections =====
 * These sections always have a dark background, regardless of the user's
 * light/dark mode preference. In dark mode --paper flips to black, which
 * would render text invisibly. Override the CSS variables locally so any
 * nested var(--paper) / var(--ink) renders white-on-dark, not black-on-dark.
 */
.tonight-hero,
.today-feature,
.today-page,
.live-feature,
.skyway-controls,
.rightnow-strip {
  --paper: #FFFFFF;
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, 0.78);
  --ink-faint: rgba(255, 255, 255, 0.55);
  --rule: rgba(255, 255, 255, 0.18);
  --rule-soft: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}
/* The /tonight/ countdowns are not in a hardcoded-dark wrapper but inherit
 * from the page theme, so they need light-on-dark in dark mode. Use the
 * default variables, which already do the right thing — but ensure the
 * day numbers stay clay regardless. */
html[data-mode="dark"] .countdown-name { color: #FFFFFF; }

/* ===== Reader poll form (per category page) ===== */
.poll-section {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 64px 0;
}
.poll-inner {
  max-width: 720px;
  padding: 0 var(--gutter);
}
.poll-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.poll-headline {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.poll-deck {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 560px;
}
.poll-form {
  display: grid;
  gap: 18px;
}
.poll-row {
  display: grid;
  gap: 6px;
}
.poll-row label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.poll-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: var(--ink-faint);
  font-style: normal;
}
.poll-row input,
.poll-row textarea {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  width: 100%;
  font-style: normal;
}
.poll-row input:focus,
.poll-row textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(225, 25, 0, 0.12);
}
.poll-row textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
/* Honeypot — visually hidden but technically present so bots fill it. */
.poll-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.poll-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.poll-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.poll-status {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.poll-thanks {
  border: 1px solid var(--clay);
  border-left-width: 5px;
  padding: 24px 28px;
  border-radius: 4px;
  background: rgba(225, 25, 0, 0.03);
}
.poll-thanks-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.poll-thanks-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.poll-thanks-again {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  cursor: pointer;
}
.poll-thanks-again:hover { color: var(--ink); border-bottom-color: var(--ink); }
.poll-disabled {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 18px 22px;
  border: 1px dashed var(--rule);
  border-radius: 4px;
}
.poll-disabled a {
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  text-decoration: none;
}

/* ===== Per-entry detail pages ===== */
.breadcrumb {
  padding: 18px var(--gutter) 0;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--ink-faint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover { color: var(--clay); border-bottom-color: var(--clay); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.entry-detail {
  padding: 32px var(--gutter) 96px;
  max-width: 880px;
}
.entry-detail-head {
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 32px;
}
.entry-detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.entry-detail-eyebrow .entry-detail-style {
  color: var(--clay);
}
.entry-detail-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.entry-detail-body {
  margin-bottom: 36px;
}
.entry-detail-description {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

.entry-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  margin-bottom: 36px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.entry-detail-address,
.entry-detail-website {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dotted var(--ink-faint);
  display: inline-block;
  word-break: break-word;
}
.entry-detail-address:hover,
.entry-detail-website:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}
.entry-detail-price {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.entry-detail-access {
  margin-top: 4px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.entry-detail-access strong {
  font-style: normal;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 6px;
}

.entry-detail-map {
  height: 320px;
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 4px;
  margin-bottom: 36px;
}

.entry-detail-related {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.entry-detail-related-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.entry-detail-related-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.entry-detail-related-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.12s ease, transform 0.12s ease;
}
.entry-detail-related-list a:hover {
  border-color: var(--clay);
  transform: translateY(-1px);
}
.entry-detail-related-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}
.entry-detail-related-list a:hover .entry-detail-related-name { color: var(--clay); }
.entry-detail-related-neigh {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.entry-detail-back {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
}
.entry-detail-back:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Upcoming shows block on live-music / theater entry pages */
.entry-upcoming-shows {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}
.entry-upcoming-title {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.entry-upcoming-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.entry-upcoming-show {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 8px 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}
.entry-upcoming-show:first-child { border-top: 1px solid var(--rule); }
@media (max-width: 600px) {
  .entry-upcoming-show { grid-template-columns: 1fr auto; }
  .entry-upcoming-when { grid-column: 1 / -1; }
}
.entry-upcoming-when {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.entry-upcoming-what {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.entry-upcoming-what a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.entry-upcoming-what a:hover { color: var(--clay); border-color: var(--clay); }
.entry-upcoming-price {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.entry-upcoming-all {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
}
.entry-upcoming-all:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* "Read full entry →" link on category cards */
.entry-readmore {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.entry-readmore:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
/* The entry-name H2 link should not add underline/color */
.entry-name a {
  color: inherit;
  text-decoration: none;
}
.entry-name a:hover { color: var(--clay); }

/* ===== Featured-event banner (homepage) ===== */
.feature-banner {
  background: #0A0A0A;
  color: #F4EEDF;
  padding: 0;
  border-bottom: 1px solid #0A0A0A;
}
html[data-mode="dark"] .feature-banner {
  background: #141414;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.feature-banner-inner {
  display: block;
  padding: 28px var(--gutter) 30px;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: background 0.18s ease;
}
.feature-banner-inner:hover { background: rgba(225, 25, 0, 0.10); }
.feature-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3b6a8;
  margin: 0 0 8px;
}
.feature-banner-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(225, 25, 0, 0.7);
  animation: feature-pulse 1.8s cubic-bezier(0.66, 0, 0, 1) infinite;
}
@keyframes feature-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(225, 25, 0, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(225, 25, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 25, 0, 0); }
}
.feature-banner-title {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.feature-banner-deck {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.5;
  max-width: 720px;
  color: rgba(248, 244, 235, 0.85);
  margin: 0 0 14px;
}
.feature-banner-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 244, 235, 0.7);
}
.feature-banner-cta {
  color: #ffc7ba;
  font-weight: 700;
}
.feature-banner-inner:hover .feature-banner-cta { color: var(--paper); }

/* ===== Featured-event landing page ===== */
.event-hero {
  background: #0A0A0A;
  color: #F4EEDF;
  padding: 56px 0 48px;
  border-bottom: 1px solid #0A0A0A;
}
html[data-mode="dark"] .event-hero {
  background: #141414;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.event-hero-inner { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }
.event-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3b6a8;
  margin: 0 0 16px;
}
.event-hero-headline {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.event-hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.45;
  color: rgba(248, 244, 235, 0.85);
  margin: 0 0 28px;
  max-width: 640px;
}
.event-hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px 28px;
  margin-bottom: 24px;
  max-width: 760px;
}
.event-meta-item { display: flex; flex-direction: column; gap: 4px; }
.event-meta-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 235, 0.55);
}
.event-meta-val {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  color: var(--paper);
}
.event-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc7ba;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 199, 186, 0.4);
  padding-bottom: 2px;
}
.event-hero-link:hover { color: var(--paper); border-color: var(--paper); }

.event-body { padding: 48px var(--gutter) 24px; max-width: 760px; margin: 0 auto; }
.event-intro {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}

.event-anchors, .event-tips, .event-pairings, .event-footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px var(--gutter);
}
.event-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.event-section-deck {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 620px;
}
.event-anchors-list, .event-pairings-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.event-anchor {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.event-anchor:first-child { border-top: 2px solid var(--ink); }
.event-anchor-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin: 0 0 8px; }
.event-anchor-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.1;
  margin: 0;
}
.event-anchor-name a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.event-anchor-name a:hover { color: var(--clay); border-color: var(--clay); }
.event-anchor-address {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.event-anchor-why {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.event-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.event-tips-list li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.event-tips-list li::before {
  content: '·';
  position: absolute;
  left: 6px;
  top: -3px;
  color: var(--clay);
  font-size: 24px;
  line-height: 1;
}
.event-pairing { padding: 16px 0; border-top: 1px solid var(--rule); }
.event-pairing:first-child { border-top: 2px solid var(--ink); }
.event-pairing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--ink);
}
.event-pairing-why {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.event-footer { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); border-top: 1px solid var(--rule); margin-top: 32px; }
.event-footer a { color: var(--clay); }

/* ===== Newsletter capture =====
   Light mode: cream "paper-deep" panel against the body paper.
   Dark mode: subtle elevated card (paper-2) instead of flipping to white. */
.newsletter-capture {
  background: var(--paper-deep, #f1ece1);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
  margin: 48px 0 0;
}
html[data-mode="dark"] .newsletter-capture {
  background: var(--paper-2);
  border-color: var(--rule-soft);
}
.newsletter-capture--compact {
  padding: 28px 0;
}
.newsletter-capture--compact .newsletter-title {
  font-size: clamp(20px, 2.2vw, 24px);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 20px; }
}
.newsletter-eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 6px;
}
.newsletter-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.newsletter-deck {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(225, 25, 0, 0.12);
}
.newsletter-form button {
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 4px;
  padding: 12px 22px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--clay); }
.newsletter-status {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 10px 0 0;
  min-height: 18px;
}
.newsletter-status[data-state="ok"]   { color: var(--clay); }
.newsletter-status[data-state="err"]  { color: var(--clay); }
.newsletter-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.newsletter-fine {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-faint);
  margin: 6px 0 0;
  font-style: normal;
}

/* ===== Calendar — Date stream + venue filter ===== */
.cal-controls {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.cal-controls-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cal-filter-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.cal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  flex: 1 1 auto;
}
.cal-chip {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.cal-chip:hover { border-color: var(--ink); }
.cal-chip.is-on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cal-stream { padding: 24px 0 32px; }
.cal-day {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px var(--gutter) 8px;
}
.cal-day + .cal-day { border-top: 1px solid var(--rule); }
/* Departure-board head. Day label as a strong civic display block,
   ISO date in mono off to the side. The page reads like a station
   arrivals board: heading, info pills, then a chronological list. */
.cal-day-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.cal-day-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}
.cal-day-date {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  margin-left: auto;
}
.cal-day-signals {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}
.cal-day-signal {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;             /* square = civic */
  border: 1px solid var(--rule-soft);
}
.cal-day-signal--cluster { color: var(--clay); border-color: rgba(214, 43, 15, 0.35); background: rgba(214, 43, 15, 0.05); }
.cal-day-signal--busy    { color: var(--ink); border-color: var(--rule-soft); background: var(--paper-2); }
.cal-day-signal--quiet   { color: var(--ink-faint); border-color: var(--rule-soft); background: transparent; }
html[data-mode="dark"] .cal-day-signal--cluster { background: rgba(255, 61, 38, 0.12); border-color: rgba(255, 61, 38, 0.4); }

.cal-day-list { list-style: none; margin: 0; padding: 0; }
.cal-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.cal-row:first-child { border-top: none; padding-top: 4px; }
@media (max-width: 600px) {
  .cal-row { grid-template-columns: 1fr; gap: 4px; }
}
.cal-row-when {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.cal-row-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.cal-row-title a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.cal-row-title a:hover { color: var(--clay); border-color: var(--clay); }
.cal-row-venue {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 3px;
}
.cal-row-venue-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted var(--rule);
}
.cal-row-venue-link:hover { color: var(--clay); border-color: var(--clay); }
.cal-row-neigh { color: var(--ink-faint); }
.cal-row-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.cal-beyond {
  max-width: 880px;
  margin: 8px auto 32px;
  padding: 0 var(--gutter);
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
  text-align: center;
}

/* Legacy venue-grouped styles kept in case linked elsewhere — orphaned otherwise. */
.cal-venue-nav-legacy {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
}
.cal-venue-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.cal-venue-nav-link {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.cal-venue-nav-link:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cal-venue-nav-count {
  display: inline-block;
  margin-left: 4px;
  color: var(--ink-faint);
  font-weight: 500;
}
.cal-venue-nav-link:hover .cal-venue-nav-count { color: rgba(248, 244, 235, 0.7); }

.cal-venue-stream { padding: 12px 0 48px; }
.cal-venue {
  padding: 36px var(--gutter) 28px;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 70px;
}
.cal-venue:first-child { border-top: none; }
.cal-venue-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.cal-venue-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.cal-venue-meta {
  display: flex;
  gap: 12px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cal-venue-neigh { color: var(--ink-soft); }
.cal-venue-count { color: var(--clay); }
.cal-venue-list { list-style: none; margin: 0; padding: 0; }
.cal-venue-event {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.cal-venue-event:first-child { border-top: 2px solid var(--ink); }
@media (max-width: 600px) {
  .cal-venue-event { grid-template-columns: 1fr; gap: 4px; }
}
.cal-venue-when {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-label);
}
.cal-venue-date {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.cal-venue-time {
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.cal-venue-event-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  margin: 0 0 4px;
}
.cal-venue-event-title a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.cal-venue-event-title a:hover { color: var(--clay); border-color: var(--clay); }
.cal-venue-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== /tonight/ — Happening tonight events block =====
   Uses design-system color tokens so the venue/neighborhood text stays
   legible in both light and dark mode. The original cream-hex values
   (left over from when this block was assumed to render on a dark hero)
   went near-invisible on the cream paper background. */
.tonight-events-section {
  padding: 36px 0 16px;
  border-bottom: 1px solid var(--rule);
}
.tonight-events-tomorrow { border-bottom: none; }
.tonight-section-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 6px;
}
.tonight-events-list { list-style: none; margin: 0; padding: 0; }
.tonight-event {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}
.tonight-event:first-child { border-top: 2px solid var(--ink); }
@media (max-width: 600px) {
  .tonight-event { grid-template-columns: 1fr; gap: 4px; }
}
.tonight-event-time {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.tonight-event-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: var(--ink);
}
.tonight-event-title a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.tonight-event-title a:hover { color: var(--clay); border-color: var(--clay); }
.tonight-event-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  margin: 2px 0 4px;
}
.tonight-event-venue {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px dotted var(--rule);
}
.tonight-event-neigh { color: var(--ink-soft); }
.tonight-event-neigh::before { content: '·'; margin-right: 6px; color: var(--ink-faint); }
.tonight-event-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 6px 0 0;
}
.tonight-empty {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-soft);
  margin: 12px 0 0;
}
.tonight-empty a { color: var(--clay); }
.tonight-more {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.tonight-more:hover { border-bottom-color: var(--clay); }

/* ===== Per-venue calendar page ===== */
.venue-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--rule);
}
.venue-hero-inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.venue-hero-breadcrumb {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 12px;
}
.venue-hero-breadcrumb a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px dotted var(--rule); }
.venue-hero-breadcrumb a:hover { color: var(--clay); border-color: var(--clay); }
.venue-hero-name {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
  text-transform: uppercase;
}
.venue-hero-neigh {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.venue-hero-count {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}
/* Mood tag pills — small controlled vocabulary that doubles as the
   /calendar/ mood filter taxonomy. Renders on the venue hero. */
.venue-mood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 4px;
}
.venue-mood-tag {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  border: 1px solid var(--clay);
  padding: 3px 8px;
  border-radius: 0;
}

/* Before / After block — the night-planning surface. Two-column on desktop,
   stacked on mobile. Each row reads as a labeled recommendation. */
.venue-ba {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.venue-ba-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 22px;
}
.venue-ba-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--clay);
}
.venue-ba-title {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--ink);
}
.venue-ba-list {
  display: grid;
  gap: 0;
  margin: 0;
}
.venue-ba-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
}
.venue-ba-row:first-child { border-top: 2px solid var(--ink); }
@media (max-width: 600px) {
  .venue-ba-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
}
.venue-ba-row dt {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 4px;
}
.venue-ba-row dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

/* Mood filter row on /calendar/ — sits below the venue filter, same chip
   register but with a slightly different color treatment so the two axes
   read as different controls. */
.cal-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.cal-filter-group + .cal-filter-group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--rule-soft);
}
.cal-chip.cal-chip-mood {
  border-color: var(--rule-soft);
  color: var(--ink-soft);
}
.cal-chip.cal-chip-mood:hover { border-color: var(--ink); color: var(--ink); }
.cal-chip.cal-chip-mood.is-on {
  background: var(--clay);
  color: var(--paper);
  border-color: var(--clay);
}

/* Venue mythology — the editorial paragraph at the top of a venue page.
   Bigger type than a normal description because the venue IS the subject. */
.venue-mythology {
  margin: 28px 0 24px;
  max-width: 720px;
}
.venue-mythology-text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  text-wrap: balance;
  max-width: 680px;
}
.venue-mythology-rituals {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid var(--clay);
  background: var(--paper-2);
}
.venue-mythology-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 6px;
}
.venue-mythology-rituals-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.venue-dir-info {
  display: grid;
  gap: 8px;
  padding: 18px 22px;
  background: var(--paper-deep, rgba(0,0,0,0.03));
  border-left: 3px solid var(--clay);
  margin-top: 16px;
}
html[data-mode="dark"] .venue-dir-info { background: var(--paper-2); }
.venue-dir-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
}
.venue-dir-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.venue-dir-val { color: var(--ink); text-decoration: none; border-bottom: 1px dotted var(--rule); }
.venue-dir-val:hover { color: var(--clay); border-color: var(--clay); }
.venue-dir-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 6px 0 0;
  grid-column: 1 / -1;
}

.venue-shows { padding: 36px 0 24px; }
.venue-shows .wrap { max-width: 880px; }
.venue-month + .venue-month { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--rule); }
.venue-month-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.venue-show-list { list-style: none; margin: 0; padding: 0; }
.venue-show {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}
.venue-show:first-child { border-top: 2px solid var(--ink); }
@media (max-width: 600px) {
  .venue-show { grid-template-columns: 1fr; gap: 4px; }
}
.venue-show-when {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-label);
}
.venue-show-date {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.venue-show-time {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.venue-show-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.venue-show-title a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.venue-show-title a:hover { color: var(--clay); border-color: var(--clay); }
.venue-show-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.venue-footer {
  padding: 24px var(--gutter) 48px;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
}
.venue-footer a { color: var(--clay); }

/* ===== /this-weekend/ Fri-Sat-Sun grid ===== */
.weekend-grid { padding: 36px 0 48px; }
.weekend-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) {
  .weekend-grid-inner { grid-template-columns: 1fr; gap: 24px; }
}
.weekend-day {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}
.weekend-day-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}
.weekend-day-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.weekend-day-date {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.weekend-day-count {
  margin-left: auto;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.weekend-empty {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  color: var(--ink-faint);
  margin: 8px 0 0;
}
.weekend-show-list { list-style: none; margin: 0; padding: 0; }
.weekend-show {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--rule);
}
.weekend-show-when {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.weekend-show-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 3px;
}
.weekend-show-title a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.weekend-show-title a:hover { color: var(--clay); border-color: var(--clay); }
.weekend-show-venue {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
}
.weekend-show-venue a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted var(--rule);
}
.weekend-show-venue a:hover { color: var(--clay); border-color: var(--clay); }
.weekend-show-neigh { color: var(--ink-faint); }

/* ===== Neighborhood code tag — the signature graphic move =====
   Every neighborhood mention renders as a transit-station-style lockup:
   a 2-3 letter monospace code in a hard outlined box, followed by the
   full neighborhood name. Reads everywhere on the site at the same scale
   and shape, the way subway station codes do on a transit map. This is
   the repeatable visual behavior that ties everything together. */
.nhood-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.2;
  vertical-align: baseline;
}
.nhood-tag-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--clay);
  border: 1px solid var(--clay);
  padding: 2px 5px;
  min-width: 26px;
  height: 18px;
  border-radius: 0;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nhood-tag-name {
  color: inherit;
  white-space: nowrap;
}
/* Dark-backed contexts (cover, /tonight/ hero, feature banner, footer)
   need the inverse treatment so the tag stays readable on near-black. */
.tonight-event .nhood-tag,
.tonight-hero .nhood-tag,
.cover .nhood-tag,
.feature-banner .nhood-tag,
.event-hero .nhood-tag,
.site-footer .nhood-tag { color: rgba(245, 244, 240, 0.75); }
.tonight-event .nhood-tag-code,
.tonight-hero .nhood-tag-code,
.cover .nhood-tag-code,
.feature-banner .nhood-tag-code,
.event-hero .nhood-tag-code { color: #FF8B7A; border-color: rgba(255, 139, 122, 0.55); }
/* Compact variant — only show the code on very narrow screens to save room. */
@media (max-width: 480px) {
  .cal-row .nhood-tag-name,
  .tonight-event .nhood-tag-name,
  .weekend-show .nhood-tag-name { display: none; }
}

/* ===== Mobile dock — persistent bottom nav on narrow screens =====
   Five always-visible shortcuts: Tonight / Calendar / Map / Near / Menu.
   Hidden on >720px because the desktop header is enough. Body gets
   bottom padding equal to the dock height so nothing hides behind it. */
.mobile-dock {
  display: none;
}
@media (max-width: 720px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .mobile-dock {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 0 max(6px, env(safe-area-inset-bottom));
    /* Tiny upward shadow so it visually lifts off paper. */
    box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  }
  .mobile-dock-item {
    appearance: none;
    background: transparent;
    border: 0;
    color: #F4EEDF;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 48px;
    padding: 6px 0;
    cursor: pointer;
    font-family: var(--font-label);
  }
  .mobile-dock-item:hover,
  .mobile-dock-item:focus-visible { color: var(--clay); outline: none; }
  .mobile-dock-icon {
    font-size: 18px;
    line-height: 1;
    opacity: 0.85;
  }
  .mobile-dock-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  html[data-mode="dark"] .mobile-dock {
    background: #050505;
    border-top-color: rgba(255, 255, 255, 0.08);
  }
}

/* ===== Concierge block (homepage) =====
   The emotional center of the page. Replaces the old taxonomy / tools-grid
   approach. Reads like a friend giving you 3-4 confident recommendations
   for tonight, computed from real-time weather + events + city state.
   Per MANIFESTO: recommendation over categorization, guidance over
   indexing. This is the room the homepage is built around. */
.concierge {
  background: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 44px 0 48px;
}
.concierge-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.concierge-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 8px 18px;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.concierge-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  grid-column: 1;
}
.concierge-headline {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  grid-column: 2;
  text-align: right;
}
.concierge-deck {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 8px 0 0;
  text-wrap: balance;
}
/* Inline live-context strip — temperature, sunset countdown, city-state
   badges. Sits inside the concierge head so the block is a complete
   "you're here, this is what tonight is" frame, not split across two
   bands. Mono numerals, mono badges. */
.concierge-context {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.concierge-context-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.concierge-context-num {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.concierge-context-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.concierge-context-badge {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clay);
  border: 1px solid var(--clay);
  padding: 3px 8px;
}
html[data-mode="dark"] .concierge-context { border-top-color: rgba(245,244,240,0.10); }
.concierge-picks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.concierge-pick {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}
.concierge-pick:first-child { border-top: none; padding-top: 4px; }
@media (max-width: 600px) {
  .concierge-pick { grid-template-columns: 64px 1fr; gap: 12px; padding: 14px 0; }
}
.concierge-pick-kind {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clay);
  padding-top: 6px;
}
.concierge-pick-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.concierge-pick-line a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-soft);
}
.concierge-pick-line a:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}
.concierge-more {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
}
.concierge-more:hover { color: var(--ink); border-color: var(--ink); }
html[data-mode="dark"] .concierge { background: #141416; }
html[data-mode="dark"] .concierge-pick { border-top-color: rgba(245,244,240,0.10); }

/* ===== "More" tools — demoted index, lower on the page =====
   The transit-board tools index used to live up top. Per MANIFESTO it
   should feel like optional exploration, not required onboarding. Now
   a compact 3-column inline list below the clusters with a quiet
   "Optional exploration" stamp. */
.more-tools {
  padding: 36px 0 48px;
  border-top: 1px solid var(--rule-soft);
}
.more-tools .wrap { padding-top: 0; }
.more-tools-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.more-tools-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--clay);
}
.more-tools-stamp {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
/* Single horizontal chip-scroller strip — sits directly under the
   rightnow strip on the homepage so the daily tools read as one row. */
.more-tools-list {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
  display: flex;
  gap: 8px;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.more-tools-list li { flex: 0 0 auto; }
.more-tools-list a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  padding: 5px 14px;
}
.more-tools-list a:hover { color: var(--clay); border-color: var(--clay); }
.mtools-code {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--clay);
  border: 1px solid var(--clay);
  padding: 1px 5px;
  min-width: 22px;
  text-align: center;
}
.more-tools-list em {
  font-style: normal;
  margin-left: auto;
  font-size: 12.5px;
  color: var(--ink-faint);
}

/* ===== Civic notice (homepage) =====
   Public-service-announcement style. Black border, all-caps label, body
   copy in clean sans, dateline stamp. The civic equivalent of a transit
   alert banner: short, declarative, infrastructural. Copy is weather +
   season aware. */
.civic-notice {
  background: var(--paper);
  padding: 40px 0 44px;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--rule-soft);
}
.civic-notice-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.civic-notice-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.civic-notice-label::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--clay);
  /* No round; civic shapes are square. */
}
.civic-notice-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 820px;
  text-wrap: balance;
}
.civic-notice-stamp {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
html[data-mode="dark"] .civic-notice {
  background: #141416;
  border-top-color: var(--ink);
  border-bottom-color: rgba(245, 244, 240, 0.08);
}
@media (max-width: 600px) {
  .civic-notice { padding: 32px 0 36px; }
}

/* ===== Reservation buttons (entry listing + entry detail) =====
   Calmly assertive — same weight as the website link but tinted clay so a
   reader scanning a row sees that booking is one click away. */
.entry-reserve {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(225, 25, 0, 0.06);
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(225, 25, 0, 0.25);
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.entry-reserve:hover {
  background: var(--clay);
  color: var(--paper);
  border-color: var(--clay);
}
html[data-mode="dark"] .entry-reserve {
  background: rgba(255, 61, 38, 0.10);
  border-color: rgba(255, 61, 38, 0.35);
}
.entry-detail-reserve {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--clay);
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 8px;
}
.entry-detail-reserve:hover {
  background: var(--ink);
}

/* ===== /scenes/ — music scene guides ===== */
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  margin-top: 0;
  padding-top: 0;
}
.scene-card {
  display: block;
  padding: 32px var(--gutter);
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  transition: background 0.12s;
}
.scene-card:hover { background: var(--paper-2); }
.scene-card:nth-child(3n) { border-right: none; }
@media (max-width: 720px) { .scene-card { border-right: none; } }
.scene-card-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.scene-card-title {
  font-family: var(--font-marquee);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.scene-card-deck {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.scene-card-meta {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.scene-card-arrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.scene-card:hover .scene-card-arrow { color: var(--ink); }

/* Individual scene page */
.scene-body { padding: 48px var(--gutter) 8px; max-width: 760px; margin: 0 auto; }
.scene-intro {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.scene-tip {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--clay);
  background: var(--paper-2);
}
.scene-tip-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 6px;
}
.scene-tip-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.scene-venues { max-width: 880px; margin: 0 auto; padding: 36px var(--gutter); }
.scene-venue-list { list-style: none; margin: 0; padding: 0; }
.scene-venue {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.scene-venue:first-child { border-top: 2px solid var(--ink); }
.scene-venue-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.scene-venue-name a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.scene-venue-name a:hover { color: var(--clay); border-color: var(--clay); }
.scene-venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.scene-venue-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.scene-shows { max-width: 880px; margin: 0 auto; padding: 28px var(--gutter); }
.scene-show-list { list-style: none; margin: 0; padding: 0; }
.scene-show {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.scene-show:first-child { border-top: 2px solid var(--ink); }
@media (max-width: 600px) {
  .scene-show { grid-template-columns: 1fr; gap: 4px; }
}
.scene-show-when {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.scene-show-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 3px;
}
.scene-show-title a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.scene-show-title a:hover { color: var(--clay); border-color: var(--clay); }
.scene-show-venue {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
}
.scene-show-venue a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--rule); }
.scene-show-venue a:hover { color: var(--clay); border-color: var(--clay); }
.scene-footer { padding: 24px var(--gutter) 48px; max-width: 880px; margin: 0 auto; border-top: 1px solid var(--rule); font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); }
.scene-footer a { color: var(--clay); }

/* ===== Category × neighborhood nav ===== */
.nb-nav { margin: 4px auto 8px; }
.nb-nav-label { margin-bottom: 10px; }
.nb-nav-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.nb-nav-chips button.cal-chip { cursor: pointer; }
.nb-nav-count { opacity: 0.55; font-variant-numeric: tabular-nums; }
.nb-nav-guides { font-family: var(--font-body); font-size: 13px; color: var(--ink-faint); margin: 12px 0 0; }
.nb-nav-guides a { color: var(--ink-soft); }
.nb-nav-guides a:hover { color: var(--clay); }

/* ===== Print ===== */
@media print {
  .site-header, .primary-nav, .site-footer { display: none; }
  body { background: white; color: black; font-size: 11pt; }
  .entry { page-break-inside: avoid; }
  .poll-section, .feature-banner, .newsletter-capture { display: none; }
}

/* ===== "A note, while it matters" — homepage support note ===== */
.support-note {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 8px 0;
  padding: 28px 0;
}
.support-note-inner { max-width: 680px; }
.support-note-eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 8px;
}
.support-note-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ===== Food Trucks "where to find them" block ===== */
.truck-finder { margin: 8px 0 32px; }
.truck-finder-deck { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; max-width: 620px; }
.truck-finder-maps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.truck-finder-subhead {
  font-family: var(--font-label); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay);
  margin: 0 0 10px;
}
.truck-finder-clusters, .truck-finder-events { margin-top: 22px; }

/* Tap-to-expand gather spots — scannable by default, detail on demand. */
.truck-spots { max-width: 760px; border-top: 1px solid var(--rule); }
.truck-spot { border-bottom: 1px solid var(--rule); }
.truck-spot-head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  list-style: none; cursor: pointer; padding: 15px 0;
}
.truck-spot-head::-webkit-details-marker { display: none; }
.truck-spot-name {
  font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--ink);
}
.truck-spot-name a { color: var(--clay); }
.truck-spot-when {
  font-family: var(--font-label); font-weight: 600; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay);
  background: rgba(225, 25, 0, 0.07); border: 1px solid var(--rule);
  border-radius: 999px; padding: 3px 11px; white-space: nowrap;
}
.truck-spot-toggle {
  margin-left: auto; position: relative; width: 14px; height: 14px; flex: none;
}
.truck-spot-toggle::before, .truck-spot-toggle::after {
  content: ''; position: absolute; background: var(--ink-soft);
}
.truck-spot-toggle::before { top: 50%; left: 0; width: 14px; height: 2px; transform: translateY(-50%); }
.truck-spot-toggle::after  { left: 50%; top: 0; width: 2px; height: 14px; transform: translateX(-50%); transition: opacity 0.2s ease; }
.truck-spot[open] .truck-spot-toggle::after { opacity: 0; }
.truck-spot-detail {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--ink-soft); margin: 0 0 16px; max-width: 680px;
}

/* ===== SEO guide pages (curated cross-cut lists) ===== */
.guide-list { display: grid; gap: 0; max-width: 820px; margin-top: 8px; }
.guide-pick {
  display: flex; gap: 18px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--rule);
  transition: transform 0.18s ease;
}
.guide-pick:hover { transform: translateX(4px); }
.guide-pick:last-child { border-bottom: none; }
.guide-pick-rank {
  font-family: var(--font-label); font-weight: 700; font-size: 14px;
  color: var(--clay); min-width: 26px; flex: none; font-variant-numeric: tabular-nums;
}
.guide-pick-body { display: flex; flex-direction: column; gap: 3px; }
.guide-pick-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--ink); }
.guide-pick-hood {
  font-family: var(--font-label); font-weight: 600; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.guide-pick-why { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin-top: 3px; }

/* ===== Pride weekend ===== */
.pride-rule, .pride-banner-rule {
  height: 4px;
  background: linear-gradient(90deg, #e40303 0 16.6%, #ff8c00 16.6% 33.3%, #ffed00 33.3% 50%, #008026 50% 66.6%, #004dff 66.6% 83.3%, #750787 83.3% 100%);
}
.pride-banner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border: 1px solid var(--rule); border-radius: 8px; overflow: hidden;
  margin: 16px var(--gutter); padding: 0; max-width: calc(var(--max-w) - 0px);
  margin-left: auto; margin-right: auto; background: var(--paper-2);
}
.pride-banner .pride-banner-rule { width: 8px; height: auto; align-self: stretch; flex: none; }
.pride-banner-text { font-family: var(--font-body); font-size: 15.5px; color: var(--ink); padding: 14px 0; flex: 1 1 240px; }
.pride-banner-go { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); padding-right: 18px; white-space: nowrap; }
.pride-banner:hover .pride-banner-go { text-decoration: underline; }

.pride-essentials { margin-top: 8px; }
.pride-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 900px; }
.pride-card { border-top: 2px solid var(--clay); padding-top: 14px; }
.pride-card-when { font-family: var(--font-label); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); }
.pride-card-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 4px 0 2px; color: var(--ink); }
.pride-card-where { font-family: var(--font-body); font-size: 14px; color: var(--ink-soft); }
.pride-card-detail { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 8px 0 0; }
.pride-also { font-family: var(--font-body); font-size: 14px; color: var(--ink-soft); margin-top: 18px; max-width: 720px; }

/* ===== Calendar filters on phones =====
   Was a sticky block of wrapped chips (~560px, two-thirds of an iPhone screen)
   pinned while scrolling. On mobile: not sticky (scrolls away as you browse),
   and each filter is a single horizontally-swipeable row instead of wrapping. */
@media (max-width: 720px) {
  .cal-controls { position: static; padding: 12px 0; }
  .cal-controls-inner { gap: 12px; }
  .cal-filter-group { flex-direction: column; align-items: stretch; gap: 7px; width: 100%; }
  .cal-filter-group + .cal-filter-group { margin-top: 0; }
  .cal-chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .cal-chip-row::-webkit-scrollbar { display: none; }
  .cal-chip { flex: 0 0 auto; white-space: nowrap; }
}

/* ===== Calendar subscribe (iCal feed) — quiet footnote under the events ===== */
.cal-subscribe-mini {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-faint);
  margin: 28px 0 0;
  max-width: 620px;
}
.cal-subscribe-mini a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cal-subscribe-mini a:hover { color: var(--clay); }

/* ===== Freshness + independence signaling ===== */
.freshness-note {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-top: 16px;
}
.footer-promise {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 10px;
}

/* ===== Entry directions + hours / open-now ===== */
.entry-detail-directions {
  display: inline-block;
  font-family: var(--font-label); font-weight: 700; font-size: 12px;
  letter-spacing: 0.03em; text-decoration: none;
  color: var(--paper); background: var(--ink);
  border-radius: 7px; padding: 9px 14px; margin: 4px 0;
}
.entry-detail-directions:hover { background: var(--clay); }
.entry-detail-hours { margin-top: 18px; border-top: 1px solid var(--rule); padding-top: 14px; max-width: 320px; }
.entry-hours-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.entry-hours-label { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.entry-open-badge { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; padding: 2px 8px; border-radius: 20px; }
.entry-open-badge.is-open { color: #0a7d2c; background: rgba(10,125,44,0.12); }
.entry-open-badge.is-closed { color: var(--ink-soft); background: rgba(0,0,0,0.06); }
.entry-hours-row { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 13.5px; color: var(--ink-soft); padding: 2px 0; }
.entry-hours-row.is-today { color: var(--ink); font-weight: 600; }
.entry-hours-day { letter-spacing: 0.02em; }

/* ===== Partner page: by-the-numbers ===== */
.partner-numbers { display: flex; flex-wrap: wrap; gap: 28px 40px; padding: 20px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.partner-stat { display: flex; flex-direction: column; gap: 2px; }
.partner-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 34px; line-height: 1; color: var(--ink); }
.partner-stat-label { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.partner-numbers-note { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--ink-faint); margin-top: 16px; max-width: 600px; }

/* ===== Guide map ===== */
.guide-map { height: 380px; border-radius: 10px; border: 1px solid var(--rule); margin-top: 10px; z-index: 0; }

/* ===== This Weekend: free highlight ===== */
.weekend-free { border: 1px solid var(--rule); border-left: 3px solid var(--clay); border-radius: 8px; padding: 16px 20px; margin-top: 8px; background: var(--paper-2, var(--paper)); }
.weekend-free-label { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); }
.weekend-free-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px 24px; }
.weekend-free-item { display: flex; flex-direction: column; gap: 1px; }
.weekend-free-name { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink); }
.weekend-free-name a { color: inherit; text-decoration: none; }
.weekend-free-name a:hover { color: var(--clay); }
.weekend-free-meta { font-family: var(--font-body); font-size: 13px; color: var(--ink-soft); }

/* ===== Best of MPLS (flagship ranking) ===== */
.bestof-group { padding-top: 8px; }
.bestof-group-title { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); border-bottom: 2px solid var(--clay); padding-bottom: 6px; display: inline-block; margin: 28px 0 4px; }
.bestof-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0 32px; }
.bestof-award { display: block; padding: 18px 0; border-bottom: 1px solid var(--rule); text-decoration: none; }
.bestof-award-label { display: block; font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.bestof-award-winner { display: block; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); margin-top: 4px; }
.bestof-award:hover .bestof-award-winner { color: var(--clay); }
.bestof-award-hood { display: block; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.bestof-award-why { display: block; font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin-top: 7px; }
.bestof-about { max-width: 680px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--rule); }
.bestof-about-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); }
.bestof-about p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-top: 10px; }
.bestof-badge-note { font-size: 14px !important; }
.bestof-ribbon { display: inline-block; margin-top: 12px; font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.03em; color: var(--paper); background: var(--clay); border-radius: 20px; padding: 6px 14px; text-decoration: none; }
.bestof-ribbon:hover { filter: brightness(0.92); }

/* ===== The Living Best of — participation buttons ===== */
.lb-actions { margin-top: 20px; border-top: 1px solid var(--rule); padding-top: 16px; }
.lb-actions-row { display: flex; flex-wrap: wrap; gap: 10px; }
.lb-btn {
  font-family: var(--font-label); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.02em; cursor: pointer;
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule-strong, var(--ink)); border-radius: 999px;
  min-height: 44px; padding: 11px 18px; transition: background 0.12s, color 0.12s, border-color 0.12s;
}
/* Save is the signature action — give it a clay-tinted resting state so it reads
   as the primary invitation, not the quietest control on the page. */
.lb-btn[data-lb="save"] { border-color: var(--clay); color: var(--clay); }
.lb-btn:hover { border-color: var(--clay); color: var(--clay); }
.lb-btn.is-on { background: var(--clay); color: var(--paper); border-color: var(--clay); }
.lb-btn.is-on:hover { color: var(--paper); }
.lb-story { margin-top: 12px; max-width: 460px; }
.lb-story-text {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 15px;
  border: 1px solid var(--rule-strong, var(--ink)); border-radius: 8px; padding: 10px 12px; resize: vertical;
  background: var(--paper); color: var(--ink);
}
.lb-story-foot { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.lb-btn--send { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.lb-story-msg { font-family: var(--font-body); font-size: 13px; color: var(--ink-soft); }
.lb-thanks { margin-top: 12px; font-family: var(--font-body); font-size: 14px; color: var(--clay); font-weight: 600; }
.lb-note { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-faint); margin-top: 12px; }

/* ===== Living Best of — page states ===== */
.bestof-voices { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--clay); margin-top: 14px; }
.bestof-cell { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.bestof-cell .bestof-award { padding: 0; border-bottom: none; }
.bestof-award-signal { display: block; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.bestof-award-signal--early { color: var(--ink-faint); font-style: normal; }
.bestof-note { font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin: 8px 0 0; }

/* ===== Homepage: what locals are loving ===== */
.loved-rail { padding: 8px var(--gutter) 0; }
.loved-rail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.loved-rail-eyebrow { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); }
.loved-rail-link { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; }
.loved-rail-link:hover { color: var(--clay); }
.loved-rail-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0 28px; margin-top: 10px; }
.loved-item { display: block; padding: 14px 0; border-bottom: 1px solid var(--rule); text-decoration: none; }
.loved-item-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); }
.loved-item:hover .loved-item-name { color: var(--clay); }
.loved-item-meta { display: block; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.loved-item-voices { display: block; font-family: var(--font-body); font-size: 12.5px; color: var(--ink-faint); margin-top: 3px; }
/* Entry meta + standing badges */
.entry-meta-living { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; color: var(--clay); text-decoration: none; }
.lb-standing { font-family: var(--font-body); font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; }
.lb-standing a { color: var(--clay); text-decoration: none; font-weight: 600; }

/* ===== Homepage: upcoming talks ===== */
.home-talks { padding: 8px var(--gutter) 0; }
.home-talks-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.home-talks-eyebrow { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); }
.home-talks-link { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; }
.home-talks-link:hover { color: var(--clay); }
.home-talks-list { list-style: none; padding: 0; margin: 12px 0 0; }
.home-talk { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; padding: 11px 0; border-bottom: 1px solid var(--rule); }
.home-talk-when { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); min-width: 92px; }
.home-talk-what { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink); }
.home-talk-what a { color: inherit; text-decoration: none; }
.home-talk-what a:hover { color: var(--clay); }
.home-talk-venue { font-family: var(--font-body); font-size: 14px; color: var(--ink-soft); }

/* ===== 2026 design pass ===== */
/* Typographic cover (photo retired — the type is the hero) */
.cover--type { padding-top: clamp(40px, 7vw, 96px); }
/* Hero differentiator line — the one-sentence "why this isn't Yelp", right in the
   fold. Sits tight under the deck; the larger gap goes before the CTA. */
.cover--type .cover-deck { margin-bottom: var(--s4); }
.cover-promise { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); margin: 0 0 clamp(30px, 4vw, 46px); max-width: 46ch; }
/* Context under the homepage "What locals are loving" rail */
.loved-rail-context { font-family: var(--font-body); font-size: 13.5px; color: var(--ink-faint); margin: 0 0 var(--s4); max-width: 60ch; }
.cover--type .cover-headline { margin-top: var(--s3); }

/* Footer skyline — the site's signature image, done as a duotone etching.
   Cream highlights / near-black shadows on the always-dark footer, so the lit
   twilight skyline glows and the shadows dissolve into the slab. One treatment
   reads correctly in both light and dark page modes. */
.footer-skyline { position: relative; width: 100%; height: clamp(170px, 22vw, 300px); overflow: hidden; }
.footer-skyline .svg-defs { position: absolute; width: 0; height: 0; }
.footer-skyline img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%;
  filter: url(#duotone-bom); opacity: 0.55;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 82%, transparent);
}
.site-footer { padding-top: 0; }

/* Tonight page — tonight + tomorrow outlook line under the marquee */
.tonight-hero-forecast { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); margin-top: var(--s4); }
.tonight-fc { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); }
.tonight-fc-label { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-right: 6px; }
.tonight-fc-val { color: var(--ink); }

/* THE BOARD — tonight's answers as a civic departure board, top of the homepage.
   Dark slab (footer register), mono times, venue-forward rows, tickets one tap
   away. This is the "pick up your phone, bam, what's on" surface. */
.home-board { background: #0A0A0A; color: #F4EEDF; padding: var(--s6) 0 var(--s6); position: relative; overflow: hidden; }
html[data-mode="dark"] .home-board { background: #050505; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
/* The city at blue hour behind the board. The photo is already in the site's
   night register (steel blue + sodium gold), so it gets NO duotone and no red:
   just a gentle cool trim and a mask that dissolves it into the slab so the
   rows stay legible. Same treatment family as the footer skyline. */
.home-board-sky {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('/img/skyline-tonight.jpg');
  background-size: cover; background-position: center 28%;
  filter: saturate(0.9) brightness(0.9);
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.16) 68%, transparent 92%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.16) 68%, transparent 92%);
}
.home-board > .wrap { position: relative; z-index: 1; }
/* A touch more presence up top so the skyline reads as sky, not texture. */
.home-board { padding-top: clamp(72px, 12vw, 140px); }
.home-board-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s4); }
.home-board-eyebrow { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); }
.home-board-count { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #8E8B82; }
.home-board-rows { list-style: none; margin: 0; padding: 0; }
.home-board-row { display: flex; align-items: baseline; gap: var(--s4); padding: var(--s3) 0; min-height: 44px; border-top: 1px solid rgba(244,238,223,0.14); }
.home-board-row:last-child { border-bottom: 1px solid rgba(244,238,223,0.14); }
.home-board-time { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: #F4EEDF; flex: none; width: 72px; white-space: nowrap; }
.home-board-what { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.home-board-title { font-family: var(--font-body); font-weight: 600; font-size: 15.5px; color: #F4EEDF; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-board-venue { font-family: var(--font-label); font-weight: 700; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #8E8B82; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-board-tix { flex: none; font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; color: var(--clay); text-decoration: none; border: 0; padding: 6px 0 6px 10px; }
.home-board-tix:hover { color: #F4EEDF; }
.home-board-tix--none { width: 10px; }
.home-board-foot { margin-top: var(--s4); }
.home-board-more { font-family: var(--font-label); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; color: #F4EEDF; text-decoration: none; border-bottom: 1.5px solid var(--clay); padding-bottom: 3px; }
.home-board-more:hover { color: var(--clay); }
/* "Down for" lanes — the no-digging jump-offs. Thumb-size pills. */
.home-lanes { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); margin-top: var(--s5); }
.home-lanes-label { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #8E8B82; margin-right: var(--s2); }
.home-lane { font-family: var(--font-label); font-weight: 700; font-size: 13.5px; color: #F4EEDF; text-decoration: none; border: 1px solid rgba(244,238,223,0.35); border-radius: 999px; padding: 10px 16px; min-height: 44px; display: inline-flex; align-items: center; transition: border-color 0.12s, color 0.12s; }
.home-lane:hover { border-color: var(--clay); color: var(--clay); }
/* App-feel on phones: compress the hero so the board lands near the first screen,
   then collapse the magazine stack below it. The homepage on mobile is a tool —
   board, lanes, launcher — not an endless scroll. Desktop keeps the rich layout. */
@media (max-width: 640px) {
  .cover--type { padding-top: 28px; }
  .cover--type .cover-deck { font-size: 15.5px; margin-bottom: var(--s3); }
  .cover--type .cover-headline { margin-bottom: var(--s4); }
  .cover-promise { margin-bottom: var(--s4); }
  .cover--type .cover-meta { display: none; }
  .cover--type .cover-actions { margin-bottom: 0; }
  .home-board-time { width: 64px; font-size: 12px; }

  /* Category clusters become an app-drawer: dense 2-up tiles, title + count
     only. Every link survives (SEO + wayfinding), at a tenth of the height. */
  .cluster { padding: var(--s6) 0; }
  .cluster-head { padding-bottom: var(--s2); }
  .cluster-head .cluster-deck { display: none; }
  .cluster-grid, .cluster-grid--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 0 var(--gutter); }
  .cluster-grid .cat-card, .cluster-grid--2 .cat-card {
    padding: 12px 14px; min-height: 72px; border: 1px solid var(--rule-soft) !important;
    border-radius: var(--radius); display: flex; flex-direction: column; justify-content: center;
  }
  .cat-card-deck, .cat-card .cat-card-arrow { display: none; }
  .cat-card-title { font-size: 15px; line-height: 1.25; margin: 2px 0 0; }
  .cat-card-eyebrow { font-size: 10px; }

  /* Feature teasers collapse to their pitch + link; the card stacks go. */
  .live-feature-list, .horoscope-feature-cards, .calendar-feature-list { display: none; }
  .live-feature, .horoscope-feature, .calendar-feature { padding: var(--s6) 0; }

  /* Concierge: keep the curated picks, drop the duplicate weather context. */
  .concierge { padding: var(--s6) 0; }
  .concierge-context { display: none; }

  /* Live strip: sunset + temp + the next countdown; the rest live on /tonight/. */
  .rightnow-inner .rightnow-item:nth-child(n+4) { display: none; }
}

/* Near page — no-permission fallback + inline errors (no alert() boxes) */
.near-error { font-family: var(--font-body); font-size: 14.5px; color: var(--clay); max-width: 56ch; margin: var(--s3) 0 0; }
.near-spots { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); margin-top: var(--s4); }
.near-spots-label { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-right: var(--s2); }
.near-spots--compact { margin-top: var(--s3); }

/* Five Today — exactly five, decided for you. Big mono numerals, one item per
   rule-separated row, tags carry the free/paid honesty. */
.five-list { max-width: 760px; padding-bottom: var(--sec-y); }
.five-item { display: flex; gap: var(--s5); padding: var(--s5) 0; border-top: 1px solid var(--rule); }
.five-item:first-of-type { border-top: 2px solid var(--ink); }
.five-num { font-family: var(--font-mono); font-weight: 700; font-size: 28px; color: var(--clay); flex: none; line-height: 1; padding-top: 2px; }
.five-body { min-width: 0; }
.five-tags { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s2); }
.five-tag { font-family: var(--font-label); font-weight: 700; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--rule-soft); border-radius: 999px; padding: 3px 10px; }
.five-tag--free { color: var(--paper); background: var(--clay); border-color: var(--clay); }
.five-tag--time { font-family: var(--font-mono); letter-spacing: 0.04em; }
.five-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.15; margin: 0 0 var(--s1); }
.five-name a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--clay); }
.five-name a:hover { color: var(--clay); }
.five-where { font-family: var(--font-label); font-weight: 700; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.five-sub { font-family: var(--font-body); font-size: 14.5px; color: var(--ink-soft); margin: var(--s2) 0 0; max-width: 56ch; }
.five-foot { font-family: var(--font-body); font-size: 14px; color: var(--ink-faint); border-top: 1px solid var(--rule); padding-top: var(--s4); margin-top: var(--s2); }
@media (max-width: 640px) { .five-item { gap: var(--s4); } .five-num { font-size: 22px; } }

/* Notes — the essay shelf. Editorial measure, honest dates, sourced. */
.notes-list { max-width: 720px; padding-bottom: var(--sec-y); }
.notes-item { display: block; text-decoration: none; color: inherit; padding: var(--s5) 0; border-top: 1px solid var(--rule); }
.notes-item:first-of-type { border-top: 2px solid var(--ink); }
.notes-item-date { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.notes-item-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 30px); line-height: 1.15; margin: var(--s2) 0; }
.notes-item:hover .notes-item-title { color: var(--clay); }
.notes-item-deck { font-family: var(--font-body); font-size: 15.5px; color: var(--ink-soft); margin: 0 0 var(--s2); max-width: 58ch; }
.notes-item-arrow { font-family: var(--font-label); font-weight: 700; font-size: 12.5px; letter-spacing: 0.04em; color: var(--clay); }
.note { max-width: 680px; padding-top: clamp(32px, 5vw, 56px); padding-bottom: var(--sec-y); }
.note-head { margin-bottom: var(--s6); }
.note-body { font-family: var(--font-body); font-size: 17px; line-height: 1.7; }
.note-p { margin: 0 0 var(--s5); }
.note-p a { color: var(--ink); border-bottom: 1.5px solid var(--clay); text-decoration: none; }
.note-p a:hover { color: var(--clay); }
.note-h { font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); margin: var(--s7) 0 var(--s3); }
.note-related { display: flex; flex-wrap: wrap; gap: var(--s2); margin: var(--s6) 0 0; }
.note-sources { border-top: 1px solid var(--rule); margin-top: var(--s7); padding-top: var(--s4); }
.note-sources-title { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 var(--s2); }
.note-sources ul { list-style: none; margin: 0; padding: 0; }
.note-sources li { font-family: var(--font-body); font-size: 13.5px; margin: 4px 0; }
.note-sources a { color: var(--ink-soft); }
.note-sources a:hover { color: var(--clay); }

/* Live pulse — the one expressive motion. A clay dot that breathes next to
   live data, so the site's "alive" quality is felt. */
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--clay); vertical-align: middle; margin-right: 7px; position: relative; }
.pulse-dot::after { content: ''; position: absolute; inset: 0; border-radius: 999px; background: var(--clay); animation: bom-pulse 2.4s ease-out infinite; }
@keyframes bom-pulse { 0% { transform: scale(1); opacity: 0.55; } 70%, 100% { transform: scale(2.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pulse-dot::after { animation: none; } }

/* ===== Passport + Trails — the collection layer ===== */
/* "I've been here" shares the clay-tinted invitation with Save. */
.lb-btn--been { border-color: var(--clay); color: var(--clay); }

/* Trails index */
.trails-list { padding-bottom: var(--sec-y); }
.trail-card { display: block; padding: 26px 0; border-bottom: 1px solid var(--rule); text-decoration: none; }
.trail-card:first-child { border-top: 2px solid var(--rule); }
.trail-card-eyebrow { font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); }
.trail-card-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 4vw, 34px); letter-spacing: -0.02em; color: var(--ink); margin: 6px 0 0; }
.trail-card:hover .trail-card-title { color: var(--clay); }
.trail-card-deck { font-family: var(--font-body); font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); margin: 8px 0 0; max-width: 640px; }
.trail-card-foot { display: flex; align-items: baseline; gap: 16px; margin-top: 12px; }
.trail-card-count { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.trail-card-progress { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--clay); font-variant-numeric: tabular-nums; }
.trail-card-done { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--clay); }

/* Trail page */
.trail { padding-bottom: var(--sec-y); }
.trail-progress { border-top: 2px solid var(--rule); padding-top: 18px; }
.trail-progress-line { font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--ink); font-variant-numeric: tabular-nums; }
.trail-progress-count { font-size: 22px; color: var(--clay); }
.pp-bar { height: 4px; background: var(--paper-3); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.pp-bar span { display: block; height: 100%; background: var(--clay); border-radius: 2px; transition: width 0.3s ease; }
.trail-pace { font-family: var(--font-body); font-size: 13.5px; color: var(--ink-faint); margin: 12px 0 0; }
.trail-stops { list-style: none; padding: 0; margin: 28px 0 0; }
.trail-stop { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.trail-stop-num { font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--ink-faint); padding-top: 4px; font-variant-numeric: tabular-nums; }
.trail-stop.is-been .trail-stop-num { color: var(--clay); }
.trail-stop-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); text-decoration: none; }
.trail-stop-name:hover { color: var(--clay); }
.trail-stop-nb { display: inline-block; margin-left: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }
.trail-stop-why { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); margin: 5px 0 0; max-width: 560px; }
.trail-mark { display: flex; flex-direction: column; align-items: center; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 2px 6px; }
.trail-mark-dot { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--rule-strong, var(--ink)); transition: background 0.15s, border-color 0.15s, box-shadow 0.15s; }
.trail-mark-label { font-family: var(--font-mono); font-weight: 600; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.trail-mark:hover .trail-mark-dot { border-color: var(--clay); }
.trail-stop.is-been .trail-mark-dot { background: var(--clay); border-color: var(--clay); box-shadow: 0 0 0 3px color-mix(in srgb, var(--clay) 18%, transparent); }
.trail-stop.is-been .trail-mark-label { color: var(--clay); }
.trail-done-panel { margin-top: 36px; border: 2px solid var(--clay); border-radius: var(--radius); padding: 26px; }
.trail-done-head { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--clay); }
.trail-done-line { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--ink); margin: 8px 0 18px; max-width: 560px; }

/* Cards (canvas renders at 1080×1350, displayed small) */
.pp-card-canvas { display: block; width: 100%; max-width: 340px; height: auto; border: 1px solid var(--rule); border-radius: var(--radius); }
.pp-card-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

/* Passport page */
.pp { padding-bottom: var(--sec-y); }
.pp-empty { border-top: 2px solid var(--rule); padding-top: 24px; max-width: 640px; }
.pp-empty-lede { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.pp-empty-body { font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin: 12px 0 0; }
.pp-empty-trails { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pp-count-row { display: flex; align-items: baseline; gap: 14px; border-top: 2px solid var(--rule); padding-top: 20px; flex-wrap: wrap; }
.pp-count { font-family: var(--font-mono); font-weight: 700; font-size: clamp(48px, 9vw, 84px); line-height: 1; color: var(--clay); font-variant-numeric: tabular-nums; }
.pp-count-label { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); max-width: 300px; }
.pp-map { margin-top: 28px; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paper-2); }
.pp-map svg { display: block; width: 100%; height: auto; }
.pp-dot { fill: var(--ink); opacity: 0.13; }
.pp-dot-met { fill: var(--clay); }
.pp-map-label { font-family: var(--font-mono); font-weight: 600; font-size: 13px; letter-spacing: 0.18em; fill: var(--ink-faint); opacity: 0.7; }
.pp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; }
@media (max-width: 640px) { .pp-cols { grid-template-columns: 1fr; } }
.pp-col-title { font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); margin: 0 0 14px; }
.pp-group { margin-bottom: 16px; }
.pp-group-line { display: flex; justify-content: space-between; font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.pp-group-n { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.pp-nbs { list-style: none; padding: 0; margin: 0; }
.pp-nbs li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--rule); }
.pp-nb-name { font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.pp-nb-n { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--clay); font-variant-numeric: tabular-nums; }
.pp-nb-nudge { font-family: var(--font-body); font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); margin-top: 14px; padding: 12px 14px; background: var(--paper-2); border-radius: var(--radius); }
.pp-trails { margin-top: 36px; }
.pp-trail { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--rule); text-decoration: none; }
.pp-trail-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.pp-trail:hover .pp-trail-name { color: var(--clay); }
.pp-trail-n { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--clay); font-variant-numeric: tabular-nums; }
.pp-card-block { margin-top: 36px; }
.pp-privacy { font-family: var(--font-body); font-size: 12.5px; line-height: 1.55; color: var(--ink-faint); margin-top: 32px; max-width: 560px; }
.pp-privacy a { color: inherit; }

/* ===== Live-music answer pages (/live-music/tonight/, /live-music/free/) ===== */
.mt { padding-bottom: var(--sec-y); }
.mt-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.mt-chips .pulse-dot { margin-right: 4px; }
.mt-day { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 3.4vw, 28px); letter-spacing: -0.02em; color: var(--ink); border-top: 2px solid var(--rule); padding-top: 18px; margin: 34px 0 4px; }
.mt-day:first-child { margin-top: 0; }
.mt-subday { font-family: var(--font-mono); font-weight: 600; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin: 26px 0 2px; }
.mt-list { list-style: none; padding: 0; margin: 8px 0 0; }
.mt-show { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--rule); }
.mt-list--compact .mt-show { padding: 8px 0; }
.mt-show-time { font-family: var(--font-mono); font-weight: 600; font-size: 13.5px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.mt-show-what { font-family: var(--font-body); font-size: 15.5px; color: var(--ink); min-width: 0; }
.mt-show-what > a { font-weight: 600; color: var(--ink); text-decoration: none; }
.mt-show-what > a:hover { color: var(--clay); }
.mt-show-venue { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.mt-show-venue a, .mt-show-venue-link { color: var(--ink-soft); }
.mt-show-price { font-family: var(--font-mono); font-weight: 600; font-size: 12.5px; color: var(--ink-faint); font-variant-numeric: tabular-nums; white-space: nowrap; }
.mt-show-price.is-free { color: var(--clay); }
.mt-empty { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); margin: 12px 0 0; }
.mt-standing { border: 1px solid var(--rule); border-left: 3px solid var(--clay); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 8px; }
.mt-standing .mt-day { border-top: none; padding-top: 0; margin: 0 0 6px; font-size: 20px; }
.mt-standing-body { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.mt-standing-body a { color: var(--clay); font-weight: 600; text-decoration: none; }
.mt-faq { margin-top: 44px; border-top: 2px solid var(--rule); padding-top: 10px; }
.mt-faq-item { padding: 16px 0; border-bottom: 1px solid var(--rule); }
.mt-faq-q { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.mt-faq-a { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 8px 0 0; max-width: 640px; }

/* ===== Saved — the shortlist ===== */
.sv-list { list-style: none; padding: 0; margin: 0; border-top: 2px solid var(--rule); }
.sv-item { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.sv-item-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); text-decoration: none; }
.sv-item-name:hover { color: var(--clay); }
.sv-item-meta { display: block; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }
.sv-unsave { font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); background: none; border: none; cursor: pointer; padding: 6px 0; }
.sv-unsave:hover { color: var(--clay); }

/* ===== The horizon — worth planning around ===== */
.hz { padding: var(--sec-y) var(--gutter) 8px; }
.hz-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.hz-eyebrow { font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); }
.hz-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 3.6vw, 30px); letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.hz-links { margin-left: auto; display: flex; gap: 16px; }
.hz-links a { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; }
.hz-links a:hover { color: var(--clay); }
.hz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 28px; border-top: 2px solid var(--rule); }
.hz-card { display: flex; flex-direction: column; gap: 5px; padding: 18px 0 20px; border-bottom: 1px solid var(--rule); text-decoration: none; }
.hz-card-when { font-family: var(--font-mono); font-weight: 600; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); }
.hz-card-title { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
.hz-card:hover .hz-card-title { color: var(--clay); }
.hz-card-venue { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.hz-card-line { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

/* ===== Partner menu + video profiles ===== */
.partner-menu { border-top: 2px solid var(--rule); margin-top: 20px; }
.partner-option { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.partner-option-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.partner-option-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; color: var(--ink); }
.partner-option-price { font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--clay); font-variant-numeric: tabular-nums; }
.partner-option-body { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 8px 0 0; max-width: 620px; }
.partner-select { width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 15px; padding: 10px 12px; border: 1px solid var(--rule-strong, var(--ink)); border-radius: 8px; background: var(--paper); color: var(--ink); }
.entry-video { margin: 20px 0 0; }
.entry-video video { display: block; width: 100%; border-radius: var(--radius); border: 1px solid var(--rule); background: #0A0A0A; }
.entry-video-cap { font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }

/* ===== Openings — the social calendar ===== */
.openings-deck { font-family: var(--font-body); font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); margin: 6px 0 0; max-width: 560px; }
.openings-list { margin-top: 18px; }
.opening-row { display: flex; gap: 28px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.opening-row:first-child { border-top: 2px solid var(--rule); }
.opening-when { flex: none; width: 240px; display: flex; flex-direction: column; gap: 4px; }
.opening-date { font-family: var(--font-mono); font-weight: 600; font-size: 13.5px; color: var(--clay); text-transform: uppercase; letter-spacing: 0.06em; }
.opening-time { font-family: var(--font-mono); font-weight: 600; font-size: 12px; color: var(--ink); letter-spacing: 0.04em; }
.opening-time--day { color: var(--ink-faint); }
.opening-title { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; margin: 0; }
.opening-title a { color: var(--ink); text-decoration: none; }
.opening-title a:hover { color: var(--clay); }
.opening-venue { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 5px; }
@media (max-width: 640px) { .opening-row { flex-direction: column; gap: 6px; } .opening-when { width: auto; flex-direction: row; gap: 14px; } }
.openings-cta { border: 2px solid var(--clay); border-radius: var(--radius); padding: 24px 26px; margin: 26px 0 6px; }
.openings-cta-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.openings-cta-body { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 8px 0 16px; max-width: 560px; }

/* Neighborhood/combo entry names now link to entry pages */
.nb-entry-name a { color: var(--ink); text-decoration: none; }
.nb-entry-name a:hover { color: var(--clay); }

/* ---------- Data essay (longform, /90-shows-a-week/) ---------- */
.essay { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter) var(--sec-y); }
.essay p { font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--ink); margin: 0 0 22px; }
.essay h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.01em; margin: 48px 0 16px; }
.essay .essay-kicker { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px; }
.essay figure { margin: 32px 0; }
.essay figcaption { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-faint); margin-top: 10px; line-height: 1.5; }
.essay-table-wrap { overflow-x: auto; margin: 32px 0; }
.essay table { border-collapse: collapse; width: 100%; font-family: var(--font-body); font-size: 15.5px; }
.essay th { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; text-align: left; color: var(--ink-faint); padding: 8px 14px 8px 0; border-bottom: 2px solid var(--rule); }
.essay td { padding: 9px 14px 9px 0; border-bottom: 1px solid var(--rule-soft); }
.essay td.num, .essay th.num { text-align: right; font-variant-numeric: tabular-nums; }
.essay .bar-row { display: grid; grid-template-columns: 44px 1fr 44px; gap: 12px; align-items: center; margin: 6px 0; }
.essay .bar-label { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.essay .bar-val { font-family: var(--font-mono); font-size: 13px; text-align: right; font-variant-numeric: tabular-nums; }
.essay .bar-track { background: var(--paper-2); border-radius: 3px; height: 22px; }
.essay .bar-fill { background: var(--accent); height: 100%; border-radius: 3px; min-width: 2px; }
.essay .bar-fill--muted { background: var(--ink-faint); }
.essay .essay-note { background: var(--paper-2); border-left: 3px solid var(--accent); padding: 18px 22px; margin: 32px 0; }
.essay .essay-note p { font-size: 15.5px; margin: 0 0 10px; color: var(--ink-soft); }
.essay .essay-note p:last-child { margin-bottom: 0; }
.essay .stat-callout { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; line-height: 1.35; border-top: 2px solid var(--rule); border-bottom: 2px solid var(--rule); padding: 22px 0; margin: 36px 0; }

/* Newsletter lane picker: one optional question, chip-styled radios */
.newsletter-lanes { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 12px; }
.newsletter-lanes-label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); margin-right: 2px; }
.newsletter-lanes label { cursor: pointer; }
.newsletter-lanes input { position: absolute; opacity: 0; pointer-events: none; }
.newsletter-lanes span { display: inline-block; font-family: var(--font-label); font-size: 13px; font-weight: 600; padding: 6px 14px; border: 1px solid var(--rule-soft); border-radius: 999px; color: var(--ink-soft); transition: all 0.15s; }
.newsletter-lanes input:checked + span { background: var(--accent); border-color: var(--accent); color: #F4F2EC; }
.newsletter-lanes label:hover span { border-color: var(--ink); }

/* Lunch guide */
.lunch-section-blurb { font-family: var(--font-body); font-size: 15.5px; color: var(--ink-soft); margin: -6px 0 10px; max-width: 640px; }
.opening-note { font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 8px 0 0; max-width: 620px; }
.lunch-checked { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); margin-top: 36px; line-height: 1.6; }

/* /openings/ — artist-forward */
.opening-artist { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.01em; color: var(--accent); }

/* Place photo: the entry hero shot */
.entry-photo { margin: 20px 0 8px; }
.entry-photo img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.entry-photo-credit { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-faint); margin-top: 6px; text-transform: uppercase; }

/* Extra place photos: the angle row */
.entry-photo-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; margin: 8px 0; }
.entry-photo-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; display: block; }

/* ---- Featured venue pages (the partner product) ---- */
.fv-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 4px; }
.fv-badge { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--rule); color: var(--ink-soft); text-decoration: none; }
.fv-badge.is-featured { background: var(--clay); border-color: var(--clay); color: #F4F2EC; }
.fv-badge.is-live { border-color: #2E7D32; color: #2E7D32; }
.fv-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--rule-soft); border: 1px solid var(--rule-soft); margin: 18px 0 6px; }
.fv-fact { background: var(--paper); padding: 12px 14px; }
.fv-fact b { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; font-weight: 600; }
.fv-fact span { font-family: var(--font-body); font-size: 15px; }
.fv-fact a { color: var(--clay); font-weight: 600; text-decoration: none; }
.fv-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin: 28px 0 8px; }
@media (max-width: 760px) { .fv-grid { grid-template-columns: 1fr; gap: 28px; } }
.fv-grid .entry-upcoming-shows { margin: 0; }
.fv-sub { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 12px; }
.fv-sub .pulse { display: inline-block; width: 8px; height: 8px; border-radius: 99px; background: #2E7D32; margin-right: 6px; vertical-align: middle; }
.fv-menu { border-top: 2px solid var(--ink); }
.fv-menu-sec { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin: 14px 0 4px; font-weight: 600; }
.fv-item { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--rule-soft); font-family: var(--font-body); font-size: 15px; }
.fv-item b { font-weight: 600; }
.fv-item span { font-family: var(--font-mono); color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.fv-cta { display: inline-block; margin: 14px 8px 0 0; background: var(--clay); color: #F4F2EC; font-family: var(--font-label); font-weight: 800; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 18px; border-radius: 999px; text-decoration: none; }
.fv-cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.fv-h2 { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 0 0 4px; }
.fv-photo-credit { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin: 6px 0 0; }
.fv-note { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-faint); margin-top: 10px; }

/* ---- Inline signup: top of high-intent pages, where the reader's intent is ---- */
.quick-signup { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin: 22px 0 4px; padding: 14px 18px; border: 1px solid var(--rule); border-left: 3px solid var(--clay); border-radius: var(--radius); }
.quick-signup-line { font-family: var(--font-body); font-size: 15px; line-height: 1.4; color: var(--ink); margin: 0; flex: 1 1 260px; }
.quick-signup-form { display: flex; gap: 8px; flex: 1 1 300px; }
.quick-signup-form input[type=email] { flex: 1; min-width: 0; font-family: var(--font-body); font-size: 16px; padding: 10px 12px; border: 1px solid var(--rule); border-radius: 8px; background: var(--paper); color: var(--ink); }
.quick-signup-form input[type=email]:focus { outline: none; border-color: var(--clay); }
.quick-signup-form button { font-family: var(--font-label); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 16px; border: 0; border-radius: 999px; background: var(--clay); color: #F4F2EC; cursor: pointer; white-space: nowrap; }
.quick-signup-form button:hover { background: var(--ink); }
.quick-signup .newsletter-status { flex: 1 1 100%; margin: 0; font-family: var(--font-body); font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 560px) { .quick-signup { flex-direction: column; align-items: stretch; } }

/* ---- Featured venue: the rooms (a venue with more than one stage) ---- */
.fv-rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--rule-soft); border: 1px solid var(--rule-soft); margin: 14px 0 6px; }
.fv-room { background: var(--paper); padding: 14px 16px; }
.fv-room b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.fv-room span { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
