/* ============================================================
   PLAYERS BAR — DESIGN SYSTEM  (elevated)
   Bar · Patio · Slots — Oglesby, IL
   Foundation: refined dark, warm wood, controlled neon-red + gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Lato:wght@300;400;700;900&display=swap');

/* ─────────────────────────  TOKENS  ───────────────────────── */
:root {
  /* ink + surfaces */
  --ink:        #1E2026;
  --surface-0:  #23252C;
  --surface-1:  #2A2C33;
  --surface-2:  #33353D;
  --surface-3:  #3E414A;
  --cream:      #F6F1E7;

  /* clean white "printed" sections (two-tone rhythm) */
  --warm-bg:    #FFFFFF;
  --warm-card:  #F6F5F2;

  /* warm "printed" surfaces (two-tone rhythm) */
  --bone:       #FFFFFF;
  --bone-2:     #F6F5F2;
  --ink-warm:   #1B1813;
  --warm-muted: #5F574B;
  --warm-line:  rgba(27,24,19,0.13);

  /* hairlines */
  --line:       rgba(255,255,255,0.07);
  --line-2:     rgba(255,255,255,0.13);
  --line-gold:  rgba(212,175,90,0.30);

  /* brand */
  --red:        #E11D2A;
  --red-bright: #FF3340;
  --red-deep:   #8E1116;
  --gold:       #D4AF5A;
  --gold-soft:  #E8CE8B;

  /* text */
  --text:       #F4F2EF;
  --text-muted: #A7A7B0;
  --text-dim:   #6E6E78;
  --on-red:     #FFFFFF;

  /* type */
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Lato', sans-serif;

  /* spacing scale (8pt) */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 80px; --s10: 96px; --s11: 120px;

  /* radius */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;  --r-pill: 999px;

  /* elevation */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 12px 30px -12px rgba(0,0,0,0.65);
  --shadow-lg: 0 30px 70px -24px rgba(0,0,0,0.78);
  --glow-red:  0 8px 30px -6px rgba(225,29,42,0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    0.45s var(--ease);
  --container: 1200px;
}

/* ─────────────────────────  RESET  ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ─────────────────────────  LAYOUT  ───────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ── eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); opacity: 0.8;
}
.eyebrow--center { justify-content: center; }

/* ── section header ── */
.section-head { max-width: 640px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 0.95;
  letter-spacing: 0.01em; color: var(--text); margin-top: 16px;
  text-wrap: balance;
}
.section-head h2 em { font-style: normal; color: var(--red); }
.section-head p {
  margin-top: 18px; color: var(--text-muted); font-size: 1.06rem;
  max-width: 56ch; text-wrap: pretty;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ─────────────────────────  BUTTONS  ───────────────────────── */
.btn {
  --pad-y: 15px; --pad-x: 32px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-sm); border: 1.5px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  will-change: transform;
}
.btn i { font-size: 0.85em; transition: transform var(--t); }
.btn:hover i { transform: translateX(3px); }

.btn-primary { background: var(--red); color: var(--on-red); box-shadow: var(--glow-red); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 14px 38px -8px rgba(225,29,42,0.6); }

.btn-gold { background: var(--gold); color: #1a1407; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(212,175,90,0.5); }

.btn-outline { background: rgba(255,255,255,0.02); color: var(--text); border-color: var(--line-2); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }

.btn-ghost { color: var(--text); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--gold); }

.btn-lg { --pad-y: 18px; --pad-x: 40px; font-size: 0.96rem; }
.btn-block { width: 100%; }

/* ─────────────────────────  TOP BAR  ───────────────────────── */
.topbar {
  background: var(--surface-0); border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-size: 0.82rem; color: var(--text-muted);
  position: relative; z-index: 60;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.02em; }
.topbar-left i { color: var(--red); font-size: 0.85em; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  transition: var(--t);
}
.topbar-right a:hover { background: var(--red); border-color: var(--red); color: #fff; }
@media (max-width: 860px) { .topbar-left span:nth-child(3) { display: none; } }
@media (max-width: 560px) { .topbar-left { gap: 16px; } .topbar-left span:first-child { display: none; } }

/* ─────────────────────────  NAVBAR  ───────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(30,32,38,0.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line); transition: background var(--t), border-color var(--t);
}
.nav.scrolled { background: rgba(30,32,38,0.94); border-bottom-color: var(--line-2); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }

/* wordmark (CSS lockup, replaces white-bg logo) */
.wordmark { display: flex; flex-direction: column; line-height: 0.8; }
.wordmark b {
  font-family: var(--font-display); font-weight: 400; font-size: 2rem;
  letter-spacing: 0.04em; color: var(--text);
}
.wordmark b i { font-style: normal; color: var(--red); }
.wordmark small {
  font-family: var(--font-head); font-weight: 500; font-size: 0.56rem;
  letter-spacing: 0.42em; color: var(--gold); margin-top: 3px; padding-left: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.04em; color: var(--text-muted);
  padding: 10px 14px; border-radius: var(--r-sm); position: relative; transition: color var(--t);
}
.nav-links > li > a:hover { color: var(--text); }
.nav-links > li > a.active { color: var(--text); }
.nav-links > li > a:not(.btn).active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.nav-links .btn { margin-left: 10px; --pad-y: 11px; --pad-x: 22px; }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px; }
.hamburger span { height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--surface-1); border-left: 1px solid var(--line-2);
    padding: 100px 24px 40px; transform: translateX(100%); transition: transform var(--t), visibility var(--t);
    box-shadow: var(--shadow-lg); visibility: hidden;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links > li > a { display: block; padding: 14px 16px; font-size: 1.05rem; }
  .nav-links > li > a.active::after { display: none; }
  .nav-links .btn { margin: 12px 0 0; }
}

