:root {
  color-scheme: dark;
  --ink: #f7f1e8;
  --muted: #bdb1c8;
  --dark: #08070d;
  --paper: #f4efe6;
  --paper-ink: #17131d;
  --paper-muted: #675d6c;
  --cyan: #0bd1ff;
  --pink: #ff2b8e;
  --amber: #f5bd45;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(18, 12, 28, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

section {
  scroll-margin-top: 96px;
}

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

button,
audio {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 7, 13, 0.56);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 13, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px 0 4px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--cyan), var(--pink) 52%, var(--amber));
  color: #08070d;
  font-weight: 950;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 38px;
  padding: 10px 13px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

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

.section-dark {
  background: var(--dark);
  color: var(--ink);
}

.section-light {
  background: var(--paper);
  color: var(--paper-ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8f214f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  max-width: 880px;
  font-size: clamp(2rem, 4.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: #120b17;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button-dark {
  background: #15111d;
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82svh;
  padding: 108px 20px 82px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.feature-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 13, 0.96) 0%, rgba(8, 7, 13, 0.68) 45%, rgba(8, 7, 13, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 7, 13, 0.94) 0%, rgba(8, 7, 13, 0.04) 42%, rgba(8, 7, 13, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  min-width: 0;
  margin: 0 auto;
}

.hero h1 {
  display: grid;
  gap: clamp(0.15rem, 0.7vw, 0.75rem);
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(4.2rem, 10.5vw, 9.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(3) {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.82);
  text-stroke: 2px rgba(255, 255, 255, 0.82);
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 7, 13, 0.52);
  backdrop-filter: blur(14px);
}

.hero-strip span {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.intro {
  padding: 60px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 44px;
  align-items: end;
}

.intro-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.intro-stats {
  display: grid;
  gap: 12px;
}

.intro-stats div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
}

.intro-stats strong {
  color: #8f214f;
  font-size: 2.4rem;
  line-height: 1;
}

.intro-stats span {
  color: var(--paper-muted);
  font-weight: 750;
}

.music,
.gallery-section,
.story {
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(11, 209, 255, 0.08), transparent 28%, rgba(255, 43, 142, 0.1) 100%),
    var(--dark);
}

.section-heading {
  margin-bottom: 46px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
}

.split-heading p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.tracks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.track-card {
  display: grid;
  gap: 26px;
  min-height: 390px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.track-card.featured {
  background: linear-gradient(155deg, rgba(11, 209, 255, 0.18), rgba(255, 43, 142, 0.15)), rgba(255, 255, 255, 0.06);
}

.track-index {
  color: rgba(255, 255, 255, 0.32);
  font-size: 4rem;
  font-weight: 950;
  line-height: 0.8;
}

.track-kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.track-copy p:not(.track-kicker) {
  color: var(--muted);
}

.track-card audio {
  width: 100%;
  align-self: end;
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  min-height: 680px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 86px);
}

.feature-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

.feature-copy p:last-child {
  color: var(--paper-muted);
  font-size: 1.08rem;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tab {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.tab.is-active {
  border-color: transparent;
  background: var(--amber);
  color: #130d16;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0 0 10px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #1d1726;
  cursor: pointer;
  break-inside: avoid;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(8) {
  min-height: 0;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(12) {
  min-height: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item picture {
  display: block;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-item span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 10px;
  border-radius: 7px;
  background: rgba(8, 7, 13, 0.66);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.video-section {
  padding: 110px 0;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.video-copy p:not(.eyebrow) {
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.quote-line {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--pink);
  color: #8f214f;
  font-size: 1.2rem;
  font-weight: 900;
}

.video-frame {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background: #09070d;
  box-shadow: 0 30px 80px rgba(42, 24, 51, 0.28);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #08070d;
}

.story-heading h2 {
  max-width: 760px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 133px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 26px 0;
}

.timeline-year {
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item div {
  max-width: 780px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.timeline-item p {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact {
  padding: 86px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: center;
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.contact-panel p {
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--paper-muted);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(26, 118, 76, 0.28);
  background: rgba(226, 246, 235, 0.72);
  color: #1a764c;
}

.form-status.is-error {
  border-color: rgba(143, 33, 79, 0.26);
  background: rgba(255, 235, 243, 0.72);
  color: #8f214f;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #8f214f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--paper-ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8f214f;
  box-shadow: 0 0 0 3px rgba(143, 33, 79, 0.14);
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px max(20px, calc((100vw - var(--max)) / 2));
  background: #08070d;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

.lightbox {
  width: min(1120px, calc(100vw - 36px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #08070d;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.lightbox::backdrop {
  background: rgba(8, 7, 13, 0.86);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: rgba(8, 7, 13, 0.78);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 12px auto;
    width: auto;
    max-width: none;
    margin: 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(8, 7, 13, 0.94);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 102px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 7, 13, 0.96) 0%, rgba(8, 7, 13, 0.28) 58%, rgba(8, 7, 13, 0.84) 100%);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 11.4vw, 3.55rem);
    line-height: 0.9;
  }

  .hero-strip,
  .split-heading,
  .intro-grid,
  .photo-feature,
  .video-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 4;
    width: min(var(--max), calc(100% - 40px));
    margin-top: 38px;
  }

  .tracks {
    grid-template-columns: 1fr;
  }

  .track-card {
    min-height: auto;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(12) {
    min-height: 0;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    right: auto;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .section-inner {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-toggle {
    position: static;
    flex: 0 0 42px;
    align-self: center;
  }

  .hero {
    padding: 92px 14px 34px;
  }

  .hero h1 span:nth-child(3) {
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }

  .hero-actions .button,
  .button {
    width: 100%;
  }

  .hero-actions,
  .hero-content,
  .hero-strip {
    width: 100%;
    max-width: 100%;
  }

  .hero-strip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-left: 0;
  }

  .hero-content {
    margin-left: 0;
  }

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

  .hero-strip span {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.68rem;
  }

  .hero-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-strip span:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .intro,
  .music,
  .gallery-section,
  .video-section,
  .story,
  .contact {
    padding: 72px 0;
  }

  .feature-image img {
    min-height: 420px;
  }

  .feature-copy {
    padding: 34px 20px 44px;
  }

  .gallery-grid {
    column-gap: 8px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(12) {
    min-height: 0;
    margin-bottom: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
