/* ═══════════════════════════════════════════════════════════
   DJ DUBZ — Final Stylesheet
   Minimal · Premium · Nightlife vibe
   ═══════════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #050505;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --gold:       #D4AF37;
  --gold-light: #F0D060;
  --cyan:       #00F5FF;
  --purple:     #9B30FF;
  --pink:       #FF2D78;
  --orange:     #F97316;
  --bg:         #0a0a0a;
  --bg-2:       #0d0d0d;
  --bg-3:       #080808;
  --line:       rgba(255,255,255,0.08);
  --muted:      rgba(255,255,255,0.55);
  --spring:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Containers ────────────────────────────────────────── */
.container         { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow  { max-width: 960px;  margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) {
  .container, .container-narrow { padding: 0 32px; }
}

/* ═══════════════════════════════════════════════════════════
   HEADER (solid black, always visible)
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(212,175,55,0.08);
  position: relative;
}
.logo-dot::after {
  content: '';
  position: absolute; inset: 0; margin: auto;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.9);
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.15em;
  font-weight: 700;
  transition: color 0.3s ease;
}
.logo:hover .logo-text { color: var(--gold); }

.nav-links { display: none; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
}

/* CTA button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4AF37, #F0D060);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}
.cta-btn:hover {
  box-shadow: 0 0 35px rgba(212,175,55,0.7);
  transform: translateY(-1px);
}
.cta-btn.large {
  padding: 16px 36px;
  font-size: 12px;
}
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

/* Mobile toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px; left: 0; right: 0;
  background: rgba(4,4,8,0.98);
  padding: 16px 24px 24px;
  gap: 0;
  border-top: 1px solid var(--line);
}
.nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-links.open .nav-link { display: block; padding: 18px 4px; font-size: 13px; }

/* ═══════════════════════════════════════════════════════════
   HERO — image visible, text left-aligned
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/hero/hero.jpg');
  background-size: cover;
  background-position: center;
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.65) 100%),
    linear-gradient(90deg,  rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.00) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: clamp(24px, 6vw, 96px);
  padding-bottom: clamp(96px, 14vh, 160px);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9.5vw, 132px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero-title .shimmer {
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.22));
}
.hero-tagline {
  margin-top: 18px;
  max-width: 440px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-indicator span {
  width: 3px; height: 7px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   SHIMMER TEXT
   ═══════════════════════════════════════════════════════════ */
.shimmer {
  background: linear-gradient(90deg, #A8891E 0%, #D4AF37 15%, #F0D060 30%, #fff8dc 45%, #F0D060 55%, #D4AF37 70%, #A8891E 85%, #D4AF37 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  animation: shimmerMove 2.8s linear infinite;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.4));
}
@keyframes shimmerMove {
  0%   { background-position: 0%   center; }
  100% { background-position: 300% center; }
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: var(--bg);
}
@media (min-width: 1024px) { .section { padding: 96px 0; } }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 0 12px rgba(212,175,55,0.5);
}
.eyebrow.purple-text { color: var(--purple); text-shadow: 0 0 12px rgba(155,48,255,0.6); }
.eyebrow.pink-text   { color: var(--pink);   text-shadow: 0 0 12px rgba(255,45,120,0.6); }
.eyebrow.orange-text { color: var(--orange); text-shadow: 0 0 12px rgba(249,115,22,0.6); }

.big-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}
.section-center { text-align: center; margin-bottom: 40px; }
.section-sub    { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.3); }

.muted      { color: rgba(255,255,255,0.48) !important; }
.gold-text  { color: var(--gold); text-shadow: 0 0 10px rgba(212,175,55,0.45); font-weight: 600; }
.emph       { color: #fff; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  background:
    radial-gradient(ellipse 65% 55% at 5% 50%,  rgba(155,48,255,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 95% 50%, rgba(212,175,55,0.07) 0%, transparent 55%),
    #0c0c0c;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative; z-index: 2;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start; }
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 60px rgba(155,48,255,0.12);
  margin-bottom: 24px;
}

.gold-bar {
  height: 2px;
  width: 64px;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212,175,55,0.7);
  margin-bottom: 28px;
}

.location-pill,
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.9);
}
.founder-badge { margin-top: 4px; }

