/* Pike's Pub — grunge sports-bar system
 * Based on client's own menu design: black chalkboard + red script + white grunge display.
 */

:root {
  --bg:        #0a0a0a;
  --bg-2:      #141414;
  --bg-3:      #1c1c1c;
  --ink:       #050505;
  --paper:     #f4ecdb;      /* kraft flyer accent */
  --paper-2:   #e7dfc9;
  --red:       #e11e2b;      /* Pike's Pub menu red */
  --red-2:     #ff2c39;
  --red-glow:  #ff4b56;
  --gold:      #f5c542;      /* game-day yellow accent */
  --gold-2:    #ffd75e;
  --white:     #ffffff;
  --off:       #ded7c8;
  --mute:      #9a9a9a;
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.22);
  --line-red:  rgba(225,30,43,0.35);
  --shadow:    0 30px 60px -30px rgba(0,0,0,0.7);

  --display:   "Bebas Neue", "Impact", "Oswald", system-ui, sans-serif;
  --slab:      "Alfa Slab One", "Rockwell", Georgia, serif;
  --script:    "Kaushan Script", "Pacifico", cursive;
  --grunge:    "Special Elite", "Courier New", monospace;
  --sans:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw:      1200px;
  --radius:    14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--white);
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(225,30,43,0.10), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(245,197,66,0.05), transparent 60%),
    var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  letter-spacing: 0.005em;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red-glow); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: var(--white); padding: 12px 16px; z-index: 999;
  font-weight: 800; font-family: var(--display); letter-spacing: .12em;
}
.skip:focus { left: 12px; top: 12px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ─────────────── Chalkboard texture (subtle noise for section-dark) ─────────────── */
.chalkboard {
  background-color: #0d0d0d;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.014) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.010) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.012) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.010) 0 2px, transparent 3px);
  background-size: 260px 260px, 340px 340px, 200px 200px, 300px 300px;
}

/* ─────────────── Announce bar (grungy tape) ─────────────── */
.announce {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-family: var(--display); font-size: 15px; letter-spacing: .18em;
  padding: 10px 16px; text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,.35);
  position: relative; overflow: hidden;
}
.announce::before, .announce::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40px;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.18) 0 8px, transparent 8px 22px);
}
.announce::before { left: 0; }
.announce::after  { right: 0; }
.announce strong { color: var(--gold); font-weight: 700; }
.announce a { color: var(--white); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: #4dff88;
  padding: 3px 10px 3px 22px; margin-left: 4px;
  font-family: var(--display); letter-spacing: .14em; font-size: 13px;
  border: 1px solid rgba(255,255,255,.15);
  position: relative; vertical-align: middle;
}
.live-dot::before {
  content: ""; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; background: #4dff88; border-radius: 50%;
  box-shadow: 0 0 8px #4dff88;
  animation: live-pulse 1.4s ease-in-out infinite;
}
.live-dot[data-state="closed"] { color: #ff8b8b; }
.live-dot[data-state="closed"]::before { background: #ff8b8b; box-shadow: 0 0 8px #ff8b8b; }
@keyframes live-pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .4; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot::before { animation: none; }
}

/* ─────────────── Marquee ticker ─────────────── */
.ticker {
  background: var(--gold); color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden; white-space: nowrap;
  padding: 12px 0;
}
.ticker-track {
  display: inline-flex; gap: 40px;
  font-family: var(--display); font-size: 22px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 400;
  animation: ticker 32s linear infinite;
  will-change: transform;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 40px; }
.ticker-track .dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; display: inline-block; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ─────────────── Nav ─────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10,10,10,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark-img {
  height: 54px; width: auto; display: block;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}
@media (max-width: 500px) { .brand-mark-img { height: 42px; } }

.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--white); font-family: var(--display); font-size: 18px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 4px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--gold); background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--red-glow); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 10px 18px;
  font-family: var(--display); font-size: 17px; letter-spacing: .1em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--gold);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.nav-cta:hover {
  background: var(--red-2); color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--gold);
}
.nav-cta svg { width: 16px; height: 16px; }
.hamburger {
  display: none; background: none; border: 0; color: var(--white);
  padding: 8px; cursor: pointer;
}
.hamburger svg { width: 28px; height: 28px; }
.mobile-menu {
  display: none; padding: 12px 0 20px; border-top: 1px solid var(--line);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: var(--white); padding: 14px 0;
  font-family: var(--display); font-size: 22px; letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border: 0; color: var(--gold); }

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 84px 0 100px;
  border-bottom: 4px solid var(--red);
  background:
    radial-gradient(700px 400px at 15% 30%, rgba(225,30,43,0.14), transparent 55%),
    radial-gradient(700px 400px at 85% 70%, rgba(245,197,66,0.10), transparent 60%),
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.020) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.hero-inner { position: relative; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  background: var(--red); color: var(--white);
  font-family: var(--display); font-size: 14px; letter-spacing: .22em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--gold);
  transform: rotate(-1.5deg);
}
.hero-eyebrow .dot {
  width: 10px; height: 10px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: neon-pulse 1.6s ease-in-out infinite;
}
@keyframes neon-pulse {
  0%,100% { box-shadow: 0 0 4px var(--gold); opacity: .8; }
  50%     { box-shadow: 0 0 14px var(--gold), 0 0 24px var(--gold); opacity: 1; }
}

.hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(58px, 11vw, 168px); line-height: .88;
  margin: 28px auto 20px; max-width: 14ch; letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 4px 4px 0 var(--red);
}
.hero h1 em {
  font-family: var(--script); font-style: normal; font-weight: 400;
  color: var(--red-glow); text-transform: none;
  font-size: 0.72em; letter-spacing: 0;
  text-shadow: 0 0 20px rgba(225,30,43,0.6), 0 0 40px rgba(225,30,43,0.4);
  display: inline-block; transform: rotate(-3deg) translateY(4px);
  padding: 0 6px;
}
.hero p.lede {
  color: var(--off); font-family: var(--grunge);
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 62ch; margin: 0 auto 32px; letter-spacing: .01em;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 26px;
  font-family: var(--display); font-weight: 400; font-size: 20px;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 4px; border: 3px solid var(--ink);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 5px 5px 0 var(--gold);
}
.btn-primary:hover {
  background: var(--red-2); color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--gold);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: var(--white);
  box-shadow: 5px 5px 0 var(--red);
}
.btn-ghost:hover {
  background: var(--white); color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--red);
}

/* Tonight card — like a taped-up flyer */
.tonight {
  margin: 52px auto 0; max-width: 620px;
  padding: 24px 28px;
  background: var(--paper); color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--red);
  transform: rotate(-1deg);
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
}
.tonight::before, .tonight::after {
  content: ""; position: absolute; width: 60px; height: 16px;
  background: rgba(245,197,66,0.7); border: 1px solid rgba(0,0,0,.15);
  top: -8px;
}
.tonight::before { left: 30px; transform: rotate(-8deg); }
.tonight::after  { right: 30px; transform: rotate(6deg); }
.tonight-day {
  font-family: var(--script); font-size: 42px; line-height: 1;
  color: var(--red); font-weight: 400;
}
.tonight-label {
  font-family: var(--grunge); font-size: 11px; text-transform: uppercase;
  letter-spacing: .22em; color: #555; margin-bottom: 4px;
}
.tonight-event {
  font-family: var(--display); font-weight: 400; font-size: 32px;
  color: var(--ink); line-height: 1;
  text-transform: uppercase; letter-spacing: .01em;
}
.tonight-time {
  font-family: var(--display); color: var(--red);
  font-size: 20px; letter-spacing: .1em;
}

