/* ============================================================
   THE BLACK AFFAIR — stylesheet
   ============================================================ */

:root {
  --bg: #07070a;
  --bg-soft: #0d0d11;
  --panel: #131317;
  --panel-2: #1a1a20;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f1ea;
  --text-dim: #b9b6ae;
  --text-mute: #86837c;
  --gold: #cda653;
  --gold-light: #e9d29a;
  --gold-deep: #9c7a30;
  --shadow-gold: rgba(205, 166, 83, 0.25);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); margin: 0; font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: #0a0a0c; }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #16130a;
  box-shadow: 0 10px 30px -8px var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -6px var(--shadow-gold); }
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- section scaffolding ---------- */
section { position: relative; padding: 110px 24px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}
.section-title { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--text); margin-bottom: 16px; }
.section-sub { color: var(--text-dim); font-size: 1.02rem; line-height: 1.6; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}
.brand-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.86rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--gold); color: #16130a; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 150px 20px 90px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(205,166,83,0.10), transparent 60%),
    var(--bg);
}
.hero-container { max-width: var(--maxw); margin: 0 auto; }
.hero-eyebrow {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 6px;
}
.hero-title {
  text-align: center;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 40px;
}
.hero-title span {
  display: block;
  font-size: clamp(3.2rem, 12vw, 9rem);
  letter-spacing: 0.01em;
}
.hero-title span:last-child {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-media {
  position: relative;
  aspect-ratio: 1171 / 685;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0,0,0,0.65));
}
.hero-media-overlay {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(5,5,7,0) 0%, rgba(5,5,7,0.08) 60%, rgba(5,5,7,0.85) 100%);
}
.hero-media-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.hero-facts { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-fact { display: flex; flex-direction: column; gap: 2px; }
.fact-label { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); opacity: 0.85; }
.fact-value { font-size: 0.95rem; font-weight: 600; color: #fff; }
.hero-fact-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.25); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-intro {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}
.hero-intro-label { display: flex; gap: 12px; align-items: flex-start; }
.hero-intro-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.hero-intro-label p { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--text-dim); line-height: 1.6; text-transform: uppercase; }
.hero-intro-text { font-size: 1.18rem; line-height: 1.65; color: var(--text-dim); max-width: 60ch; }

/* ============================================================
   TICKETS + FLIP CARDS
   ============================================================ */
.tickets { background: var(--bg-soft); }

.ticket-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.ticket-track-wrap { overflow: hidden; flex: 1; }
.ticket-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px;
  scrollbar-width: none;
}
.ticket-track::-webkit-scrollbar { display: none; }

.ticket-slide {
  flex: 0 0 auto;
  width: min(360px, 82vw);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flip-card {
  perspective: 1600px;
  aspect-ratio: 1.585 / 1;
  cursor: pointer;
  outline: none;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.8);
}
.flip-card.is-flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card:focus-visible .flip-card-inner { box-shadow: 0 0 0 3px var(--gold), 0 20px 50px -18px rgba(0,0,0,0.8); }

.flip-card-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.flip-card-face img { width: 100%; height: 100%; object-fit: cover; }
.flip-card-back { transform: rotateY(180deg); }

