:root{
  --bg:#0a0a0a;
  --bg-soft:#121212;
  --panel:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.08);
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --red:#d31717;
  --red-dark:#a30f0f;
  --max:1240px;
  --radius:24px;
  --shadow:0 22px 60px rgba(0,0,0,.38);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(211,23,23,.10), transparent 16%),
    radial-gradient(circle at left center, rgba(211,23,23,.06), transparent 14%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input{
  font:inherit;
}

.container{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
}

.section{
  padding:88px 0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  margin-bottom:18px;
}

.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 14px rgba(211,23,23,.45);
}

.section-title{
  font-size:clamp(30px, 5vw, 56px);
  line-height:.96;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:14px;
}

.section-text{
  max-width:780px;
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(180deg, #e04f4f, var(--red));
  color:#fff;
  box-shadow:0 10px 22px rgba(211,23,23,.22);
}

.btn-secondary{
  background:rgba(255,255,255,.03);
  color:#fff;
}

.hero-actions,
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,10,10,.88);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.site-header-inner{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.site-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
}

.site-logo img{
  height:58px;
  width:auto;
  display:block;
}

.site-nav{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:26px;
}

.site-nav a{
  color:#d0d0d0;
  font-size:15px;
  font-weight:600;
  white-space:nowrap;
}

.site-nav a:hover,
.site-nav a.active{
  color:#fff;
}

.site-cta{
  flex:0 0 auto;
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  position:relative;
}

.nav-toggle span::before,
.nav-toggle span::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
}

.nav-toggle span::before{ top:-6px; }
.nav-toggle span::after{ top:6px; }

/* HERO */
.hero{
  min-height:88vh;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--line);
}

.hero-inner{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:34px;
  align-items:center;
  padding:86px 0;
}

.hero-copy h1{
  font-size:clamp(54px, 9vw, 112px);
  line-height:.9;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:12px;
}

.hero-copy .sub{
  font-size:clamp(18px, 2vw, 24px);
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#fff;
  margin-bottom:18px;
}

.hero-copy p{
  max-width:700px;
  color:var(--muted);
  font-size:1.06rem;
  margin-bottom:28px;
}

.card,
.panel,
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-card{
  padding:24px;
}

.hero-card h3{
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.cover-box{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:18px;
  background:#111;
}

.cover-box img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

.meta-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:var(--muted);
}

.meta-row strong{
  color:#fff;
}

.meta-row:last-child{
  border-bottom:none;
}

/* GRID */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:30px;
}

.card{
  overflow:hidden;
}

.card-media img{
  width:100%;
  aspect-ratio:16/11;
  object-fit:cover;
}

.card-body{
  padding:22px;
}

.card-body h3{
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.card-body p{
  color:var(--muted);
}

/* SPLIT */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.panel{
  overflow:hidden;
}

.panel-body{
  padding:28px;
}

.bio-photo img{
  width:100%;
  min-height:520px;
  height:100%;
  object-fit:cover;
}

.bio-text p{
  color:var(--muted);
  margin-bottom:18px;
}

.bio-text p:last-child{
  margin-bottom:0;
}

/* TIMELINE */
.timeline-visual{
  display:grid;
  gap:28px;
  margin-top:30px;
}

.timeline-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.timeline-card.reverse .timeline-image{
  order:2;
}

.timeline-card.reverse .timeline-content{
  order:1;
}

.timeline-image img{
  width:100%;
  min-height:320px;
  height:100%;
  object-fit:cover;
}

.timeline-content{
  padding:30px;
}

.timeline-badge{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  background:rgba(255,255,255,.03);
}

.timeline-content h3{
  font-size:clamp(24px, 3vw, 38px);
  line-height:1;
  margin-bottom:12px;
  text-transform:uppercase;
}

.timeline-content p{
  color:var(--muted);
}

/* SONG */
.song-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-top:30px;
}

.song-cover img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

.audio-player{
  width:100%;
  margin-top:18px;
}

.video-wrap{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
}

.video-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.lyrics{
  margin-top:30px;
}

.lyrics pre{
  white-space:pre-wrap;
  font-family:inherit;
  color:#dfdfdf;
  line-height:1.8;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

/* LIVE */
.live-banner{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.live-banner img{
  width:100%;
  aspect-ratio:21/9;
  object-fit:cover;
}

.live-copy{
  padding:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.live-copy p{
  color:var(--muted);
  margin:12px 0 18px;
}

/* NEWSLETTER */
.newsletter{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  margin-top:26px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}

.newsletter input{
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  padding:14px 16px;
  font-size:1rem;
}

.newsletter input::placeholder{
  color:#8f8f8f;
}

/* FOOTER */
.site-footer{
  margin-top:70px;
  border-top:1px solid var(--line);
  padding:40px 0;
}

.site-footer-grid{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:24px;
}

.site-footer h4{
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.site-footer p,
.site-footer a{
  color:var(--muted);
}

.site-footer a{
  display:block;
  padding:6px 0;
}

.copyright{
  width:min(var(--max), calc(100% - 36px));
  margin:22px auto 0;
  color:#7f7f7f;
  font-size:.92rem;
}

/* ANIMATIONS */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media (max-width: 980px){
  .site-header-inner{
    min-height:auto;
    padding:14px 0;
    display:grid;
    grid-template-columns:1fr auto;
    gap:14px;
    align-items:center;
  }

  .site-logo img{
    height:54px;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .site-nav{
    display:none;
    grid-column:1 / -1;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:10px 0 4px;
  }

  .site-nav.is-open{
    display:flex;
  }

  .site-cta{
    grid-column:1 / -1;
    width:100%;
    text-align:center;
  }

  .hero,
  .hero-inner,
  .split,
  .song-layout,
  .timeline-card,
  .grid-3,
  .site-footer-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
  }

  .hero-inner{
    padding:74px 0;
  }

  .timeline-card.reverse .timeline-image,
  .timeline-card.reverse .timeline-content{
    order:initial;
  }

  .bio-photo img{
    min-height:340px;
  }

  .newsletter{
    grid-template-columns:1fr;
    border-radius:20px;
  }
}