:root {
  color-scheme: dark;
  --bg: #050812;
  --bg-soft: #0a1020;
  --panel: rgba(12, 18, 34, 0.72);
  --panel-solid: #0d1528;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f8fc;
  --muted: #aeb8ca;
  --quiet: #768296;
  --hot: #ff4f43;
  --hot-2: #ff796f;
  --blue: #2388ff;
  --green: #41d58b;
  --shell: min(1480px, calc(100% - 56px));
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 79, 67, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(35, 136, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #050812 0%, #080d1b 38%, #050812 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

[data-gallery-item] {
  cursor: zoom-in;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  color: #06101f;
  background: white;
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 40vw;
  height: 40vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  contain: paint;
  transform: translate3d(0, 0, 0);
}

.ambient--red {
  top: 16vh;
  left: -16vw;
  background: var(--hot);
}

.ambient--blue {
  right: -16vw;
  bottom: 10vh;
  background: var(--blue);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 4vw, 54px) 14px;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0.92), rgba(5, 8, 18, 0.66));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backface-visibility: hidden;
  contain: layout;
  transform: translate3d(0, 0, 0);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  padding-block: 12px 10px;
  background: rgba(5, 8, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: clamp(330px, 25vw, 500px);
  min-width: 0;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px clamp(12px, 1.65vw, 28px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 9px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--hot), var(--blue));
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: white;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 205px 0 186px;
  overflow: hidden;
  isolation: isolate;
}

.hero__photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.98) contrast(1.1);
  transform: translate3d(0, 0, 0);
}

.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 18, 0.96) 0%, rgba(5, 8, 18, 0.78) 38%, rgba(5, 8, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.38) 0%, rgba(5, 8, 18, 0.72) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 28vh;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 300px);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
}

.hero__copy {
  max-width: min(1140px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--hot-2);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 40px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7.2vw, 8rem);
  font-weight: 930;
  letter-spacing: -0.034em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 {
  max-width: none;
  font-size: 6.1rem;
  letter-spacing: -0.012em;
  white-space: nowrap;
  overflow-wrap: normal;
  hyphens: manual;
  word-break: normal;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.2vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.026em;
  line-height: 0.9;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero__lead,
.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 24px;
}

