/* OpenLate SF — Classifieds Column site
   Zine / xerox cut-and-paste visual system, B&W + pencil grays. */

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Caveat:wght@400;600;700&family=Kalam:wght@400;700&family=Rubik+Mono+One&family=Anton&family=Bowlby+One+SC&family=Alfa+Slab+One&family=DM+Mono:wght@400;500&display=swap');

:root {
  --ink: #0a0a0a;
  --paper: #f4f1ea;
  --paper-dark: #d9d3c2;
  --newsprint: #ebe5d3;
  --canvas: #f0eee9;
  --pencil: #6b6b6b;
  --pencil-light: #9c9c9c;
  --accent: #fef4a8;
  --red: #b81818;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Special Elite', 'Courier New', monospace;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Type classes */
.zn-typewriter { font-family: 'Special Elite', 'Courier New', monospace; }
.zn-hand       { font-family: 'Kalam', 'Caveat', cursive; }
.zn-scrawl     { font-family: 'Caveat', cursive; }
.zn-mono       { font-family: 'DM Mono', 'Courier New', monospace; }
.zn-heavy      { font-family: 'Anton', 'Bowlby One SC', sans-serif; letter-spacing: .01em; }
.zn-slab       { font-family: 'Alfa Slab One', serif; }

a { color: var(--ink); }
a.plain { text-decoration: none; }
a.plain:hover { text-decoration: underline; text-underline-offset: 2px; }

/* Newsprint surface w/ xerox grain */
.zn-newsprint {
  background-color: var(--newsprint);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0,0,0,.05) 0, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,.04) 0, transparent 45%);
}
.zn-grain { position: relative; }
.zn-grain::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .35 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: .35;
}

/* Halftone */
.zn-halftone {
  position: relative;
  background: var(--paper-dark);
  overflow: hidden;
}
.zn-halftone::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .5;
  background-image: radial-gradient(circle, #1a1a1a 1.8px, transparent 2.4px);
  background-size: 8px 8px;
}
.zn-halftone-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
}

/* Stamp */
.zn-stamp {
  display: inline-block;
  border: 3px solid var(--ink);
  padding: 4px 10px;
  font-family: 'Special Elite', monospace;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-6deg);
  opacity: .85;
  mix-blend-mode: multiply;
  background: var(--accent);
  font-size: 12px;
}

/* ── Layout shell ─────────────────────────────────────────── */
.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 22px 60px;
}

/* Top site nav */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 18px;
  padding: 10px 0 16px;
  border-bottom: 3px double var(--ink);
  margin-bottom: 22px;
}
.site-nav .mark {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -.01em;
  text-transform: uppercase;
  line-height: 1;
  margin-right: auto;
  color: var(--ink);
  text-decoration: none;
}
.site-nav .mark em { font-style: normal; opacity: .6; }
.site-nav a.tab {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1.5px solid var(--ink);
  transition: background .12s, color .12s;
}
.site-nav a.tab:hover,
.site-nav a.tab.on { background: var(--ink); color: var(--paper); }

/* Search lives in the nav */
.nav-search {
  position: relative;
  flex: 0 1 220px;
  min-width: 160px;
}
.nav-search input {
  width: 100%;
  padding: 6px 10px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  outline: none;
  color: var(--ink);
}
.nav-search input::placeholder { color: rgba(10,10,10,.45); }
.search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0,0,0,.85);
  display: none;
  z-index: 50;
}
.search-results.open { display: block; }
.search-row {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px dashed rgba(0,0,0,.3);
  font-family: 'Special Elite', monospace;
  font-size: 13px;
}
.search-row:last-child { border-bottom: none; }
.search-row:hover { background: var(--accent); }
.search-row .hood {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  opacity: .6;
  letter-spacing: .08em;
  margin-top: 2px;
}
.search-empty {
  padding: 10px;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  opacity: .6;
}