/* ─────────────── Stats bar (big numbers, sports-bar brag) ─────────────── */
.stats {
  background: var(--ink);
  color: var(--white);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  padding: 48px 0;
  position: relative;
}
.stats::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--red) 0 20px, var(--gold) 20px 40px);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  align-items: center; gap: 20px;
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.stat {
  text-align: center; position: relative;
}
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 20%; bottom: 20%;
  width: 2px; background: var(--line);
}
.stat-num {
  font-family: var(--display); font-size: clamp(56px, 8vw, 96px);
  color: var(--gold); line-height: 1; letter-spacing: -.01em;
  text-shadow: 0 0 20px rgba(245,197,66,0.35);
}
.stat-num .up { font-size: 0.55em; vertical-align: 0.6em; margin-left: 4px; color: var(--red-glow); }
.stat-label {
  font-family: var(--display); font-size: 16px; letter-spacing: .28em;
  color: var(--white); text-transform: uppercase; margin-top: 8px;
}
@media (max-width: 700px) {
  .stats { padding: 32px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .stat:not(:last-child)::after { display: none; }
}

/* ─────────────── Neon Sign section ─────────────── */
.neon-wall {
  position: relative; overflow: hidden;
  padding: 100px 0;
  color: var(--white);
  background-color: #100807;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.3) 40%, rgba(0,0,0,.7)),
    /* mortar rows */
    linear-gradient(0deg, transparent 78px, rgba(60,20,15,0.55) 78px 84px, transparent 84px 168px),
    /* brick columns, staggered every other row via multi-layer */
    linear-gradient(90deg, transparent 118px, rgba(60,20,15,0.55) 118px 124px, transparent 124px 240px),
    radial-gradient(circle at 40% 50%, rgba(225,30,43,0.35), transparent 55%),
    linear-gradient(180deg, #3d1810, #260c07);
  background-size: auto, 100% 168px, 240px 168px, auto, auto;
}
.neon-wall::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.02) 0 1px, transparent 2px);
  background-size: 8px 8px;
  pointer-events: none;
}
.neon-inner { position: relative; text-align: center; z-index: 1; }
.neon-eyebrow {
  display: inline-block; font-family: var(--display); font-size: 14px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.neon {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(60px, 10vw, 140px); line-height: .95;
  text-transform: uppercase;
  color: #fff5c8;
  text-shadow:
    0 0 4px  #ffce4a,
    0 0 12px #ff9a1f,
    0 0 26px #ff5b1a,
    0 0 52px rgba(255,50,20,0.7),
    0 0 84px rgba(255,50,20,0.5);
  animation: neon-flicker 4.4s infinite ease-in-out;
}
.neon em {
  font-family: var(--script); font-style: normal;
  color: #ffd5c0; text-transform: none;
  font-size: 0.7em; line-height: 1;
  display: inline-block; transform: rotate(-4deg) translateY(6px);
  text-shadow:
    0 0 4px  #ff9c8a,
    0 0 14px #ff3a4b,
    0 0 30px rgba(255,58,75,0.7),
    0 0 60px rgba(255,58,75,0.5);
}
@keyframes neon-flicker {
  0%, 19%, 21%, 43%, 45%, 100% { opacity: 1; }
  20%, 44%                     { opacity: .8; }
  50%                          { opacity: .96; }
}
.neon-sub {
  margin-top: 20px; font-family: var(--grunge);
  color: rgba(255,235,200,0.75); font-size: 16px;
  letter-spacing: .04em;
}
@media (prefers-reduced-motion: reduce) {
  .neon { animation: none; }
}

/* ─────────────── Hero decorations (bar-flair sparkles + BG script) ─────────────── */
.hero-inner { position: relative; z-index: 1; }
.hero-bg-word {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -46%);
  font-family: var(--script);
  font-size: clamp(220px, 30vw, 460px);
  color: rgba(225,30,43,0.045);
  white-space: nowrap; pointer-events: none;
  z-index: 0; user-select: none;
  line-height: 1;
}
.spark {
  position: absolute; color: var(--gold); pointer-events: none; opacity: .8;
  filter: drop-shadow(0 0 6px rgba(245,197,66,0.5));
}
.spark svg { width: 100%; height: 100%; display: block; }
.spark.s1 { top: 6%;  left: 8%;  width: 44px; height: 44px; animation: twinkle 3s infinite ease-in-out; }
.spark.s2 { top: 12%; right: 10%; width: 34px; height: 34px; animation: twinkle 3.4s .5s infinite ease-in-out; }
.spark.s3 { bottom: 20%; left: 6%; width: 30px; height: 30px; animation: twinkle 2.8s 1s infinite ease-in-out; color: var(--red-glow); filter: drop-shadow(0 0 6px rgba(255,75,86,0.5)); }
.spark.s4 { bottom: 12%; right: 8%; width: 40px; height: 40px; animation: twinkle 3.6s .3s infinite ease-in-out; color: var(--red-glow); filter: drop-shadow(0 0 6px rgba(255,75,86,0.5)); }
@keyframes twinkle {
  0%,100% { opacity: .8; transform: scale(1) rotate(0); }
  50%     { opacity: 1;  transform: scale(1.2) rotate(20deg); }
}
@media (prefers-reduced-motion: reduce) {
  .spark { animation: none; }
}