/* ─────────────────────────  HERO  ───────────────────────── */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.62) 46%, rgba(8,8,10,0.35) 100%),
    linear-gradient(0deg, var(--ink) 2%, transparent 38%);
}
.hero-grain { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,0.18) 0.5px, transparent 0.5px); background-size: 3px 3px; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.84rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  padding: 8px 16px; border: 1px solid var(--line-gold); border-radius: var(--r-pill);
  background: rgba(212,175,90,0.06); margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red-bright); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(4.5rem, 15vw, 11rem); line-height: 0.84; letter-spacing: 0.02em;
  color: var(--text); margin: 0;
  text-shadow: 0 0 60px rgba(225,29,42,0.25);
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-disc {
  display: flex; align-items: center; gap: 18px; margin: 22px 0 6px;
  font-family: var(--font-head); font-weight: 500; font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--text);
}
.hero-disc span { color: var(--gold); opacity: 0.6; font-size: 0.7em; }
.hero-tag { color: var(--text-muted); font-size: 1.12rem; max-width: 46ch; margin-bottom: 34px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-stat .num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--text); }
.hero-stat .num em { font-style: normal; color: var(--red); }
.hero-stat .label { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 6px; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim);
}
.hero-scroll i { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 560px) { .hero-stats { gap: 24px; } .hero-stat .num { font-size: 1.9rem; } }

/* ─────────────────────────  MARQUEE STRIP  ───────────────────────── */
.strip { background: var(--red); color: #fff; border-block: 1px solid rgba(0,0,0,0.15); overflow: hidden; }
.strip-track { display: flex; align-items: center; gap: 56px; padding: 16px 0; white-space: nowrap; animation: marquee 32s linear infinite; }
.strip-item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.18em; text-transform: uppercase; }
.strip-item i { color: rgba(255,255,255,0.65); }
.strip-sep { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ─────────────────────────  ABOUT  ───────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about-media { position: relative; }
.about-media .img-main { border-radius: var(--r-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: var(--shadow-lg); }
.about-media .img-accent {
  position: absolute; right: -28px; bottom: -36px; width: 52%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--r-md); border: 5px solid var(--ink); box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; top: -26px; left: -26px; width: 116px; height: 116px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-content: center; text-align: center;
  font-family: var(--font-display); font-size: 2.4rem; line-height: 0.8; box-shadow: var(--glow-red);
  border: 5px solid var(--ink);
}
.about-badge small { display: block; font-family: var(--font-head); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 6px; font-weight: 500; }
.about-body p { color: var(--text-muted); margin-top: 18px; }
.about-body p:first-of-type { margin-top: 26px; }

.partner-box {
  display: flex; align-items: center; gap: 18px; margin-top: 30px; padding: 16px 20px;
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md);
}
.partner-box .chip { background: var(--cream); border-radius: var(--r-sm); padding: 8px; display: grid; place-items: center; flex-shrink: 0; }
.partner-box .chip img { height: 52px; width: 52px; object-fit: contain; }
.partner-box small { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); display: block; }
.partner-box b { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--text); }

