/* =============================================================
   O'NEALS PUB — "The Late Edition"
   Back-page sports column · newsprint + halftone + ink stamps
   Type: Big Shoulders Display · Spectral · Special Elite
   ============================================================= */

:root {
  /* --- newsprint paper --- */
  --paper:      #F1ECDF;
  --paper-2:    #E8E1CC;
  --paper-3:    #FAF6E9;
  --paper-edge: #D9CFB4;

  /* --- press ink --- */
  --ink:        #13110D;
  --ink-2:      #2A251C;
  --ink-3:      #5A4E3B;
  --ink-soft:   rgba(19, 17, 13, 0.62);

  /* --- bottle green (Guinness bottle, not kelly green) --- */
  --bottle:     #0E2118;
  --bottle-2:   #16352A;
  --bottle-3:   #21493A;

  /* --- brick red (row-house facade) — used SPARINGLY, stamps only --- */
  --brick:      #7C140C;
  --brick-2:    #5A0F09;
  --brick-3:    #A03028;

  /* --- brass (tap handles, hairlines) --- */
  --brass:      #C9A24B;
  --brass-2:    #8A6E40;
  --brass-3:    #E8D391;

  /* --- walnut (deep wood) --- */
  --walnut:     #3A2818;
  --walnut-2:   #251812;

  /* --- chalk --- */
  --chalk:      #EDE6D1;
  --chalk-2:    #B9B3A0;
  --chalk-dust: rgba(237, 230, 209, 0.14);

  /* --- rules --- */
  --rule:       rgba(19, 17, 13, 0.18);
  --rule-2:     rgba(19, 17, 13, 0.08);
  --rule-l:     rgba(241, 236, 223, 0.18);
  --rule-l-2:   rgba(241, 236, 223, 0.08);

  /* --- type --- */
  --display:    "Big Shoulders Display", "Bebas Neue", "Impact", system-ui, sans-serif;
  --serif:      "Spectral", "Source Serif 4", Georgia, "Times New Roman", serif;
  --type:       "Special Elite", "Courier New", ui-monospace, monospace;

  /* --- layout --- */
  --container:  1280px;
  --pad:        clamp(20px, 4vw, 44px);
  --section-y:  clamp(80px, 11vw, 140px);

  /* --- motion --- */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================
   RESET / BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Newsprint grain — baked into the whole page, very subtle */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.42;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07  0 0 0 0 0.07  0 0 0 0 0.05  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 260px 260px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease-2); }

::selection { background: var(--brick); color: var(--paper-3); }

button { font: inherit; cursor: pointer; }

/* =============================================================
   FOCUS — visible, deliberate, ink-stamp
   ============================================================= */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  font-family: var(--type);
  font-size: 13px;
  letter-spacing: 0.04em;
  z-index: 1000;
}
.skip-link:focus { top: 8px; left: 8px; }

/* =============================================================
   LAYOUT — container
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* =============================================================
   TYPE — section heads, kickers, dropcap
   ============================================================= */

/* --- KICKER — small caps preamble --- */
.kicker {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 16px;
  font-weight: 400;
}
.kicker--brass { color: var(--brass); }
.kicker--brick { color: var(--brick); }
.kicker--chalk { color: var(--brass-3); }

/* --- HEAD — the workhorse H2 --- */
.head {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
}
.head--center { text-align: center; }
.head--light  { color: var(--paper); }
.head--chalk {
  color: var(--chalk);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 0 1px rgba(237, 230, 209, 0.3);
}

/* --- SECTION HEAD wrapper --- */
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 76px);
}
.section__head--light { color: var(--paper); }
.section__deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 14px auto 0;
  max-width: 56ch;
}
.section__head--light .section__deck { color: rgba(241, 236, 223, 0.78); }

/* --- BYLINE --- */
.byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
  margin: 8px 0 0;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 48px;
  font-family: var(--type);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  position: relative;
  transition:
    transform .18s var(--ease),
    background .2s var(--ease-2),
    color .2s var(--ease-2),
    box-shadow .2s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid currentColor;
  opacity: 0.0;
  transition: opacity .2s var(--ease-2), inset .2s var(--ease);
  pointer-events: none;
}

