/* ════════════════════════════════════════════════════════════════
   Brewski's v3 — editorial design language
   Same v2 layout & class names; clean type, no neon glow.
   ════════════════════════════════════════════════════════════════ */

:root {
  color-scheme: dark;

  /* v3 design tokens */
  --bg: #08070b;
  --bg-2: #0d0b10;
  --panel: #121116;
  --panel-2: #19171f;
  --ink: #fff8ed;
  --ink-dim: #d6cfc7;
  --ink-mute: #b9b0a9;
  --muted: #b9b0a9;
  --pink: #ff3d7f;
  --magenta: #ff3d7f;
  --neon-pink: #ff3d7f;
  --cyan: #28d6ff;
  --amber: #ffbf42;
  --neon-amber: #ffbf42;
  --green: #42df8c;
  --red: #ff5b5b;
  --line: rgba(255, 255, 255, 0.14);
  --panel-border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);

  --font-head: "Barlow Condensed", Impact, sans-serif;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Barlow", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* v2-style atmospheric backdrop tokens (used by body::before/::after) */
  --bg-deep:    #05030d;
  --bg-purple:  #0d0721;
  --grid-line:  rgba(40, 214, 255, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ── Atmospheric background (ported from v2) ──
   Layer 1: deep purple → black radial glows + linear gradient
   Layer 2: subtle perspective grid (synthwave road) faded in/out
   Both are fixed, behind everything, no interaction. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(106, 27, 176, 0.32), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(40, 214, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 32% at 15% 85%, rgba(255, 61, 127, 0.06), transparent 65%),
    linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-deep) 60%, #000 100%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(900px) rotateX(60deg) translateY(30vh) scale(2);
  transform-origin: 50% 0;
  mask-image: linear-gradient(180deg, transparent 20%, #000 60%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, transparent 20%, #000 60%, transparent 95%);
  pointer-events: none;
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4, p { margin-top: 0; }

/* ── COLOR HELPERS ── (kept for compatibility — the "glow" classes lose their glow in v3) */
.c-cyan  { color: var(--cyan); }
.c-pink  { color: var(--pink); }
.c-amber { color: var(--amber); }
.glow-pink, .glow-cyan {
  /* Inline — <br/> in the markup handles line breaks; display:block was
     stacking on top of the <br/> and causing huge gaps in the hero title. */
  display: inline;
  font-style: normal;
}
/* Filled colors — matches v1 prod's hero title treatment exactly */
.glow-pink { color: var(--pink); }
.glow-cyan { color: var(--cyan); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}
.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), #ff6d3a 54%, var(--amber));
  color: #13080a;
  box-shadow: 0 10px 30px rgba(255, 61, 127, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.btn-ghost { background: transparent; }
.btn-doordash {
  background: #FF3008;
  color: #fff;
  border-color: transparent;
}
.btn-doordash:hover {
  background: #ff4628;
  border-color: transparent;
}

/* ── LAYOUT ── */
.v1-section {
  padding: 76px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.v1-section-full { padding: 76px 0; }

.v1-section,
.v1-section-full,
.topbar,
.main,
.ticker-wrap,
footer {
  --container-w: min(1180px, calc(100% - 32px));
}
.v1-section > .section-head,
.v1-section > .v1-section-full,
.v1-section > .about-grid,
.v1-section > .features-grid,
.v1-section > .menu-filters,
.v1-section > .v1-menu-grid,
.v1-section > .specials-grid,
.v1-section > .event-cards,
.v1-section > .v1-gallery-grid,
.v1-section > .reviews-track-wrap,
.v1-section > .reservation-grid,
.v1-section > .newsletter-inner,
.v1-section > .contact-grid,
.v1-section > .cta-row {
  width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
}
.v1-section.alt {
  background:
    linear-gradient(180deg, rgba(40, 214, 255, 0.04), transparent 34%),
    var(--bg-2);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.v1-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}
.kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.79;
  text-transform: uppercase;
}
h2,
.about-title,
.reservation-title,
.newsletter-title,
.contact-form-title {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}
h2 em, .about-title em, .reservation-title em {
  font-style: normal;
  color: var(--pink);
}
.section-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.03rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

/* ── AGE GATE ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 11, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 400ms ease;
}
.age-gate.closing { opacity: 0; }
.age-gate-card {
  max-width: 460px;
  width: 100%;
  padding: 36px 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-gate-card h2 {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  margin-bottom: 12px;
}
.age-gate-card h2 em {
  font-style: normal;
  color: var(--pink);
}
.age-gate-card p {
  color: var(--muted);
  margin: 0 0 24px;
}
.age-gate-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-inner {
  width: var(--container-w);
  margin: 0 auto;
  padding: 9px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(66, 223, 140, 0.7);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.5; }
}
.top-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-right a:hover { color: var(--ink); }

/* ── NAV ── */
.main {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 7, 11, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  width: var(--container-w);
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-mark {
  width: 30px;
  height: 30px;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 14px rgba(40, 214, 255, 0.45), inset 0 0 12px rgba(255, 61, 127, 0.28);
  transform: skew(-8deg);
}
.logo .slash { color: var(--cyan); margin: 0 4px; }
.logo .amp { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--ink); }

.hamburger {
  display: none;
  width: 40px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}
.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); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 80vw);
  background: var(--panel);
  border-left: 1px solid var(--line);
  padding: 60px 24px 24px;
  z-index: 28;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 240ms ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Content sits on the LEFT — matches v1 prod hero treatment */
  text-align: left;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Diagonal fade — heavier on the left so the title reads cleanly,
     lighter on the right so the photo still shows. Matches v1 prod. */
  background:
    linear-gradient(135deg, rgba(8,7,11,0.92) 0%, rgba(8,7,11,0.55) 55%, rgba(8,7,11,0.18) 100%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100%, 100% 4px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container-w);
  max-width: 940px;
  margin: 0 auto 0 max(32px, calc((100% - 1180px) / 2));
  padding: 100px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(66, 223, 140, 0.35);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(66, 223, 140, 0.08);
}
.hero-badge .status-dot {
  background: var(--green);
  box-shadow: 0 0 10px rgba(66, 223, 140, 0.75);
}
.hero-title {
  margin: 22px 0 26px;
  /* v1 prod display font — heavier, blockier poster look */
  font-family: 'Black Han Sans', 'Barlow Condensed', Impact, sans-serif;
  font-weight: 400;  /* Black Han Sans only ships in one weight */
  font-size: clamp(3.6rem, 11vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}
.hero-subtitle {
  max-width: 560px;
  margin: 0 0 36px;
  color: #eee4d8;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

@media (max-width: 720px) {
  .hero-content {
    margin: 0 auto;
    padding: 76px 20px 64px;
  }
  #hero { min-height: 88vh; }
}
.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.slide-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  transition: background 200ms ease;
  padding: 0;
}
.slide-dot:hover { background: rgba(255, 255, 255, 0.6); }
.slide-dot.active { background: var(--ink); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker {
  display: inline-flex;
  gap: 36px;
  animation: ticker-scroll 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-item::after { content: "·"; color: var(--cyan); margin-left: 36px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.about-text > p {
  margin-bottom: 14px;
  color: var(--ink-dim);
  font-size: 1.05rem;
}
.about-warn {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(255, 91, 91, 0.12);
  border: 1px solid rgba(255, 91, 91, 0.3);
  border-radius: 6px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, border-color 200ms ease;
}
.stat-card.stat-clickable { cursor: pointer; }
.stat-card.stat-clickable:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}
.stat-card-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat-card-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
  fill: none;
  stroke: currentColor;
}
.stat-card-icon .fill-current { fill: currentColor; stroke: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.stat-hint {
  margin-top: 8px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.about-img:first-child { grid-column: 1 / -1; min-height: 240px; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  padding: 28px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 200ms ease, border-color 200ms ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}
.feature-card.c-cyan-card  { border-top: 3px solid var(--cyan); }
.feature-card.c-pink-card  { border-top: 3px solid var(--pink); }
.feature-card.c-amber-card { border-top: 3px solid var(--amber); }
.feature-card.c-green-card { border-top: 3px solid var(--green); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── MENU ── */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.filter-btn:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.filter-btn.active {
  color: #13080a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), #ff6d3a 54%, var(--amber));
}
/* Menu — v1 prod row-card layout: small photo on left, content on right */
.v1-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .v1-menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v1-menu-grid { grid-template-columns: 1fr; gap: 10px; }
}

.v1-menu-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 200ms ease, border-color 200ms ease;
  flex-direction: row;
  min-height: 0;
}
.v1-menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}
.v1-menu-card-img {
  display: block;
  width: 88px;
  height: 88px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--bg-2);
  border-radius: 6px;
  flex-shrink: 0;
}
.v1-menu-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 0;
  border: 0;
}
.v1-menu-card-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
}
.v1-menu-card-desc {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v1-menu-card-price {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
}

/* ── ASYNC STATES ── */
.async-state, .async-error {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.async-error a { color: var(--cyan); border-bottom: 1px dashed currentColor; }

/* ── SPECIALS ── */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.special-card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  transition: transform 200ms ease, border-color 200ms ease;
}
.special-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  border-left-color: var(--amber);
}
.special-day {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.special-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.special-desc {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.special-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── EVENTS ── */
.event-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* SportBusy Live Now ticker — sits between section header and event cards */
.sportbusy-live-wrap {
  margin: 0 0 20px;
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

/* SportBusy full Calendar widget — sits below event cards */
.sportbusy-calendar-wrap {
  margin: 36px auto 0;
  text-align: center;
}
.sportbusy-label {
  margin-bottom: 18px;
}
.sportbusy-label h3 {
  margin: 6px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}
.sportbusy-label h3 em {
  font-style: normal;
  color: var(--cyan);
}
.sportbusy-calendar-frame {
  display: inline-block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sportbusy-calendar-frame iframe {
  display: block;
  max-width: 100%;
}
@media (max-width: 480px) {
  .sportbusy-calendar-frame iframe {
    width: 100%;
    max-width: 100%;
  }
}
.event-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease;
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
}
.event-flyer {
  position: relative;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  background-color: var(--panel-2);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.event-flyer.has-image {
  background-blend-mode: multiply;
  background-color: rgba(8, 7, 11, 0.4);
}
.event-flyer:not(.has-image)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 61, 127, 0.22), transparent 55%),
    linear-gradient(315deg, rgba(255, 191, 66, 0.18), transparent 60%);
  pointer-events: none;
}
.event-flyer-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(8, 7, 11, 0.7);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.event-flyer-main {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.event-flyer-sub {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: var(--ink-dim);
  font-size: 0.92rem;
}
.event-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-body-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.event-badge {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.event-badge.type-ufc       { background: rgba(255, 61, 127, 0.18); color: var(--pink); border: 1px solid rgba(255, 61, 127, 0.32); }
.event-badge.type-powerslap { background: rgba(255, 191, 66, 0.18); color: var(--amber); border: 1px solid rgba(255, 191, 66, 0.32); }
.event-badge.type-boxing    { background: rgba(40, 214, 255, 0.18); color: var(--cyan); border: 1px solid rgba(40, 214, 255, 0.32); }
.event-badge.type-other     { background: rgba(255, 255, 255, 0.08); color: var(--muted); border: 1px solid var(--line); }
.event-fighters {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
}
.event-datetime {
  color: var(--muted);
  font-size: 0.92rem;
}
.event-countdown {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.count-unit {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-2);
}
.count-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}
.count-lbl {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── GALLERY ── */
.v1-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.v1-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  background: var(--panel);
}
.v1-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.v1-gallery-item:hover img { transform: scale(1.06); }

/* ── REVIEWS ── */
.reviews-track-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 16px;
  animation: review-scroll 60s linear infinite;
  width: max-content;
}
@keyframes review-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  width: 320px;
  flex-shrink: 0;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.review-stars {
  color: var(--amber);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.review-text {
  margin: 0 0 14px;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}
.review-author {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
.review-source {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── RESERVATION ── */
.reservation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 214, 255, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(255, 191, 66, 0.14), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}
.reservation-info > p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 1.02rem;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-dim);
}
.info-icon {
  flex-shrink: 0;
  color: var(--amber);
  font-size: 1.1rem;
}
.reservation-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.reservation-cta-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.reservation-cta-call {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* ── NEWSLETTER ── */
.newsletter-inner {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-title { margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3rem); }
.newsletter-sub {
  margin: 0 0 22px;
  color: var(--muted);
}
.newsletter-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease;
}
.newsletter-form input:focus { border-color: var(--cyan); }

/* ── FORM (shared form-group, form-success, form-error) ── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--cyan); }
.form-success {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(66, 223, 140, 0.08);
  border: 1px solid rgba(66, 223, 140, 0.3);
  border-radius: 6px;
  color: var(--green);
  font-size: 0.9rem;
}
.form-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 91, 91, 0.08);
  border: 1px solid rgba(255, 91, 91, 0.3);
  border-radius: 6px;
  color: var(--red);
  font-size: 0.9rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.contact-block {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-block-label {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-block-value {
  font-size: 1.02rem;
  color: var(--ink);
}
.contact-block-value a:hover { color: var(--cyan); }
.kitchen-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}
.social-btn:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.32);
}
.map-embed {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05) brightness(0.85);
}
.contact-form-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  padding: 50px 0 24px;
  border-top: 1px solid var(--line);
}
.foot-inner {
  width: var(--container-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
}
.foot-brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.foot-brand p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.foot h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.foot ul a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}
.foot ul a:hover { color: var(--ink); }
.foot-bottom {
  width: var(--container-w);
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.foot-bottom a:hover { color: var(--ink); }

/* ── AUTH MODAL ── */
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 11, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-modal.show { display: flex; }
.auth-modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.auth-modal-card h2 { font-size: 1.8rem; margin-bottom: 6px; }
.auth-modal-card > p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 0.92rem;
}
.auth-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.auth-modal-close:hover { color: var(--ink); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 11, 0.94);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.show { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast-item {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  pointer-events: auto;
  box-shadow: var(--shadow);
}
.toast-item.success { border-color: var(--green); color: var(--green); }
.toast-item.error   { border-color: var(--red);   color: var(--red); }
.toast-item.info    { border-color: var(--cyan);  color: var(--cyan); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid,
  .reservation-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .event-cards { grid-template-columns: 1fr; }
  .v1-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .nav-inner > a.btn-primary[href="/parties"] { display: none; }
}

@media (max-width: 720px) {
  .topbar-inner { flex-direction: column; gap: 6px; }
  .top-right { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .v1-section, .v1-section-full { padding: 56px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .v1-head-center { align-items: center; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .v1-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* Menu row-card stays horizontal; only the grid columns drop to 1 (already handled) */
  .specials-grid { grid-template-columns: 1fr; }
  .about-image-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 24px; }
  .reservation-grid { padding: 24px; }
  .review-card { width: 280px; }
  #toast { bottom: 16px; right: 16px; left: 16px; }
}