.hours-card { margin-top: 30px; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.hours-card .hour-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; font-family: var(--font-head); border-bottom: 1px solid var(--line); }
.hours-card .hour-row:last-child { border-bottom: none; }
.hours-card .day { color: var(--text-muted); letter-spacing: 0.04em; }
.hours-card .time { color: var(--text); font-weight: 500; }
.hours-card .hour-row.today { background: rgba(212,175,90,0.08); }
.hours-card .hour-row.today .day { color: var(--gold-soft); }
.hours-card .hour-row.today .time { color: var(--gold-soft); }
.about-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-media { max-width: 460px; }
  .about-media .img-accent { right: 0; }
}

/* ─────────────────────────  MENU  ───────────────────────── */
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 40px 0 44px; }
.menu-tab {
  font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; letter-spacing: 0.06em;
  color: var(--text-muted); padding: 11px 26px; border-radius: var(--r-pill);
  border: 1px solid var(--line-2); transition: var(--t);
}
.menu-tab:hover { color: var(--text); border-color: var(--text-dim); }
.menu-tab.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: var(--glow-red); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade-up 0.5s var(--ease); }
.menu-cat { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.menu-cat i { color: var(--red); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.menu-card {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 24px; transition: transform var(--t), border-color var(--t), background var(--t);
}
.menu-card:hover { transform: translateY(-3px); border-color: var(--line-gold); background: var(--surface-2); }
.menu-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.menu-card h4 { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--text); }
.menu-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); letter-spacing: 0.02em; flex-shrink: 0; }
.menu-card p { color: var(--text-muted); font-size: 0.92rem; margin-top: 10px; line-height: 1.6; }
.menu-tag {
  display: inline-block; margin-top: 12px; font-family: var(--font-head); font-weight: 600;
  font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--r-pill);
}
.tag-popular { background: rgba(212,175,90,0.14); color: var(--gold-soft); border: 1px solid var(--line-gold); }
.tag-spicy { background: rgba(225,29,42,0.14); color: #ff6b73; border: 1px solid rgba(225,29,42,0.3); }
.tag-new { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--line-2); }
.menu-foot { text-align: center; margin-top: 44px; }

/* ─────────────────────────  PATIO  ───────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split--rev .split-text { order: 2; }
.feature-list { margin: 28px 0 32px; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 14px; color: var(--text-muted); }
.feature-list i { width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--line); color: var(--gold); }

.patio-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 14px; }
.patio-gallery .g-item { overflow: hidden; border-radius: var(--r-md); }
.patio-gallery .g-item.wide { grid-column: span 2; aspect-ratio: 16/8; }
.patio-gallery .g-item:not(.wide) { aspect-ratio: 1; }
.patio-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.patio-gallery .g-item:hover img { transform: scale(1.06); }

@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 48px; } .split--rev .split-text { order: 0; } }

/* ─────────────────────────  SLOTS  ───────────────────────── */
.slots { background: linear-gradient(180deg, var(--surface-0), var(--ink)); }
.slots-img { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.slots-img img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.slots-img::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(225,29,42,0.25); }
.slots-badge {
  position: absolute; right: 22px; bottom: 22px; background: rgba(30,32,38,0.82); backdrop-filter: blur(8px);
  border: 1px solid var(--line-gold); border-radius: var(--r-md); padding: 14px 22px; text-align: center;
  font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 0.8;
}
.slots-badge small { display: block; font-family: var(--font-head); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--text); margin-top: 6px; }
.chips-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px; }
.chip-feat { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); font-family: var(--font-head); font-size: 0.86rem; color: var(--text); }
.chip-feat i { color: var(--gold); }
.age-note { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; font-size: 0.9rem; color: var(--text-dim); }
.age-note b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 0.78rem; }