/* hover gated to real cursors only; touch devices skip these states */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
  .btn:hover::before { opacity: 0.55; inset: 2px; }
  .btn--solid:hover { box-shadow: 4px 4px 0 var(--brick); background: var(--ink); }
  .btn--inline:hover { transform: none; box-shadow: none; color: var(--brass); }
}

/* press feedback — every pressable confirms it heard the click */
.btn:active {
  transform: translate(0, 0) scale(0.985);
  box-shadow: 1px 1px 0 var(--ink);
  transition-duration: .08s;
}
.btn--solid:active { box-shadow: 1px 1px 0 var(--brick); }
.btn--inline:active { transform: scale(0.985); box-shadow: none; }

.btn--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--solid::before { border-color: var(--paper); }

.btn--quiet { border-color: var(--ink); }

.btn--inline {
  padding: 10px 0;
  min-height: 0;
  border: none;
  border-bottom: 1.5px solid currentColor;
  letter-spacing: 0.14em;
  font-size: 12px;
}
.btn--inline::before { display: none; }

/* =============================================================
   STAMPS — rubber-stamp marks
   ============================================================= */
.stamp {
  display: inline-block;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1.5px solid currentColor;
  color: var(--ink);
  background: transparent;
}
.stamp--est { color: var(--ink-2); }

.rubber {
  display: inline-block;
  font-family: var(--type);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  border: 2px solid var(--brick);
  padding: 10px 16px;
  transform: rotate(-7deg);
  position: relative;
  opacity: 0.92;
  /* faded stamp edge */
  mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2'/><feDisplacementMap in='SourceGraphic' scale='1.5'/></filter><rect width='200' height='60' fill='black' filter='url(%23r)'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2'/><feDisplacementMap in='SourceGraphic' scale='1.5'/></filter><rect width='200' height='60' fill='black' filter='url(%23r)'/></svg>");
}
.rubber::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, transparent 60%, rgba(241, 236, 223, 0.4) 70%, transparent 75%),
    radial-gradient(circle at 70% 60%, transparent 60%, rgba(241, 236, 223, 0.35) 70%, transparent 75%);
  pointer-events: none;
}

/* =============================================================
   MASTHEAD
   ============================================================= */
.masthead {
  background: var(--paper);
  border-bottom: 4px double var(--ink);
  position: relative;
  z-index: 20;
}

/* --- top strip (vol/no/date) --- */
.strip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 9px 0;
  text-align: center;
}
.strip__cell { white-space: nowrap; }
.strip__cell strong { font-weight: 400; color: var(--brass-3); }
.strip__pub { color: var(--brass); }
.strip__cell--price { color: var(--brass-3); }
.strip__sep { color: rgba(241, 236, 223, 0.32); }
.strip__date { color: var(--paper); }

/* --- main masthead row --- */
.masthead__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  padding: clamp(20px, 3vw, 32px) var(--pad);
}

.masthead__left {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.masthead__eyebrow {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0;
}
.masthead__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink);
  margin: 0;
  max-width: 28ch;
  line-height: 1.35;
}

.masthead__brand { display: inline-flex; align-items: center; }
.masthead__brand img {
  height: clamp(72px, 9vw, 110px);
  width: auto;
  filter: drop-shadow(0 1px 0 rgba(19,17,13,0.08));
}

.masthead__phone {
  justify-self: end;
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 12px 16px;
  border: 1.5px solid var(--ink);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .masthead__phone:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--ink);
  }
}
.masthead__phone:active {
  transform: translate(0, 0) scale(0.985);
  box-shadow: 1px 1px 0 var(--ink);
  transition-duration: .08s;
}
.phone__label {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.phone__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.01em;
  color: var(--ink);
}
.phone__dot {
  position: absolute;
  top: -5px; right: -5px;
  width: 10px; height: 10px;
  background: var(--brick);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(124, 20, 12, 0.6);
  animation: phonePulse 2.4s var(--ease-2) infinite;
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 20, 12, 0.55); }
  60% { box-shadow: 0 0 0 10px rgba(124, 20, 12, 0); }
}

/* --- nav row --- */
.masthead__nav {
  border-top: 1px solid var(--ink);
  background: var(--paper);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}