/* ─────────────── Rotating "TONIGHT" board (flipping card) ─────────────── */
.now-showing {
  position: relative; margin: 56px auto 0; max-width: 720px;
  padding: 26px 30px;
  background: var(--ink);
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 4px var(--ink),
    0 0 0 7px var(--red),
    0 0 40px rgba(245,197,66,0.3);
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  text-align: left;
}
.now-showing::before, .now-showing::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  background: var(--gold); border: 2px solid var(--ink); border-radius: 50%;
  top: -12px; box-shadow: 0 0 12px var(--gold);
}
.now-showing::before { left: 20px; }
.now-showing::after  { right: 20px; }
.now-label {
  font-family: var(--display); font-size: 13px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red-glow); margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(255,75,86,0.4);
}
.now-day {
  font-family: var(--script); font-size: 34px; line-height: 1;
  color: var(--gold); transform: rotate(-2deg); display: inline-block;
  text-shadow: 0 0 12px rgba(245,197,66,0.4);
}
.now-event {
  font-family: var(--display); font-size: clamp(28px, 3.8vw, 42px);
  color: var(--white); line-height: 1; text-transform: uppercase;
  letter-spacing: .02em;
}
.now-time {
  font-family: var(--display); color: var(--gold); font-size: 22px;
  letter-spacing: .1em; text-transform: uppercase; text-align: right;
  border-left: 2px solid var(--line-2); padding-left: 20px;
}
@media (max-width: 700px) {
  .now-showing { grid-template-columns: 1fr; text-align: center; padding: 22px; gap: 6px; }
  .now-time { border-left: 0; padding-left: 0; padding-top: 6px; }
}

/* ─────────────── Sections ─────────────── */
section { padding: 96px 0; position: relative; }
.section-dark { background: var(--bg); }
.section-black {
  background-color: #0d0d0d;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.014) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.010) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.012) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.010) 0 2px, transparent 3px);
  background-size: 260px 260px, 340px 340px, 200px 200px, 300px 300px;
}
.section-red { background: var(--red); color: var(--white); }
.section-red a { color: var(--white); text-decoration: underline; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-paper a { color: var(--red); }
.section-paper .btn-primary { color: var(--white); }
.section-paper .btn-ghost   { color: var(--ink); border-color: var(--ink); }
.section-paper .btn-ghost:hover { color: var(--white); background: var(--ink); }
.section-paper .text-mute { color: #555; }

.section-head { text-align: center; margin-bottom: 60px; position: relative; }
.section-eyebrow {
  display: inline-block; font-family: var(--display);
  font-size: 15px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red-glow); font-weight: 400;
  margin-bottom: 14px;
}
.section-paper .section-eyebrow { color: var(--red); }
.section-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(42px, 6vw, 84px); line-height: .95;
  margin: 0 auto 14px; max-width: 20ch; letter-spacing: -.005em;
  text-transform: uppercase; color: var(--white);
}
.section-paper .section-title { color: var(--ink); }
.section-title em {
  font-family: var(--script); font-style: normal;
  color: var(--red-glow); text-transform: none;
  font-size: 0.85em; letter-spacing: 0;
  display: inline-block; transform: rotate(-3deg);
  text-shadow: 0 0 14px rgba(225,30,43,0.4);
}
.section-paper .section-title em { color: var(--red); text-shadow: none; }
.section-lede {
  max-width: 60ch; margin: 0 auto; color: var(--off); font-size: 17px;
  font-family: var(--grunge);
}
.section-paper .section-lede { color: #4a4a4a; }

/* ─────────────── This-Week Board (chalkboard) ─────────────── */
.board {
  background-color: #0d0d0d;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.014) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.012) 0 2px, transparent 3px);
  background-size: 260px 260px, 340px 340px;
  border: 3px solid var(--white);
  padding: 44px 32px;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.05), 12px 12px 0 var(--red);
  position: relative;
}
.board::before {
  content: "★ ★ ★"; position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg); color: var(--gold);
  padding: 4px 16px; font-family: var(--display);
  letter-spacing: .4em; font-size: 14px;
}
.board-title {
  font-family: var(--display); text-align: center;
  color: var(--gold); font-size: 28px; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 4px;
}
.board-sub {
  text-align: center; color: var(--mute); font-family: var(--grunge);
  font-size: 13px; margin-bottom: 32px;
  letter-spacing: .04em;
}
.board-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
}
.day {
  border: 2px dashed rgba(255,255,255,.28);
  padding: 20px 12px;
  background: rgba(255,255,255,.02);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  text-align: center; position: relative;
}
.day:hover {
  transform: translateY(-3px); border-color: var(--gold);
  background: rgba(245,197,66,.08);
}
.day.today {
  background: var(--red); border-color: var(--white); border-style: solid;
  transform: rotate(-1deg) scale(1.03);
  box-shadow: 4px 4px 0 var(--gold);
}
.day.today::after {
  content: "TONIGHT"; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-family: var(--display); font-size: 13px; letter-spacing: .2em;
  padding: 3px 10px; font-weight: 400;
  border: 2px solid var(--ink);
}
.day-name {
  font-family: var(--display); font-size: 14px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.day.today .day-name { color: var(--white); }
.day-event {
  font-family: var(--display); font-size: 22px; line-height: 1.05;
  color: var(--white); letter-spacing: .02em; text-transform: uppercase;
}
.day-time {
  font-family: var(--grunge); color: var(--gold);
  font-size: 12px; margin-top: 10px; letter-spacing: .04em;
}
.day.today .day-time { color: var(--white); }

@media (max-width: 900px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .day { text-align: left; padding: 18px 20px; }
  .day.today::after { left: 20px; transform: none; }
}
@media (max-width: 480px) {
  .board { padding: 32px 20px; box-shadow: 8px 8px 0 var(--red); }
  .board-grid { grid-template-columns: 1fr; }
}

/* ─────────────── Kitchen block ─────────────── */
.kitchen {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.kitchen-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--red); color: var(--white);
  font-family: var(--display); font-size: 14px;
  letter-spacing: .22em; text-transform: uppercase;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--gold);
  transform: rotate(-1deg);
}
.kitchen h2 {
  font-family: var(--display); font-weight: 400;
  letter-spacing: -.005em;
  font-size: clamp(40px, 5.5vw, 72px); line-height: .95;
  margin: 22px 0 16px; color: var(--ink);
  text-transform: uppercase;
}
.kitchen h2 em {
  font-family: var(--script); font-style: normal;
  color: var(--red); text-transform: none;
  font-size: 0.85em; display: inline-block; transform: rotate(-3deg);
}
.kitchen p {
  color: #333; max-width: 44ch; font-size: 17px;
  font-family: var(--grunge);
}
.kitchen ul {
  padding: 0; margin: 20px 0 28px; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
}
.kitchen li {
  padding-left: 26px; position: relative; color: var(--ink); font-weight: 400;
  font-family: var(--display); font-size: 20px; letter-spacing: .04em;
  text-transform: uppercase;
}
.kitchen li::before {
  content: "×"; position: absolute; left: 0; top: -2px;
  color: var(--red); font-family: var(--display); font-size: 24px;
}
.food-hero {
  position: relative; aspect-ratio: 4/5; max-width: 480px; margin: 0 auto;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(1.5deg);
}
.food-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 860px) {
  .kitchen { grid-template-columns: 1fr; gap: 40px; }
  .kitchen ul { grid-template-columns: 1fr; }
  .food-hero { max-width: 340px; }
}

