:root {
  --bg-dark: #0f1622;
  --bg-dark-2: #171328;
  --bg-light: #ffffff;
  --bg-light-2: #f3f5f9;
  --ink: #16202e;
  --gold: #FFD700;
  --gold-2: #ffe24f;
  --font-heading: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --font-eyebrow: 'Space Mono', monospace;
  --font-script: 'Yellowtail', cursive;
  --font-italic: 'Boska', serif;
  --max: 1160px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg-light); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow { font-family: var(--font-eyebrow); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #8a93a3; margin-bottom: 14px; }
.section.light .eyebrow, .section.light-2 .eyebrow { color: #6d7787; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.04; text-transform: uppercase; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.script { font-family: var(--font-script); text-transform: none; font-weight: 400; font-size: 0.95em; color: var(--gold); -webkit-text-stroke: 0; }
.section.light .script { color: #b8860b; }
.italic { font-family: var(--font-italic); font-style: italic; text-transform: none; font-weight: 400; }
.gold-em { color: var(--gold); }
.lede { max-width: 560px; color: #5c6675; margin-bottom: 40px; }
.section.dark .lede, .section.dark-2 .lede { color: #aab3c2; }

.btn { display: inline-block; font-family: var(--font-eyebrow); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 26px; border-radius: 4px; border: 1px solid transparent; cursor: pointer; transition: all .2s ease; }
.btn-gold { background: var(--gold); color: #14100a; border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #14100a; }
.btn-sm { padding: 9px 18px; }

/* nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; background: rgba(15,22,34,0.85); backdrop-filter: blur(12px); }
.nav-logo { font-family: var(--font-italic); font-size: 1.3rem; color: #fff; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-family: var(--font-eyebrow); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.75); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }

/* hero */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; background: var(--bg-dark); overflow: hidden; padding: 120px 32px 0; }
.hero-media { position: absolute; inset: 0; }
.hero-media.placeholder-media { background: radial-gradient(120% 90% at 75% 30%, #24354d 0%, #0f1622 60%, #0a0f18 100%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,15,24,0.82) 0%, rgba(10,15,24,0.25) 60%, rgba(10,15,24,0.45) 100%); }
.hero-content { position: relative; max-width: var(--max); margin: 0 auto; width: 100%; color: #fff; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(3.4rem, 10vw, 7.5rem); font-weight: 700; }
.hero .line-1 { color: #fff; }
.hero .line-2 { color: var(--gold); }
.hero-tagline { font-family: var(--font-heading); font-weight: 500; font-size: clamp(0.95rem, 1.6vw, 1.25rem); letter-spacing: 0.06em; line-height: 1.5; margin: 26px 0 34px; color: rgba(255,255,255,.92); }
.hero-tagline em { font-style: normal; color: var(--gold); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: relative; max-width: var(--max); margin: 64px auto 0; width: 100%; display: flex; gap: 48px; padding: 26px 0 34px; border-top: 1px solid rgba(255,255,255,.14); flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-heading); font-size: 1.9rem; color: var(--gold); }
.stat span { font-family: var(--font-eyebrow); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* marquee */
.marquee { background: var(--gold); overflow: hidden; padding: 12px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-eyebrow); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: #14100a; font-weight: 700; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* sections */
.section { padding: 110px 0; }
.section.light { background: var(--bg-light); color: var(--ink); }
.section.light-2 { background: var(--bg-light-2); color: var(--ink); }
.section.dark { background: var(--bg-dark); color: #fff; }
.section.dark-2 { background: var(--bg-dark-2); color: #fff; }

/* placeholders */
.placeholder-media { position: relative; background: repeating-linear-gradient(45deg, #e6eaf1, #e6eaf1 14px, #eef1f6 14px, #eef1f6 28px); border: 1.5px dashed #b9c2d0; border-radius: 10px; display: flex; align-items: center; justify-content: center; min-height: 200px; }
.placeholder-media span { font-family: var(--font-eyebrow); font-size: 0.62rem; letter-spacing: 0.14em; color: #7b8598; text-align: center; padding: 8px; text-transform: uppercase; }
.dark-ph, .section.dark .placeholder-media, .section.dark-2 .placeholder-media, .hero .placeholder-media { background: repeating-linear-gradient(45deg, #16202e, #16202e 14px, #1b2737 14px, #1b2737 28px); border-color: #33405a; }
.dark-ph span, .section.dark .placeholder-media span, .section.dark-2 .placeholder-media span { color: #6d7ea0; }
.hero-media.placeholder-media { border: none; border-radius: 0; }
.hero-media.placeholder-media span { position: absolute; bottom: 18px; right: 22px; }

/* about */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; margin-bottom: 90px; }
.about-photo { aspect-ratio: 4/5; }
.about-copy h2 { color: var(--ink); }
.about-copy p { color: #4e586a; margin-bottom: 16px; }
.about-copy blockquote { border-left: 3px solid var(--gold); padding: 14px 22px; background: #faf7ec; font-family: var(--font-italic); font-style: italic; font-size: 1.12rem; margin-top: 22px; }
.about-copy cite { display: block; font-family: var(--font-eyebrow); font-style: normal; font-size: 0.65rem; letter-spacing: 0.16em; margin-top: 8px; color: #8a93a3; }
.roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.role-card { position: relative; }
.role-card .placeholder-media { aspect-ratio: 3/4; margin-bottom: 14px; }
.role-num { position: absolute; top: -12px; left: -6px; z-index: 2; background: var(--gold); font-family: var(--font-eyebrow); font-weight: 700; font-size: 0.72rem; padding: 5px 9px; border-radius: 4px; }
.role-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.role-card p { font-size: 0.85rem; color: #5c6675; }

/* reel */
.reel { position: relative; padding: 0; min-height: 72vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.reel-media { position: absolute; inset: 0; border-radius: 0; border: none; }
.reel-content { position: relative; text-align: center; padding: 140px 24px; }
.reel-content p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.play-btn { width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--gold); background: rgba(255,215,0,.12); color: var(--gold); font-size: 1.4rem; cursor: pointer; transition: all .2s; }
.play-btn:hover { background: var(--gold); color: #14100a; transform: scale(1.06); }

/* music */
.featured-release { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; background: var(--bg-light-2); border-radius: 14px; padding: 34px; }
.featured-release .placeholder-media { aspect-ratio: 1; }
.featured-release h3 { font-size: 1.6rem; margin: 6px 0 10px; }
.featured-release p { color: #5c6675; margin-bottom: 18px; }
.disco-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 18px; }
.disco-card .placeholder-media { aspect-ratio: 1; margin-bottom: 10px; }
.disco-card h4 { font-family: var(--font-heading); font-size: 0.85rem; }
.disco-card span { font-family: var(--font-eyebrow); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a93a3; }

/* tour */
.tour-rows { margin-top: 30px; }
.tour-row { display: grid; grid-template-columns: 110px 1fr 1fr auto; gap: 22px; align-items: center; padding: 20px 4px; border-bottom: 1px solid rgba(255,255,255,.12); }
.tour-date { font-family: var(--font-heading); font-size: 1.25rem; color: var(--gold); }
.tour-city { font-weight: 700; }
.tour-venue { color: #aab3c2; }

/* legends */
.stages-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stage-frame { aspect-ratio: 3/4; margin-bottom: 12px; border-radius: 10px; overflow: hidden; }
.stage-name { font-family: var(--font-heading); text-transform: uppercase; font-size: 0.95rem; }
.stage-role { font-family: var(--font-eyebrow); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8a93a3; margin-top: 3px; }

/* beyond */
.beyond-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.beyond-grid p { color: #aab3c2; }
.subscribe-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 34px; }
.subscribe-card p { margin-bottom: 18px; }
.subscribe-form { display: flex; gap: 10px; }
.subscribe-form input { flex: 1; padding: 13px 16px; border-radius: 4px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-family: var(--font-body); }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 16px; margin-top: 30px; }
.gallery-grid .g1 { grid-row: span 2; }
.gallery-grid .g4 { grid-row: span 2; }
.gallery-grid .placeholder-media { min-height: 0; height: 100%; }

/* booking */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.booking-grid p { color: #5c6675; }
.booking-form { display: flex; flex-direction: column; gap: 14px; background: var(--bg-light-2); border-radius: 14px; padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form input, .booking-form select, .booking-form textarea { padding: 13px 16px; border-radius: 6px; border: 1px solid #d4dae4; font-family: var(--font-body); font-size: 0.92rem; background: #fff; width: 100%; }
.booking-form button { align-self: flex-start; }

/* footer */
.footer { position: relative; background: var(--bg-dark); color: #fff; padding: 110px 0 50px; overflow: hidden; }
.footer-watermark { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); font-family: var(--font-heading); font-weight: 700; font-size: clamp(4rem, 13vw, 11rem); white-space: nowrap; color: rgba(255,255,255,.04); letter-spacing: 0.02em; pointer-events: none; }
.footer-inner { position: relative; text-align: center; }
.footer-social { display: flex; gap: 14px; justify-content: center; margin: 26px 0; }
.footer-social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-eyebrow); font-size: 0.65rem; transition: all .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links { display: flex; gap: 26px; justify-content: center; margin-bottom: 26px; }
.footer-links a { font-family: var(--font-eyebrow); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.45); }

/* motion */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .about-grid, .beyond-grid, .booking-grid, .featured-release { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .disco-grid { grid-template-columns: repeat(3, 1fr); }
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-row { grid-template-columns: 80px 1fr auto; }
  .tour-venue { display: none; }
  .hero-stats { gap: 26px; }
}