.nav__list {
  display: flex;
  gap: clamp(20px, 3.2vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  display: inline-block;
  padding: 14px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 8px;
  width: 0; height: 2px;
  background: var(--brick);
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav__list a:hover::after,
.nav__list a:focus-visible::after { width: calc(100% + 4px); }

.nav__toggle {
  display: none;
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  background: transparent;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle-bar {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease-2);
  transform-origin: center;
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle.is-open .nav__toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .masthead__main { grid-template-columns: 1fr auto; }
  .masthead__left { display: none; }
  .nav__toggle { display: flex; }
  .nav__list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--paper);
    border-bottom: 4px double var(--ink);
    border-top: 1px solid var(--ink);
    padding: 12px 0 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease-2);
    z-index: 30;
  }
  .nav__list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list li { width: 100%; text-align: center; }
  .nav__list a { padding: 14px 0; display: block; min-height: 44px; }
}

@media (max-width: 540px) {
  .strip__row { font-size: 10px; gap: 4px 9px; }
  .strip__sep:nth-of-type(odd) { display: none; }
}

/* =============================================================
   HERO — front page banner
   ============================================================= */
.hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(60px, 8vw, 96px);
  position: relative;
  border-bottom: 1px solid var(--ink);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__rule {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 720px;
  margin: 0 0 clamp(28px, 4vw, 48px);
}
.hero__rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink) 12%, var(--ink) 88%, transparent);
  opacity: 0.5;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 11.5vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
  /* ink-bleed: a subtle wet-on-newsprint chromatic offset */
  text-shadow:
    0.5px 0 0 rgba(124, 20, 12, 0.08),
    -0.5px 0 0 rgba(14, 33, 24, 0.07);
}
.hero__line { display: block; }
.hero__line--alt {
  color: var(--bottle);
  font-style: normal;
  font-weight: 900;
  position: relative;
}
.hero__line--alt::after {
  content: "";
  display: block;
  width: clamp(80px, 10vw, 140px);
  height: 4px;
  background: var(--brick);
  margin: clamp(14px, 1.4vw, 20px) auto 0;
}

.hero__deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: var(--ink-2);
  margin: clamp(28px, 3.5vw, 44px) auto 0;
  max-width: 52ch;
}
.hero__deck em {
  font-style: italic;
  color: var(--bottle);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(28px, 3.6vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero__link {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-2);
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease-2), border-color .2s var(--ease-2);
}
.hero__link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform .25s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .hero__link:hover { color: var(--brick); border-bottom-color: var(--brick); }
  .hero__link:hover span { transform: translateX(4px); }
}
.hero__link:active { transform: scale(0.985); transition-duration: .08s; }

.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: clamp(48px, 7vw, 80px) auto clamp(36px, 5vw, 56px);
  color: var(--ink);
  opacity: 0.5;
}
.ornament__line {
  flex: 1;
  height: 1px;
  background: currentColor;
}
.ornament__pip {
  font-size: 11px;
  letter-spacing: 0.4em;
}

/* --- BOXSCORE --- */
.boxscore {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 0;
  text-align: left;
  position: relative;
}
.boxscore::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--ink);
  pointer-events: none;
  opacity: 0.4;
}
.boxscore__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.boxscore__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.boxscore__sub {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-3);
}

