:root {
  --bg: #050505;
  --panel: #101112;
  --panel-strong: #151617;
  --text: #f4f1ee;
  --muted: #b9b2ad;
  --dim: #7d7774;
  --red: #db2e27;
  --red-deep: #80110e;
  --red-soft: rgba(219, 46, 39, 0.22);
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --max: 1280px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 7%, rgba(219, 46, 39, 0.16), transparent 18rem),
    radial-gradient(circle at 86% 14%, rgba(141, 16, 14, 0.22), transparent 22rem),
    linear-gradient(180deg, #080808 0%, #050505 46%, #080808 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #111;
  padding: 10px 12px;
  transition: transform 180ms ease;
}

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

.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;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.36));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  min-width: max-content;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 24px rgba(219, 46, 39, 0.8);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  margin-left: auto;
}

.desktop-nav a,
.mobile-menu a {
  color: rgba(244, 241, 238, 0.86);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 122px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.language-option {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease;
}

.language-option.is-active {
  background: var(--red);
  color: white;
}

.menu-toggle,
.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.menu-line {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.menu-line + .menu-line {
  margin-top: 4px;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 12px auto 12px;
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  border-radius: 6px;
  padding: 14px 12px;
}

.mobile-menu-cta {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: white;
}

.hero {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  overflow: hidden;
  padding-top: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 30% 24%, rgba(236, 38, 31, 0.34), transparent 19rem),
    radial-gradient(circle at 72% 22%, rgba(192, 18, 16, 0.44), transparent 22rem),
    linear-gradient(90deg, #050505 0%, #230807 48%, #040404 100%);
  filter: saturate(1.12);
}

.hero-video {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: center center;
  opacity: 0.68;
  filter: blur(9px) saturate(1.55) contrast(1.08) brightness(0.72);
  transform: scale(1.05);
  mix-blend-mode: screen;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -18px;
  background-image: url("assets/images/svaid-video-still-02.jpg");
  background-position: center center;
  background-size: cover;
  opacity: 0.34;
  mix-blend-mode: normal;
  filter: blur(9px) saturate(1.45) contrast(1.08) brightness(0.74);
  transform: scale(1.045);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.4) 100%),
    radial-gradient(circle at 58% 18%, rgba(255, 38, 31, 0.18), transparent 15rem),
    radial-gradient(circle at 78% 44%, rgba(255, 0, 0, 0.14), transparent 19rem),
    linear-gradient(180deg, rgba(6, 0, 0, 0.04), rgba(3, 3, 3, 0.36));
  mix-blend-mode: multiply;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0.28) 38%, rgba(5, 5, 5, 0.06) 68%, rgba(5, 5, 5, 0.62) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06) 0%, rgba(5, 5, 5, 0.46) 100%);
}

