:root {
  --bg: #08080b;
  --bg-soft: #12131a;
  --surface: rgba(18, 19, 26, 0.82);
  --surface-strong: rgba(12, 13, 18, 0.96);
  --text: #f7f4ef;
  --muted: #b7b2c3;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #d84f8b;
  --green: #99c43f;
  --lime: #c6ef60;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(
      circle at top left,
      rgba(216, 79, 139, 0.2),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(153, 196, 63, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #0c0d11 0%, #09090c 52%, #101117 100%);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: -7rem;
  left: -8rem;
  background: var(--pink);
}

.site-shell::after {
  right: -8rem;
  bottom: 12rem;
  background: var(--green);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-badge {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.brand-subtitle {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--green);
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--lime);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--pink);
  transform: translateY(-1px);
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease, background 180ms ease;
}

.button {
  color: #141414;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 14px 30px rgba(153, 196, 63, 0.28);
}

.button-ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-home .container {
  width: min(calc(100% - 2rem), 1280px);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 40rem;
  border-radius: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #09090c;
}

.hero-stage-image,
.hero-stage-overlay,
.hero-stage-content {
  position: absolute;
  inset: 0;
}

.hero-stage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-stage-overlay {
  background: linear-gradient(
      90deg,
      rgba(8, 8, 11, 0.9) 0%,
      rgba(8, 8, 11, 0.72) 34%,
      rgba(8, 8, 11, 0.2) 68%,
      rgba(8, 8, 11, 0.48) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 8, 11, 0.1) 0%,
      rgba(8, 8, 11, 0.16) 60%,
      rgba(8, 8, 11, 0.72) 100%
    );
}

.hero-stage-content {
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.hero-copy-home {
  max-width: 46rem;
  z-index: 1;
}

.hero-copy-home .lead {
  max-width: 56ch;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
}

.hero-copy-home h1,
.hero-copy-home .eyebrow {
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.7);
}

.hero-metrics-section {
  padding-top: 0;
}

.hero-metrics-standalone {
  margin-top: -0.8rem;
}

.hero-copy,
.hero-card,
.panel,
.show-list li,
.gallery-card,
.video-card,
.contact-card,
.list-card,
.notice-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.panel,
.gallery-card,
.video-card,
.contact-card,
.list-card,
.notice-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 9rem;
  height: 9rem;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(216, 79, 139, 0.22),
    rgba(153, 196, 63, 0.2)
  );
  opacity: 0.16;
  transform: rotate(8deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3.4rem, 10vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.5rem;
}

.pink {
  color: var(--pink);
}

.green {
  color: var(--lime);
}

.lead {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  color: #ebe5f4;
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.metric {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--lime);
  font-size: 1.4rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-card {
  padding: 1rem;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  border-radius: 22px;
}

.section {
  padding: 1.4rem 0 3.5rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading p {
  max-width: 44rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.panel {
  padding: 1.6rem;
}

.grid-3,
.grid-2,
.media-grid,
.contact-grid,
.gallery-grid,
.video-grid,
.show-grid {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.show-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.kicker {
  color: var(--pink);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.panel p,
.list-card p,
.contact-card p,
.notice-card p {
  color: var(--muted);
  line-height: 1.7;
}

.show-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.show-list li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.show-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1rem;
}

.show-list span {
  color: var(--muted);
}

.show-list a,
.link-inline {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-color: rgba(198, 239, 96, 0.55);
  text-underline-offset: 0.18rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  padding: 1rem;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card,
.list-card,
.notice-card {
  padding: 1.5rem;
}

.contact-lines,
.bullet-list,
.song-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-lines li,
.bullet-list li,
.song-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-lines li:last-child,
.bullet-list li:last-child,
.song-list li:last-child {
  border-bottom: 0;
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-pill img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.playlist-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.playlist-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(
      135deg,
      rgba(216, 79, 139, 0.17),
      rgba(153, 196, 63, 0.16)
    ),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.notice-card {
  text-align: center;
}

.site-footer {
  padding: 1rem 0 3rem;
  color: var(--muted);
}

.site-footer .container {
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.song-list {
  columns: 2;
  column-gap: 1.5rem;
}

.song-list li {
  break-inside: avoid;
}

.song-list strong {
  display: block;
  color: var(--text);
}

.song-list span {
  display: block;
  margin-top: 0.16rem;
  color: var(--muted);
}

.epk-hero {
  padding-bottom: 0.8rem;
}

.epk-header h1 {
  max-width: 150ch;
}

.epk-cover,
.epk-bio,
.epk-stage-plot,
.logo-card,
.epk-video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.epk-cover {
  overflow: hidden;
}

.epk-cover img {
  width: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center center;
}

.epk-bio {
  padding: 1.7rem;
}

.epk-bio p + p {
  margin-top: 1rem;
}

.epk-video-card {
  padding: 1rem;
}

.epk-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

.epk-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.epk-stage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.epk-stage-plot {
  overflow: hidden;
  margin-top: 1rem;
}

.epk-stage-plot img {
  width: 100%;
  height: auto;
  display: block;
}

.setlist-scroll {
  margin-top: 1rem;
  max-height: 34rem;
  overflow: auto;
  padding-right: 0.4rem;
}

.song-list-scroll {
  columns: 1;
}

.logo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.2rem;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  min-height: 16rem;
}

.logo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.small-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-card,
.panel,
.gallery-card,
.video-card,
.contact-card,
.list-card,
.notice-card,
.cta-band {
  animation: fadeUp 700ms ease both;
}

@media (max-width: 960px) {
  .hero-grid,
  .show-grid,
  .grid-3,
  .grid-2,
  .contact-grid,
  .video-grid,
  .epk-stage-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    min-height: 18rem;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .hero-stage-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 11, 0.2) 0%,
      rgba(8, 8, 11, 0.38) 42%,
      rgba(8, 8, 11, 0.92) 100%
    );
  }

  .hero-stage-content {
    align-items: end;
    padding: 1.25rem;
  }

  .hero-copy-home {
    max-width: 100%;
  }

  .song-list {
    columns: 1;
  }

  .epk-cover img {
    min-height: 20rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-row {
    align-items: center;
    flex-direction: row;
  }
  
  .hide-on-mobile {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-stage {
    min-height: 31rem;
    border-radius: 28px;
  }

  .hero-copy,
  .panel,
  .contact-card,
  .list-card,
  .notice-card,
  .cta-band {
    padding: 1.3rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .hero-copy-home .lead {
    max-width: 100%;
  }

  .logo-card {
    min-height: 12rem;
  }
}