.boxscore__rows {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
}
.bs {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  padding: clamp(22px, 3vw, 32px) 14px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.bs:last-child { border-right: 0; }
.bs dt {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 8px 0 0;
}
.bs dd { margin: 0; }
.bs__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.bs__plus {
  color: var(--brick);
  font-size: 0.5em;
  margin-left: 2px;
  vertical-align: super;
  font-weight: 900;
}
.bs__unit {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.36em;
  letter-spacing: 0.06em;
  margin-left: 4px;
  vertical-align: super;
  color: var(--ink-2);
}

.boxscore__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-top: 1px solid var(--ink);
  background: var(--paper-2);
}
.boxscore__stars {
  font-family: var(--type);
  letter-spacing: 0.6em;
  color: var(--brick);
  font-size: 12px;
}
.boxscore__final {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 880px) {
  .boxscore__rows { grid-template-columns: repeat(3, 1fr); }
  .bs:nth-child(3) { border-right: 0; }
  .bs:nth-child(n+4) { border-top: 1px solid var(--rule); }
  .bs:nth-child(4) { border-right: 1px solid var(--rule); }
}
@media (max-width: 540px) {
  .boxscore__rows { grid-template-columns: repeat(2, 1fr); }
  .bs { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .bs:nth-child(2n), .bs:last-child { border-right: 0; }
  .bs:nth-last-child(-n+2) { border-bottom: 0; }
  .bs:nth-child(5) { grid-column: 1 / -1; }
  .boxscore__foot { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =============================================================
   WIRE — typewriter tonight ticker
   ============================================================= */
.wire {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.wire::before {
  /* faint horizontal scanline grain — like an old AP wire printer */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 2px,
    rgba(241, 236, 223, 0.025) 2px 3px
  );
  pointer-events: none;
}
.wire__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  padding: 18px 0;
  flex-wrap: wrap;
  position: relative;
}
.wire__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 5px 12px;
  border: 1px solid var(--brass-2);
}
.wire__dot {
  width: 8px; height: 8px;
  background: var(--brick-3);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(160, 48, 40, 0.55);
  animation: wireDot 1.6s var(--ease-2) infinite;
}
@keyframes wireDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(160, 48, 40, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(160, 48, 40, 0); }
}

.wire__line {
  flex: 1;
  min-width: 240px;
  font-family: var(--type);
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.4;
  color: var(--paper);
  margin: 0;
  letter-spacing: 0.02em;
}
.wire__day {
  color: var(--brass);
  margin-right: 6px;
}
.wire__cursor {
  display: inline-block;
  color: var(--brass);
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
  font-size: 0.9em;
}
@keyframes blink { 50% { opacity: 0; } }

.wire__cta {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--brass-2);
  transition: color .2s var(--ease-2), border-color .2s var(--ease-2);
}
.wire__cta:hover { color: var(--paper); border-color: var(--paper); }

/* =============================================================
   STORY — editorial column with drop cap + sidebar
   ============================================================= */
.story {
  background: var(--paper);
  padding: var(--section-y) 0;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 980px) {
  .story__grid { grid-template-columns: 1fr; }
}

.story__head { position: sticky; top: 0; }
@media (max-width: 980px) { .story__head { position: static; } }

.story__body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink);
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid var(--rule);
}
.story__body p { margin: 0 0 14px; break-inside: avoid-column; }
.story__body em { font-style: italic; color: var(--bottle); }
.story__close { font-size: 1.1em; }
.signoff {
  font-family: var(--type);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-top: 18px;
}
.nowrap { white-space: nowrap; }

@media (max-width: 720px) {
  .story__body { column-count: 1; }
}

.dropcap .dc {
  float: left;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(64px, 7vw, 92px);
  line-height: 0.82;
  margin: 6px 12px 0 0;
  color: var(--brick);
  letter-spacing: -0.02em;
}

.story__aside {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 26px 24px 28px;
  position: relative;
}
.aside__head {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rule);
}
.aside__list { list-style: none; margin: 0; padding: 0; }
.aside__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-2);
}
.aside__list li:last-child { border-bottom: 0; }
.aside__n {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.aside__n small {
  font-size: 0.42em;
  margin-left: 2px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.aside__t {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-2);
}
.aside__stamp {
  margin: 24px 0 0;
  text-align: center;
}

/* =============================================================
   PHOTO PLATE — press-photo intermission
   ============================================================= */
.plate {
  background: var(--paper);
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--ink);
}
.plate__frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--ink);
}
.plate__frame::before {
  /* inner hairline like the boxscore — newspaper layout convention */
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(241, 236, 223, 0.18);
  z-index: 2;
  pointer-events: none;
}
.plate__frame::after {
  /* halftone dot overlay — turns any image into press photography */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(19, 17, 13, 0.42) 0.65px, transparent 1.1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.plate__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.18) brightness(0.94);
  mix-blend-mode: multiply;
}
.plate__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 16px 0 0;
  padding: 0 4px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.plate__caption strong {
  font-style: normal;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  font-weight: 400;
}
.plate__byline {
  margin-left: auto;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-style: normal;
}
@media (max-width: 640px) {
  .plate__byline { margin-left: 0; }
  .plate__caption { font-size: 14px; }
}