/* ─────────────────────────  EVENTS  ───────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.event-card { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/3.6; }
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.event-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,10,0.92) 6%, rgba(8,8,10,0.15) 60%, transparent); }
.event-card:hover img { transform: scale(1.07); }
.event-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 2; }
.event-body h3 { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.02em; }
.event-body p { color: var(--text-muted); font-size: 0.92rem; margin-top: 6px; }
.event-cta { margin-top: 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.event-cta p { color: var(--text-muted); max-width: 56ch; }
.event-cta .row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 820px) { .events-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } .event-card { aspect-ratio: 16/10; } }

/* ─────────────────────────  SPECIALS  ───────────────────────── */
.specials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.special-card {
  position: relative; display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px; overflow: hidden; transition: var(--t);
}
.special-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform var(--t); }
.special-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.special-card:hover::before { transform: scaleY(1); }
.special-token { flex-shrink: 0; width: 60px; height: 60px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line-gold); font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); }
.special-day { font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
.special-card h4 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--text); margin-top: 4px; }
.special-card p { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }

/* ─────────────────────────  GALLERY  ───────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.gallery-item { overflow: hidden; border-radius: var(--r-md); position: relative; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,10,0.5), transparent 50%); opacity: 0; transition: var(--t); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gallery-item.wide { grid-column: span 2; } }

/* ─────────────────────────  CONTACT  ───────────────────────── */
.contact { background: var(--surface-0); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 48px; }
.contact-info h3, .contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.02em; margin-bottom: 8px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-detail .ic { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--line); color: var(--gold); }
.contact-detail strong { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); display: block; margin-bottom: 4px; }
.contact-detail span, .contact-detail a { color: var(--text); font-size: 0.98rem; }
.contact-detail a:hover { color: var(--gold); }
.map-embed { margin-top: 24px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.9) hue-rotate(180deg) contrast(0.9); }

.contact-form-wrap { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; background: var(--surface-0); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); color: var(--text); font-family: var(--font-body); font-size: 0.96rem; transition: var(--t);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,42,0.15); }
.form-success { display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 18px; background: rgba(46,160,90,0.12); border: 1px solid rgba(46,160,90,0.4); border-radius: var(--r-sm); color: #6fd39a; font-size: 0.92rem; }
.form-success.show { display: flex; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ─────────────────────────  FOOTER  ───────────────────────── */
.footer { background: var(--surface-0); border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 88px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .wordmark { margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: 0.94rem; max-width: 40ch; }
.footer-brand .tagline { color: var(--gold); font-family: var(--font-head); letter-spacing: 0.1em; margin-top: 12px; font-style: normal; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill); transition: var(--t); }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; font-family: var(--font-head); }
.footer-partner { margin-top: 18px; padding: 14px 16px; background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); border-left: 3px solid var(--gold); }
.footer-partner small { font-family: var(--font-head); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.footer-partner .chip { display: inline-grid; place-items: center; background: var(--cream); border-radius: var(--r-sm); padding: 6px 10px; }
.footer-partner .chip img { height: 40px; width: auto; }
.footer-bottom { margin-top: 56px; border-top: 1px solid var(--line); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-dim); font-size: 0.84rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .tagline { font-family: var(--font-head); letter-spacing: 0.22em; color: var(--text-muted); font-size: 0.8rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────  SCROLL REVEAL  ───────────────────────── */
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-bg { transform: none; } }

/* ════════════════════════════════════════════════════════════
   V2 — EDITORIAL / TWO-TONE ART DIRECTION
   ════════════════════════════════════════════════════════════ */

/* warm (cream) section variant */
.section.warm { background: var(--bone); color: var(--ink-warm); }
.section.warm::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: radial-gradient(rgba(27,24,19,0.035) 0.6px, transparent 0.6px); background-size: 4px 4px;
}
.section.warm .eyebrow { color: var(--red); }
.section.warm .eyebrow::before { background: var(--red); }
.section.warm .section-head h2 { color: var(--ink-warm); }
.section.warm .section-head h2 em { color: var(--red); }
.section.warm .section-head p { color: var(--warm-muted); }

/* section index marker — big numeral + label */
.sec-index { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.sec-index .n {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold); letter-spacing: 0.02em;
}
.section.warm .sec-index .n { -webkit-text-stroke-color: rgba(27,24,19,0.32); }
.sec-index .lbl { font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); }
.section.warm .sec-index .lbl { color: var(--warm-muted); }

