:root {
  --void:    #08070a;
  --void-2:  #0d0c11;
  --ash:     #15141b;
  --bone:    #f5f2ec;
  --muted:   #9a99a3;
  --line:    rgba(245, 242, 236, .10);

  --flare-1: #43e59a;
  --flare-2: #2ec4c8;
  --ember:   #9b5cff;
  --flare-grad: linear-gradient(90deg, var(--flare-1), var(--flare-2) 45%, var(--ember));

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: "Barlow", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: var(--flare-2); color: #000; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--flare-1);
}

.section__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-top: .35rem;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .85em 1.7em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}
.btn--solid {
  background: var(--flare-grad);
  color: #05130d;
  box-shadow: 0 6px 30px -8px rgba(155, 92, 255, .45);
}
.btn--solid:hover { transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--flare-2); color: var(--flare-1); transform: translateY(-2px); }
.btn--lg { font-size: 1rem; padding: 1em 2.2em; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 7, 10, .82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 34px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__menu a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav__menu a:hover { color: var(--bone); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--flare-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__store {
  color: var(--bone) !important;
  border: 1px solid var(--line);
  padding: .55em 1.2em;
  border-radius: 2px;
}
.nav__store::after { display: none; }
.nav__store:hover { border-color: var(--flare-2); color: var(--flare-1) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--bone);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__slide.is-active { opacity: 1; animation: kenburns 9s ease-out both; }
@keyframes kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 30%, rgba(8,7,10,.55) 75%, var(--void) 100%),
    linear-gradient(180deg, rgba(8,7,10,.55) 0%, rgba(8,7,10,.15) 35%, rgba(8,7,10,.85) 100%);
}

.hero__content { position: relative; z-index: 3; padding-inline: var(--pad); }
.hero__logo {
  width: min(78vw, 500px);
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 0 42px rgba(120, 224, 190, .32));
}
.hero__quote {
  max-width: 60ch;
  margin: 0 auto 2.2rem;
  transition: opacity .5s var(--ease);
}
.hero__quote.is-fading { opacity: 0; }
.hero__quote-text {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--bone);
  margin: 0 0 .9rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
}
.hero__quote-cite {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--flare-1);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  background: rgba(8,7,10,.35);
  border: 1px solid var(--line);
  color: var(--bone);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}
.hero__arrow:hover { background: rgba(67,229,154,.16); border-color: var(--flare-2); }
.hero__arrow--prev { left: clamp(.5rem, 2vw, 1.75rem); }
.hero__arrow--next { right: clamp(.5rem, 2vw, 1.75rem); }

.hero__dots {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; gap: .55rem;
}
.hero__dots button {
  width: 34px; height: 3px;
  border: 0; padding: 0;
  background: rgba(245,242,236,.28);
  cursor: pointer;
  transition: background .3s;
}
.hero__dots button.is-active { background: var(--flare-grad); }

.hero__scroll {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(var(--flare-2), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{transform:scaleY(.4);opacity:.4} 50%{transform:scaleY(1);opacity:1} }
@media (min-width: 760px) { .hero__scroll { display: flex; } }

.flare {
  position: relative;
  height: 1px;
  width: 100%;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.flare::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 3px;
  background: var(--flare-grad);
  border-radius: 50%;
  box-shadow: 0 0 24px 3px rgba(67, 229, 154, .5), 0 0 60px 10px rgba(155, 92, 255, .35);
}
.flare::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 16px 4px rgba(220, 255, 245, .9);
}

.section { padding-block: clamp(4rem, 10vw, 8rem); }
.section__head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.music  { background: var(--void); }
.videos { background: var(--void-2); }
.live   { background: var(--void); }
.gallery{ background: var(--void-2); }
.contact{ background: var(--void); }

.videos__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 640px) {
  .videos__grid { grid-template-columns: 1fr; }
}
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.9);
  background: #000;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.release--featured {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.release__art {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.9);
}
.release__art::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(67,229,154,.08);
  pointer-events: none;
}
.release__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin: .5rem 0 1rem;
}
.release__desc { color: var(--muted); max-width: 46ch; margin-bottom: 1.75rem; }
.tracklist {
  list-style: none;
  counter-reset: track;
  margin: .25rem 0 1.75rem;
  max-width: 44ch;
}
.tracklist li {
  counter-increment: track;
  display: flex;
  gap: .9rem;
  align-items: baseline;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  color: var(--flare-1);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 1.7em;
}
.streams { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.5rem; }
.store-link {
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--flare-1);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.store-link:hover { border-bottom-color: var(--flare-1); }

.gigs { max-width: 860px; margin: 0 auto; }
.gigs__loading, .gigs__empty { text-align: center; color: var(--muted); padding: 2rem 0; }

.gig {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.gig:last-child { border-bottom: 1px solid var(--line); }
.gig__date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 1.2rem;
}
.gig__day {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.gig__mon { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--flare-1); }
.gig__year { display: block; font-size: .68rem; letter-spacing: .18em; color: var(--muted); margin-top: .15rem; }
.gig__venue { font-weight: 600; font-size: 1.15rem; }
.gig__city { color: var(--muted); font-size: .95rem; }
.gig__support { font-size: .9rem; color: var(--flare-1); margin-top: .1rem; }
.gig__cta { justify-self: end; }
.gig--soldout .gig__cta { color: var(--muted); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }

@media (max-width: 620px) {
  .gig { grid-template-columns: 68px 1fr; }
  .gig__cta { grid-column: 2; justify-self: start; margin-top: .4rem; }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}
.grid__item {
  border: 0; padding: 0; margin: 0;
  background: var(--ash);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.grid__item:nth-child(1),
.grid__item:nth-child(6) { grid-row: span 2; }
.grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.grid__item:hover img { transform: scale(1.07); }
.grid__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(155,92,255,.22), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.grid__item:hover::after { opacity: 1; }

.contact__body { text-align: center; }
.contact__lead { color: var(--muted); font-size: 1.15rem; margin-bottom: 1.75rem; }
.socials {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
.socials a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.socials a:hover { color: var(--flare-1); }

.footer {
  text-align: center;
  padding: 3rem var(--pad);
  border-top: 1px solid var(--line);
  background: var(--void);
}
.footer__logo { height: 30px; width: auto; margin: 0 auto 1rem; opacity: .8; }
.footer__note { font-size: .8rem; color: var(--muted); }

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(4, 3, 6, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px -30px #000;
}
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  background: none; border: 0; color: var(--bone);
  font-size: 2.6rem; line-height: 1; cursor: pointer;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  color: var(--bone); width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.8rem; cursor: pointer; transition: background .2s;
}
.lightbox__nav:hover { background: rgba(155,92,255,.22); }
.lightbox__nav--prev { left: clamp(.5rem, 3vw, 2rem); }
.lightbox__nav--next { right: clamp(.5rem, 3vw, 2rem); }

.section__head, .release--featured, .videos__grid, .gigs, .grid, .contact__body {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.in { opacity: 1 !important; transform: none !important; }

@media (max-width: 800px) {
  .release--featured { grid-template-columns: 1fr; text-align: center; }
  .release__art { max-width: 360px; margin: 0 auto; }
  .release__desc { margin-inline: auto; }
  .tracklist { margin-inline: auto; text-align: left; }
  .streams { justify-content: center; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2rem var(--pad);
    background: rgba(8, 7, 10, .97);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__slide.is-active { animation: none; }
  .section__head, .release--featured, .videos__grid, .gigs, .grid, .contact__body { opacity: 1; transform: none; }
}

:focus-visible { outline: 2px solid var(--flare-1); outline-offset: 3px; }