.ticket-caption { text-align: center; }
.ticket-caption h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 4px; }
.ticket-price { display: inline-block; color: var(--gold-light); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.ticket-caption p { color: var(--text-mute); font-size: 0.86rem; line-height: 1.5; }

.carousel-arrow {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--gold-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.carousel-arrow:hover { background: var(--gold); color: #16130a; border-color: var(--gold); transform: scale(1.06); }
.carousel-arrow:disabled { opacity: 0.3; pointer-events: none; }

.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 8px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-strong);
  border: none; padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel-dots button.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   DRINKS / BAR SHELF
   ============================================================ */
.drinks { background: var(--bg); }

.top-shelf {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.top-shelf::after {
  content: "";
  position: absolute; left: 24px; right: 24px; bottom: 14px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.top-shelf-item { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 110px; }
.top-shelf-divider { width: 1px; align-self: stretch; background: var(--line); }
.ts-name { font-size: 0.86rem; color: var(--text); font-weight: 600; text-align: center; }
.ts-price { font-size: 0.8rem; color: var(--gold-light); font-weight: 700; }
.ts-price.free { color: #8fd6a8; }

.shelf-grid { max-width: var(--maxw); margin: 0 auto; }
.shelf-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 860px) {
  .shelf-row { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.shelf-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 14px 20px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(205,166,83,0.08), transparent 60%), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.shelf-item:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 18px 34px -18px rgba(205,166,83,0.35); }

.shelf-item::after {
  content: "";
  width: 78%;
  height: 10px;
  margin-top: 14px;
  background: linear-gradient(180deg, #4a3520, #2a1c10);
  border-radius: 3px;
  box-shadow: 0 10px 18px -6px rgba(205,166,83,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}

.si-name { margin-top: 14px; font-size: 0.88rem; font-weight: 600; color: var(--text); text-align: center; }
.si-price { margin-top: 4px; font-size: 0.8rem; color: var(--gold-light); font-weight: 700; }

/* --- real bottle photography, cut from the drinks flyer --- */
.bottle-cutout {
  width: auto;
  height: 84px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(0,0,0,0.55));
}
.bottle-photo {
  width: 64px;
  height: 84px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 24px -10px rgba(0,0,0,0.6);
}

/* ============================================================
   EXPERIENCE / CTA
   ============================================================ */
.experience {
  padding: 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.experience-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.experience-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,7,0.55) 0%, rgba(5,5,7,0.72) 55%, rgba(5,5,7,0.95) 100%);
}
.experience-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: center;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.experience-title { font-size: clamp(2.2rem, 6vw, 3.6rem); color: #fff; line-height: 1.08; }
.experience-text { color: var(--text-dim); font-size: 1.08rem; line-height: 1.7; }

/* ---------- sticky snapchat FAB ---------- */
.snap-fab {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #FFFC00;
  color: #111;
  border-radius: 999px;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, padding 0.3s ease;
}
.snap-fab.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.snap-fab-icon { width: 26px; height: 26px; flex-shrink: 0; position: relative; z-index: 2; }
.snap-fab-ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255, 252, 0, 0.6);
  animation: snapPulse 2.2s ease-out infinite;
}
.snap-fab-label {
  font-size: 0.8rem;
  font-weight: 700;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease, padding-right 0.4s ease;
}
.snap-fab:hover .snap-fab-label { max-width: 160px; padding-right: 4px; }
@keyframes snapPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 252, 0, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(255, 252, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 252, 0, 0); }
}

/* ============================================================
   GUESTS CAROUSEL
   ============================================================ */
.guests { background: var(--bg-soft); }
.guest-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.guest-track-wrap { overflow: hidden; flex: 1; }
.guest-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 20px;
  scrollbar-width: none;
}
.guest-track::-webkit-scrollbar { display: none; }
.guest-slide {
  flex: 0 0 auto;
  width: min(300px, 72vw);
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  aspect-ratio: 941 / 1672;
  box-shadow: 0 20px 45px -20px rgba(0,0,0,0.75);
  transition: transform 0.35s ease;
}
.guest-slide:hover { transform: translateY(-6px); }
.guest-slide img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.services-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-deep); }
.service-index { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); opacity: 0.8; }
.service-card h3 { font-size: 1.1rem; margin: 14px 0 10px; color: var(--text); }
.service-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-mute); }

.services-cta {
  max-width: var(--maxw);
  margin: 46px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.services-cta p { color: var(--text-dim); font-size: 0.95rem; }
.services-cta a { color: var(--gold-light); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.services-cta a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #030304;
  border-top: 1px solid var(--line);
  padding: 70px 24px 30px;
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-brand p { color: var(--text-mute); font-size: 0.86rem; margin-top: 6px; line-height: 1.5; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 0.88rem; color: var(--text-dim); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-mute); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(7,7,10,0.97);
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .hero-intro { grid-template-columns: 1fr; gap: 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 80px 18px; }
  .hero { padding-top: 130px; }
  .hero-media { aspect-ratio: auto; }
  .hero-media img { height: auto; }
  .hero-media-overlay { display: none; }
  .hero-media-bar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 4px 0;
    gap: 16px;
    background: none;
  }
  .hero-facts { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-fact-divider { display: none; }
  .top-shelf { flex-direction: column; align-items: stretch; }
  .top-shelf-divider { display: none; }
  .top-shelf-item { flex-direction: row; justify-content: space-between; width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
}