/* ── HERO v2 ── */
.hero2 { position: relative; min-height: min(94vh, 880px); display: flex; align-items: flex-end; overflow: hidden; padding-bottom: clamp(36px, 6vw, 72px); }
.hero2 .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(8,8,10,0.94) 0%, rgba(8,8,10,0.58) 50%, rgba(8,8,10,0.4) 100%),
    linear-gradient(0deg, var(--ink) 1%, rgba(8,8,10,0.2) 30%, transparent 60%);
}
.hero2 .container { position: relative; z-index: 2; width: 100%; }
.hero2-top { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 26px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px;
  background: rgba(46,160,90,0.14); border: 1px solid rgba(46,160,90,0.4); border-radius: var(--r-pill);
  font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.08em; color: #74d7a0;
}
.status-pill .live { width: 8px; height: 8px; border-radius: 50%; background: #2ea05a; box-shadow: 0 0 0 0 rgba(46,160,90,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46,160,90,0.55); } 70% { box-shadow: 0 0 0 9px rgba(46,160,90,0); } 100% { box-shadow: 0 0 0 0 rgba(46,160,90,0); } }
.meta-pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-muted); padding: 9px 14px; border: 1px solid var(--line-2); border-radius: var(--r-pill); }
.meta-pill i { color: var(--gold); }

.hero2 h1 {
  font-family: var(--font-display); font-weight: 400; line-height: 0.86; letter-spacing: 0.005em;
  font-size: clamp(3.2rem, 9vw, 8rem); color: var(--text); max-width: 16ch; text-wrap: balance; margin: 0;
}
.hero2 h1 em { font-style: normal; color: var(--red); text-shadow: 0 0 50px rgba(225,29,42,0.4); }
.hero2-sub { color: var(--text-muted); font-size: 1.16rem; max-width: 52ch; margin: 24px 0 32px; }
.hero2-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── THREE PILLARS ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar {
  position: relative; display: block; aspect-ratio: 3/4.1; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform var(--t), border-color var(--t);
}
.pillar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pillar::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,10,0.95) 4%, rgba(8,8,10,0.25) 50%, rgba(8,8,10,0.55) 100%); transition: var(--t); }
.pillar:hover { transform: translateY(-6px); border-color: var(--line-gold); }
.pillar:hover img { transform: scale(1.08); }
.pillar-num { position: absolute; top: 20px; left: 22px; z-index: 2; font-family: var(--font-display); font-size: 1.5rem; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.65); }
.pillar-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px; }
.pillar-body h3 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); line-height: 0.9; letter-spacing: 0.02em; }
.pillar-body p { color: var(--text-muted); font-size: 0.92rem; margin-top: 8px; max-width: 30ch; }
.pillar-body .go { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.pillar:hover .go i { transform: translateX(4px); } .pillar .go i { transition: var(--t); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } .pillar { aspect-ratio: 16/10; } }

