/* =========================================================
   QC SOCIAL LOUNGE — FULL REVAMP
   Editorial Luxury Nightlife Aesthetic
   Playfair Display (serif display) + DM Sans (body)
   Obsidian black · Burnished gold · Ivory
========================================================= */

/* ========================= RESET ========================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================= TOKENS ========================= */
:root {
  --black:    #080705;
  --black-2:  #0f0e0b;
  --black-3:  #181612;
  --black-4:  #201e18;
  --gold:     #c9a84c;
  --gold-2:   #e8c96e;
  --gold-3:   #f5e0a0;
  --ivory:    #f0ead8;
  --muted:    #9a9080;
  --faint:    rgba(201,168,76,0.14);
  --line:     rgba(201,168,76,0.2);
  --line-2:   rgba(255,255,255,0.08);
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --shadow-deep: 0 40px 100px rgba(0,0,0,0.7);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);
}

/* ========================= BASE ========================= */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* Film grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ========================= TYPOGRAPHY ========================= */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.02;
  font-weight: 700;
}

h1 {
  font-size: clamp(4.5rem, 10vw, 9rem);
  letter-spacing: -2px;
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -1px;
}

h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

em { font-style: italic; color: var(--gold-2); }

/* ========================= BUTTONS ========================= */
.btn-primary, .btn-gold, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  padding: 15px 28px;
  background: var(--gold);
  color: #0a0800;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}

.btn-gold {
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0800;
  border-radius: 2px;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.btn-ghost {
  padding: 14px 27px;
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 2px;
}
.btn-ghost:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold-2);
  transform: translateY(-2px);
}

.btn-primary.sm, .btn-ghost.sm {
  padding: 11px 20px;
  font-size: 0.75rem;
}

.btn-primary.full, .btn-gold.full-w { width: 100%; justify-content: center; }

/* ========================= HEADER ========================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,7,5,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}

.brand-logo { height: 64px; width: auto; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,234,216,0.7);
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold-2); }

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--gold) !important;
  color: var(--gold-2) !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--faint) !important; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 99px;
}

/* ========================= HERO ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.9);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,7,5,0.95) 0%, rgba(8,7,5,0.6) 50%, rgba(8,7,5,0.85) 100%),
    linear-gradient(to bottom, rgba(8,7,5,0.3) 0%, rgba(8,7,5,0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  padding: 120px 5% 80px;
}

/* Kicker */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 24px;
}

.kicker-bar {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Headline */
.hero-left h1 {
  margin-bottom: 28px;
}

.h1-stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: -0.5px;
  margin-top: 8px;
}

/* Meta strip */
.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(240,234,216,0.55);
  margin-bottom: 32px;
}

.meta-sep { color: var(--gold); opacity: 0.5; }

/* Buttons */
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Event card */
.hero-event-card {
  background: rgba(15,14,11,0.92);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 32px;
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hec-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hec-day {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 9px 10px;
  min-width: 48px;
  text-align: center;
  flex-shrink: 0;
}

.hec-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4px;
}

.hec-djs {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.hec-rule {
  height: 1px;
  background: var(--line);
}

/* Genre bar */
.hero-genre-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 5%;
  border-top: 1px solid var(--line);
  background: rgba(8,7,5,0.7);
  backdrop-filter: blur(12px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,234,216,0.5);
}

.gb-sep { color: var(--gold); font-size: 0.55rem; }

/* ========================= MARQUEE ========================= */
.marquee {
  overflow: hidden;
  background: var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 16px 0;
  animation: scrollX 28s linear infinite;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
}

.m-sep { opacity: 0.4; }

/* ========================= FUNNEL ========================= */
.funnel-section {
  padding: 90px 5%;
  background: var(--black-2);
  border-bottom: 1px solid var(--line-2);
}

.funnel-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.funnel-heading h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }

.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.funnel-step {
  padding: 28px;
  border-left: 1px solid var(--line-2);
  position: relative;
}

.funnel-step:first-child { border-left: none; }

.fs-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--line);
  line-height: 1;
  margin-bottom: 16px;
}

.fs-bar {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.funnel-step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--ivory);
}