/* ─────────────── Poster grid — real event graphics ─────────────── */
.poster-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.poster {
  position: relative; overflow: hidden;
  background: var(--bg-2);
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--red);
  transition: transform .18s ease, box-shadow .18s ease;
  aspect-ratio: 4/5;
  display: block;
}
.poster:nth-child(4n+1) { transform: rotate(-1.5deg); }
.poster:nth-child(4n+2) { transform: rotate(1deg); }
.poster:nth-child(4n+3) { transform: rotate(-0.5deg); }
.poster:nth-child(4n+4) { transform: rotate(2deg); }
.poster:hover {
  transform: rotate(0) translate(-3px, -3px) scale(1.02);
  box-shadow: 10px 10px 0 var(--red), 0 0 30px rgba(225,30,43,.4);
  z-index: 2;
}
.poster img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.poster-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85) 40%, rgba(0,0,0,.95));
  color: var(--white);
  font-family: var(--display); font-size: 22px; letter-spacing: .04em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.poster-cap .d {
  font-family: var(--display); font-size: 13px; letter-spacing: .22em;
  color: var(--gold); font-weight: 400;
}
@media (max-width: 900px) { .poster-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ─────────────── League cards (Game Day Rules) ─────────────── */
.league-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.league {
  padding: 28px 22px;
  background: var(--bg-2);
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--red);
  position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.league::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: var(--color, var(--red));
}
.league:nth-child(1) { --color: #006400; }
.league:nth-child(2) { --color: #f5c542; }
.league:nth-child(3) { --color: #c8102e; }
.league:nth-child(4) { --color: #004b87; }
.league:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--red);
}
.league-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--color, var(--red)); color: var(--white);
  font-family: var(--display); font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  margin-bottom: 14px;
  transform: rotate(-1deg);
}
.league h3 {
  font-family: var(--display); font-weight: 400; font-size: 26px;
  color: var(--white); text-transform: uppercase; margin: 0 0 8px;
  letter-spacing: .02em;
}
.league p { color: var(--off); font-family: var(--grunge); font-size: 14px; margin: 0; }
@media (max-width: 900px) { .league-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .league-grid { grid-template-columns: 1fr; } }

