 :root {
      --bg: #080508;
      --gold: #c9933a;
      --gold-light: #e8b84b;
      --gold-bright: #f5d07a;
      --gold-pale: rgba(201,147,58,0.12);
      --deep: #1a0a2e;
      --mid: #2d1155;
      --text: #e8d5c4;
      --muted: rgba(232,213,196,0.55);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Raleway', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

    /* ── GOLD TEXT ── */
    .gold { color: var(--gold-bright); }
    .gold-grad {
      background: linear-gradient(135deg, var(--gold), var(--gold-bright), #fff8e0, var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0;
      transition: background 0.4s, padding 0.4s;
    }
    .navbar.scrolled {
      background: rgba(8,5,8,0.95) !important;
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(201,147,58,0.2);
      padding: 0;
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 40px;
      transition: padding 0.4s;
    }
    .navbar.scrolled .navbar-inner { padding: 12px 40px; }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .nav-logo-img {
      height: 70px; width: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold);
      box-shadow: 0 0 14px rgba(201,147,58,0.4);
    }
    .nav-logo-text {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--gold-bright);
      letter-spacing: 2px;
      line-height: 1.2;
    }
    .nav-logo-sub {
      font-family: 'Raleway', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 3px;
      color: var(--muted);
      display: block;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex; align-items: center; gap: 4px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Raleway', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(232,213,196,0.8);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 2px;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 1px;
      background: var(--gold);
      transition: left 0.3s, right 0.3s;
    }
    .nav-links a:hover { color: var(--gold-bright); }
    .nav-links a:hover::after { left: 14px; right: 14px; }
    .btn-nav-book {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--bg);
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border: none;
      padding: 10px 22px;
      border-radius: 1px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-nav-book:hover {
      box-shadow: 0 0 24px rgba(201,147,58,0.5);
      color: var(--bg);
      transform: translateY(-1px);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px; cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      width: 24px; height: 2px;
      background: var(--gold);
      transition: all 0.3s;
    }

    /* ── HERO — CINEMATIC FULLSCREEN ── */
   /* Replace your existing .hero-bg and .hero-bg-img */
/* ========== HERO BG ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 40%, #1a1008 0%, #0a0a0a 60%, #000 100%);
}

.hero-bg-img {
  display: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,147,58,0.18) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(8,5,8,0.3) 0%, rgba(8,5,8,0.05) 30%, rgba(8,5,8,0.05) 60%, rgba(8,5,8,0.85) 100%),
    linear-gradient(to right, rgba(8,5,8,0.6) 0%, transparent 30%, transparent 70%, rgba(8,5,8,0.6) 100%);
}

/* ========== BEAM & PARTICLES ========== */
.hero-beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100%;
  background: radial-gradient(ellipse 300px 500px at 50% 0%, rgba(201,147,58,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;
  animation: sparkle-anim linear infinite;
}

@keyframes sparkle-anim {
  0%   { opacity: 0; transform: scale(0); }
  50%  { opacity: 0.8; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(0.5) translateY(-20px); }
}

/* ========== HERO CONTENT ========== */
.hero-content {
 position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 120px 20px 40px;
}


.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  text-shadow:
    0 0 80px rgba(201,147,58,0.5),
    0 0 160px rgba(201,147,58,0.2);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(232,213,196,0.85);
  letter-spacing: 2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

/* ========== PLAY BUTTON ========== */
.hero-play-wrap {
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.85s forwards;
}

.hero-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,162,39,0.9);
  border: 3px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s, background .3s;
  animation: hero-pulse 2.2s infinite;
  padding-left: 5px;
  flex-shrink: 0;
}

.hero-play-btn:hover {
  transform: scale(1.12);
  background: var(--gold);
}

.hero-play-label {
  color: rgba(255,255,255,0.85);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

@keyframes hero-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,0.7); }
  60%  { box-shadow: 0 0 0 20px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

/* ========== HERO BUTTONS ========== */
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}