.funnel-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================= EVENTS ========================= */
.events-section {
  padding: 100px 5%;
  background: var(--black);
}

.events-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.events-header h2 { font-size: clamp(2.2rem, 4.5vw, 4.2rem); }

.eh-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 420px;
  align-self: end;
  padding-bottom: 8px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.event-card {
  display: flex;
  flex-direction: column;
  background: var(--black-3);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: 0.3s ease;
}

.event-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.event-card--featured {
  border-color: rgba(201,168,76,0.3);
  border-top: 3px solid var(--gold);
}

.ev-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.ev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .ev-img img { transform: scale(1.05); }

.ev-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 13px;
  background: rgba(8,7,5,0.82);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-2);
  backdrop-filter: blur(10px);
}

.ev-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--gold);
  color: #0a0800;
}

.ev-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.ev-time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-2);
}

.ev-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--ivory);
  margin: 0;
}

.ev-body p {
  font-size: 0.88rem;
  color: var(--muted);
}

.ev-djs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ev-djs span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  color: var(--gold-2);
}

.ev-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ========================= TICKETS ========================= */
.tickets-section {
  padding: 100px 5%;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.tickets-section::before {
  content: "VIP";
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 22vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -8px;
}

.tickets-header {
  margin-bottom: 56px;
}

.tickets-header h2 { font-size: clamp(2.2rem, 4.5vw, 4.5rem); }

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line-2);
}

.ticket-card {
  background: var(--black-3);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: 0.3s ease;
}

.ticket-card:hover { background: var(--black-4); }

.ticket-card--vip {
  background: linear-gradient(160deg, rgba(201,168,76,0.1) 0%, var(--black-3) 60%);
  border-top: 3px solid var(--gold);
}

.tc-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--line);
}

.tc-crown {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-2);
}

.tc-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--gold);
  color: #0a0800;
  width: fit-content;
  margin-bottom: 4px;
}

.ticket-card h3 {
  font-size: 1.6rem;
  color: var(--ivory);
  line-height: 1.1;
}

.tc-price {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-2);
  line-height: 1;
}

.tc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.ticket-card .btn-primary,
.ticket-card .btn-gold,
.ticket-card .btn-ghost,
.ticket-card a { margin-top: auto; width: 100%; justify-content: center; text-align: center; }

/* ========================= VIP ========================= */
.vip-section {
  padding: 100px 5%;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.vip-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at left, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vip-copy h2 { margin-bottom: 20px; }

.vip-copy > p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 500px;
}

.vip-urgency {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-2) !important;
  margin-top: 4px;
}

.vip-perks {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-2);
}

.vp-item:first-child { border-top: 1px solid var(--line-2); }

.vp-icon {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.vp-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ivory);
  margin-bottom: 3px;
}

.vp-item span {
  font-size: 0.83rem;
  color: var(--muted);
}

.vip-right { display: flex; flex-direction: column; gap: 28px; }

.vip-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.vip-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vip-photo:hover img { transform: scale(1.04); }

.vip-photo-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 13px;
  background: rgba(8,7,5,0.85);
  border: 1px solid var(--line);
  color: var(--gold-2);
}

/* Booking form */
.booking-form {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-form h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  border-radius: 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.04);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder,
.review-form input::placeholder,
.review-form textarea::placeholder { color: var(--muted); }

.booking-form select option { background: #1a1810; }

.booking-form textarea { min-height: 120px; resize: vertical; }

/* ========================= MENU ========================= */
.menu-section {
  padding: 100px 5%;
  background: var(--black-2);
}

.menu-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.menu-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  align-self: end;
  padding-bottom: 8px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line-2);
}

.menu-card {
  background: var(--black-3);
  padding: 36px;
  position: relative;
  transition: 0.3s ease;
}

.menu-card:hover { background: var(--black-4); }

.menu-card--gold {
  background: linear-gradient(160deg, rgba(201,168,76,0.1) 0%, var(--black-3) 60%);
  border-top: 2px solid var(--gold);
}

.mc-badge-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--gold);
  color: #0a0800;
}

.mc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.mc-icon { font-size: 1.3rem; }
.mc-top h3 { font-size: 1.2rem; }

.mc-list { display: flex; flex-direction: column; gap: 0; }