/* =============================================================
   REGULARS — halftone wall
   ============================================================= */
.regulars {
  background: var(--paper-2);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.regulars__head { text-align: center; max-width: 760px; margin: 0 auto clamp(44px, 6vw, 64px); }

.wall {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
@media (max-width: 880px) { .wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .wall { grid-template-columns: repeat(2, 1fr); } }

.reg { text-align: center; }
.reg__frame {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 8px 8px 6px;
  margin-bottom: 12px;
  position: relative;
  transition: transform .35s var(--ease);
}
.reg__frame::after {
  /* faint film-edge feel */
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .reg:hover .reg__frame { transform: translate(-3px, -3px); box-shadow: 4px 4px 0 var(--ink); }
}

.reg__halftone {
  aspect-ratio: 4 / 5;
  background-color: var(--paper);
  position: relative;
  overflow: hidden;
}
/* JS sets a background-image gradient mask per-portrait */
.reg__halftone::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--ink) 0.9px, transparent 1.2px);
  background-size: 3.2px 3.2px;
  -webkit-mask-image: var(--mask, none);
          mask-image: var(--mask, none);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0.9;
}

.reg__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.reg__since {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 2px 0 0;
}

.wall__caption {
  text-align: center;
  margin: clamp(36px, 4vw, 56px) auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
}
.wall__caption em { color: var(--brick); font-style: italic; }

/* =============================================================
   KITCHEN — broadsheet menu
   ============================================================= */
.kitchen {
  background: var(--paper);
  padding: var(--section-y) 0;
}

.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 5vw, 72px);
  row-gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 740px) {
  .menu { grid-template-columns: 1fr; }
}

.dish {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.dish:last-child { border-bottom: 0; }

.dish__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.dish__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.dish__leader {
  flex: 1;
  height: 0;
  border-bottom: 2px dotted var(--ink);
  opacity: 0.35;
  transform: translateY(-5px);
}
.dish__price {
  font-family: var(--type);
  font-size: 17px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  position: relative;
  white-space: nowrap;
}
.dish__price::before {
  content: "$";
  opacity: 0.55;
  margin-right: 1px;
}
.dish__price sup {
  font-size: 0.62em;
  vertical-align: super;
}
.dish__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}
.dish__note em { color: var(--brick); font-style: italic; font-weight: 500; }

.dish--star { position: relative; }
.dish--star::before {
  content: "★";
  position: absolute;
  left: -22px; top: 24px;
  color: var(--brick);
  font-size: 14px;
}
@media (max-width: 740px) {
  .dish--star::before { left: -16px; }
}

.menu__foot {
  margin: clamp(48px, 6vw, 72px) auto 0;
  text-align: center;
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
  max-width: 720px;
}
.menu__foot span { display: inline-block; }

/* =============================================================
   BAR — dark walnut, taplist with tabs
   ============================================================= */
.bar {
  background: var(--walnut-2);
  color: var(--paper);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.bar::before {
  /* very subtle wood grain — vertical, low contrast */
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 8px,
      rgba(58, 40, 24, 0.4) 8px 9px,
      transparent 9px 18px,
      rgba(58, 40, 24, 0.25) 18px 19px
    ),
    radial-gradient(60% 40% at 50% 0%, rgba(201, 162, 75, 0.06), transparent 70%);
  pointer-events: none;
  opacity: 0.55;
}
.bar > .container { position: relative; }

.bar__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  border-bottom: 1px solid var(--rule-l);
  margin-bottom: 0;
}
.bar__tab {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 236, 223, 0.55);
  background: transparent;
  border: 0;
  padding: 16px 24px;
  position: relative;
  transition: color .25s var(--ease-2);
}
.bar__tab::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: -1px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--ease);
}
.bar__tab:hover { color: var(--paper); }
.bar__tab.is-active {
  color: var(--brass-3);
}
.bar__tab.is-active::after { transform: scaleX(1); }