.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,1);
  flex-shrink: 0;
}

.about-right { display: flex; flex-direction: column; gap: 40px; }

.about-bio { display: flex; flex-direction: column; gap: 20px; }
.about-bio p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.68);
}
.about-bio p.muted { color: rgba(255,255,255,0.52); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(var(--cRgb),0.10) 0%, rgba(8,8,8,0.95) 100%);
  border: 1px solid rgba(var(--cRgb),0.20);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: rgba(var(--cRgb),0.55);
  box-shadow: 0 0 30px rgba(var(--cRgb),0.22);
  transform: translateY(-3px);
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--c);
  text-shadow: 0 0 20px rgba(var(--cRgb),0.55);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════
   STORY
   ═══════════════════════════════════════════════════════════ */
.story {
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(212,175,55,0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(155,48,255,0.06), transparent 55%),
    var(--bg);
}

.story-header       { margin-bottom: 40px; position: relative; z-index: 2; }
.story-grid         { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .story-grid > .story-card:first-child { border-right: 1px solid var(--line); padding-right: 64px; }
  .story-grid > .story-card:last-child  { padding-left: 64px; }
}

.story-card { position: relative; }

.era-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.era-pill.gold { background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.28); color: var(--gold); }
.era-pill.cyan { background: rgba(0,245,255,0.10);  border: 1px solid rgba(0,245,255,0.28);  color: var(--cyan); }
.era-pill .pill-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

.story-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 130px);
  line-height: 1;
  font-weight: 900;
  color: transparent;
  margin-bottom: 24px;
}
.gold-year { -webkit-text-stroke: 2px rgba(212,175,55,0.55); text-shadow: 0 0 40px rgba(212,175,55,0.20); }
.cyan-year { -webkit-text-stroke: 2px rgba(0,245,255,0.55);  text-shadow: 0 0 40px rgba(0,245,255,0.20); }

.story-sub {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.gold-sub { color: rgba(212,175,55,0.65); }
.cyan-sub { color: rgba(0,245,255,0.65); }

.story-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.story-p.muted { color: rgba(255,255,255,0.45); }

.neon-bar {
  height: 2px;
  width: 64px;
  border-radius: 2px;
  margin-top: 36px;
}
.gold-bar-neon { background: var(--gold); box-shadow: 0 0 12px rgba(212,175,55,0.7), 0 0 25px rgba(212,175,55,0.35); }
.cyan-bar-neon { background: var(--cyan); box-shadow: 0 0 12px rgba(0,245,255,0.7), 0 0 25px rgba(0,245,255,0.35); }

/* ═══════════════════════════════════════════════════════════
   PHOTOS (masonry gallery)
   ═══════════════════════════════════════════════════════════ */
.gallery {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(155,48,255,0.06), transparent 55%),
    #090909;
}
.gallery .container { position: relative; z-index: 2; }

.masonry { column-count: 2; column-gap: 16px; }
@media (min-width: 768px) { .masonry { column-count: 3; } }

.masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.masonry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(155,48,255,0.20), 0 12px 40px rgba(0,0,0,0.5);
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--spring);
}
.masonry-item:hover img { transform: scale(1.04); }

.placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: rgba(255,255,255,0.2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  pointer-events: none;
}
.masonry-item .placeholder {
  position: relative;
  height: 0;
  padding-bottom: calc(var(--ratio, 1.3) * 100%);
}

/* ═══════════════════════════════════════════════════════════
   VENUES
   ═══════════════════════════════════════════════════════════ */
.venues {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(212,175,55,0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 5% 70%,   rgba(155,48,255,0.10), transparent 50%),
    radial-gradient(ellipse 50% 50% at 95% 70%,  rgba(0,245,255,0.08),  transparent 50%),
    var(--bg-3);
}
.venues .container { position: relative; z-index: 2; }

.subsection { margin-bottom: 56px; }
.subsection:last-child { margin-bottom: 0; }

.subsection-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.subsection-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: 0.15em;
  color: #fff;
}
.accent-line {
  flex: 1;
  height: 1px;
}
.accent-line.gold   { background: linear-gradient(90deg, rgba(212,175,55,0.5), transparent); }
.accent-line.purple { background: linear-gradient(90deg, rgba(155,48,255,0.5), transparent); }

.venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px)  { .venues-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .venues-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .venues-grid { grid-template-columns: repeat(5, 1fr); } }

.venues-grid--intl {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .venues-grid--intl { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .venues-grid--intl { grid-template-columns: repeat(3, 1fr); } }

.venue-tile {
  padding: 18px 16px;
  min-height: 72px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(var(--cRgb),0.14);
  background:
    radial-gradient(ellipse 120% 100% at 50% 110%, rgba(var(--cRgb),0.08) 0%, rgba(10,10,10,0.95) 65%);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.venue-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(var(--cRgb),0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.venue-tile:hover {
  color: #fff;
  border-color: rgba(var(--cRgb),0.5);
  background:
    radial-gradient(ellipse 140% 180% at 50% 120%, rgba(var(--cRgb),0.28) 0%, rgba(12,12,12,0.98) 60%);
  box-shadow: 0 0 35px rgba(var(--cRgb),0.22), inset 0 -10px 35px rgba(var(--cRgb),0.14);
  text-shadow: 0 0 20px rgba(var(--cRgb),0.6);
}
.venue-tile:hover::before {
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  box-shadow: 0 0 10px var(--c);
}

/* ═══════════════════════════════════════════════════════════
   ARTISTS / LIVE SHOWS
   ═══════════════════════════════════════════════════════════ */
.artists {
  background:
    radial-gradient(ellipse 70% 60% at 15% 30%, rgba(155,48,255,0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(255,45,120,0.10), transparent 55%),
    #060606;
}
.artists .container-narrow { position: relative; z-index: 2; }

.shows-list { display: flex; flex-direction: column; gap: 12px; }

.show-row {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(var(--cRgb),0.14);
  background: linear-gradient(105deg, rgba(var(--cRgb),0.06) 0%, rgba(8,8,8,0.95) 55%);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.show-row:hover {
  border-color: rgba(var(--cRgb),0.5);
  background: linear-gradient(105deg, rgba(var(--cRgb),0.18) 0%, rgba(10,10,10,0.97) 55%);
  box-shadow: 0 0 50px rgba(var(--cRgb),0.24), 0 6px 30px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.show-beam {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 5%, var(--c) 40%, var(--c) 60%, transparent 95%);
  box-shadow: 0 0 6px var(--c);
  opacity: 0.6;
  transition: opacity 0.35s, box-shadow 0.35s;
}
.show-row:hover .show-beam {
  opacity: 1;
  box-shadow: 0 0 15px var(--c), 0 0 30px rgba(var(--cRgb),0.5);
}

.show-row > :not(.show-beam) { position: relative; z-index: 1; }

.show-row {
  padding: 20px 24px;
}
@media (min-width: 640px) { .show-row { padding: 22px 32px; } }
.show-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.show-main { flex: 1; min-width: 0; padding-left: 8px; }
.show-role {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(var(--cRgb),0.7);
  margin-bottom: 4px;
}
.show-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: text-shadow 0.35s;
}
.show-row:hover .show-name {
  color: #fff;
  text-shadow: 0 0 20px rgba(var(--cRgb),0.7), 0 0 40px rgba(var(--cRgb),0.3);
}

.show-arrow {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--cRgb),0.15);
  background: rgba(var(--cRgb),0.05);
  color: var(--c);
  font-size: 16px;
  transition: all 0.35s ease;
}
.show-row:hover .show-arrow {
  border-color: rgba(var(--cRgb),0.5);
  background: rgba(var(--cRgb),0.18);
}

/* ═══════════════════════════════════════════════════════════
   FESTIVALS
   ═══════════════════════════════════════════════════════════ */
.festivals {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%,  rgba(212,175,55,0.12), transparent 55%),
    radial-gradient(ellipse 50% 45% at 95% 55%, rgba(155,48,255,0.10), transparent 50%),
    radial-gradient(ellipse 50% 45% at 5% 55%,  rgba(255,45,120,0.07), transparent 50%),
    #0b0b0b;
}
.festivals .container { position: relative; z-index: 2; }

.festivals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .festivals-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .festivals-grid { grid-template-columns: repeat(4, 1fr); } }