.release-news {
  display: flex;
  max-width: 760px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
  padding: 16px 18px;
  color: white;
  background:
    linear-gradient(135deg, rgba(226, 37, 49, 0.22), rgba(26, 107, 214, 0.18)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.release-news__text {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.release-news__text span {
  color: var(--hot-2);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-news__text strong {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.release-news__text p {
  max-width: 520px;
  margin: 0;
  color: #d8e0ee;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-facts {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-facts span {
  display: block;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-facts b,
.hero-facts small {
  display: block;
}

.hero-facts b {
  color: white;
  font-size: 0.98rem;
  line-height: 1.15;
}

.hero-facts small {
  margin-top: 5px;
  color: #d8e0ee;
  font-size: 0.78rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--hot {
  color: white;
  background: linear-gradient(135deg, var(--hot), #ff756d);
  box-shadow: 0 20px 45px rgba(255, 79, 67, 0.25);
}

.button--release {
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--blue));
  box-shadow: 0 16px 34px rgba(26, 107, 214, 0.24);
}

.button--glass {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-ribbon {
  position: absolute;
  z-index: 1;
  right: -10vw;
  bottom: clamp(52px, 8vh, 112px);
  left: -10vw;
  overflow: hidden;
  padding: 13px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, #0c4da8 0%, var(--blue) 48%, #58b7ff 100%);
  border-block: 1px solid rgba(184, 222, 255, 0.3);
  box-shadow: 0 24px 70px rgba(35, 136, 255, 0.24);
  contain: paint;
  transform: rotate(-2.2deg);
}

.hero-ribbon__track {
  display: flex;
  align-items: center;
  width: max-content;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  animation: hero-ribbon-scroll 60s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-ribbon__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: clamp(10px, 1.15vw, 18px);
  padding-right: clamp(10px, 1.15vw, 18px);
}

.hero-ribbon i {
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 999px;
  opacity: 0.58;
}

@keyframes hero-ribbon-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
  scroll-margin-top: 220px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 116px);
}

.split > *,
.booking-grid > * {
  min-width: 0;
}

.split--sound,
.split--videos {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.section-copy {
  max-width: 700px;
}

.section-copy p {
  max-width: 640px;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding-left: 28px;
  color: #d9e1ee;
}

.signal-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: linear-gradient(135deg, var(--hot), var(--blue));
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(255, 79, 67, 0.5);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
}

.sound-stage,
.band-photo,
.video-mood,
.booking-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 8px 90px 8px 8px;
  box-shadow: var(--shadow);
  contain: paint;
}

.sound-stage::before,
.band-photo::before,
.video-mood::before,
.booking-visual::before {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 112px;
  height: 112px;
  content: "";
  border-top: 2px solid var(--hot);
  border-right: 2px solid var(--hot);
  pointer-events: none;
}

.sound-stage__photo,
.band-photo img,
.video-mood img,
.booking-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.sound-stage__photo {
  object-position: 58% center;
}

.sound-stage::after,
.video-mood::after,
.booking-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 8, 18, 0.02), rgba(5, 8, 18, 0.86));
  pointer-events: none;
}

.player-card {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 22px;
  background: rgba(8, 13, 25, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  contain: paint;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.player-card__top {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 18px;
}

.player-mark {
  display: grid;
  width: 78px;
  height: 78px;
  padding: 10px;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.player-mark img {
  width: 100%;
}

.player-kicker {
  display: block;
  color: var(--hot);
  font-size: 0.68rem;
  font-weight: 880;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.player-kicker em {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 8px;
  color: white;
  font-style: normal;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.player-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.player-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.player-main-button {
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(255, 79, 67, 0.34);
  transition: transform 160ms ease;
}

.player-main-button:hover {
  transform: scale(1.06);
}

.player-main-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.player-main-button .icon-pause {
  display: none;
}

.player-main-button.is-playing .icon-play {
  display: none;
}

.player-main-button.is-playing .icon-pause {
  display: block;
}

.player-progress-wrap {
  position: relative;
  height: 58px;
  margin: 18px 0 12px;
  cursor: pointer;
  touch-action: none;
  --progress: 0%;
}

.waveform {
  position: absolute;
  inset: 7px 0;
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0.95;
}

.waveform i {
  width: 3px;
  height: calc(var(--bar) * 0.38px);
  min-height: 6px;
  background: linear-gradient(180deg, var(--hot), var(--blue));
  border-radius: 999px;
  opacity: 0.76;
}

.player-progress-line {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hot) var(--progress), rgba(255, 255, 255, 0.14) var(--progress));
  border-radius: 999px;
}

.player-progress-dot {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: var(--progress);
  width: 16px;
  height: 16px;
  background: white;
  border: 4px solid var(--hot);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255, 79, 67, 0.18);
  pointer-events: none;
  transform: translateX(-50%);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.player-progress-wrap:hover .player-progress-dot,
.player-progress-wrap:focus-within .player-progress-dot,
.player-progress-wrap.is-seeking .player-progress-dot {
  box-shadow: 0 0 0 8px rgba(255, 79, 67, 0.22);
  transform: translateX(-50%) scale(1.12);
}

.player-progress {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  appearance: none;
  pointer-events: none;
  cursor: pointer;
}

.player-progress-hitbox {
  position: absolute;
  z-index: 5;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  touch-action: none;
}

.player-card__bottom {
  display: grid;
  grid-template-columns: auto minmax(160px, 0.5fr) auto;
  align-items: center;
  gap: 20px;
}

.player-time {
  display: flex;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-volume__button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.player-volume__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.player-volume__button .icon-muted,
.player-volume__button.is-muted .icon-volume {
  display: none;
}

.player-volume__button.is-muted .icon-muted {
  display: block;
}

.player-volume__range {
  width: 100%;
  min-width: 110px;
  accent-color: var(--hot);
}

.player-skip {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.player-skip button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
}

.player-skip svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

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

.live-card,
.press-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  contain: paint;
}

.live-card--wide {
  grid-column: span 2;
}

.live-card img,
.press-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.live-card:hover img,
.press-card:hover img {
  transform: scale(1.045);
}

.live-card::after,
.press-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 18, 0.9));
  pointer-events: none;
}

.live-card > div,
.press-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.live-card span,
.press-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--hot);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-card p,
.press-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
}

