:root {
  --bg: #07070b;
  --bg-soft: #0f1020;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: #b6b8ca;
  --gold: #d7a738;
  --gold-light: #fff2b8;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --border: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 92, 246, 0.28), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(215, 167, 56, 0.2), transparent 26%),
    var(--bg);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 11, 0.76);
  border-bottom: 1px solid var(--border);
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img { width: 220px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 700; }
.nav-menu a { transition: color 0.2s ease, transform 0.2s ease; }
.nav-menu a:hover { color: var(--gold-light); transform: translateY(-1px); }
.nav-cta {
  color: #111 !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 12px 18px;
  border-radius: 999px;
}

.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 7px 0; transition: 0.2s ease; }

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 78px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 0.95; }
h1 { font-size: clamp(3.4rem, 8vw, 7.6rem); margin-bottom: 24px; letter-spacing: -0.06em; }
h2 { font-size: clamp(2.3rem, 5vw, 4.7rem); margin-bottom: 18px; letter-spacing: -0.045em; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
p { color: var(--muted); line-height: 1.7; }
.hero-copy { font-size: 1.18rem; max-width: 640px; }

.hero-actions, .contact-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #111; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 15px 35px rgba(215, 167, 56, 0.25); }
.btn-secondary { background: rgba(255,255,255,0.08); color: #fff; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; }
.stats div { padding: 18px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,0.05); }
.stats strong { display: block; font-size: 1.25rem; color: #fff; }
.stats span { color: var(--muted); font-size: 0.87rem; }

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(7,7,11,0.95), rgba(7,7,11,0.1)),
    radial-gradient(circle at 50% 35%, rgba(236,72,153,0.36), transparent 26%),
    linear-gradient(135deg, rgba(139,92,246,0.45), rgba(215,167,56,0.18));
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stage-lights span {
  position: absolute;
  top: -40px;
  width: 140px;
  height: 620px;
  background: linear-gradient(to bottom, rgba(255,242,184,0.46), transparent 78%);
  transform-origin: top center;
  filter: blur(1px);
}
.stage-lights span:nth-child(1) { left: 14%; transform: rotate(18deg); }
.stage-lights span:nth-child(2) { left: 44%; transform: rotate(0deg); background: linear-gradient(to bottom, rgba(139,92,246,0.5), transparent 78%); }
.stage-lights span:nth-child(3) { right: 14%; transform: rotate(-18deg); background: linear-gradient(to bottom, rgba(236,72,153,0.45), transparent 78%); }

.ticket-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(7,7,11,0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.ticket-card p { color: var(--gold-light); font-weight: 900; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; }
.ticket-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.ticket-card span { color: var(--muted); }

.section, .split-section, .contact-section { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 96px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.event-grid, .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.event-card, .service-card, .contact-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}
.event-card a, .contact-links a { color: var(--gold-light); font-weight: 900; }
.event-date { width: 88px; height: 88px; border-radius: 24px; display: grid; place-items: center; margin-bottom: 24px; background: linear-gradient(135deg, rgba(255,242,184,0.2), rgba(215,167,56,0.08)); border: 1px solid rgba(215,167,56,0.35); }
.event-date strong { font-size: 1.35rem; }
.event-date span { color: var(--muted); font-size: 0.78rem; }
.service-card span { color: var(--gold-light); font-weight: 900; }

.split-section { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 56px; }
.split-image { position: relative; min-height: 460px; border-radius: 36px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, rgba(215,167,56,0.3), transparent 34%), linear-gradient(135deg, rgba(139,92,246,0.26), rgba(236,72,153,0.18)); border: 1px solid var(--border); }
.split-image p { font-size: clamp(2.8rem, 6vw, 5.3rem); font-weight: 900; color: #fff; letter-spacing: -0.08em; }
.pulse-ring { position: absolute; width: 220px; height: 220px; border: 2px solid rgba(255,242,184,0.45); border-radius: 999px; animation: pulse 2.4s infinite; }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 14px; }
.check-list li { color: var(--muted); position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); font-weight: 900; }

.cta-band { width: min(1160px, calc(100% - 32px)); margin: 46px auto; padding: 58px; border-radius: 36px; text-align: center; background: linear-gradient(135deg, rgba(215,167,56,0.22), rgba(139,92,246,0.2)); border: 1px solid var(--border); }
.cta-band .btn { margin-top: 10px; }
.contact-card { max-width: 760px; margin: 0 auto; text-align: center; background: var(--card-strong); }
.footer { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 36px 0; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--border); color: var(--muted); }
.footer a { color: var(--gold-light); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(24px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0% { transform: scale(0.8); opacity: 0.9; } 100% { transform: scale(1.7); opacity: 0; } }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; top: 82px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--border); border-radius: 24px; background: rgba(7,7,11,0.96); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-card { min-height: 440px; }
  .event-grid, .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .brand img { width: 178px; }
  .navbar { height: 74px; }
  .nav-menu { top: 74px; }
  h1 { font-size: 3.35rem; }
  .stats, .event-grid, .service-grid { grid-template-columns: 1fr; }
  .section, .split-section, .contact-section { padding: 66px 0; }
  .cta-band { padding: 38px 22px; }
  .footer { flex-direction: column; }
}



.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand img {
  width: 56px;
  height: 56px;
}