.fest-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--cRgb),0.20);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(var(--cRgb),0.18), transparent 50%),
    linear-gradient(180deg, rgba(var(--cRgb),0.06), #0a0a0a 70%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--spring), box-shadow 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.fest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--cRgb),0.55);
  box-shadow: 0 0 45px rgba(var(--cRgb),0.30), 0 20px 50px rgba(0,0,0,0.6);
}

.fest-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c), rgba(var(--cRgb),0.3), transparent);
  box-shadow: 0 0 6px rgba(var(--cRgb),0.3);
  transition: all 0.4s ease;
}
.fest-card:hover .fest-bar {
  background: linear-gradient(90deg, var(--c), rgba(var(--cRgb),0.5), var(--c));
  box-shadow: 0 0 18px var(--c);
}

.fest-cone {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 110px;
  background: linear-gradient(to bottom, rgba(var(--cRgb),0.14), transparent);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.fest-card:hover .fest-cone { opacity: 1.4; }

.fest-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 8px rgba(var(--cRgb),0.2);
  transition: text-shadow 0.4s ease;
  position: relative;
  z-index: 2;
}
.fest-card:hover .fest-name {
  text-shadow: 0 0 24px rgba(var(--cRgb),0.7), 0 0 50px rgba(var(--cRgb),0.3);
}

.fest-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(var(--cRgb),0.05), transparent);
  pointer-events: none;
  transition: all 0.5s ease;
}
.fest-card:hover .fest-glow {
  background: linear-gradient(to top, rgba(var(--cRgb),0.18), transparent);
}

/* ═══════════════════════════════════════════════════════════
   BOOKING (Contact)
   ═══════════════════════════════════════════════════════════ */
.contact {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.07), transparent 60%),
    #050505;
}
.contact .container-narrow { position: relative; z-index: 2; max-width: 760px; }
.booking-inner { padding-top: 12px; }

.booking-intro { max-width: 540px; margin: 0 auto; }

.booking-form {
  margin-top: 32px;
  background: rgba(12,12,12,0.72);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (min-width: 640px) { .booking-form { padding: 32px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.field.full { grid-column: 1 / -1; }

.required-star {
  color: #ff3b3b;
  margin-left: 4px;
}

.field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.3); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
  background: rgba(255,255,255,0.05);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"),
    linear-gradient(transparent, transparent);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px, auto;
  padding-right: 40px;
  cursor: pointer;
}
.field select option {
  background: #0a0a0a;
  color: #fff;
}

.field input[type="date"] { color-scheme: dark; }

.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.submit-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* Divider */
.socials-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 48px 0 24px;
}
.socials-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07));
}
.socials-divider .line:last-child { background: linear-gradient(to left, transparent, rgba(255,255,255,0.07)); }
.socials-divider span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* Socials */
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.socials a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.socials a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #030303;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(212,175,55,0.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════════════
   POSTER BACKDROPS
   Decorative poster visuals across sections.
   Prominent · Premium · Soft-edged · Text-safe
   ═══════════════════════════════════════════════════════════ */
.poster-backdrop {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  filter: brightness(1.05) contrast(1.05) saturate(1.05);
  -webkit-mask-image: radial-gradient(ellipse at center, black 42%, transparent 92%);
          mask-image: radial-gradient(ellipse at center, black 42%, transparent 92%);
}

/* About */
.about-1 {
  background-image: url('assets/images/posters/poster1.jpg?v=2');
  top: 6%; right: -5%;
  width: clamp(280px, 32vw, 460px);
  height: clamp(400px, 46vw, 620px);
  transform: rotate(-3deg);
  opacity: 0.55;
}
.about-2 {
  background-image: url('assets/images/posters/poster2.jpg?v=2');
  top: 50%; left: 42%;
  width: clamp(240px, 22vw, 320px);
  height: clamp(340px, 30vw, 440px);
  transform: translateY(-50%) rotate(4deg);
  opacity: 0.42;
  display: none;
}
@media (min-width: 1024px) { .about-2 { display: block; } }