.bar__panels { padding-top: clamp(36px, 5vw, 56px); }
.bar__panel { display: none; }
.bar__panel.is-active { display: block; animation: panelIn .4s var(--ease) both; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* TAPS */
.taps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.tap {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-l);
  position: relative;
}
.tap:last-child { border-bottom: 0; }
.tap__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}
.tap__name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--paper);
}
.tap__leader {
  height: 0;
  border-bottom: 1.5px dotted rgba(241, 236, 223, 0.22);
  transform: translateY(-5px);
}
.tap__pour {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-3);
}

/* the pour-ring — micro motion on hover */
.tap::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg,
    rgba(201, 162, 75, 0.07),
    rgba(201, 162, 75, 0.12) 60%,
    transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s cubic-bezier(0.25, 1, 0.45, 1);
  z-index: -1;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .tap:hover::before { transform: scaleX(1); }
}

.bar__foot {
  margin: clamp(32px, 4vw, 48px) auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(241, 236, 223, 0.7);
  max-width: 60ch;
}

/* POURS */
.pours {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
}
.pour {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-l);
  align-items: baseline;
}
.pour:last-child { border-bottom: 0; }
.pour__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-3);
}
.pour__desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(241, 236, 223, 0.82);
}
@media (max-width: 620px) {
  .pour { grid-template-columns: 1fr; gap: 4px; }
}

/* =============================================================
   HAPPY HOUR — brick red strip, contained
   ============================================================= */
.happy {
  background: var(--brick);
  color: var(--paper);
  padding: clamp(56px, 7vw, 84px) 0;
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
  position: relative;
}
.happy::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(0,0,0,0.22), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.happy__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 880px) {
  .happy__inner { grid-template-columns: 1fr; }
}

.happy__copy .kicker--brick { color: var(--brass-3); }
.happy__copy .head { color: var(--paper); text-align: left; }
.happy__head { text-align: left; }
.happy__copy { text-align: left; }
.happy__deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(241, 236, 223, 0.86);
  max-width: 52ch;
  margin: 0;
}
.happy__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .happy__cards { grid-template-columns: 1fr; } }

.happy__card {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(241, 236, 223, 0.22);
  padding: 22px 20px;
  display: flex; flex-direction: column;
  gap: 4px;
  position: relative;
}
.happy__card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(241, 236, 223, 0.12);
  pointer-events: none;
}
.happy__when {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-3);
  margin: 0;
}
.happy__hrs {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: 0.005em;
  font-variant-numeric: tabular-nums;
  margin: 4px 0 0;
}
.happy__dash {
  color: var(--brass-3);
  margin: 0 4px;
  font-weight: 500;
}
.happy__where {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 236, 223, 0.7);
  margin: 6px 0 0;
}

/* =============================================================
   THE BOARD — chalkboard
   ============================================================= */
.board {
  background:
    radial-gradient(ellipse at top left, rgba(201, 162, 75, 0.04), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(201, 162, 75, 0.03), transparent 60%),
    #1B1610;
  padding: var(--section-y) 0;
  border-top: 14px solid var(--walnut);
  border-bottom: 14px solid var(--walnut);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    inset 0 0 80px rgba(0,0,0,0.6);
  position: relative;
  color: var(--chalk);
}
.board::before, .board::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 60' xmlns='http://www.w3.org/2000/svg'><filter id='d'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.16 0'/></filter><rect width='100%25' height='100%25' filter='url(%23d)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.35;
}
.board::before { top: 0; }
.board::after  { bottom: 0; transform: scaleY(-1); }

.board__head { text-align: center; max-width: 760px; margin: 0 auto clamp(44px, 6vw, 64px); }
.board__deck {
  font-family: var(--serif);
  font-style: italic;
  color: var(--chalk-2);
  font-size: clamp(16px, 1.4vw, 19px);
  margin: 14px auto 0;
}

.board__grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .board__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .board__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .board__grid { grid-template-columns: 1fr; } }

.chalk {
  position: relative;
  padding: 22px 18px 24px;
  border: 1px dashed rgba(237, 230, 209, 0.2);
  background: rgba(255,255,255,0.012);
  text-align: left;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .chalk:hover {
    transform: translateY(-3px);
    border-color: rgba(237, 230, 209, 0.45);
  }
}

