:root {
  --ink: #0a0a0a;
  --ink-soft: #151515;
  --paper: #e9e5dc;
  --paper-soft: #d5d0c6;
  --white: #f7f5ef;
  --oxide: #e2482d;
  --acid: #d9ff43;
  --violet: #7258ff;
  --line-dark: rgba(10, 10, 10, 0.2);
  --line-light: rgba(255, 255, 255, 0.18);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--acid);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-noise {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.25rem;
  padding: 0 var(--gutter);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(0);
  transition: background 280ms ease, backdrop-filter 280ms ease, min-height 280ms ease;
}

.site-header.is-scrolled {
  min-height: 4.4rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  color: var(--ink);
  background: var(--oxide);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 950;
  line-height: 1;
  transform: skew(-7deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 0.32rem;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.58;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 3.25rem);
}

.site-nav a,
.cart-trigger {
  position: relative;
  color: inherit;
  background: none;
  border: 0;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: var(--oxide);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.35rem;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 0.65rem;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(8rem, 15vh, 10rem) var(--gutter) 4.5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    radial-gradient(circle at 75% 48%, rgba(226, 72, 45, 0.18), transparent 29%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 17%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.11);
}

.hero::after {
  content: "";
  position: absolute;
  right: -13vw;
  bottom: -23vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-signal {
  position: absolute;
  top: 8rem;
  right: var(--gutter);
  display: grid;
  gap: 0.3rem;
  text-align: right;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(100svh - 13rem);
}

.eyebrow {
  margin: 0 0 1.35rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2px;
  margin: 0 0.75rem 0.2rem 0;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--oxide);
}

.hero-title,
.section-title,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  font-size: clamp(4.6rem, 10.9vw, 11.5rem);
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  margin-left: 6vw;
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 245, 239, 0.88);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(18rem, 31rem) auto;
  align-items: end;
  gap: 3rem;
  margin-top: clamp(2rem, 5vh, 4rem);
  margin-left: 19vw;
}

.hero-intro > p {
  margin: 0;
  color: rgba(247, 245, 239, 0.7);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  color: var(--ink);
  background: var(--oxide);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--acid);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-line {
  color: var(--white);
  border-color: var(--line-light);
}

.button-full {
  width: 100%;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 51%;
  right: 5.5vw;
  display: grid;
  width: clamp(13rem, 21vw, 22rem);
  aspect-ratio: 1;
  place-items: center;
  transform: translateY(-50%);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.orbit-ring-one {
  inset: 8%;
}

.orbit-ring-two {
  inset: 22%;
  border-style: dashed;
  animation: rotate 20s linear infinite;
}

.orbit-core {
  display: grid;
  width: 34%;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--oxide);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 950;
  line-height: 1;
  transform: rotate(9deg) skew(-6deg);
  box-shadow: 1.2rem 1.2rem 0 rgba(255, 255, 255, 0.04);
}

.orbit-copy {
  position: absolute;
  inset: -3%;
  margin: 0;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: center;
  opacity: 0.45;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 2rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foot-line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
}

.signal-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-block: 1px solid var(--ink);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 0;
  animation: ticker 28s linear infinite;
}