/* ── Hero (home only) ─────────────────────────────────── */
.hero {
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0,0,0,.85);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--newsprint);
}
.hero-img {
  width: 100%;
  aspect-ratio: 21 / 8;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
}
.hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 22px 16px;
  background: linear-gradient(180deg, rgba(244,241,234,0) 0%, rgba(244,241,234,0.85) 60%, rgba(244,241,234,0.95) 100%);
  border-top: 2px solid var(--ink);
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 4px;
}
.hero-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(28px, 5.4vw, 56px);
  letter-spacing: -.01em;
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
}
.hero-sub {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  margin-top: 6px;
  text-transform: uppercase;
  opacity: .85;
}
@media (max-width: 620px) {
  .hero-img { aspect-ratio: 16 / 11; }
  .hero-overlay { padding: 10px 14px 12px; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 10px; }
}

/* Paper frame for any page */
.frame {
  position: relative;
  overflow: hidden;
  padding: 26px 30px 32px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0,0,0,.85);
}
.frame > .grain { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.frame > .frame-content { position: relative; z-index: 1; }

/* Masthead */
.masthead {
  border-bottom: 3px double var(--ink);
  padding-bottom: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.masthead .title {
  flex: 1;
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(34px, 6.5vw, 60px);
  letter-spacing: -.01em;
  line-height: .9;
  text-transform: uppercase;
  margin: 0;
}
.masthead .sub {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  margin-top: 6px;
  text-transform: uppercase;
}
.masthead .right {
  text-align: right;
  padding-bottom: 4px;
}
.masthead .right .label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.masthead .right .scrawl {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  display: inline-block;
  transform: rotate(-2deg);
  margin-top: 2px;
}

/* Breadcrumb */
.crumbs {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  margin: 0 0 12px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}
.crumbs a { color: var(--ink); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* Search bar (page-level seek) */
.seek {
  border: 2px solid var(--ink);
  padding: 10px 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
}
.seek .label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.seek input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Special Elite', monospace;
  font-size: 15px;
  outline: none;
  color: var(--ink);
}
.seek input::placeholder { color: rgba(10,10,10,.5); }
.seek .go {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  padding: 5px 12px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}
.seek .go:hover { background: var(--red); }

/* ── HOME: 3-col classifieds ──────────────────────────────── */
.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.cols > section { padding-right: 18px; border-right: 1px solid var(--ink); }
.cols > section:last-child { padding-right: 0; border-right: none; }
.col-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.col-head a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-decoration: none;
  color: var(--ink);
  opacity: .7;
}
.col-head a:hover { opacity: 1; }
.col-item {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0,0,0,.4);
  text-decoration: none;
  color: var(--ink);
}
.col-item:last-child { border-bottom: none; }
.col-item:hover .name { background: var(--accent); }
.col-item .name {
  font-family: 'Special Elite', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  display: inline;
}
.col-item .body {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 3px;
}
.col-item .meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  margin-top: 5px;
  opacity: .7;
}

/* Hand scrawl float */
.scrawl-float {
  position: absolute;
  transform: rotate(-3deg);
  background: var(--accent);
  padding: 4px 10px;
  border: 1.5px solid var(--ink);
  font-family: 'Caveat', cursive;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
}

/* Stats row under masthead on home */
.stats-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  margin: 6px 0 18px;
}
.stats-row strong {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  margin-right: 6px;
  vertical-align: -3px;
}