.hero::after {
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 5px),
    radial-gradient(circle at 74% 38%, rgba(219, 46, 39, 0.24), transparent 22rem);
  mix-blend-mode: screen;
  opacity: 0.46;
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  min-height: clamp(548px, calc(100svh - var(--header-height) - 64px), 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(16px, 3vw, 54px);
  align-items: center;
  padding: clamp(34px, 6vw, 70px) 0 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pulse-dot {
  animation: pulse 1600ms ease-in-out infinite;
}

.hero h1 {
  margin: 0;
  color: #f0ebe5;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  width: max-content;
  max-width: none;
  font-size: clamp(5.3rem, 10vw, 10.8rem);
  line-height: 0.78;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(244, 241, 238, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.48rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f04238, #941913);
  box-shadow: 0 16px 34px rgba(219, 46, 39, 0.28);
}

.button-ghost,
.button-quiet {
  background: rgba(0, 0, 0, 0.28);
  border-color: var(--line-strong);
}

.button-quiet {
  color: rgba(244, 241, 238, 0.88);
}

.button.compact {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.8rem;
}

.play-symbol {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.arrow-symbol {
  font-weight: 900;
}

.download-symbol,
.gallery-symbol,
.mail-symbol,
.instagram-symbol {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  flex: 0 0 18px;
}

.download-symbol::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.download-symbol::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.gallery-symbol {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.gallery-symbol::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.gallery-symbol::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 7px;
  background: linear-gradient(135deg, transparent 0 36%, currentColor 38% 60%, transparent 62%);
}

.mail-symbol {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mail-symbol::before,
.mail-symbol::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.mail-symbol::before {
  left: 1px;
  transform: rotate(34deg);
}

.mail-symbol::after {
  right: 1px;
  transform: rotate(-34deg);
}

.instagram-symbol {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.instagram-symbol::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.instagram-symbol::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 28px 0 0;
}

.quick-facts div {
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  background: transparent;
}

.quick-facts dt {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: rgba(244, 241, 238, 0.9);
  font-weight: 800;
}

.hero-visual {
  --record-size: clamp(420px, 52vw, 630px);
  --orbit-size: clamp(520px, 62vw, 750px);
  position: relative;
  display: grid;
  place-items: center;
  width: var(--orbit-size);
  min-height: var(--orbit-size);
  z-index: 1;
  transform: translateX(clamp(-220px, -14vw, -128px));
}

.record {
  position: relative;
  width: var(--record-size);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at center, #050505 0 1.8%, transparent 2%),
    radial-gradient(circle at center, transparent 0 18.5%, rgba(0, 0, 0, 0.9) 18.8% 19.8%, transparent 20.1%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.09) 0 1px, rgba(12, 12, 12, 0.98) 2px 4px, rgba(37, 37, 37, 0.8) 5px 6px),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.16), transparent 20%),
    radial-gradient(circle at 66% 72%, rgba(255, 255, 255, 0.08), transparent 24%),
    #070707;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 34px rgba(255, 255, 255, 0.08),
    inset 0 0 96px rgba(0, 0, 0, 0.9),
    0 32px 110px rgba(0, 0, 0, 0.82);
  animation: slowSpin 24s linear infinite;
}

.record::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.18) 22%, transparent 31% 58%, rgba(255, 255, 255, 0.1) 63%, transparent 72%),
    radial-gradient(circle at center, transparent 0 18%, rgba(255, 255, 255, 0.08) 18.2% 18.8%, transparent 19%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.record::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #050505 0 3.2%, transparent 3.4%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0 34%, transparent 34.4%),
    #b72b24;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.26),
    inset 0 0 42px rgba(0, 0, 0, 0.28),
    0 0 0 10px rgba(0, 0, 0, 0.28);
}

.record-label {
  position: absolute;
  inset: 30%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: transparent;
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
}

.record-label::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #050505;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.34), 0 0 0 1px rgba(0, 0, 0, 0.58);
}

.record-label span,
.record-label small {
  position: relative;
  z-index: 1;
  transform: translateY(-28px);
}

.record-label small {
  display: block;
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.45rem, 1vw, 0.6rem);
}

.record-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--orbit-size);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(219, 46, 39, 0.65);
  border-left-color: rgba(255, 255, 255, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.record-orbit::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 255, 255, 0.26);
}

.record-orbit::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 40%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 26px rgba(219, 46, 39, 0.9);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.32);
}

.scroll-cue span {
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  transform: rotate(45deg) translateY(-2px);
}

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

.about-band {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(10, 11, 12, 0.9)),
    radial-gradient(ellipse at 90% 50%, rgba(255, 255, 255, 0.12), transparent 26rem);
}

.about-band::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(42vw, 520px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.75)),
    url("assets/images/hero-cdmx-club.png") center right / cover;
  opacity: 0.32;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 260px;
  gap: clamp(22px, 5vw, 46px);
  align-items: center;
  padding: 28px 0;
}

.section-badge {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(244, 241, 238, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.about-meter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  align-items: end;
  height: 86px;
}

.about-meter span {
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(219, 46, 39, 0.88), rgba(219, 46, 39, 0.12));
}

.about-meter span:nth-child(1) {
  height: 42%;
}

.about-meter span:nth-child(2) {
  height: 82%;
}

.about-meter span:nth-child(3) {
  height: 58%;
}

.about-meter span:nth-child(4) {
  height: 72%;
}