.signal-track span {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.signal-track i {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--ink);
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.section-index {
  margin-bottom: 3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

.section-dark .section-index {
  border-bottom-color: var(--line-light);
}

.section-title {
  font-size: clamp(4rem, 8.1vw, 9rem);
}

.section-lede {
  max-width: 35rem;
  margin: 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.legacy-heading {
  display: grid;
  grid-template-columns: 1fr 3fr 1.35fr;
  align-items: start;
  gap: 2rem;
}

.legacy-heading .section-lede {
  align-self: end;
  padding-bottom: 0.35rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  margin-top: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.impact-card {
  min-height: 24rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.impact-card-large {
  color: var(--white);
  background: var(--oxide);
}

.impact-number {
  display: block;
  margin-bottom: 5rem;
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 9.5rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.impact-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.impact-card p {
  max-width: 26rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  opacity: 0.67;
}

.timeline {
  margin-top: clamp(6rem, 10vw, 11rem);
  border-top: 1px solid var(--ink);
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) 3fr;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 250ms var(--ease-out), background 250ms ease;
}

.timeline-item:hover {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  background: rgba(10, 10, 10, 0.035);
}

.timeline-year {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.timeline-copy {
  display: grid;
  grid-template-columns: 1fr 1.5fr 2fr;
  align-items: start;
  gap: 2rem;
}

.timeline-copy p,
.timeline-copy h3 {
  margin: 0;
}

.timeline-label {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.timeline-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.timeline-copy p:last-child {
  color: rgba(10, 10, 10, 0.59);
  font-size: 0.85rem;
  line-height: 1.65;
}

.quote-break {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  color: var(--ink);
  background: var(--violet);
}

.quote-break > p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7.2vw, 7.4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.quote-break p span {
  color: var(--white);
}

.quote-stamp {
  position: absolute;
  right: -2vw;
  bottom: -4vw;
  color: rgba(10, 10, 10, 0.1);
  font-family: var(--display);
  font-size: 22vw;
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.6;
}

.music-heading,
.store-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.text-link {
  display: inline-flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--oxide);
}

.release-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: clamp(5rem, 8vw, 8rem);
}

.release-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper);
}

.release-art-feature {
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, transparent 0 8%, rgba(10, 10, 10, 0.08) 8% calc(8% + 1px)),
    repeating-linear-gradient(0deg, transparent 0 8%, rgba(10, 10, 10, 0.08) 8% calc(8% + 1px)),
    var(--oxide);
}

.release-art-feature::before,
.release-art-feature::after {
  content: "";
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.release-art-feature::before {
  inset: 10%;
}

.release-art-feature::after {
  inset: 27%;
}

.release-code,
.release-side {
  position: absolute;
  z-index: 2;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.release-code {
  top: 1.25rem;
  left: 1.25rem;
}

.release-side {
  right: 1.25rem;
  bottom: 1.25rem;
  writing-mode: vertical-rl;
}

.release-glyph {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(10rem, 24vw, 25rem);
  font-weight: 950;
  letter-spacing: -0.16em;
  line-height: 0.6;
  transform: translateX(-0.08em) skew(-7deg);
}

.release-info {
  align-self: center;
}

.release-type {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--oxide);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.release-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.4vw, 7.2rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.release-info > p {
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.7;
}

.tracklist {
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.tracklist li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.75rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.72rem;
}

.tracklist li span,
.tracklist li em {
  opacity: 0.45;
  font-style: normal;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(6rem, 10vw, 10rem);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.release-card {
  min-width: 0;
  padding: 1.25rem;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.release-card .release-art {
  transition: transform 450ms var(--ease-out);
}

.release-card:hover .release-art,
.release-card:focus-visible .release-art {
  transform: scale(0.97);
}

.release-art-oxide,
.release-art-grid,
.release-art-split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  color: var(--ink);
}

.release-art-oxide {
  background: linear-gradient(135deg, var(--oxide) 0 49%, var(--paper) 49% 51%, var(--oxide) 51%);
}

.release-art-grid {
  color: var(--white);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.18) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255,255,255,.18) 50%, transparent 50.2%),
    var(--violet);
}

.release-art-split {
  background: linear-gradient(90deg, var(--acid) 0 50%, var(--paper) 50%);
}

.release-art > span {
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.release-art > b {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.release-card-copy {
  position: relative;
  padding: 1.2rem 0 0.25rem;
}

.release-card-copy span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.release-card-copy h3 {
  max-width: 85%;
  margin: 0.45rem 0 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.release-card-copy i {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--oxide);
  font-style: normal;
}

.media-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  gap: 2rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.media-card {
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease;
}

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

.media-card:hover,
.media-card:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.media-card-acid {
  color: var(--ink);
  background: var(--acid);
}

.media-source {
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.media-card h3 {
  max-width: 40rem;
  margin: auto 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

.media-card p {
  max-width: 34rem;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.62;
}

.media-card i {
  margin-top: 1.3rem;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-card-number strong {
  margin-top: 2rem;
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.live {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, transparent 0 55%, rgba(10,10,10,.84) 55%),
    repeating-linear-gradient(-45deg, var(--oxide) 0 14px, #c83b24 14px 28px);
}

.live .section-index {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.live-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
}

.live-copy .section-lede {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.72);
}

.event-card {
  display: grid;
  grid-template-columns: 0.6fr 1.6fr auto;
  align-items: center;
  align-self: center;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(14px);
}

.event-action .button {
  width: 100%;
}

.event-date {
  display: grid;
  text-align: center;
}

.event-date span {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.event-date small,
.event-info p {
  margin: 0.6rem 0 0;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.event-info h3 {
  margin: 0.4rem 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.event-info > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.booking-line {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-line a {
  color: var(--acid);
  text-decoration: none;
}

.store-note {
  display: flex;
  max-width: 24rem;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line-light);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  margin-top: 0.28rem;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(217, 255, 67, 0.12);
}

.store-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  line-height: 1.55;
}

.store-note strong {
  display: block;
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(5rem, 8vw, 8rem);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.product-card {
  min-width: 0;
  color: var(--white);
  background: var(--ink);
}

.product-art {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 0.82;
  place-items: center;
  color: var(--ink);
}

.product-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22), transparent 45%);
  mix-blend-mode: screen;
}

.product-art[data-palette="bone"] { background: var(--paper); }
.product-art[data-palette="oxide"] { background: var(--oxide); }
.product-art[data-palette="violet"] { color: var(--white); background: var(--violet); }
.product-art[data-palette="acid"] { background: var(--acid); }

.product-art .product-wordmark {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.66;
  text-align: center;
  transform: rotate(-7deg) skew(-5deg);
}

.product-art .product-number {
  position: absolute;
  right: 0.9rem;
  bottom: 0.7rem;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-art .product-ring {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.24;
}

.product-copy {
  padding: 1.3rem 1.2rem 1.5rem;
  border-top: 1px solid var(--line-light);
}

.product-eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.55rem 0 0.75rem;
}

.product-title-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.product-price {
  flex: 0 0 auto;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-copy > p {
  min-height: 3.8em;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  line-height: 1.55;
}

.product-controls {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) 1.25fr;
  gap: 0.5rem;
}

.product-controls select {
  min-width: 0;
  padding: 0 0.75rem;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: var(--ink);
  font-size: 0.7rem;
}

.product-controls .button {
  min-height: 2.8rem;
  padding-inline: 0.6rem;
  font-size: 0.58rem;
}

.product-skeleton {
  aspect-ratio: 0.68;
  background: linear-gradient(90deg, #111 25%, #1b1b1b 50%, #111 75%) 0 0 / 200% 100%;
  animation: skeleton 1.4s infinite;
}

.store-promise {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 13vw, 13rem) var(--gutter) clamp(5rem, 8vw, 8rem);
  color: var(--ink);
  background: var(--oxide);
}

.closing::after {
  content: "V";
  position: absolute;
  z-index: 0;
  right: -3vw;
  bottom: -13vw;
  color: rgba(10, 10, 10, 0.08);
  font-family: var(--display);
  font-size: 48vw;
  font-weight: 950;
  line-height: 0.6;
}

.closing > * {
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-size: clamp(5rem, 14.7vw, 15.5rem);
}

.closing h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin-top: clamp(3rem, 6vw, 6rem);
}

.closing-links a {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 2rem var(--gutter);
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.site-footer p,
.site-footer > a:last-child {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer > a:last-child {
  justify-self: end;
}

.drawer-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 250ms ease, visibility 250ms ease;
}

.drawer-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 210;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 31rem);
  height: 100dvh;
  flex-direction: column;
  padding: 1.5rem;
  color: var(--white);
  background: var(--ink);
  border-left: 1px solid var(--line-light);
  transform: translateX(102%);
  transition: transform 450ms var(--ease-out);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-head,
.checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-light);
}

.cart-head .eyebrow,
.checkout-head .eyebrow {
  margin-bottom: 0.55rem;
  color: var(--oxide);
  font-size: 0.5rem;
}

.cart-head h2,
.checkout-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cart-lines {
  overflow-y: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 4.4rem 1fr auto;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.cart-line-art {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--oxide);
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 950;
}

.cart-line-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cart-line-copy > span {
  display: block;
  margin: 0.2rem 0 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-light);
}

.quantity-control button {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 1.7rem;
  font-size: 0.67rem;
  text-align: center;
}

.cart-line-price {
  font-size: 0.72rem;
  font-weight: 800;
}

.cart-empty {
  display: grid;
  flex: 1;
  place-content: center;
  text-align: center;
}

.cart-empty > span {
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 10rem;
  font-weight: 950;
  line-height: 0.75;
}

.cart-empty p {
  margin: 1.5rem 0 0.8rem;
  color: rgba(255, 255, 255, 0.58);
}

.text-button {
  color: var(--acid);
  border: 0;
  background: none;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-summary {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.cart-summary .cart-total {
  margin-top: 1rem;
  padding-top: 1rem;
  color: var(--white);
  border-top: 1px solid var(--line-light);
}

.cart-total strong {
  color: var(--acid);
  font-size: 1rem;
}

.cart-summary > p {
  margin: 0.9rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6rem;
}

.checkout-modal {
  width: min(calc(100% - 2rem), 65rem);
  max-height: calc(100dvh - 2rem);
  padding: 0;
  color: var(--white);
  border: 1px solid var(--line-light);
  background: var(--ink);
}

.checkout-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(7px);
}

.checkout-shell {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
  gap: 2rem;
  margin-top: 2rem;
}

.checkout-fields h3 {
  margin: 1.6rem 0 0.9rem;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.checkout-fields h3:first-child {
  margin-top: 0;
}

.checkout-fields label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-fields label > span {
  opacity: 0.55;
  font-weight: 500;
}

.checkout-fields input,
.checkout-fields select {
  width: 100%;
  height: 2.9rem;
  padding: 0 0.8rem;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 0;
  outline: none;
  background: #111;
  font-size: 0.78rem;
  text-transform: none;
}

.checkout-fields input:focus,
.checkout-fields select:focus {
  border-color: var(--acid);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.square-status {
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  border: 1px dashed var(--line-light);
  font-size: 0.65rem;
}

#card-container {
  margin-top: 0.75rem;
}

.payment-message {
  min-height: 1.3rem;
  margin: 0.65rem 0 0;
  color: var(--oxide);
  font-size: 0.68rem;
}

.checkout-order {
  align-self: start;
  padding: 1.4rem;
  color: var(--ink);
  background: var(--acid);
}

.checkout-order > span {
  display: block;
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.checkout-order > strong {
  display: block;
  margin: 0.5rem 0 1.4rem;
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.checkout-order [data-checkout-lines] {
  padding: 1rem 0;
  border-block: 1px solid rgba(10, 10, 10, 0.28);
}

.checkout-order [data-checkout-lines] div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.45rem 0;
  font-size: 0.63rem;
}

.checkout-order > p {
  margin: 1rem 0 0;
  font-size: 0.58rem;
  line-height: 1.5;
}

.checkout-pay {
  margin-top: 1.5rem;
}

.checkout-pay span {
  margin-left: 0.5rem;
}

.checkout-pay:disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.toast {
  position: fixed;
  z-index: 400;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: min(24rem, calc(100% - 2.4rem));
  padding: 1rem 1.2rem;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  transform: translateY(1rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.toast.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes skeleton {
  to { background-position: -200% 0; }
}

@media (max-width: 1120px) {
  .hero-intro {
    grid-template-columns: minmax(17rem, 28rem);
    margin-left: 9vw;
  }

  .hero-orbit {
    right: 3vw;
  }

  .legacy-heading {
    grid-template-columns: 0.8fr 2.2fr;
  }

  .legacy-heading .section-lede {
    grid-column: 2;
  }

  .impact-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .impact-card:last-child {
    grid-column: span 2;
    min-height: 16rem;
  }

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

  .event-card {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .event-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-content: center;
    gap: 0.38rem;
    color: var(--white);
    border: 0;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.22rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-0.22rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 4.4rem;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid var(--line-light);
    transform: translateY(-130%);
    transition: transform 350ms var(--ease-out);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-title {
    font-size: clamp(4.3rem, 17.5vw, 8rem);
  }

  .hero-title span:nth-child(2) {
    margin-left: 0;
  }

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

  .hero-orbit {
    top: auto;
    right: -2rem;
    bottom: 3rem;
    width: 11rem;
    opacity: 0.48;
    transform: none;
  }

  .hero-signal {
    display: none;
  }

  .legacy-heading,
  .media-heading {
    grid-template-columns: 1fr;
  }

  .legacy-heading .section-lede {
    grid-column: auto;
  }

  .impact-grid,
  .release-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .impact-card-large,
  .impact-card:last-child,
  .media-card-wide {
    grid-column: auto;
  }

  .impact-card {
    min-height: 19rem;
  }

  .impact-number {
    margin-bottom: 3.5rem;
  }

  .timeline-copy {
    grid-template-columns: 1fr 1.6fr;
  }

  .timeline-copy p:last-child {
    grid-column: 2;
  }

  .release-feature {
    grid-template-columns: 1fr;
  }

  .release-art-feature {
    max-width: 38rem;
  }

  .media-card {
    min-height: 20rem;
  }

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

  .booking-line {
    grid-column: auto;
  }

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

  .checkout-order {
    grid-row: 1;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: span 2;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 4.4rem;
  }

  .brand-copy {
    display: none;
  }

  .cart-trigger {
    font-size: 0;
  }

  .cart-count {
    font-size: 0.65rem;
  }

  .hero {
    min-height: 47rem;
    padding-bottom: 5.5rem;
  }

  .hero-copy {
    min-height: 35rem;
  }

  .hero-title {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
    line-height: 0.83;
  }

  .hero .eyebrow {
    max-width: 17rem;
    line-height: 1.55;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-right: 2rem;
  }

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

  .button {
    min-height: 3rem;
    padding-inline: 0.8rem;
    font-size: 0.58rem;
  }

  .hero-orbit {
    display: none;
  }

  .hero-foot {
    right: 1.25rem;
    bottom: 1.2rem;
    left: 1.25rem;
    font-size: 0.42rem;
  }

  .hero-foot span:last-child {
    display: none;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-index {
    margin-bottom: 2.2rem;
  }

  .section-title {
    font-size: clamp(2.75rem, 12.2vw, 4.8rem);
    line-height: 0.82;
  }

  .impact-grid {
    margin-top: 3.8rem;
  }

  .impact-card {
    min-height: 16rem;
    padding: 1.5rem;
  }

  .impact-number {
    margin-bottom: 3rem;
    font-size: 5.5rem;
  }

  .timeline {
    margin-top: 5rem;
  }

  .timeline-item {
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
    padding: 1.8rem 0;
  }

  .timeline-copy {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .timeline-copy p:last-child {
    grid-column: auto;
  }

  .quote-break > p {
    font-size: 2.75rem;
  }

  .music-heading,
  .store-heading {
    display: grid;
  }

  .release-feature,
  .release-grid {
    margin-top: 3.8rem;
  }

  .release-info h3 {
    font-size: 4rem;
  }

  .release-grid {
    gap: 1.5rem;
    border: 0;
    background: transparent;
  }

  .release-card {
    padding: 0;
  }

  .media-grid {
    margin-top: 3.8rem;
  }

  .media-card {
    min-height: 18rem;
  }

  .live {
    background:
      linear-gradient(rgba(10,10,10,.68), rgba(10,10,10,.88)),
      repeating-linear-gradient(-45deg, var(--oxide) 0 14px, #c83b24 14px 28px);
  }

  .event-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .event-date {
    text-align: left;
  }

  .booking-line {
    display: grid;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border: 0;
    background: transparent;
  }

  .product-art {
    aspect-ratio: 1;
  }

  .store-promise {
    display: grid;
    gap: 0.7rem;
  }

  .closing h2 {
    font-size: clamp(4.5rem, 21vw, 7.5rem);
  }

  .closing-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer > a:last-child {
    align-self: flex-end;
  }

  .cart-drawer {
    width: 100%;
  }

  .checkout-modal {
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border: 0;
  }

  .checkout-shell {
    min-height: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::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; }
}
