/* =====================================================
   OPTION B — Bento Modern Grid
   Dark slate + vivid gold neon, asymmetric bento cards,
   hover reveal effects, energetic layout.
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --bg:        #0A0A0C;
  --surface:   rgba(20, 20, 22, 0.50);
  --surface2:  rgba(26, 26, 32, 0.65);
  --surface3:  rgba(34, 34, 42, 0.80);
  --border:    rgba(255, 255, 255, 0.12);
  --gold:      #FFFFFF;
  --gold2:     #E5E5EA;
  --gold-glow: rgba(255, 255, 255, 0.12);
  --white:     #ffffff;
  --muted:     #8E8E93;
  --font-d:    'Montserrat', sans-serif;
  --font-b:    'Poppins', sans-serif;
  --hdr-h:     80px;
  --max-w:     1300px;
  --pad-x:     clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0px !important; }

/* Keep circle elements physically round */
.vinyl-record, .vinyl-record::before, .pulse-dot, .bento-np-album-wrapper, .bento-np-vinyl-overlay, .np-art-vinyl {
  border-radius: 50% !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  font-family: var(--font-b);
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); box-shadow: 0 0 6px rgba(255,255,255,0.2); }

/* ── HEADER ──────────────────────────────── */
.v2b-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.v2b-header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v2b-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.v2b-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.v2b-nav a {
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.v2b-nav a:hover { color: var(--gold); }

.v2b-nav-cta {
  padding: 0.65rem 1.6rem;
  background: var(--gold) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  opacity: 1 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 0 16px rgba(157,47,232,0.4);
}

.v2b-nav-cta:hover { background: var(--gold2) !important; box-shadow: 0 0 24px rgba(180,79,255,0.5) !important; }

/* ── HERO — Split with bento panels ──────── */
.v2b-hero {
  min-height: 100svh;
  padding-top: var(--hdr-h);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.v2b-hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem var(--pad-x) 5rem;
  overflow: hidden;
  z-index: 3;
}

.v2b-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.v2b-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65; /* visually soft and non-blinding */
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.v2b-hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.v2b-hero-bg-slide.active {
  opacity: 1;
}

.v2b-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.v2b-hero-content { position: relative; }

.v2b-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--gold-glow);
  border: 1px solid rgba(220,165,74,0.35);
  font-family: var(--font-d);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  width: fit-content;
}

.v2b-hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.v2b-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.v2b-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.v2b-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Hero right — bento panels ──────────── */
.v2b-hero-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; /* Clean gap spacing for glass panels */
  background: transparent;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.v2b-bento-panel {
  background: rgba(18, 18, 20, 0.50) !important; /* 50% opacity color */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0px !important; /* Hard squares across the board */
  aspect-ratio: 1 / 1 !important; /* ACTUALLY MAKE THEM SQUARES */
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: background-color 0.5s, border-color 0.5s, transform 0.5s, box-shadow 0.5s;
  cursor: default;
}

.v2b-bento-panel:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: scale(1.02);
}

.v2b-bento-panel.accent {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.20) !important;
  grid-column: span 3 !important;
  aspect-ratio: auto !important; /* Accent panel spans full width, not square-constrained */
  height: auto !important;
  min-height: 120px !important;
  box-shadow: none !important;
}

.v2b-bento-panel.accent:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Vinyl Record Styling for Bento grid */
.vinyl-deck {
  perspective: 800px;
}
.vinyl-record {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #2c2c2c 15%, #111111 16%, #1a1a1a 24%, #111111 25%, #222 35%, #111 40%, #1c1c1c 45%, #111 50%, #262626 55%, #111 60%, #1e1c1e 65%, #111 70%, #2a2a2a 75%, #111 80%, #151515 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65), inset 0 0 10px rgba(0, 0, 0, 0.8), 0 0 1px 1px rgba(255, 255, 255, 0.1);
  position: absolute;
  transition: transform 0.5s ease;
  z-index: 1;
}
.vinyl-record::after {
  content: '';
  position: absolute;
  inset: 43%;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 3;
}
.vinyl-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, 0.05) 10%, transparent 20%, transparent 50%, rgba(255, 255, 255, 0.05) 60%, transparent 70%, transparent 100%);
  z-index: 2;
}
.np-art-vinyl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  border: 2px solid #111;
  transition: transform 0.5s ease;
}