/* Sections row footer (on home) */
.sections-row {
  border-top: 2px solid var(--ink);
  margin-top: 26px;
  padding-top: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: baseline;
}
.sections-row .lbl {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
}
.sections-row a {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.sections-row a:hover { border-bottom-color: var(--ink); }

/* Hood cloud (home + neighborhoods index) */
.hood-cloud {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hood-chip {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  padding: 3px 10px;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.hood-chip:hover { background: var(--ink); color: var(--paper); }
.hood-chip .count {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  opacity: .7;
}
.hood-chip:hover .count { opacity: 1; }

/* ── TOP 10 BANGERS grid (home only) ──────────────────────── */
.top10-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.top10-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 rgba(0,0,0,.85);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.top10-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,.85);
}
.top10-card:nth-child(odd) { transform: rotate(-.4deg); }
.top10-card:nth-child(odd):hover { transform: rotate(-.4deg) translate(-2px, -2px); }
.top10-card:nth-child(even) { transform: rotate(.4deg); }
.top10-card:nth-child(even):hover { transform: rotate(.4deg) translate(-2px, -2px); }

.top10-num {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  width: 30px;
  height: 30px;
  background: var(--accent);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}
.top10-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper-dark);
}
.top10-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
}
.top10-meta {
  padding: 8px 10px 10px;
  background: var(--paper);
}
.top10-name {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .01em;
}
.top10-where {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: .65;
}
.top10-hours {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: .04em;
  margin-top: 4px;
  padding: 1px 6px;
  background: var(--accent);
  border: 1px solid var(--ink);
  display: inline-block;
}
.top10-hook {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  line-height: 1.1;
  margin-top: 4px;
}
@media (max-width: 1000px) {
  .top10-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .top10-grid { grid-template-columns: repeat(3, 1fr); }
  .top10-name { font-size: 14px; }
  .top10-hook { font-size: 14px; }
}
@media (max-width: 520px) {
  .top10-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── LATE NEEDS grid (home only) ──────────────────────── */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.need-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 rgba(0,0,0,.85);
  padding: 14px;
  transition: transform .15s, box-shadow .15s;
  min-height: 168px;
}
.need-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,.85);
}
.need-card--feat {
  background: var(--accent);
  border-width: 2.5px;
  grid-column: span 2;
}
.need-glyph {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  line-height: 1;
  opacity: .25;
  pointer-events: none;
}
.need-card--feat .need-glyph { font-size: 60px; opacity: .35; }
.need-label {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
}
.need-card--feat .need-label { font-size: 28px; }
.need-sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: .65;
}
.need-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  line-height: 1.4;
}
.need-list li {
  padding: 2px 0;
  border-bottom: 1px dashed rgba(0,0,0,.25);
}
.need-list li:last-child { border-bottom: none; }
.need-hood {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  opacity: .6;
}
.need-empty { font-style: italic; opacity: .5; }
.need-more {
  margin-top: auto;
  padding-top: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .8;
}
.need-card:hover .need-more { opacity: 1; }

@media (max-width: 1000px) {
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .need-card--feat { grid-column: span 2; }
}
@media (max-width: 520px) {
  .needs-grid { grid-template-columns: 1fr; }
  .need-card--feat { grid-column: span 1; }
}

/* ── CATEGORY / ALL VENUES: filter row + 2-col list ───────── */
.filter-row {
  display: flex;
  gap: 6px 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: 1px dashed var(--ink);
  padding-bottom: 12px;
}
.filter-row .lbl {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  margin-right: 4px;
}
.filter-row .chip {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  padding: 3px 10px;
  border: 1.5px solid var(--ink);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .02em;
}
.filter-row .chip.on,
.filter-row .chip:hover { background: var(--ink); color: var(--paper); }

.listings-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 8px;
}
.listing-row {
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0,0,0,.4);
  margin-bottom: 6px;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.listing-row:hover .nm { background: var(--accent); }
.listing-row .head {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.listing-row .num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  opacity: .6;
  width: 28px;
  flex-shrink: 0;
}
.listing-row .nm {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.listing-row .tag {
  font-family: 'Special Elite', monospace;
  font-size: 9px;
  padding: 1px 6px;
  border: 1.5px solid var(--ink);
  margin-left: auto;
  letter-spacing: .08em;
  white-space: nowrap;
  text-transform: uppercase;
}
.listing-row .hint {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  margin-left: 34px;
  opacity: .7;
  font-style: italic;
}
.listing-row .blurb {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  margin-left: 34px;
  margin-top: 4px;
  line-height: 1.4;
}
.listing-row .stats {
  margin-left: 34px;
  margin-top: 5px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
}

/* ── VENUE detail page ────────────────────────────────────── */
.title-block {
  border-bottom: 3px double var(--ink);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.title-block .bignm {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 8.5vw, 84px);
  line-height: .9;
  text-transform: uppercase;
  margin: 0;
}
.title-block .meta {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  font-family: 'Special Elite', monospace;
  font-size: 13px;
}
.title-block .meta .sep { opacity: .5; }

.venue-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}
.venue-body .photo { height: 220px; }