/* ── KINETIC TYPE BAND ── */
.kinetic { background: var(--ink); border-block: 1px solid var(--line); overflow: hidden; padding: clamp(24px, 4vw, 40px) 0; }
.kinetic.on-red { background: var(--red); border-color: rgba(0,0,0,0.18); }
.kinetic-track { display: flex; align-items: center; gap: 40px; white-space: nowrap; animation: marquee 30s linear infinite; }
.kinetic-track span { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: 0.03em; line-height: 1; color: transparent; -webkit-text-stroke: 1.3px rgba(255,255,255,0.22); }
.kinetic.on-red .kinetic-track span { -webkit-text-stroke-color: rgba(255,255,255,0.45); }
.kinetic-track span em { font-style: normal; color: var(--red); -webkit-text-stroke: 0; }
.kinetic.on-red .kinetic-track span em { color: #fff; }
.kinetic-track .star { color: var(--gold); -webkit-text-stroke: 0; font-size: 0.5em; }
@media (prefers-reduced-motion: reduce) { .kinetic-track { animation: none; } }

/* ── EDITORIAL MENU BOARD (cream) ── */
.board-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.board-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.board-tab { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em; color: var(--warm-muted); padding: 10px 22px; border-radius: var(--r-pill); border: 1.5px solid var(--warm-line); transition: var(--t); }
.board-tab:hover { color: var(--ink-warm); border-color: var(--ink-warm); }
.board-tab.active { background: var(--ink-warm); color: var(--bone); border-color: var(--ink-warm); }

.board-panel { display: none; }
.board-panel.active { display: block; animation: fade-up 0.5s var(--ease); }
.board-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 56px; }
.board-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 10px; padding: 18px 0; border-bottom: 1px solid var(--warm-line); }
.board-row .lead { display: flex; align-items: baseline; min-width: 0; }
.board-row .name { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink-warm); white-space: nowrap; }
.board-row .tag-mini { margin-left: 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r-pill); flex-shrink: 0; }
.tag-mini.pop { background: rgba(225,29,42,0.1); color: var(--red); }
.tag-mini.hot { background: rgba(225,29,42,0.14); color: #b21420; }
.tag-mini.new { background: rgba(27,24,19,0.08); color: var(--ink-warm); }
.board-row .dots { flex: 1; border-bottom: 1.5px dotted rgba(27,24,19,0.28); margin: 0 8px 5px; min-width: 18px; }
.board-row .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--red); letter-spacing: 0.02em; }
.board-row .desc { grid-column: 1 / -1; color: var(--warm-muted); font-size: 0.9rem; margin-top: 4px; max-width: 52ch; }
.board-foot { margin-top: 44px; text-align: center; }
.btn.on-warm.btn-outline { border-color: var(--warm-line); color: var(--ink-warm); background: transparent; }
.btn.on-warm.btn-outline:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 760px) { .board-list { grid-template-columns: 1fr; gap: 0 0; } }

/* ── STAT BAND ── */
.statband { background: var(--surface-0); border-block: 1px solid var(--line); }
.statband .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.statband .stat { text-align: center; padding: clamp(36px, 5vw, 56px) 20px; border-right: 1px solid var(--line); }
.statband .stat:last-child { border-right: none; }
.statband .n { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 0.85; color: var(--text); }
.statband .n em { font-style: normal; color: var(--red); }
.statband .l { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 12px; }
@media (max-width: 680px) { .statband .container { grid-template-columns: 1fr 1fr; } .statband .stat:nth-child(2) { border-right: none; } .statband .stat:nth-child(1), .statband .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }

/* ── TICKET-STUB SPECIALS ── */
.tickets { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.ticket {
  position: relative; display: flex; align-items: stretch; background: var(--warm-card); color: var(--ink-warm);
  border: 1px solid var(--warm-line); border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 1px 2px rgba(27,24,19,0.04); transition: transform var(--t), box-shadow var(--t);
}
.ticket:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -16px rgba(27,24,19,0.28); }
.ticket-stub { flex-shrink: 0; width: 78px; background: var(--red); color: #fff; display: grid; place-content: center; text-align: center; position: relative; padding: 12px 6px; }
.ticket-stub .day { font-family: var(--font-head); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); margin: 0 auto; opacity: 0.85; }
.ticket-stub .amt { font-family: var(--font-display); font-size: 1.9rem; line-height: 0.85; margin-top: 8px; }
.ticket-stub::after { content: ""; position: absolute; right: -6px; top: 0; bottom: 0; width: 12px; background: radial-gradient(circle at 0 6px, transparent 0 5px, var(--warm-card) 5px) 0 0 / 12px 14px repeat-y; }
.ticket-body { padding: 20px 22px; }
.ticket-body h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--ink-warm); }
.ticket-body p { color: var(--warm-muted); font-size: 0.9rem; margin-top: 7px; }

/* warm partner box + about-on-cream helpers */
.section.warm .partner-box { background: rgba(27,24,19,0.04); border-color: var(--warm-line); }
.section.warm .partner-box small { color: var(--warm-muted); }
.section.warm .partner-box b { color: var(--ink-warm); }
.section.warm .feature-list li { color: var(--warm-muted); }
.section.warm .feature-list i { background: rgba(27,24,19,0.05); border-color: var(--warm-line); color: var(--red); }
.section.warm .btn-ghost { color: var(--ink-warm); } .section.warm .btn-ghost:hover { color: var(--red); }