/* Spinning Animation */
.spinning {
  animation: spinVinyl 3.5s linear infinite;
}
@keyframes spinVinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dancefloor Highlight Spotlight Keyframes */
@keyframes bento-glow-pink {
  0%, 100% { background: rgba(255, 110, 199, 0.2); border-color: rgba(255, 110, 199, 0.25); box-shadow: 0 0 20px rgba(255, 110, 199, 0.05); transform: scale(1); }
  50% { background: rgba(255, 110, 199, 0.5); border-color: rgba(255, 110, 199, 0.55); box-shadow: 0 0 40px rgba(255, 110, 199, 0.15); transform: scale(1.05); }
}
@keyframes bento-glow-gold {
  0%, 100% { background: rgba(212, 175, 55, 0.2); border-color: rgba(212, 175, 55, 0.2); box-shadow: 0 0 20px rgba(212, 175, 55, 0.03); transform: scale(1); }
  50% { background: rgba(212, 175, 55, 0.5); border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 0 40px rgba(212, 175, 55, 0.12); transform: scale(1.05); }
}
@keyframes bento-glow-blue {
  0%, 100% { background: rgba(0, 242, 254, 0.2); border-color: rgba(0, 242, 254, 0.2); box-shadow: 0 0 20px rgba(0, 242, 254, 0.03); transform: scale(1); }
  50% { background: rgba(0, 242, 254, 0.5); border-color: rgba(0, 242, 254, 0.5); box-shadow: 0 0 40px rgba(0, 242, 254, 0.12); transform: scale(1.05); }
}

.active-glow-pink, .active-glow-gold, .active-glow-blue {
  animation: none !important;
  background: rgba(18, 18, 20, 0.50) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  transform: none !important;
}

.v2b-bento-value {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #FFFFFF !important;
  margin-bottom: 0.35rem;
  text-shadow: none !important;
}

#bento-np-art-card .v2b-bento-value {
  font-size: 3rem !important;
}
#bento-now-playing .v2b-bento-value {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
}
#bento-next-up .v2b-bento-value {
  font-size: 4.5rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}
#bento-shoutout .v2b-bento-value {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
}

.v2b-bento-panel.accent .v2b-bento-value { color: #ffffff !important; text-shadow: none !important; }

.v2b-bento-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v2b-bento-panel.accent .v2b-bento-label { color: rgba(255,255,255,0.8); }

/* ── Live Widgets Elements Styling ────────────────── */
.bento-card-state {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.bento-np-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50% !important;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  animation: pulse-dot-key 1.5s infinite;
}

@keyframes pulse-dot-key {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.bento-np-track-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.bento-np-album-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  animation: spin-vinyl 4s linear infinite;
  flex-shrink: 0;
}

@keyframes spin-vinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bento-np-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-np-vinyl-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.85) 21%, transparent 22%, rgba(0,0,0,0.85) 50%, transparent 51%, rgba(0,0,0,0.4) 100%);
  border-radius: 50% !important;
}

.bento-np-info {
  flex: 1;
  min-width: 0;
}