.btn-hero-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  border: none;
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-hero-primary:hover {
  box-shadow: 0 0 40px rgba(201,147,58,0.6);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-hero-outline {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid rgba(201,147,58,0.6);
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-hero-outline:hover {
  background: rgba(201,147,58,0.12);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* ========== SCROLL INDICATOR ========== */
.hero-scroll {
  position: absolute;
  bottom: 100px; /* above the stats bar */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
  z-index: 6;
  white-space: nowrap;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ========== STATS BAR ========== */
.hero-stats-bar {
    margin: 0 auto;
 position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8,5,8,0.6);
  border-top: 1px solid rgba(201,147,58,0.2);
  padding: 20px 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 60px;
}
.stat-item { text-align: center; }

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* ========== LIGHTBOX ========== */
.hero-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.hero-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.hero-lb-inner {
  position: relative;
  width: min(900px, 94vw);
}

.hero-lb-inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 10px;
}

.hero-lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
    /* ── BOOKING STRIP ── */
    .booking-strip {
      background: linear-gradient(90deg, var(--bg) 0%, #1a0a2e 50%, var(--bg) 100%);
      border-top: 1px solid rgba(201,147,58,0.25);
      border-bottom: 1px solid rgba(201,147,58,0.25);
      padding: 36px 0;
    }
.booking-title {
       font-family: 'Cinzel', serif;
       font-size: 1.1rem;
       color: var(--gold-bright);
       margin-bottom: 4px;
     }
.booking-sub {
       font-size: 0.78rem; color: var(--muted);
       letter-spacing: 1px;
     }
     .inp {
       background: rgba(255,255,255,0.05);
       border: 1px solid rgba(201,147,58,0.25);
       color: var(--text);
       border-radius: 0;
       padding: 11px 16px;
       font-size: 0.85rem;
       font-family: 'Raleway', sans-serif;
       width: 100%;
       transition: border-color 0.3s;
     }
     .inp::placeholder { color: rgba(232,213,196,0.35); }
     .inp:focus {
       outline: none;
       border-color: var(--gold);
       background: rgba(201,147,58,0.05);
       box-shadow: 0 0 0 2px rgba(201,147,58,0.1);
     }
     .inp option { background: var(--deep); }
     .btn-go {
       background: linear-gradient(135deg, var(--gold), var(--gold-light));
       color: var(--bg);
       border: none;
       font-family: 'Cinzel', serif;
       font-size: 0.85rem;
       font-weight: 700;
       letter-spacing: 2px;
       padding: 12px 36px;
       display: inline-block;
       transition: all 0.3s;
       text-decoration: none;
     }
     .btn-go:hover { box-shadow: 0 4px 20px rgba(201,147,58,0.4); }

    /* ── SECTION COMMONS ── */
    section { padding: 90px 0; }
    .sec-eye {
      font-size: 0.68rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .sec-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .sec-div {
      width: 48px; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-bright));
      margin: 0 auto 18px;
    }
    .sec-div.left { margin-left: 0; }
    .sec-desc {
      font-size: 1rem;
      color: #fffff0;
      line-height: 1.9;
      max-width: 520px;
      margin: 0 auto;
    }

    /* ── ABOUT ── */
    .about-section {
      background: linear-gradient(180deg, var(--bg) 0%, #0e071a 100%);
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      height: 580px;
      object-fit: cover;
      object-position: center top;
      border: 1px solid rgba(201,147,58,0.3);
      display: block;
    }
    .about-img-accent {
      position: absolute;
      bottom: -20px; right: -20px;
      width: 45%;
      height: 200px;
      object-fit: cover;
      border: 3px solid var(--gold);
      box-shadow: 0 0 30px rgba(201,147,58,0.3);
    }
    .about-img-wrap::before {
      content: '';
      position: absolute;
      top: -8px; left: -8px;
      right: 8px; bottom: 8px;
      border: 1px solid rgba(201,147,58,0.2);
      z-index: -1;
    }
    .about-text p {
      font-size: 1rem;
      color: #fffff0;
      line-height: 1.95;
      margin-bottom: 16px;
    }
    .about-badge {
      display: inline-flex; align-items: center; gap: 7px;
      border: 1px solid rgba(201,147,58,0.3);
      padding: 5px 14px;
      font-size: 0.75rem;
      color: var(--gold-bright);
      margin: 3px;
      letter-spacing: 1px;
      background: rgba(201,147,58,0.05);
    }

    /* ── HIT SONGS ── */
    .songs-section {
      background: linear-gradient(180deg, #0e071a 0%, var(--bg) 100%);
    }
    .song-card {
    position: relative;
    height: 280px;          /* ✏️ adjust this value to your liking */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
  }

    .song-card:hover {
      border-color: rgba(201,147,58,0.5);
      transform: translateY(-6px);
    }
    .song-card img {
      position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* fills the card, crops edges if needed */
    object-position: center top;  /* shows top of thumbnail (usually the face/main subject) */
    display: block;
    transition: transform .4s ease;
    }
    .song-card:hover img {
      transform: scale(1.06);
      filter: brightness(0.85) saturate(1);
    }
    .song-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,5,8,0.92) 0%, rgba(8,5,8,0.3) 50%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 20px;
      transition: background 0.3s;
    }
    .song-card:hover .song-card-overlay {
      background: linear-gradient(to top, rgba(8,5,8,0.85) 0%, rgba(8,5,8,0.2) 40%, transparent 100%);
    }
    .play-circle {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 54px; height: 54px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-bright);
      font-size: 1.2rem;
      background: rgba(8,5,8,0.5);
      opacity: 0;
      transition: all 0.3s;
      backdrop-filter: blur(4px);
    }
    .song-card:hover .play-circle {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    .song-title {
      font-family: 'Cinzel', serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
      letter-spacing: 0.5px;
    }
    .song-sub {
      font-size: 0.7rem;
      color: var(--gold);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .song-yt-btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.68rem; letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold-bright);
      text-decoration: none;
      margin-top: 8px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .song-card:hover .song-yt-btn { opacity: 1; }
    .song-yt-btn i { font-size: 0.85rem; color: #ff4444; }

    /* ── COLLABORATION ── */
    .collab-section { background: var(--bg); }
    .collab-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
      border: 1px solid rgba(201,147,58,0.2);
      cursor: pointer;
      transition: all 0.3s;
    }
    .collab-card:hover {
      border-color: var(--gold);
      box-shadow: 0 0 40px rgba(201,147,58,0.15);
    }
    .collab-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.6) saturate(0.7);
      transition: all 0.4s;
    }
    .collab-card:hover img {
      filter: brightness(0.8) saturate(1);
      transform: scale(1.05);
    }
    .collab-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,5,8,0.88) 0%, transparent 60%);
      display: flex; align-items: flex-end;
      padding: 20px;
    }
    .collab-yt {
      position: absolute; top: 12px; right: 12px;
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,0,0,0.85);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 4px 10px;
      text-decoration: none;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .collab-card:hover .collab-yt { opacity: 1; }
    .collab-title {
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      color: var(--gold-bright);
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    .collab-artist {
      font-size: 0.7rem;
      color: #fffff0;
      letter-spacing: 1px;
      margin-top: 3px;
    }

    /* ── SHOWS ── */
    .shows-section {
      background: linear-gradient(180deg, var(--bg) 0%, #0e071a 100%);
    }
    .show-main {
      position: relative;
      overflow: hidden;
      height: 520px;
      border: 1px solid rgba(201,147,58,0.2);
    }
    .show-main img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.65) saturate(0.8);
      transition: transform 0.6s;
    }
    .show-main:hover img { transform: scale(1.04); }
    .show-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,5,8,0.9) 0%, transparent 55%);
      display: flex; align-items: flex-end;
      padding: 28px;
    }
    .show-small {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201,147,58,0.2);
      transition: border-color 0.3s;
    }
    .show-small:hover { border-color: rgba(201,147,58,0.5); }
    .show-small img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.6) saturate(0.8);
      display: block;
      transition: all 0.4s;
    }
    .show-small:hover img {
      filter: brightness(0.8) saturate(1);
      transform: scale(1.05);
    }
    .show-small-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,5,8,0.85) 0%, transparent 60%);
      display: flex; align-items: flex-end;
      padding: 14px;
    }
    .show-label {
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      color: var(--gold-bright);
      font-weight: 600;
    }
    .show-loc {
      font-size: 0.68rem;
      color: #fffff0;
      margin-top: 2px;
    }
    .show-label-big {
      font-family: 'Cinzel', serif;
      font-size: 1.3rem;
      color: var(--gold-bright);
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ── EXCLUSIVE EVENTS ── */
    .exclusive-section { background: #0e071a; }
    .exc-card {
      border: 1px solid rgba(201,147,58,0.18);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      height: 100%;
      transition: all 0.35s;
      background: linear-gradient(135deg, rgba(26,10,46,0.5), rgba(8,5,8,0.8));
    }
    .exc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .exc-card:hover { border-color: rgba(201,147,58,0.4); transform: translateY(-6px); }
    .exc-card:hover::before { opacity: 1; }
    .exc-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(201,147,58,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .exc-card h5 {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      color: #fff;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .exc-card p { font-size: 0.83rem; color: #fffff0; line-height: 1.75; }
    .btn-exc {
      display: inline-block;
      margin-top: 20px;
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,147,58,0.4);
      padding-bottom: 2px;
      transition: color 0.3s, border-color 0.3s;
    }
    .btn-exc:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

    /* ── EVENTS SECTION ── */
    .events-section { background: linear-gradient(180deg, #0e071a 0%, var(--bg) 100%); }
    .tab-btn {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      background: transparent;
      border: 1px solid rgba(201,147,58,0.3);
      color: var(--muted);
      padding: 9px 28px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .tab-btn.active, .tab-btn:hover {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--bg);
      border-color: var(--gold);
    }
    .event-card {
      border: 1px solid rgba(201,147,58,0.15);
      overflow: hidden;
      transition: all 0.3s;
      background: rgba(26,10,46,0.3);
    }
    .event-card:hover {
      border-color: rgba(201,147,58,0.45);
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    }
    .event-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .event-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.7) saturate(0.8);
      transition: all 0.4s;
    }
    .event-card:hover .event-thumb img {
      filter: brightness(0.85) saturate(1);
      transform: scale(1.04);
    }
    .event-info { padding: 18px; }
    .event-info h6 {
      font-family: 'Cinzel', serif;
      font-size: 0.88rem;
      color: var(--gold-bright);
      margin-bottom: 6px;
    }
    .event-info p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
    .event-date { font-size: 0.7rem; color: var(--gold); margin-top: 8px; letter-spacing: 1px; }

    /* ── CTA ── */
    .cta-section {
      position: relative;
      padding: 110px 0;
      text-align: center;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 700px 400px at 50% 50%, rgba(201,147,58,0.1) 0%, transparent 70%),
        linear-gradient(135deg, #0e071a 0%, var(--bg) 50%, #0e071a 100%);
    }
    .cta-section h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      position: relative;
      color: #fff;
      margin-bottom: 14px;
    }
    .cta-section p { color: #fffff0; position: relative; margin-bottom: 36px; }
    .btn-cta-primary {
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--bg);
      border: none;
      padding: 14px 32px;
      text-decoration: none;
      position: relative;
      transition: all 0.3s;
    }
    .btn-cta-primary:hover { box-shadow: 0 0 32px rgba(201,147,58,0.5); color: var(--bg); }
    .btn-cta-outline {
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: transparent;
      color: var(--gold-bright);
      border: 1px solid rgba(201,147,58,0.5);
      padding: 13px 32px;
      text-decoration: none;
      position: relative;
      transition: all 0.3s;
    }
    .btn-cta-outline:hover { background: rgba(201,147,58,0.1); color: var(--gold-bright); }

    /* ── FOOTER ── */
    footer {
      background: #030203;
      border-top: 1px solid rgba(201,147,58,0.15);
      padding: 70px 0 28px;
    }
    footer h6 {
      font-family: 'Cinzel', serif;
      font-size: 0.88rem;
      color: var(--gold-bright);
      letter-spacing: 2px;
      margin-bottom: 20px;
    }
    footer p, footer a {
      font-size: 1rem;
      color: #fffff0;
      text-decoration: none;
      line-height: 2.2;
      transition: color 0.3s;
      display: block;
    }
    footer a:hover { color: var(--gold-bright); }
    .social-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px;
      border: 1px solid rgba(201,147,58,0.3);
      color: var(--gold);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s;
    }
    .social-btn:hover {
      background: var(--gold);
      color: var(--bg);
      border-color: var(--gold);
    }
    .footer-hr { border-color: rgba(201,147,58,0.1); margin: 32px 0 20px; }
    .newsletter-wrap { display: flex; }
    .newsletter-inp {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,147,58,0.25);
      border-right: none;
      color: var(--text);
      padding: 8px 14px;
      font-size: 0.8rem;
      font-family: 'Raleway', sans-serif;
    }
    .newsletter-inp::placeholder { color: rgba(232,213,196,0.3); }
    .newsletter-inp:focus { outline: none; border-color: var(--gold); }
    .newsletter-btn {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border: none;
      color: var(--bg);
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 8px 16px;
      cursor: pointer;
    }

    /* ── FLOAT SOCIAL ── */
    .float-social {
      position: fixed;
      right: 18px; top: 50%;
      transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 8px;
      z-index: 900;
    }
    .float-social a {
      width: 36px; height: 36px;
      background: rgba(8,5,8,0.8);
      border: 1px solid rgba(201,147,58,0.25);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 0.85rem;
      text-decoration: none;
      backdrop-filter: blur(6px);
      transition: all 0.3s;
    }
    .float-social a:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
    @media (max-width: 768px) { .float-social { display: none; } }

    /* ── MOBILE NAV ── */
    @media (max-width: 991px) {
      .nav-links { display: none; }
      .btn-nav-book { display: none; }
      .nav-hamburger { display: flex; }
      .nav-mobile {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(8,5,8,0.97);
        z-index: 999;
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 24px;
        opacity: 0; pointer-events: none;
        transition: opacity 0.3s;
      }
      .nav-mobile.open { opacity: 1; pointer-events: all; }
      .nav-mobile a {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        letter-spacing: 4px;
        color: var(--text);
        text-decoration: none;
        text-transform: uppercase;
      }
      .nav-mobile a:hover { color: var(--gold-bright); }
      .navbar-inner { padding: 16px 24px; }
    }
    @media (max-width: 576px) {
      section { padding: 60px 0; }
      .hero-stats-bar { gap: 28px; padding: 18px 16px; }
      .stat-num { font-size: 1.4rem; }
    }

    /* ── REVEAL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    