:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f5f6fb;
  --text: #111111;
  --muted: #5c6270;
  --line: rgba(17, 17, 17, 0.08);
  --primary: #4f46e5;
  --primary-deep: #251b7a;
  --accent: #d4a017;
  --shadow: 0 20px 60px rgba(30, 33, 76, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcff 40%, #ffffff 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-shell {
  min-height: 100vh;
}

.topbar {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 14px 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(17,17,17,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.brand-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 800;
}
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}
.brand-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: #2c3140;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: #111;
  margin: 5px auto;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 56px 0 36px;
}
.hero-copy h1 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero-copy h1 span {
  color: var(--primary);
  display: block;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}
.lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #2f3442;
  max-width: 58ch;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.hero-badges span,
.song-card,
.timeline-item,
.feature-card,
.contact-card,
.cta-band,
.split-copy,
.show-head {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(79,70,229,.24);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.card-glow {
  position: relative;
}
.card-glow::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: radial-gradient(circle at 50% 10%, rgba(79,70,229,.25), rgba(212,160,23,.08), transparent 70%);
  filter: blur(24px);
  z-index: -1;
}
.hero-visual img,
.feature-image img,
.split-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
  padding: 26px 0;
}
.feature-card,
.split-copy,
.show-head,
.contact-card,
.cta-band {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
}
.feature-card h2,
.split-copy h2,
.section-heading h2,
.show-head h2,
.cta-band h2,
.contact-card h2 {
  margin: 0 0 14px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.feature-card p,
.split-copy p,
.show-head p,
.contact-card p,
.cta-band p,
.timeline-item p {
  color: #2f3442;
  line-height: 1.75;
  font-size: 1rem;
}
.feature-image.tall { min-height: 420px; }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 26px 0;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}
.split.reverse .split-image { order: 2; }
.split.reverse .split-copy { order: 1; }
.split-image { min-height: 420px; }

.show-panel {
  padding: 26px 0;
}
.show-head { margin-bottom: 20px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}
.gallery-item,
.timeline-item,
.song-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}
.gallery-item { min-height: 300px; }
.gallery-item.large { min-height: 620px; }

.timeline-section,
.songs-section {
  padding: 30px 0;
}
.section-heading {
  margin-bottom: 20px;
}
.centered {
  text-align: center;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.timeline-item {
  padding: 22px;
}
.timeline-year {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.song-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.45rem;
  line-height: 1.1;
}
.song-card:hover {
  transform: translateY(-4px);
}

.cta-band {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(212,160,23,.08), rgba(255,255,255,1));
}

.contact-section {
  padding: 26px 0 52px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}
.contact-name {
  margin: 6px 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
}
.contact-phone {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--primary);
  line-height: 1;
  margin: 8px 0 14px;
}
.contact-text { margin: 0; }

.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 28px;
  padding: 22px 0 10px;
  border-top: 1px solid rgba(17,17,17,0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero,
  .intro-grid,
  .split,
  .split.reverse,
  .contact-section,
  .gallery-grid,
  .timeline,
  .song-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.large {
    min-height: 420px;
    grid-column: span 2;
  }
  .song-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .topbar { top: 10px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .hero,
  .intro-grid,
  .split,
  .split.reverse,
  .contact-section,
  .timeline,
  .gallery-grid,
  .song-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-image,
  .split.reverse .split-copy {
    order: initial;
  }
  .gallery-item.large,
  .gallery-item,
  .split-image,
  .feature-image.tall {
    min-height: auto;
  }
  .cta-band {
    display: grid;
    justify-content: stretch;
  }
  .footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .hero { padding-top: 36px; }
  .topbar { width: min(calc(100% - 20px), var(--max)); }
  .section, .footer { width: min(calc(100% - 20px), var(--max)); }
  .feature-card,
  .split-copy,
  .show-head,
  .contact-card,
  .cta-band { padding: 22px; }
  .brand-name { font-size: 1rem; }
  .song-grid { grid-template-columns: 1fr; }
}