/* ─────────────── Happy Hour strip ─────────────── */
.hh {
  padding: 56px 0; background: var(--red);
  color: var(--white); text-align: center;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink);
}
.hh::before, .hh::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.20) 0 10px, transparent 10px 26px);
}
.hh::before { left: 0; }
.hh::after  { right: 0; }
.hh-inner { position: relative; z-index: 1; }
.hh-eyebrow {
  font-family: var(--display); font-size: 18px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); font-weight: 400;
  margin-bottom: 6px;
}
.hh h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(38px, 5.5vw, 68px);
  margin: 0 0 10px; text-transform: uppercase; line-height: 1;
  color: var(--white);
}
.hh h2 em {
  font-family: var(--script); font-style: normal; color: var(--gold);
  text-transform: none; font-size: 0.85em;
  display: inline-block; transform: rotate(-3deg);
}
.hh-when {
  font-family: var(--display); font-size: 20px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--white); opacity: .95;
}

/* ─────────────── Features (Game Room, etc.) ─────────────── */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feat {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--red);
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.feat:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--red);
}
.feat-num {
  position: absolute; top: -18px; right: 20px;
  background: var(--gold); color: var(--ink);
  border: 3px solid var(--ink);
  font-family: var(--display); font-size: 22px;
  padding: 4px 12px; letter-spacing: .1em;
  transform: rotate(3deg);
}
.feat-icon {
  width: 84px; height: 84px;
  background: #050505;
  border: 3px solid var(--gold);
  display: grid; place-items: center; margin-bottom: 22px;
  transform: rotate(-2deg);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  box-shadow: 4px 4px 0 var(--red);
}
.feat-icon::after {
  content: ""; position: absolute; inset: -3px;
  border: 3px dashed rgba(245,197,66,0.35);
  pointer-events: none; opacity: 0;
  transition: opacity .2s ease;
}
.feat:hover .feat-icon {
  transform: rotate(2deg) scale(1.06);
  box-shadow: 6px 6px 0 var(--red), 0 0 28px rgba(245,197,66,0.35);
  border-color: var(--red-glow);
}
.feat:hover .feat-icon::after { opacity: 1; }
.feat-icon svg { width: 62px; height: 62px; }
.feat h3 {
  font-family: var(--display); font-weight: 400; font-size: 30px;
  margin: 0 0 8px; letter-spacing: .02em; text-transform: uppercase;
  color: var(--white);
}
.feat p { color: var(--off); margin: 0; font-size: 15px; font-family: var(--grunge); }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }

/* ─────────────── Hours + Contact card ─────────────── */
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.card {
  padding: 32px;
  background: var(--bg-2);
  border: 3px solid var(--white);
  box-shadow: 8px 8px 0 var(--red);
  color: var(--white);
}
.card h3 {
  font-family: var(--display); font-weight: 400; font-size: 34px;
  margin: 0 0 20px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--white);
  border-bottom: 3px solid var(--red); padding-bottom: 12px;
}
.hours-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 4px;
}
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
  color: var(--white);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .d {
  font-family: var(--display); font-size: 16px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute);
}
.hours-list .h {
  font-family: var(--display); font-size: 22px; color: var(--white);
  letter-spacing: .05em;
}
.hours-list li.today {
  background: var(--red); border-radius: 4px;
  padding: 12px 14px; margin: 0 -14px; border-bottom: 0;
  border: 2px solid var(--white);
}
.hours-list li.today .d { color: var(--gold); }
.hours-list li.today .h { color: var(--white); }
.contact-line {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  color: var(--white);
}
.contact-line .ic {
  width: 44px; height: 44px;
  background: var(--red); color: var(--white);
  border: 3px solid var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-line .ic svg { width: 20px; height: 20px; }
.contact-line strong { color: var(--white); font-family: var(--display); font-size: 20px; letter-spacing: .04em; }
.contact-line a { color: var(--gold-2); }

@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

/* ─────────────── Map ─────────────── */
.map-wrap {
  border: 3px solid var(--white); box-shadow: 8px 8px 0 var(--red);
  margin-top: 32px; aspect-ratio: 16 / 9;
  background: var(--bg-3); overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─────────────── Menu page — the real menu ─────────────── */
.menu-note {
  max-width: 640px; margin: 24px auto 0; padding: 20px 22px;
  background: var(--paper); color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--red);
  font-family: var(--grunge); font-size: 14px; text-align: center;
  transform: rotate(-0.6deg);
}
.menu-note strong { color: var(--red); font-family: var(--display); font-size: 18px; letter-spacing: .1em; text-transform: uppercase; }

.menu-pages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1100px; margin: 0 auto;
}
.menu-page {
  overflow: hidden;
  background: #000;
  border: 3px solid var(--white);
  box-shadow: 8px 8px 0 var(--red);
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-page:nth-child(1) { transform: rotate(-1.5deg); }
.menu-page:nth-child(2) { transform: rotate(0.6deg); }
.menu-page:nth-child(3) { transform: rotate(-0.8deg); }
.menu-page:hover {
  transform: rotate(0) translate(-4px, -4px) scale(1.02);
  box-shadow: 14px 14px 0 var(--red);
  z-index: 2; position: relative;
}
.menu-page img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) {
  .menu-pages { grid-template-columns: 1fr; max-width: 520px; gap: 22px; }
  .menu-page:nth-child(1), .menu-page:nth-child(2), .menu-page:nth-child(3) { transform: rotate(0); }
}

/* Real menu items typed out */
.menu-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px;
  max-width: 1100px; margin: 0 auto;
}
.menu-section h3 {
  font-family: var(--display); font-weight: 400; font-size: 34px;
  color: var(--white); letter-spacing: .05em; text-transform: uppercase;
  margin: 0 0 6px; padding-bottom: 10px;
  border-bottom: 3px solid var(--red);
  display: flex; justify-content: space-between; align-items: baseline;
}
.menu-section h3 .price-note {
  font-family: var(--grunge); font-size: 13px; color: var(--mute);
  text-transform: none; letter-spacing: 0;
}
.menu-section > p {
  font-family: var(--grunge); color: var(--mute); font-size: 13px;
  margin: 0 0 16px;
}
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item-name {
  font-family: var(--display); font-size: 20px; letter-spacing: .04em;
  color: var(--red-glow); text-transform: uppercase;
}
.menu-item-desc {
  font-family: var(--grunge); font-size: 13px; color: var(--off);
  margin-top: 4px; grid-column: 1 / -1;
}
.menu-item-price {
  font-family: var(--display); font-size: 22px; color: var(--gold);
  letter-spacing: .04em;
}
@media (max-width: 860px) {
  .menu-block { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────────── Event features (poster + text zig-zag) ─────────────── */
.event-feat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 80px;
  max-width: 1080px; margin-left: auto; margin-right: auto;
}
.event-feat:last-child { margin-bottom: 0; }
.event-feat.reverse .event-feat-poster { order: 2; }
.event-feat-poster {
  aspect-ratio: 4/5; overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 12px 12px 0 var(--red);
  transition: transform .2s ease, box-shadow .2s ease;
  transform: rotate(-1.5deg);
}
.event-feat.reverse .event-feat-poster { transform: rotate(1.5deg); box-shadow: -12px 12px 0 var(--red); }
.event-feat-poster:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: 16px 16px 0 var(--red); }
.event-feat.reverse .event-feat-poster:hover { transform: rotate(0) translate(3px, -3px); box-shadow: -16px 16px 0 var(--red); }
.event-feat-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }

.event-feat-body .day-tag {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-family: var(--display); font-size: 20px; letter-spacing: .2em;
  text-transform: uppercase; padding: 6px 16px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--gold);
  transform: rotate(-1deg);
  margin-bottom: 20px;
}
.event-feat-body h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(38px, 5vw, 62px); line-height: .95;
  margin: 0 0 8px; text-transform: uppercase; color: var(--white);
  letter-spacing: -.005em;
}
.event-feat-body .host {
  font-family: var(--script); color: var(--red-glow);
  font-size: 32px; line-height: 1;
  transform: rotate(-2deg); display: inline-block; margin-bottom: 16px;
}
.event-feat-body .time {
  font-family: var(--display); color: var(--gold);
  font-size: 24px; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.event-feat-body p {
  color: var(--off); font-family: var(--grunge);
  font-size: 16px; max-width: 44ch; margin: 0;
}

@media (max-width: 860px) {
  .event-feat, .event-feat.reverse { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .event-feat.reverse .event-feat-poster { order: 0; }
  .event-feat-poster { max-width: 400px; margin: 0 auto; }
}

/* Split-day (no poster) — text only */
.event-nopost {
  padding: 40px 32px; text-align: center;
  border: 3px dashed var(--line-2);
  background: rgba(255,255,255,.02);
  max-width: 720px; margin: 0 auto 80px;
  transform: rotate(-0.5deg);
}
.event-nopost .day-tag {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-family: var(--display); font-size: 18px; letter-spacing: .22em;
  text-transform: uppercase; padding: 6px 14px;
  border: 2px solid var(--ink); margin-bottom: 14px;
}
.event-nopost h3 {
  font-family: var(--display); font-size: clamp(32px, 4.4vw, 50px);
  color: var(--white); margin: 0 0 6px; text-transform: uppercase; line-height: 1;
}
.event-nopost p {
  color: var(--mute); font-family: var(--grunge); font-size: 15px;
  margin: 0 auto; max-width: 40ch;
}

/* ─────────────── Events full page (legacy row style — deprecated) ─────────────── */
.event-row {
  display: grid; grid-template-columns: 160px 1fr auto; gap: 24px;
  align-items: center; padding: 26px 0;
  border-bottom: 2px dashed var(--line-2);
}
.event-row:last-child { border-bottom: 0; }
.event-day {
  font-family: var(--script);
  color: var(--red-glow); font-size: 40px; line-height: 1;
  transform: rotate(-2deg); display: inline-block;
}
.event-day .of {
  display: block; font-size: 12px;
  font-family: var(--display); letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-top: 6px; transform: rotate(2deg);
}
.event-title {
  font-family: var(--display); font-weight: 400;
  font-size: 34px; letter-spacing: .04em; margin: 0 0 6px;
  text-transform: uppercase; color: var(--white);
}
.event-desc { color: var(--off); font-size: 15px; margin: 0; max-width: 60ch; font-family: var(--grunge); }
.event-time {
  font-family: var(--display); color: var(--gold);
  font-size: 28px; letter-spacing: .04em; white-space: nowrap;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .event-row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
}

/* ─────────────── Real gallery ─────────────── */
.real-gal {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.real-gal > * {
  aspect-ratio: 4/3; overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 8px 8px 0 var(--red);
  transition: transform .18s ease, box-shadow .18s ease;
}
.real-gal > *:nth-child(1) { transform: rotate(-1deg); }
.real-gal > *:nth-child(2) { transform: rotate(1.5deg); }
.real-gal > *:hover {
  transform: rotate(0) translate(-3px, -3px) scale(1.02);
  box-shadow: 12px 12px 0 var(--red);
}
.real-gal img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .real-gal { grid-template-columns: 1fr; } .real-gal > *:nth-child(1), .real-gal > *:nth-child(2) { transform: rotate(0); } }

/* ─────────────── Sticky mobile CTA ─────────────── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--ink);
  border-top: 4px solid var(--red);
  padding: 10px 12px; gap: 8px;
}
.sticky-cta a {
  flex: 1; text-align: center; padding: 14px 8px;
  font-family: var(--display); font-size: 18px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 400;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--ink);
}
.sticky-cta .call { background: var(--red); color: var(--white); }
.sticky-cta .dir  { background: var(--gold); color: var(--ink); }
.sticky-cta svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ─────────────── Footer ─────────────── */
footer {
  background: var(--ink); color: var(--mute);
  padding: 60px 0 24px; border-top: 4px solid var(--red);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.foot h4 {
  font-family: var(--display); font-size: 22px; color: var(--white);
  margin: 0 0 16px; letter-spacing: .1em; text-transform: uppercase;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot li { font-family: var(--grunge); font-size: 14px; }
.foot a { color: var(--off); }
.foot a:hover { color: var(--gold); }
.foot-brand p { font-size: 14px; max-width: 34ch; font-family: var(--grunge); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 44px; height: 44px;
  background: var(--red); color: var(--white);
  border: 3px solid var(--white);
  display: grid; place-items: center;
  transition: transform .12s ease;
}
.socials a:hover { transform: translate(-2px, -2px); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--mute); font-family: var(--grunge);
}
@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ─────────────── Utility ─────────────── */
.center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* Fade in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow .dot { animation: none; }
}