.bento-np-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.bento-np-artist {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pulse spectrum audio bars */
.pulse-spectrum {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 18px;
  margin-top: 0.4rem;
}

.pulse-spectrum .bar {
  width: 3px;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 0px !important; /* Hard squares across the board */
  animation: bounce-bar 1s ease-in-out infinite;
  transform-origin: bottom;
}

.pulse-spectrum .bar-1 { animation-delay: 0.1s; height: 30%; }
.pulse-spectrum .bar-2 { animation-delay: 0.3s; height: 60%; }
.pulse-spectrum .bar-3 { animation-delay: 0.2s; height: 95%; }
.pulse-spectrum .bar-4 { animation-delay: 0.4s; height: 50%; }
.pulse-spectrum .bar-5 { animation-delay: 0.15s; height: 75%; }

@keyframes bounce-bar {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

/* Next Up styling */
.bento-nu-header {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.bento-nu-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.bento-nu-artist {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bento-nu-requester {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 0.25rem 0.65rem;
  border-radius: 0px !important; /* Hard square edges! */
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Shoutout blockquote styling */
.bento-so-header {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.bento-so-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.bento-so-quote p {
  font-size: 1.3rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-style: italic;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.01em;
}

.bento-so-quote cite {
  font-size: 0.85rem;
  color: #8E8E93;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* ── BUTTONS ──────────────────────────────── */
.v2b-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.v2b-btn-primary {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(157,47,232,0.4);
}

.v2b-btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(180,79,255,0.55);
}

.v2b-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.v2b-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(157,47,232,0.2);
}

/* ── SECTION BASE ─────────────────────────── */
.v2b-section {
  padding: clamp(5rem, 9vw, 8rem) var(--pad-x);
}

.v2b-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.v2b-label {
  font-family: var(--font-d);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.v2b-section h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

/* ── ABOUT — Dark bento grid ──────────────── */
.v2b-about { background: var(--surface); }

.v2b-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3.5rem;
  background: rgba(255,255,255,0.04);
}

.v2b-about-panel {
  background: var(--bg);
  padding: 3rem;
  transition: background 0.3s;
}

.v2b-about-panel:hover { background: var(--surface2); }

.v2b-about-panel.wide { grid-column: span 2; }

.v2b-about-panel h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.v2b-about-panel p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 0.95rem;
}

.v2b-about-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.v2b-about-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s ease;
}

.v2b-about-panel-img:hover img { transform: scale(1.05); }

/* ── EVENTS — Horizontal scroll ticker ──── */
.v2b-events { overflow: hidden; }

.v2b-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.v2b-event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.v2b-event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.v2b-event-card:hover {
  transform: translateY(-6px);
  background: var(--surface2);
}

.v2b-event-card:hover::after { opacity: 0.4; }

.v2b-event-night {
  font-family: var(--font-d);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.v2b-event-name {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.v2b-event-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── DRINKS STRIP ─────────────────────────── */
.v2b-drinks {
  background: var(--surface);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.v2b-drinks-img {
  position: relative;
  overflow: hidden;
}

.v2b-drinks-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.v2b-drinks-img:hover img { transform: scale(1.05); }

.v2b-drinks-content {
  padding: clamp(3rem, 6vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2b-drinks-content h2 { margin-bottom: 1.5rem; }

.v2b-drinks-content p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ── FOOTER ──────────────────────────────── */
.v2b-footer {
  background: var(--surface);
  padding: 4rem var(--pad-x) 2rem;
  border-top: 1px solid var(--border);
}

.v2b-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.v2b-footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.v2b-footer p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.v2b-footer-title {
  font-family: var(--font-d);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.v2b-footer ul { list-style: none; }

.v2b-footer ul li { margin-bottom: 0.6rem; }

.v2b-footer ul a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.v2b-footer ul a:hover { color: var(--white); }

.v2b-copyright {
  max-width: var(--max-w);
  margin: 1.75rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── MOBILE ──────────────────────────────── */
/* ── HAMBURGER MENU BUTTON (mobile only) ─── */
.v2b-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.v2b-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ── MOBILE DRAWER NAV ─────────────────────── */
.v2b-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,6,16,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
}
.v2b-mobile-nav.open { display: flex; }
.v2b-mobile-nav a {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.v2b-mobile-nav a:hover,
.v2b-mobile-nav a.cta { color: var(--gold); }
.v2b-mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

/* ── TABLET (≤960px) ─────────────────────── */
@media (max-width: 960px) {
  .v2b-nav { display: none; }
  .v2b-menu-btn { display: flex; }

  /* Hero stacks */
  .v2b-hero { grid-template-columns: 1fr; min-height: 100svh; }
  .v2b-hero-right { display: none; }
  .v2b-hero-left { padding: 2.5rem 1.5rem 4rem; }

  /* About */
  .v2b-about-grid { grid-template-columns: 1fr; gap: 2px; }
  .v2b-about-panel.wide { grid-column: span 1; }
  .v2b-about-panel-img { min-height: 220px; }

  /* Events */
  .v2b-events-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Drinks */
  .v2b-drinks { grid-template-columns: 1fr; }
  .v2b-drinks-img { min-height: 240px; }
  .v2b-drinks-content { padding: 2.5rem 1.5rem; }

  /* Footer */
  .v2b-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .v2b-copyright { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Location inline grid */
  .v2b-section div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
}

/* ── MOBILE (≤600px) ─────────────────────── */
@media (max-width: 600px) {
  :root { --pad-x: 1.25rem; }

  /* Header */
  .v2b-header { height: 64px; }
  .v2b-logo { height: 36px; }

  /* Hero */
  .v2b-hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.05; }
  .v2b-hero p { font-size: 0.95rem; }
  .v2b-hero-btns { flex-direction: column; gap: 0.75rem; }
  .v2b-btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 0.8rem; }

  /* Badge */
  .v2b-badge { font-size: 0.62rem; padding: 0.4rem 0.8rem; }

  /* Section padding */
  .v2b-section { padding: 3.5rem var(--pad-x); }

  /* Headings */
  .v2b-section h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }

  /* Events */
  .v2b-events-grid { grid-template-columns: 1fr; }
  .v2b-event-card { padding: 1.5rem 1.25rem; }

  /* Drinks */
  .v2b-drinks-content h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }

  /* About panels */
  .v2b-about-panel { padding: 1.75rem 1.25rem; }

  /* Footer */
  .v2b-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .v2b-footer { padding: 3rem var(--pad-x) 2rem; }
  .v2b-footer-logo { height: 36px; }

  /* Safe area insets (iPhone notch / home bar) */
  .v2b-footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}

/* ── SMALL MOBILE (≤380px) ───────────────── */
@media (max-width: 380px) {
  .v2b-hero h1 { font-size: 1.9rem; }
  .v2b-section h2 { font-size: 1.6rem; }
  .v2b-btn { font-size: 0.75rem; padding: 0.9rem 1.25rem; }
}