/* Top-10 venues get a real zine illustration in place of the halftone */
.venue-photo {
  margin: 0;
  position: relative;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 rgba(0,0,0,.85);
  overflow: hidden;
}
.venue-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: contrast(1.05);
}
.venue-photo figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  border-top: 1.5px solid var(--ink);
  background: var(--paper);
}
.venue-photo .rank {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--accent);
  border: 1.5px solid var(--ink);
  padding: 2px 8px;
}
.venue-photo .hook {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  text-align: right;
  line-height: 1;
}
.venue-body .copy {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 14px;
  column-count: 2;
  column-gap: 18px;
}
.venue-body .copy p { margin: 0 0 12px; break-inside: avoid; }
.venue-body .cta {
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  display: inline-block;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.venue-body .cta:hover { background: var(--red); }

.vitals {
  border: 2px solid var(--ink);
  padding: 14px;
  background: var(--paper);
}
.vitals h3 {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  margin: 0 0 8px;
  letter-spacing: .02em;
}
.vitals .row {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-family: 'Special Elite', monospace;
  margin-top: 4px;
}
.vitals .row .k { width: 56px; opacity: .6; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.vitals .row .v { flex: 1; border-bottom: 1px dotted rgba(0,0,0,.4); }
.vitals .row .v a { color: var(--ink); }

.postit {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--accent);
  border: 1.5px solid var(--ink);
  transform: rotate(-1.5deg);
}
.postit .txt {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  line-height: 1.15;
}
.postit .sig {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  opacity: .7;
  margin-top: 4px;
}

.actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.actions a, .actions button {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  padding: 8px 4px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  text-align: center;
  letter-spacing: .05em;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}
.actions a:hover, .actions button:hover { background: var(--ink); color: var(--paper); }

.venue-stamp {
  position: absolute;
  top: 70px;
  right: 28px;
  z-index: 3;
}

.venue-tags {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.venue-tags .t {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  padding: 2px 7px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
}

/* Bourdain-voice editorial on top-10 venue pages */
.editorial {
  margin-top: 32px;
  padding: 24px 28px 26px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 rgba(0,0,0,.85);
  position: relative;
}
.editorial-head {
  border-bottom: 3px double var(--ink);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.editorial-mark {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 6px;
}
.editorial-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.editorial-byline {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  margin-top: 6px;
  display: inline-block;
  transform: rotate(-1.5deg);
  opacity: .7;
}
.editorial p {
  font-family: 'Special Elite', monospace;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.editorial-lead::first-letter {
  font-family: 'Alfa Slab One', serif;
  font-size: 48px;
  float: left;
  line-height: 1;
  padding: 4px 8px 0 0;
  margin-top: 2px;
}
.editorial p:last-child { margin-bottom: 0; }

/* Sprinkled inline images inside the editorial article */
.editorial-img {
  margin: 0;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 rgba(0,0,0,.85);
  overflow: hidden;
}
.editorial-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: contrast(1.05);
}
.editorial-img figcaption {
  padding: 6px 10px;
  border-top: 1.5px solid var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  line-height: 1.3;
  background: var(--paper);
}

/* Lead — full width, before the first paragraph */
.editorial-img--lead {
  width: 100%;
  margin: 4px 0 18px;
  transform: rotate(-.3deg);
}
.editorial-img--lead img { aspect-ratio: 16 / 10; }

/* Right-floated portrait — wraps next to a paragraph */
.editorial-img--right {
  float: right;
  width: 38%;
  max-width: 320px;
  margin: 4px 0 12px 22px;
  transform: rotate(.6deg);
  shape-outside: margin-box;
}

/* Left-floated portrait */
.editorial-img--left {
  float: left;
  width: 38%;
  max-width: 320px;
  margin: 4px 22px 12px 0;
  transform: rotate(-.6deg);
  shape-outside: margin-box;
}

/* 2-up spread between paragraphs */
.editorial-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 6px 0 16px;
  clear: both;
}
.editorial-spread .editorial-img--spread {
  width: 100%;
}
.editorial-spread .editorial-img--spread:nth-child(odd)  { transform: rotate(-.4deg); }
.editorial-spread .editorial-img--spread:nth-child(even) { transform: rotate(.4deg); }

.editorial-clear { clear: both; }

@media (max-width: 700px) {
  .editorial-img--right,
  .editorial-img--left {
    float: none;
    width: 100%;
    max-width: none;
    margin: 6px 0 14px;
  }
  .editorial-spread { grid-template-columns: 1fr; }
}

/* Reused on related sections */
.related-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 5px;
  margin: 0 0 14px;
  letter-spacing: .01em;
}
@media (max-width: 520px) {
  .editorial { padding: 18px 18px 20px; }
  .editorial p { font-size: 13px; }
}

/* Related sections at bottom of venue page */
.related {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink);
}
.related h2 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  margin: 0 0 12px;
}