.content-band,
.sets-band {
  padding: clamp(40px, 7vw, 72px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.sound-band {
  background:
    radial-gradient(circle at 50% 0, rgba(219, 46, 39, 0.08), transparent 18rem),
    linear-gradient(180deg, #070808, #090a0b);
}

.photos-band {
  background:
    radial-gradient(circle at 14% 18%, rgba(219, 46, 39, 0.12), transparent 24rem),
    #070707;
}

.sets-band {
  background: #090909;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 46, 39, 0.82), transparent);
}

.section-heading h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  text-align: center;
  text-transform: uppercase;
}

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

.mix-card {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 18px;
  min-height: 242px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 18px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 10, 10, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mix-card.is-playing {
  border-color: rgba(219, 46, 39, 0.82);
  box-shadow: 0 20px 55px rgba(219, 46, 39, 0.12);
}

.mix-number {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-record {
  align-self: center;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #cc2d26 0 18%, #060606 19% 23%, transparent 24%),
    repeating-radial-gradient(circle, #202020 0 2px, #090909 3px 5px, #151515 6px 7px),
    conic-gradient(from 40deg, rgba(255, 255, 255, 0.28), transparent 20%, rgba(255, 255, 255, 0.11) 48%, transparent 78%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.mix-card.is-playing .mini-record {
  animation: slowSpin 8s linear infinite;
}

.mix-copy {
  min-width: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: 5.4rem 30px minmax(2.75rem, auto) 38px;
  gap: 10px;
  align-content: center;
}

.mix-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  line-height: 1.05;
  align-self: end;
}

.mix-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  align-items: center;
  height: 30px;
  color: var(--red);
}

.waveform span {
  height: 11px;
  border-radius: 99px;
  background: currentColor;
  transform-origin: center;
}

.waveform span:nth-child(2n) {
  height: 20px;
}

.waveform span:nth-child(3n) {
  height: 27px;
}

.mix-card.is-playing .waveform span {
  animation: wave 640ms ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 1) * 45ms);
}

.waveform span:nth-child(1) { --i: 1; }
.waveform span:nth-child(2) { --i: 2; }
.waveform span:nth-child(3) { --i: 3; }
.waveform span:nth-child(4) { --i: 4; }
.waveform span:nth-child(5) { --i: 5; }
.waveform span:nth-child(6) { --i: 6; }
.waveform span:nth-child(7) { --i: 7; }
.waveform span:nth-child(8) { --i: 8; }
.waveform span:nth-child(9) { --i: 9; }
.waveform span:nth-child(10) { --i: 10; }
.waveform span:nth-child(11) { --i: 11; }
.waveform span:nth-child(12) { --i: 12; }

.play-button {
  display: inline-flex;
  align-items: center;
  align-self: end;
  justify-self: start;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.play-button[aria-pressed="true"] {
  background: var(--red);
}

.mix-player {
  margin-top: 18px;
  border: 1px solid rgba(219, 46, 39, 0.54);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(219, 46, 39, 0.12), transparent 34%),
    rgba(7, 8, 8, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.mix-player[hidden] {
  display: none;
}

.mix-player-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: center;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mix-player-top p,
.mix-player-top h3 {
  min-width: 0;
  margin: 0;
}

.mix-player-top p {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mix-player-top h3 {
  grid-column: 1;
  color: var(--text);
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1.05;
}

.mix-player-top a {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(244, 241, 238, 0.88);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mix-embed-shell {
  padding: 14px 18px 16px;
}

.mix-embed-shell iframe {
  display: block;
  width: 100%;
  height: 20px;
  border: 0;
}

.mix-player-credit {
  margin: 8px 0 0;
  color: #cccccc;
  font-family: Interstate, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Garuda, Verdana, Tahoma, sans-serif;
  font-size: 10px;
  font-weight: 100;
  line-break: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}

.mix-player-credit a {
  color: #cccccc;
  text-decoration: none;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.8vw, 34px);
  align-items: stretch;
}

.photo-card {
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: 1.1;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0 17% 0 0;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent);
}

.photo-card img {
  position: relative;
  z-index: 1;
  width: 83%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  filter: saturate(0.88) contrast(1.08);
  transition: transform 240ms ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-overlay {
  position: absolute;
  inset: auto 17% 0 0;
  z-index: 2;
  min-height: 44%;
  padding: 16px;
}

.photo-vinyl {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 16%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #c82c25 0 15%, #070707 16% 21%, transparent 22%),
    repeating-radial-gradient(circle, #202020 0 2px, #080808 3px 5px, #161616 6px 7px),
    conic-gradient(from 45deg, rgba(255, 255, 255, 0.26), transparent 21%, rgba(255, 255, 255, 0.08) 52%, transparent 76%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

.footage-note {
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(244, 241, 238, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.photo-overlay h3 {
  margin: 0;
  max-width: min(168px, calc(100% - 116px));
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 2.62rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.photo-overlay a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 102px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.32);
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.cred-card {
  min-height: 176px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: 48px auto;
  column-gap: 18px;
  row-gap: 12px;
  align-content: center;
  align-items: start;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.cred-card:last-child {
  border-right: 0;
}

.cred-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.pin-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #090909;
}

.people-icon::before,
.people-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.people-icon::before {
  width: 13px;
  height: 13px;
  top: 16px;
  left: 18px;
}

.people-icon::after {
  width: 22px;
  height: 12px;
  bottom: 15px;
  left: 20px;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.sound-icon::before {
  content: "";
  width: 32px;
  height: 26px;
  background:
    linear-gradient(var(--red), var(--red)) 0 8px / 3px 10px no-repeat,
    linear-gradient(var(--red), var(--red)) 8px 4px / 3px 18px no-repeat,
    linear-gradient(var(--red), var(--red)) 16px 0 / 3px 26px no-repeat,
    linear-gradient(var(--red), var(--red)) 24px 5px / 3px 16px no-repeat;
}

.cred-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  align-self: start;
}

.cred-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 70px) 0;
  background:
    radial-gradient(circle at 50% 0, rgba(219, 46, 39, 0.36), transparent 28rem),
    linear-gradient(180deg, #170908 0%, #070707 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  gap: 34px;
  align-items: center;
  text-align: center;
}

.contact-note {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  padding: 28px;
  color: rgba(244, 241, 238, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-main h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.contact-main h2 a:hover,
.contact-main h2 a:focus-visible {
  color: var(--red);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-cta {
  min-width: 182px;
}

.contact-record {
  position: absolute;
  bottom: -150px;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #bd2b24 0 18%, #050505 19% 22%, transparent 23%),
    repeating-radial-gradient(circle, #202020 0 2px, #070707 3px 5px, #151515 6px 7px);
  opacity: 0.9;
}

.contact-record.left {
  left: -120px;
}

.contact-record.right {
  right: -120px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: #040404;
}

.site-footer p {
  margin: 0;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

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

.gallery-panel {
  width: min(1050px, 100%);
  max-height: min(88svh, 860px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0c0d;
  box-shadow: var(--shadow);
}

.gallery-top {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: rgba(11, 12, 13, 0.95);
  border-bottom: 1px solid var(--line);
}

.gallery-top h2 {
  margin: 0;
  text-transform: uppercase;
}

.icon-button span::before,
.icon-button span::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 22px;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.icon-button span::before {
  transform: rotate(45deg);
}

.icon-button span::after {
  transform: rotate(-45deg);
}

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

.gallery-list figure {
  margin: 0;
}

.gallery-list img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-list figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.62;
  }
}

@keyframes wave {
  from {
    transform: scaleY(0.5);
  }
  to {
    transform: scaleY(1.12);
  }
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-bottom: 74px;
  }

  .hero-visual {
    --record-size: 460px;
    --orbit-size: 540px;
    position: absolute;
    right: -78px;
    bottom: -48px;
    z-index: 0;
    width: var(--orbit-size);
    height: var(--orbit-size);
    min-height: 0;
    opacity: 0.78;
    pointer-events: none;
    transform: none;
  }

  .mix-grid,
  .photo-grid,
  .cred-grid {
    grid-template-columns: 1fr;
  }

  .mix-card {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .mix-player-top {
    grid-template-columns: 1fr;
  }

  .mix-player-top a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .cred-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cred-card:last-child {
    border-bottom: 0;
  }

  .about-layout {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .about-meter {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .contact-actions {
    align-items: center;
  }

  .contact-note {
    width: min(180px, 52vw);
    margin: 0 auto;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-mark {
    gap: 9px;
    font-size: 0.9rem;
  }

  .language-switch {
    width: 104px;
  }

  .language-option {
    font-size: 0.68rem;
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding-top: 28px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 22vw, 6.5rem);
    white-space: normal;
    width: auto;
  }

  .center-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    flex: 1 1 160px;
    min-height: 50px;
    padding: 0 18px;
  }

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

  .quick-facts div {
    padding: 12px;
  }

  .hero-visual {
    --record-size: 340px;
    --orbit-size: 410px;
    position: absolute;
    right: -98px;
    bottom: -18px;
    z-index: 0;
    width: var(--orbit-size);
    height: var(--orbit-size);
    min-height: 0;
    opacity: 0.7;
    pointer-events: none;
    transform: none;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .section-badge {
    width: 92px;
    height: 92px;
  }

  .mix-card {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .mini-record {
    width: 118px;
  }

  .photo-overlay {
    align-items: start;
    flex-direction: column;
  }

  .photo-overlay a {
    align-self: flex-start;
  }

  .cred-card {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: 48px auto;
    padding: 20px;
  }

  .cred-icon {
    width: 52px;
    height: 52px;
  }

  .contact-main h2 {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
  }

  .contact-cta {
    width: min(100%, 220px);
  }

  .gallery-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .quick-facts {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .quick-facts::-webkit-scrollbar {
    display: none;
  }

  .quick-facts div {
    flex: 0 0 178px;
    scroll-snap-align: start;
  }
}