.chalk__day {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 3.8vw, 48px);
  line-height: 0.9;
  color: var(--brass-3);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(232, 211, 145, 0.4),
    0.4px 0 0 rgba(255,255,255,0.05);
}
.chalk__head {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--chalk);
}
.chalk__line {
  font-family: var(--serif);
  font-size: 14px;
  margin: 0;
  color: rgba(237, 230, 209, 0.78);
}
.chalk__line strong {
  font-family: var(--type);
  color: var(--brass-3);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.chalk__tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  border-top: 1px dotted rgba(201, 162, 75, 0.4);
  padding-top: 8px;
}
.chalk__tag--star {
  color: var(--brass-3);
  border-top-color: rgba(232, 211, 145, 0.5);
}

.chalk--star {
  background:
    repeating-linear-gradient(45deg, rgba(232, 211, 145, 0.04) 0 8px, transparent 8px 16px),
    rgba(232, 211, 145, 0.03);
  border-color: rgba(232, 211, 145, 0.42);
}

/* today highlight — chalk looks fresh */
.chalk[data-today="true"] {
  border: 1.5px solid var(--brass-3);
  background:
    repeating-linear-gradient(45deg, rgba(232, 211, 145, 0.05) 0 8px, transparent 8px 16px),
    rgba(232, 211, 145, 0.04);
  box-shadow:
    0 0 0 4px rgba(232, 211, 145, 0.06),
    0 16px 36px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.chalk[data-today="true"]::before {
  content: "TONIGHT";
  position: absolute;
  top: -11px; left: 12px;
  background: var(--brick);
  color: var(--paper);
  font-family: var(--type);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  padding: 4px 10px;
}
.chalk[data-today="true"] .chalk__day { color: var(--paper); }

/* =============================================================
   UPSTAIRS — darts / karaoke / brunch / private
   ============================================================= */
.upstairs {
  background: var(--paper);
  padding: var(--section-y) 0;
}
.up__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 24px);
}
@media (max-width: 1080px) { .up__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .up__grid { grid-template-columns: 1fr; } }

.up {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.up::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .up:hover {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 var(--ink);
  }
  .up--book:hover { box-shadow: 5px 5px 0 var(--brick); }
}