/* ── MAP ──────────────────────────────────────────────────── */
.map-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}
.map-panel {
  border: 2px solid var(--ink);
  position: relative;
  background: var(--newsprint);
  overflow: hidden;
  aspect-ratio: 11 / 10;
}
.map-panel .hatch {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,.05) 0 1px, transparent 1px 10px);
}
.map-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-panel .marker {
  position: absolute;
  font-family: 'Special Elite', monospace;
  font-size: 9px;
  font-weight: 700;
  transform: translate(-50%, -100%);
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
}
.map-panel .marker .tag {
  background: var(--ink);
  color: var(--paper);
  padding: 1px 5px;
  box-shadow: 1px 1px 0 rgba(0,0,0,.4);
  white-space: nowrap;
}
.map-panel .marker .pt {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink);
  margin: 0 auto;
}
.map-panel .marker:hover .tag { background: var(--red); }
.map-panel .marker:hover { z-index: 5; }

.map-side h3 {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 5px;
  margin: 0 0 8px;
}
.key-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  text-decoration: none;
  color: var(--ink);
}
.key-row .sq {
  width: 24px; height: 22px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.key-row .name {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  flex: 1;
}
.key-row .count {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  opacity: .6;
}
.key-row:hover .name { background: var(--accent); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  border-top: 3px double var(--ink);
  margin-top: 30px;
  padding-top: 14px;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  letter-spacing: .05em;
  opacity: .8;
}
.site-footer a { color: var(--ink); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cols { grid-template-columns: 1fr 1fr; }
  .cols > section:nth-child(2) { border-right: none; padding-right: 0; }
  .cols > section:nth-child(3) { grid-column: 1 / -1; padding-right: 0; border-right: none; border-top: 1px solid var(--ink); padding-top: 14px; margin-top: 6px; }
  .venue-body { grid-template-columns: 1fr; }
  .venue-body .copy { column-count: 1; }
  .map-grid { grid-template-columns: 1fr; }
  .venue-stamp { top: auto; bottom: 14px; right: 14px; }
}
@media (max-width: 768px) {
  .nav-search { flex: 1 1 100%; min-width: 0; }
  .filter-row { align-items: center; }
}
@media (max-width: 620px) {
  .shell { padding: 12px 12px 50px; }
  .frame { padding: 18px 16px 24px; }
  .cols { grid-template-columns: 1fr; }
  .cols > section { border-right: none; padding-right: 0; border-top: 1px solid var(--ink); padding-top: 12px; }
  .cols > section:first-child { border-top: none; padding-top: 0; }
  .listings-2col { grid-template-columns: 1fr; }
  .venue-body .copy { column-count: 1; }
  .masthead .title { font-size: 40px; }
  .title-block .bignm { font-size: 50px; }
  .nav-search { flex: 1 1 100%; }
  .site-nav { gap: 8px 12px; }
}