/* Story */
.story-1 {
  background-image: url('assets/images/posters/poster3.jpg?v=2');
  top: 14%; left: -4%;
  width: clamp(260px, 28vw, 380px);
  height: clamp(360px, 40vw, 540px);
  transform: rotate(-5deg);
  opacity: 0.50;
  display: none;
}
.story-2 {
  background-image: url('assets/images/posters/poster4.jpg?v=2');
  bottom: 10%; right: -4%;
  width: clamp(260px, 28vw, 380px);
  height: clamp(360px, 40vw, 540px);
  transform: rotate(4deg);
  opacity: 0.50;
  display: none;
}
.story-3 {
  background-image: url('assets/images/posters/poster5.jpg?v=2');
  top: 8%; left: 50%;
  width: clamp(280px, 26vw, 360px);
  height: clamp(380px, 34vw, 500px);
  transform: translateX(-50%) rotate(-2deg);
  opacity: 0.38;
  display: none;
}
@media (min-width: 768px)  { .story-1, .story-2 { display: block; } }
@media (min-width: 1024px) { .story-3            { display: block; } }

/* Gallery */
.gallery-1 {
  background-image: url('assets/images/posters/poster6.jpg?v=2');
  top: 4%; left: -5%;
  width: clamp(260px, 26vw, 380px);
  height: clamp(360px, 38vw, 520px);
  transform: rotate(-5deg);
  opacity: 0.42;
  display: none;
}
@media (min-width: 1024px) { .gallery-1 { display: block; } }

/* Venues */
.venues-1 {
  background-image: url('assets/images/posters/poster7.jpg?v=2');
  bottom: 8%; right: -5%;
  width: clamp(280px, 30vw, 420px);
  height: clamp(400px, 42vw, 580px);
  transform: rotate(3deg);
  opacity: 0.50;
  display: none;
}
.venues-2 {
  background-image: url('assets/images/posters/poster8.jpg?v=2');
  top: 18%; left: -5%;
  width: clamp(240px, 24vw, 340px);
  height: clamp(340px, 32vw, 480px);
  transform: rotate(-4deg);
  opacity: 0.42;
  display: none;
}
@media (min-width: 640px)  { .venues-1 { display: block; } }
@media (min-width: 1024px) { .venues-2 { display: block; } }

/* Artists */
.artists-1 {
  background-image: url('assets/images/posters/poster9.jpg?v=2');
  top: 8%; left: -5%;
  width: clamp(280px, 30vw, 420px);
  height: clamp(400px, 42vw, 580px);
  transform: rotate(-4deg);
  opacity: 0.50;
  display: none;
}
.artists-2 {
  background-image: url('assets/images/posters/poster1.jpg?v=2');
  bottom: 12%; right: -5%;
  width: clamp(240px, 24vw, 340px);
  height: clamp(340px, 32vw, 480px);
  transform: rotate(3deg);
  opacity: 0.42;
  display: none;
}
@media (min-width: 640px)  { .artists-1 { display: block; } }
@media (min-width: 1024px) { .artists-2 { display: block; } }

/* Festivals */
.festivals-1 {
  background-image: url('assets/images/posters/poster7.jpg?v=2');
  top: 10%; right: -5%;
  width: clamp(260px, 26vw, 380px);
  height: clamp(360px, 36vw, 520px);
  transform: rotate(3deg);
  opacity: 0.42;
  display: none;
}
@media (min-width: 1024px) { .festivals-1 { display: block; } }

/* Contact */
.contact-center {
  background-image: url('assets/images/posters/poster8.jpg?v=2');
  top: 50%; left: 50%;
  width: clamp(320px, 40vw, 560px);
  height: clamp(440px, 52vw, 720px);
  transform: translate(-50%, -50%) rotate(-2deg);
  opacity: 0.45;
  display: none;
}
.contact-left {
  background-image: url('assets/images/posters/poster9.jpg?v=2');
  top: 10%; left: 3%;
  width: clamp(180px, 18vw, 260px);
  height: clamp(260px, 24vw, 360px);
  transform: rotate(-5deg);
  opacity: 0.38;
  display: none;
}
.contact-right {
  background-image: url('assets/images/posters/poster2.jpg?v=2');
  bottom: 10%; right: 3%;
  width: clamp(180px, 18vw, 260px);
  height: clamp(260px, 24vw, 360px);
  transform: rotate(5deg);
  opacity: 0.38;
  display: none;
}
@media (min-width: 640px)  { .contact-center { display: block; } }
@media (min-width: 1024px) { .contact-left, .contact-right { display: block; } }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--spring), transform 0.9s var(--spring);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .hero-bg { animation: none; }
  .reveal  { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE TOGGLE (EN / AR)
   ═══════════════════════════════════════════════════════════ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  margin-left: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.35);
  color: rgba(212,175,55,0.95);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.lang-toggle:hover {
  background: rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.6);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(212,175,55,0.25);
}
html[dir="rtl"] .lang-toggle {
  margin-left: 0;
  margin-right: 16px;
  letter-spacing: 0.05em;
}