.up__head { display: flex; flex-direction: column; gap: 6px; }
.up__when {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brick);
}
.up__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.up__body {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.up__body em { font-style: italic; color: var(--bottle); }

.up__mark {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}
.up__mark--score span { color: var(--brick); margin: 0 4px; }
.up__mark--song em {
  font-style: italic;
  color: var(--bottle);
}

.up--book {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.up--book::before { border-color: var(--rule-l); }
.up--book .up__when { color: var(--brass-3); }
.up--book .up__name { color: var(--paper); }
.up--book .up__body { color: rgba(241, 236, 223, 0.82); }
.up--book .btn--inline { color: var(--brass-3); border-bottom-color: var(--brass-2); }
@media (hover: hover) and (pointer: fine) {
  .up--book .btn--inline:hover { color: var(--paper); }
}

/* =============================================================
   PRESS — newspaper clippings
   ============================================================= */
.press {
  background: var(--paper-2);
  padding: clamp(64px, 8vw, 96px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.press__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.press__rule {
  height: 1px;
  background: var(--ink);
  flex: 1;
  max-width: 160px;
  opacity: 0.5;
}
.press__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

/* Asymmetric clippings stack — different widths, vertical offsets,
   and pivot points. Reads as a pinned-up pile, not three equal cards. */
.clippings {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(16px, 2.4vw, 32px);
  padding: 8px 0 28px;
}
@media (max-width: 880px) {
  .clippings { grid-template-columns: 1fr; gap: 28px; max-width: 560px; margin: 0 auto; padding-bottom: 0; }
}

.clip {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 26px 24px 22px;
  text-align: left;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 2px 2px 0 rgba(19, 17, 13, 0.06);
}
.clip:nth-child(1) {
  transform: rotate(-1.4deg) translateY(6px);
  transform-origin: top left;
}
.clip:nth-child(2) {
  transform: rotate(0.9deg) translateY(-14px);
  transform-origin: top center;
  margin-top: 14px;
}
.clip:nth-child(3) {
  transform: rotate(-0.5deg) translateY(22px);
  transform-origin: top right;
  margin-top: -6px;
}
@media (max-width: 880px) {
  .clip,
  .clip:nth-child(1),
  .clip:nth-child(2),
  .clip:nth-child(3) {
    transform: rotate(-0.6deg);
    margin-top: 0;
    transform-origin: center;
  }
}

/* Pin / push-pin mark at the top of each clipping */
.clip::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow:
    inset -1px -1px 1px rgba(0,0,0,0.3),
    0 1px 2px rgba(0,0,0,0.4);
}
.clip:nth-child(2)::before { left: auto; right: 22px; background: var(--ink); }
.clip:nth-child(3)::before { left: 50%; transform: translateX(-50%); background: var(--brass-2); }

@media (hover: hover) and (pointer: fine) {
  .clip:hover {
    transform: rotate(0deg) translateY(-4px) !important;
    box-shadow: 4px 6px 0 rgba(19, 17, 13, 0.1);
  }
}

.clip__pub {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rule);
}
.clip__quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.clip__attr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
}

/* =============================================================
   VISIT
   ============================================================= */
.visit {
  background: var(--paper);
  padding: var(--section-y) 0;
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
@media (max-width: 880px) { .visit__grid { grid-template-columns: 1fr; } }

.visit__deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 48ch;
}

.visit__facts {
  margin: 0 0 28px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 480px) { .visit__facts { grid-template-columns: 1fr; } }

.vf { display: flex; flex-direction: column; gap: 4px; }
.vf dt {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.vf dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.vf dd a { border-bottom: 1px solid var(--brick); transition: color .2s var(--ease-2); }
.vf dd a:hover { color: var(--brick); }

.socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 4px;
  min-height: 44px;
  border-bottom: 1.5px solid var(--ink);
  transition: color .2s var(--ease-2), border-color .2s var(--ease-2);
}
.socials a:hover { color: var(--brick); border-color: var(--brick); }

.visit__right { display: flex; flex-direction: column; gap: 0; }
.map {
  position: relative;
  min-height: 380px;
  flex: 1;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--paper-2);
}
.map iframe {
  width: 100%; height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: saturate(0.75) contrast(1.05);
}
.map__btn {
  display: inline-flex;
  align-self: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 18px;
  border: 1.5px solid var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease-2), color .25s var(--ease-2);
}
@media (hover: hover) and (pointer: fine) {
  .map__btn:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--brick);
  }
}
.map__btn:active {
  transform: scale(0.985);
  box-shadow: 1px 1px 0 var(--brick);
  transition-duration: .08s;
}

/* =============================================================
   COLOPHON — newspaper footer
   ============================================================= */
.colophon {
  background: var(--ink);
  color: rgba(241, 236, 223, 0.78);
  padding: clamp(56px, 7vw, 84px) 0 24px;
  border-top: 4px double var(--ink);
}
.colophon__top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(36px, 5vw, 64px);
}
@media (max-width: 720px) {
  .colophon__top { grid-template-columns: 1fr; gap: 36px; }
}

.colophon__brand img {
  height: clamp(80px, 8vw, 110px);
  width: auto;
  filter: brightness(1.04);
}
.colophon__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  margin: 14px 0 0;
  color: rgba(241, 236, 223, 0.85);
}

.colophon__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 580px) { .colophon__cols { grid-template-columns: 1fr; } }

.colophon__cols h4 {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-3);
  margin: 0 0 12px;
  font-weight: 400;
}
.colophon__cols p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 8px;
}
.colophon__cols a {
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease-2), border-color .2s var(--ease-2);
}
.colophon__cols a:hover { color: var(--brass-3); border-bottom-color: var(--brass-2); }

.colophon__rule {
  margin: clamp(40px, 5vw, 56px) 0 22px;
  height: 1px;
  background: var(--rule-l);
}

.colophon__btm {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.colophon__set,
.colophon__rights {
  margin: 0;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(241, 236, 223, 0.55);
  line-height: 1.6;
}
.colophon__set em { color: var(--brass-3); font-style: italic; }
.colophon__set { max-width: 62ch; }

/* =============================================================
   REVEAL — ink laying down on paper
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(1.5px);
  transition:
    opacity .6s var(--ease),
    transform .6s var(--ease),
    filter .6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .wire__cursor { display: none; }
}