/* ════════════════════════════════════════════════════════════
   INNER PAGES — shared components
   ════════════════════════════════════════════════════════════ */

/* page hero */
.pagehero { position: relative; min-height: clamp(320px, 44vh, 460px); display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--line); }
.pagehero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pagehero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--ink) 2%, rgba(20,21,26,0.55) 50%, rgba(20,21,26,0.42) 100%), linear-gradient(90deg, rgba(20,21,26,0.7), transparent 70%); }
.pagehero .container { position: relative; z-index: 2; padding-block: clamp(34px, 5vw, 60px); }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); opacity: 0.5; }
.breadcrumb .here { color: var(--gold); }
.pagehero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: 0.84; letter-spacing: 0.02em; color: var(--text); }
.pagehero h1 em { font-style: normal; color: var(--red); }
.pagehero .sub { color: var(--text-muted); font-size: 1.08rem; max-width: 54ch; margin-top: 16px; }

/* CTA band */
.cta-band { position: relative; background: var(--red); text-align: center; padding: clamp(48px, 7vw, 84px) 0; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(rgba(255,255,255,0.16) 0.6px, transparent 0.6px); background-size: 5px 5px; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band .eyebrow { color: rgba(255,255,255,0.85); justify-content: center; }
.cta-band .eyebrow::before { background: rgba(255,255,255,0.85); }
.cta-band h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 0.92; letter-spacing: 0.02em; color: #fff; margin-top: 12px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 56ch; margin: 16px auto 30px; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-on-red { background: #fff; color: var(--red); }
.btn-on-red:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-outline-red { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-red:hover { background: #fff; color: var(--red); border-color: #fff; transform: translateY(-2px); }

/* tile grid (event types / quick facts) */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tile { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 18px; transition: var(--t); }
.tile:hover { border-color: var(--line-gold); transform: translateY(-3px); background: var(--surface-2); }
.tile i { font-size: 1.4rem; color: var(--red); }
.tile span { font-family: var(--font-head); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr 1fr; } }

/* two-column generic */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
@media (max-width: 820px) { .cols-2 { grid-template-columns: 1fr; gap: 48px; } }
.block-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 22px; }
.block-title em { font-style: normal; color: var(--red); }

/* notice (responsible gaming) */
.notice { display: flex; gap: 16px; align-items: flex-start; margin-top: 30px; padding: 20px 22px; background: rgba(225,29,42,0.08); border: 1px solid rgba(225,29,42,0.32); border-radius: var(--r-md); }
.notice i { color: var(--red); font-size: 1.1rem; margin-top: 3px; }
.notice p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.notice strong { color: var(--text); }

/* quick contact strip (red) */
.quickstrip { background: var(--red); }
.quickstrip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: 30px; text-align: center; }
.quickstrip .qc { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.quickstrip .qc i { font-size: 1.3rem; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.quickstrip .qc a, .quickstrip .qc b { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; letter-spacing: 0.02em; color: #fff; }
.quickstrip .qc small { font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.78); }
.quickstrip .qc a:hover { color: #1a1414; }
@media (max-width: 640px) { .quickstrip .container { grid-template-columns: 1fr; gap: 22px; } }

/* sauces / inline note line */
.note-line { color: var(--text-muted); font-size: 0.95rem; max-width: 70ch; margin-bottom: 30px; }
.section.warm .note-line { color: var(--warm-muted); }
.sauce-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.sauce { font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.03em; padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid var(--warm-line); color: var(--ink-warm); background: var(--warm-card); }

/* ════════════════════════════════════════════════════════════
   V3 — HOMEPAGE FEEDBACK UPDATES
   ════════════════════════════════════════════════════════════ */

/* ── Larger brand lockups (nav + footer) ── */
.nav .wordmark b { font-size: 2.5rem; }
.nav .wordmark small { font-size: 0.62rem; letter-spacing: 0.38em; }
.footer-brand .wordmark { margin-bottom: 24px; }
.footer-brand .wordmark b { font-size: 3.2rem; }
.footer-brand .wordmark small { font-size: 0.76rem; letter-spacing: 0.34em; }

/* two nav CTAs side by side */
.nav-cta { --pad-x: 18px; }
.nav-links .btn + .btn { margin-left: 8px; }

/* ── Kinetic band: legible white (dark band) ── */
.kinetic--solid .kinetic-track span { color: var(--text); -webkit-text-stroke: 0; }
.kinetic--solid .kinetic-track span em { color: var(--red); }
.kinetic--solid .kinetic-track .star { color: var(--gold); }

/* ── Four pillars ── */
.pillars--four { grid-template-columns: repeat(4, 1fr); }
.pillars--four .pillar { aspect-ratio: 3/4; }
@media (max-width: 1040px) {
  .pillars--four { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
  .pillars--four .pillar { aspect-ratio: 3/3.2; }
}
@media (max-width: 540px) {
  .pillars--four { grid-template-columns: 1fr; max-width: 420px; }
  .pillars--four .pillar { aspect-ratio: 16/10; }
}

/* footer partner name */
.footer-partner b { display: block; margin-top: 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--text); }

/* ── DAILY SPECIALS CAROUSEL ── */
.carousel { position: relative; max-width: 940px; margin: 8px auto 0; }
.carousel-viewport { position: relative; overflow: hidden; border-radius: var(--r-lg); box-shadow: 0 20px 48px -22px rgba(27,24,19,0.45); }
.carousel-track { display: flex; transition: transform 0.55s var(--ease); }
.cslide { flex: 0 0 100%; min-width: 0; }
.cslide-flyer { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #15161a; }
.cslide-flyer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.cslide-fallback {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 40px 28px;
  color: #fff; background: radial-gradient(125% 125% at 50% -10%, #2c2e36 0%, #16171b 70%);
}
.cslide-fallback::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.08) 0.6px, transparent 0.6px); background-size: 5px 5px;
}
.cslide-day { position: relative; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.cslide-amt { position: relative; font-family: var(--font-display); font-size: clamp(3.2rem, 9vw, 5.4rem); line-height: 0.78; color: var(--red-bright); text-shadow: 0 0 44px rgba(225,29,42,0.45); }
.cslide-fallback h4 { position: relative; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: 0.02em; color: #fff; }
.cslide-fallback p { position: relative; color: var(--text-muted); max-width: 44ch; font-size: 0.98rem; line-height: 1.55; }
.cslide-note { position: relative; margin-top: 10px; font-family: var(--font-head); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); border: 1px dashed rgba(255,255,255,0.22); padding: 6px 12px; border-radius: var(--r-pill); }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(22,23,27,0.55); color: #fff; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2); transition: var(--t); font-size: 1rem;
}
.carousel-arrow:hover { background: var(--red); border-color: var(--red); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
.carousel-arrow i { transition: none; }
.carousel-arrow:hover i { transform: none; }

.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.carousel-dots button {
  width: 11px; height: 11px; border-radius: 50%; padding: 0;
  background: rgba(27,24,19,0.16); border: 1px solid rgba(27,24,19,0.28); transition: var(--t);
}
.carousel-dots button:hover { background: rgba(27,24,19,0.4); }
.carousel-dots button.active { background: var(--red); border-color: var(--red); transform: scale(1.18); }

@media (max-width: 600px) {
  .cslide-flyer { aspect-ratio: 4/5; }
  .carousel-arrow { width: 42px; height: 42px; }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
}

/* ── MODAL (event inquiry) ── */
.modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: flex-start; justify-content: center; padding: clamp(16px, 5vh, 64px) 16px;
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-overlay { position: fixed; inset: 0; background: rgba(8,8,10,0.72); backdrop-filter: blur(4px); animation: fade-in 0.3s var(--ease); }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-dialog {
  position: relative; z-index: 2; width: 100%; max-width: 600px; margin: auto;
  background: var(--surface-1); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-lg);
  animation: modal-in 0.4s var(--ease);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text);
  font-size: 1.1rem; transition: var(--t);
}
.modal-close:hover { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(90deg); }
.modal-head { margin-bottom: 26px; padding-right: 36px; }
.modal-head h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: 0.02em; color: var(--text); margin: 12px 0 8px; }
.modal-head p { color: var(--text-muted); font-size: 0.96rem; }
.modal-form .form-group { margin-bottom: 16px; }
body.modal-open { overflow: hidden; }
@media (max-width: 480px) { .modal-form .form-row { grid-template-columns: 1fr; } }