/* When Arabic mobile menu is open, keep toggle clickable above the dropdown */
.nav-links.open + .lang-toggle { z-index: 51; }

/* ═══════════════════════════════════════════════════════════
   ARABIC / RTL SUPPORT
   Activated when <html dir="rtl" lang="ar">.
   - Use Tajawal for body and Arabic-bearing display headings.
   - Keep the Latin brand mark (.hero-title, .logo-text) in Bebas Neue.
   - Flip text alignment where it was hard-set to "left".
   ═══════════════════════════════════════════════════════════ */
html[dir="rtl"] body { font-family: 'Tajawal', 'Montserrat', sans-serif; }

/* Display headings that contain translated Arabic text get Tajawal.
   .hero-title is intentionally excluded — it's the Latin brand mark. */
html[dir="rtl"] .big-title,
html[dir="rtl"] .about-title,
html[dir="rtl"] .ty-title,
html[dir="rtl"] .confirm-title,
html[dir="rtl"] .stat-value,
html[dir="rtl"] .story-year,
html[dir="rtl"] .show-name,
html[dir="rtl"] .fest-name,
html[dir="rtl"] .subsection-title {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

/* Hero text alignment flips for RTL. Brand mark stays in Bebas Neue. */
html[dir="rtl"] .hero-content { text-align: right; }

/* Eyebrows + small caps lose their tight letter-spacing in Arabic
   (Arabic shaping doesn't benefit from it and looks broken otherwise). */
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .nav-link,
html[dir="rtl"] .stat-label,
html[dir="rtl"] .show-role,
html[dir="rtl"] .field label,
html[dir="rtl"] .ty-eyebrow,
html[dir="rtl"] .footer,
html[dir="rtl"] .socials a,
html[dir="rtl"] .socials-divider span,
html[dir="rtl"] .era-pill,
html[dir="rtl"] .location-pill,
html[dir="rtl"] .founder-badge {
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Form: align labels/inputs from the right, keep date input LTR
   (date pickers expect numeric LTR rendering). */
html[dir="rtl"] .field input,
html[dir="rtl"] .field select,
html[dir="rtl"] .field textarea { text-align: right; }
html[dir="rtl"] .field input[type="date"] { direction: ltr; text-align: right; }
html[dir="rtl"] .field select {
  background-position: left 16px center;
  padding-right: 16px;
  padding-left: 40px;
}

/* The submit-row arrow icon flips so it points "forward" in RTL. */
html[dir="rtl"] .cta-btn.large svg { transform: scaleX(-1); }

/* Story columns: the inline border between cards flips side. */
@media (min-width: 1024px) {
  html[dir="rtl"] .story-grid > .story-card:first-child {
    border-right: none;
    border-left: 1px solid var(--line);
    padding-right: 0;
    padding-left: 64px;
  }
  html[dir="rtl"] .story-grid > .story-card:last-child {
    padding-left: 0;
    padding-right: 64px;
  }
}

/* Show-row beam stays on the leading edge in RTL. */
html[dir="rtl"] .show-beam { left: auto; right: 0; }

/* Accent line gradient flips so the colored end stays "leading". */
html[dir="rtl"] .accent-line.gold   { background: linear-gradient(270deg, rgba(212,175,55,0.5), transparent); }
html[dir="rtl"] .accent-line.purple { background: linear-gradient(270deg, rgba(155,48,255,0.5), transparent); }

/* The active nav-link underline reads from the leading edge in RTL. */
html[dir="rtl"] .nav-link.active::after { left: auto; right: 0; }