.mc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
}

.mc-row:last-child { border-bottom: none; }

.mc-row p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 3px;
}

.mc-row small {
  font-size: 0.75rem;
  color: var(--muted);
}

.mc-row strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-2);
  flex-shrink: 0;
}

.menu-footer {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.menu-footer p { color: var(--muted); font-size: 0.9rem; }

/* ========================= GALLERY ========================= */
.gallery-section {
  padding: 100px 5%;
  background: var(--black);
}

.gallery-header { margin-bottom: 48px; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.gm-a, .gm-b, .gm-c, .gm-d, .gm-e, .gm-f, .gm-g {
  position: relative;
  overflow: hidden;
}

.gm-a { grid-column: 1; grid-row: 1 / span 2; }
.gm-b { grid-column: 2; grid-row: 1; }
.gm-c { grid-column: 3; grid-row: 1; }
.gm-d { grid-column: 4; grid-row: 1; }
.gm-e { grid-column: 2; grid-row: 2; }
.gm-f { grid-column: 3; grid-row: 2; }
.gm-g { grid-column: 4; grid-row: 2; }

.gm-a img, .gm-b img, .gm-c img, .gm-d img,
.gm-e img, .gm-f img, .gm-g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gm-a:hover img, .gm-b:hover img, .gm-c:hover img,
.gm-d:hover img, .gm-e:hover img, .gm-f:hover img,
.gm-g:hover img { transform: scale(1.06); }

.gm-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(8,7,5,0.92), transparent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: 0;
  transition: 0.3s ease;
}

.gm-a:hover .gm-label, .gm-b:hover .gm-label,
.gm-c:hover .gm-label, .gm-d:hover .gm-label,
.gm-e:hover .gm-label, .gm-f:hover .gm-label,
.gm-g:hover .gm-label { opacity: 1; }

.gallery-submit {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--black-3);
}

.gs-text h3 { font-size: 1.6rem; margin: 10px 0 10px; }
.gs-text p { color: var(--muted); font-size: 0.88rem; }

.gs-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gs-controls input[type="file"] {
  width: 100%;
  padding: 14px;
  border: 1px dashed rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
}

#uploadBtn {
  width: 100%;
  justify-content: center;
}

#uploadMsg { font-size: 0.82rem; color: var(--gold-2); font-weight: 600; min-height: 20px; }


/* ========================= REVIEWS ========================= */
.reviews-section {
  padding: 100px 5%;
  background: var(--black);
}

.reviews-header { margin-bottom: 56px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 2px;
  background: var(--line-2);
}

.review-card {
  background: var(--black-3);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rc-stars { color: var(--gold-2); font-size: 0.9rem; letter-spacing: 3px; }

.review-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.55;
}

.review-card cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.review-form {
  background: var(--black-4);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-form h3 { font-size: 1.4rem; margin-bottom: 4px; }

.review-form textarea { min-height: 100px; resize: vertical; }

/* ========================= BLOG ========================= */
.blog-section {
  padding: 100px 5%;
  background: var(--black-2);
}

.blog-header { margin-bottom: 56px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line-2);
  align-items: start;
}

.blog-card {
  background: var(--black-3);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s ease;
  height: 100%;
}

.blog-card:hover { background: var(--black-4); }

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-2);
  width: fit-content;
}

.blog-date {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  white-space: nowrap;
}

.blog-card h3 {
  font-size: 1.25rem;
  color: var(--ivory);
  line-height: 1.25;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  transition: all 0.3s ease;
}

.blog-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
  transition: 0.2s;
  display: block;
}

.blog-expand-btn {
  background: none;
  border: none;
  border-top: 1px solid var(--line-2);
  border-radius: 0;
  padding: 8px 0 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  clip-path: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: auto;
  transition: color 0.2s, letter-spacing 0.2s;
}

.blog-expand-btn:hover {
  color: var(--gold-3);
  letter-spacing: 2px;
  transform: none;
}

.blog-link:hover { color: var(--gold-3); letter-spacing: 2px; }

/* ========================= CMS ========================= */
.cms-section {
  padding: 60px 5%;
  background: var(--black);
  border-top: 1px solid var(--line-2);
}