.band-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 18% 50%, rgba(255, 79, 67, 0.08), transparent 28rem);
}

.band-photo {
  aspect-ratio: 1400 / 788;
  min-height: 0;
}

.band-photo img {
  object-fit: contain;
  object-position: center;
}

.band-photo__caption,
.video-mood div,
.booking-badge {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 18px 20px;
  background: rgba(8, 13, 25, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.band-photo__caption {
  right: 50%;
  bottom: 24px;
  left: auto;
  display: flex;
  width: max-content;
  max-width: calc(100% - 48px);
  align-items: center;
  gap: 14px;
  transform: translateX(50%);
}

.band-photo__caption span {
  color: white;
  font-weight: 800;
}

.band-photo__caption a {
  color: var(--hot-2);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.crew-grid,
.booking-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

.crew-grid article,
.booking-cards article,
.press-download {
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 20px;
  contain: paint;
}

.crew-grid span,
.booking-cards small,
.press-download span {
  display: block;
  margin-bottom: 7px;
  color: var(--hot);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.crew-grid b,
.booking-cards b,
.press-download strong {
  display: block;
  font-size: 1rem;
  line-height: 1.32;
}

.video-mood {
  min-height: 640px;
}

.video-mood div span,
.booking-badge span {
  display: block;
  margin-bottom: 5px;
  color: var(--hot);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-mood div strong,
.booking-badge strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}

.video-player {
  display: grid;
  overflow: hidden;
  gap: 0;
  margin-top: 28px;
  background: rgba(8, 13, 25, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.video-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
  border: 0;
}

.video-player__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.video-player__kicker {
  display: block;
  color: var(--hot);
  font-size: 0.68rem;
  font-weight: 880;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-player__kicker em {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 8px;
  color: white;
  font-style: normal;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.video-player strong,
.video-player small {
  display: block;
}

.video-player strong {
  margin-top: 4px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.video-player small {
  margin-top: 4px;
  color: var(--muted);
}

.video-player__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.video-player__controls button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
}

.video-player__controls svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.press-section {
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.32), rgba(5, 8, 18, 0));
}

.press-card {
  min-height: 420px;
}

.press-card--wide {
  grid-column: span 2;
}

.press-card a {
  display: inline-flex;
  margin-top: 10px;
  color: white;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 11, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  height: min(920px, calc(100svh - 48px));
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.gallery-modal__figure {
  display: grid;
  min-width: 0;
  min-height: 0;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
  gap: 16px;
}

.gallery-modal__figure img {
  width: auto;
  max-width: 100%;
  max-height: min(70svh, calc(100svh - 280px));
  align-self: end;
  justify-self: center;
  object-fit: contain;
  background: #050812;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.gallery-modal__figure figcaption {
  display: grid;
  min-height: 112px;
  gap: 4px;
  color: white;
}

.gallery-modal__figure span,
.gallery-modal__figure small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-modal__figure p {
  max-width: 760px;
  margin: 2px 0 0;
  color: #dce4f0;
  font-size: 1rem;
  line-height: 1.45;
}

.gallery-modal__figure strong {
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.gallery-modal__nav,
.gallery-modal__close {
  display: grid;
  padding: 0;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.gallery-modal__nav {
  width: 56px;
  height: 56px;
}

.gallery-modal__nav svg,
.gallery-modal__close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-modal__close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  transform: translate(25%, -50%);
}

.gallery-modal__download {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 20px 45px rgba(255, 79, 67, 0.24);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
}

.booking-visual {
  min-height: 640px;
  border-radius: 90px 8px 8px 8px;
}

.booking-visual::before {
  right: auto;
  left: 20px;
  border-right: 0;
  border-left: 2px solid var(--hot);
}

.booking-cards {
  grid-template-columns: 1fr 1fr;
  min-width: 0;
}

.booking-cards article {
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
}

.booking-cards small {
  min-height: 2.4em;
  line-height: 1.2;
}

.booking-cards span {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-cards a {
  margin-top: 10px;
  color: white;
  font-weight: 800;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-list li {
  position: relative;
  min-height: 54px;
  padding: 15px 16px 15px 42px;
  color: #dce4f0;
  background: rgba(13, 21, 40, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.reference-list li::before {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 8px;
  height: 8px;
  content: "";
  background: linear-gradient(135deg, var(--hot), var(--blue));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 79, 67, 0.42);
}

.legal-grid {
  display: block;
}

.legal-accordion {
  max-width: 980px;
  border-top: 1px solid var(--line);
}

.legal-detail {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 220px;
}

.legal-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: white;
  cursor: pointer;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.01em;
  list-style: none;
}

.legal-detail summary::-webkit-details-marker {
  display: none;
}

.legal-detail summary::after {
  flex: 0 0 auto;
  color: var(--hot);
  content: "+";
  font-size: 1.7rem;
  font-weight: 720;
  line-height: 1;
}

.legal-detail[open] summary::after {
  content: "-";
}

.legal-detail__body {
  max-width: 760px;
  padding-bottom: 30px;
}

.legal-detail__body h3 {
  margin: 28px 0 10px;
  color: white;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.35;
}

.legal-detail__body h3:first-child {
  margin-top: 0;
}

.legal-detail p {
  color: var(--muted);
}

.legal-detail p:last-child {
  margin-bottom: 0;
}

.legal-detail strong,
.legal-detail a {
  color: white;
  font-weight: 800;
}

.site-footer {
  padding: 44px 0;
  color: var(--muted);
  background: #03050b;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand--footer {
  width: 230px;
  min-width: 0;
}

.footer-text {
  display: grid;
  gap: 9px;
}

.footer-grid p {
  margin: 0;
}

.footer-credit {
  color: #aeb8c8;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 760;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1160px) {
  .site-nav {
    gap: 4px 14px;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .split,
  .split--sound,
  .split--videos,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 850px;
  }

  .sound-stage,
  .band-photo,
  .video-mood,
  .booking-visual {
    min-height: 560px;
  }

  .band-photo {
    min-height: 0;
  }

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

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
    --radius: 22px;
  }

  .ambient {
    display: none;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 15px 9px;
    background: rgba(5, 8, 18, 0.94);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    padding: 10px 15px 9px;
    background: rgba(5, 8, 18, 0.94);
  }

  .brand {
    width: min(65vw, calc(100vw - 134px), 340px);
    min-width: 0;
  }

  .nav-toggle {
    position: absolute;
    top: 26px;
    right: 15px;
    display: grid;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: static;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    background: rgba(5, 8, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.42);
    opacity: 1;
    pointer-events: none;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    display: flex;
    justify-content: center;
    min-height: 42px;
    padding: 13px 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: linear-gradient(135deg, rgba(226, 37, 49, 0.34), rgba(26, 107, 214, 0.24));
    border-color: rgba(255, 255, 255, 0.22);
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    opacity: 1 !important;
    pointer-events: auto;
    visibility: visible !important;
    transform: none !important;
  }

  .hero {
    min-height: 920px;
    padding-top: 128px;
    padding-bottom: 86px;
  }

  .section {
    scroll-margin-top: 112px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 18, 0.88) 0%, rgba(5, 8, 18, 0.5) 40%, rgba(5, 8, 18, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 8, 18, 0.86), rgba(5, 8, 18, 0.18));
  }

  .hero__grid {
    min-height: 690px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  h1 {
    font-size: 4.8rem;
    letter-spacing: -0.018em;
  }

  .hero h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 3.2rem;
    letter-spacing: -0.014em;
  }

  .hero-ribbon {
    bottom: 18px;
    padding: 9px 0;
    transform: rotate(-1.4deg);
  }

  .hero-ribbon__track {
    animation-duration: 72s;
    font-size: 0.6rem;
  }

  .hero-ribbon__group {
    gap: 10px;
    padding-right: 10px;
  }

  .release-news {
    display: grid;
    align-items: start;
    gap: 14px;
  }

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

  .release-news,
  .hero-facts span,
  .button--glass,
  .player-card,
  .band-photo__caption,
  .video-mood div,
  .booking-badge {
    background: rgba(8, 13, 25, 0.9);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .section-heading,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .player-card__bottom,
  .press-download,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .player-card__bottom,
  .press-download {
    display: grid;
    align-items: start;
  }

  .player-skip {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .video-player__bar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .video-player__controls {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .booking-cards,
  .crew-grid,
  .reference-list {
    grid-template-columns: 1fr;
  }

  .gallery-modal {
    padding: 16px;
  }

  .gallery-modal__dialog {
    height: calc(100svh - 32px);
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
  }

  .gallery-modal__figure {
    grid-column: 1 / -1;
  }

  .gallery-modal__figure img {
    max-height: calc(100svh - 360px);
  }

  .gallery-modal__figure figcaption {
    min-height: 142px;
  }

  .gallery-modal__nav {
    width: 100%;
    height: 48px;
  }

  .gallery-modal__nav--prev {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-modal__nav--next {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-modal__download {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .gallery-modal__close {
    top: 8px;
    right: 8px;
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 860px;
  }

  h1 {
    font-size: 3.85rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.48rem;
    line-height: 0.96;
  }

  .hero__photo {
    object-position: center;
  }

  .hero__actions {
    display: grid;
  }

  .release-news {
    padding: 14px;
    border-radius: 16px;
  }

  .button {
    width: 100%;
  }

  .sound-stage,
  .band-photo,
  .video-mood,
  .booking-visual {
    min-height: 520px;
    border-radius: 8px 56px 8px 8px;
  }

  .band-photo {
    min-height: 0;
  }

  .sound-stage__photo {
    object-position: 63% center;
  }

  .player-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .player-card__top {
    grid-template-columns: 54px minmax(0, 1fr) 48px;
    gap: 12px;
  }

  .player-mark {
    width: 54px;
    height: 54px;
    border-radius: 13px;
  }

  .player-main-button {
    width: 48px;
    height: 48px;
  }

  .player-card strong {
    font-size: 1.08rem;
  }

  .player-card small {
    display: none;
  }

  .player-volume {
    width: 100%;
  }

  .live-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .live-card,
  .press-card {
    min-height: 460px;
  }

  .live-card--wide,
  .press-card--wide {
    grid-column: auto;
  }

  .press-card--wide {
    min-height: 340px;
  }

  .booking-visual {
    border-radius: 56px 8px 8px 8px;
  }

  .band-photo__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    justify-content: space-between;
    transform: none;
  }

  .footer-grid {
    align-items: start;
  }
}

@media (max-width: 380px) {
  .site-header,
  .site-header.is-scrolled {
    padding-right: 10px;
    padding-left: 10px;
  }

  .nav-toggle {
    top: 16px;
    right: 10px;
  }

  .site-nav {
    right: 10px;
    left: 10px;
    gap: 7px;
    padding: 10px;
  }

  .site-nav a {
    min-height: 40px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2.18rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.02rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-ribbon__track {
    animation: none;
  }
}