.cms-card {
  max-width: 780px;
  margin: auto;
  text-align: center;
  padding: 56px;
  border: 1px solid var(--line);
  background: var(--black-3);
}

.cms-card h2 { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: 16px; }
.cms-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ========================= CONTACT ========================= */
.contact-section {
  padding: 100px 5%;
  background: var(--black-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-copy h2 { margin-bottom: 36px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.cd-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 0.88rem;
}

.cd-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  min-width: 80px;
  padding-top: 2px;
}

.cd-row a { color: var(--ivory); transition: color 0.2s; }
.cd-row a:hover { color: var(--gold-2); }

.contact-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-map {
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  overflow: hidden;
  min-height: 500px;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
  filter: grayscale(25%) contrast(1.05);
}


/* ========================= FOOTER ========================= */
.footer {
  padding: 40px 5%;
  background: var(--black);
  border-top: 1px solid var(--line-2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { height: 80px; width: auto; opacity: 0.7; }

.footer p {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-2); }

/* ========================= SCROLL REVEAL ========================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= KEYFRAMES ========================= */
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}

@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================= TABLET ========================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-event-card { max-width: 480px; }
  .funnel-inner { grid-template-columns: 1fr; gap: 40px; }
  .funnel-steps { grid-template-columns: 1fr; }
  .funnel-step { border-left: none; border-top: 1px solid var(--line-2); padding: 24px 0; }
  .funnel-step:first-child { border-top: none; }
  .events-header { grid-template-columns: 1fr; gap: 16px; }
  .events-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr; background: none; gap: 2px; }
  .vip-section { grid-template-columns: 1fr; gap: 48px; }
  .menu-header { grid-template-columns: 1fr; gap: 16px; }
  .menu-grid { grid-template-columns: 1fr; background: none; gap: 2px; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .gm-a { grid-column: 1 / span 2; grid-row: 1; }
  .gm-b { grid-column: 1; grid-row: 2; }
  .gm-c { grid-column: 2; grid-row: 2; }
  .gm-d { grid-column: 1; grid-row: 3; }
  .gm-e { grid-column: 2; grid-row: 3; }
  .gm-f { grid-column: 1; grid-row: 4; }
  .gm-g { grid-column: 2; grid-row: 4; }
  .gallery-submit { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; background: none; gap: 2px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; }

  .nav {
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8,7,5,0.98);
    border-bottom: 1px solid var(--line);
    padding: 20px 5%;
    display: none;
    gap: 0;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 0.85rem;
  }
  .nav a:last-child { border-bottom: none; }

  .nav.open { display: flex; }
  .menu-btn { display: flex; }
}

/* ========================= MOBILE ========================= */
@media (max-width: 640px) {
  .hero-inner { padding: 100px 5% 60px; }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
    letter-spacing: -1.5px;
  }

  h2 { font-size: clamp(1.8rem, 8vw, 3rem); }

  .hero-event-card { max-width: 100%; }

  .hero-genre-bar { display: none; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; justify-content: center; }

  .funnel-section, .events-section, .tickets-section,
  .vip-section, .menu-section, .gallery-section,
  .ig-section, .reviews-section, .blog-section,
  .cms-section, .contact-section { padding: 70px 5%; }

  .ev-img { height: 300px; }
  .ev-actions { flex-direction: column; }
  .ev-actions a { width: 100%; justify-content: center; }

  .ticket-card { padding: 36px 28px; }

  .form-row-2 { grid-template-columns: 1fr; }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gm-a, .gm-b, .gm-c, .gm-d,
  .gm-e, .gm-f, .gm-g {
    grid-column: 1;
    grid-row: auto;
    height: 220px;
  }

  .ig-grid { grid-template-columns: 1fr 1fr; }
  .ig-card { height: 200px; }

  .blog-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .cms-card { padding: 36px 24px; }

  .gallery-submit { padding: 24px; gap: 24px; }
  .gs-text h3 { font-size: 1.3rem; }
  .gs-controls input[type="file"] { font-size: 0.78rem; }

  .contact-btns { flex-direction: column; }
  .contact-btns a { width: 100%; justify-content: center; }
}