:root {
  color-scheme: dark;
  --ink: #080708;
  --black-plum: #140911;
  --charcoal: #19191c;
  --panel: #211719;
  --panel-2: #2a2320;
  --cream: #f3e6cc;
  --paper: #fff3dc;
  --muted: #bcae9b;
  --red: #e20e19;
  --deep-red: #8d121b;
  --orange: #ff6a2d;
  --cyan: #80b2ad;
  --blue-gray: #354a56;
  --green: #b7ff38;
  --line: rgba(243, 230, 204, 0.17);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 6px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(226, 14, 25, 0.08), transparent 24rem),
    linear-gradient(120deg, #080708 0%, #12080e 34%, #101820 68%, #080708 100%);
  font-family: var(--sans);
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--charcoal);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 8, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: 2.4rem auto;
  gap: 0.65rem;
  align-items: center;
  min-height: 2.6rem;
  color: var(--paper);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--red);
}

.brand-word {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.site-nav a,
.header-cta,
.mobile-action a {
  min-height: 2.6rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  border-color: rgba(226, 14, 25, 0.65);
  background: var(--red);
  color: var(--paper);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  filter: saturate(1.15) contrast(1.12);
  transform: scale(1.03);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 8, 0.96) 0%, rgba(8, 7, 8, 0.76) 38%, rgba(8, 7, 8, 0.24) 78%),
    linear-gradient(180deg, rgba(8, 7, 8, 0.4) 0%, rgba(8, 7, 8, 0.7) 100%);
}

.hero-noise {
  pointer-events: none;
  opacity: 0.38;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 5px),
    linear-gradient(110deg, rgba(226, 14, 25, 0.26), transparent 36%, rgba(128, 178, 173, 0.16) 74%, transparent);
  mix-blend-mode: screen;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.42fr);
  gap: 2rem;
  align-items: end;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7.2rem 0 4.7rem;
}

.eyebrow,
.panel-kicker,
.event-series,
.release-meta span,
.partner-item span {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 52rem;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 8.5rem;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(226, 14, 25, 0.32);
}

.hero-statement {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--paper);
  font-size: 1.2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button,
.filter-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 12px 40px rgba(226, 14, 25, 0.32);
}

.button-secondary {
  background: rgba(243, 230, 204, 0.1);
  color: var(--paper);
}

.button-ghost,
.text-link {
  background: transparent;
  color: var(--cyan);
}

.button:hover,
.filter-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.next-panel {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(243, 230, 204, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20, 9, 17, 0.88), rgba(8, 7, 8, 0.84)),
    rgba(8, 7, 8, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.next-panel::before {
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 0.45rem;
  content: "";
  background: linear-gradient(180deg, var(--red), var(--orange), var(--cyan));
}

.next-panel h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 3.1rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.next-kicker {
  margin: 0.35rem 0 1rem;
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.event-meta {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}

.event-meta div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.event-meta dt,
.event-details,
.release-meta small,
.site-footer,
.mobile-action {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.event-meta dd {
  margin: 0;
  color: var(--paper);
  font-weight: 800;
}

.lineup-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.lineup-pill {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid rgba(243, 230, 204, 0.22);
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
}

.ticker span {
  flex: 1 0 auto;
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.14);
  text-align: center;
}

.proof-band {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(226, 14, 25, 0.12), transparent 42%, rgba(128, 178, 173, 0.09)),
    rgba(8, 7, 8, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.proof-item {
  min-height: 10.5rem;
  padding: 1.15rem 1rem;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-item h3 {
  max-width: 18rem;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.proof-item p {
  max-width: 23rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.manifesto-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
  gap: 1rem;
  align-items: stretch;
  padding: 4.4rem 0;
}

.manifesto-copy {
  display: grid;
  align-content: center;
  min-height: 24rem;
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--line);
}

.manifesto-copy p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--paper);
  font-size: 1.12rem;
}

.manifesto-pillars {
  display: grid;
  gap: 0.75rem;
}

.manifesto-pillars article {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  gap: 0 0.9rem;
  align-content: center;
  min-height: 7.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(226, 14, 25, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.manifesto-pillars article:nth-child(2) {
  background:
    linear-gradient(125deg, rgba(128, 178, 173, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.manifesto-pillars span {
  grid-row: span 2;
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.55rem;
  line-height: 0.9;
}

.manifesto-pillars h3,
.cta-routes h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.manifesto-pillars p,
.cta-routes p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.2rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 42rem) minmax(16rem, 28rem);
  gap: 0.85rem 2rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  grid-column: 1;
}

.section-heading p:not(.eyebrow),
.section-heading .text-link {
  grid-column: 2;
}

.section-heading .text-link {
  justify-self: start;
}

.section-heading h2,
.manifesto-copy h2,
.label-copy h2,
.cta-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.label-copy p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.event-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.event-lanes span {
  min-height: 2.4rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.event-card,
.artist-card,
.release-card,
.partner-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.event-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.event-card:hover img,
.artist-card:hover img,
.release-card:hover img,
.gallery-item:hover img {
  transform: scale(1.04);
}

.event-media img,
.artist-card img,
.release-card img,
.gallery-item img {
  transition: transform 420ms ease, filter 420ms ease;
}

.event-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius);
  background: rgba(8, 7, 8, 0.76);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.event-body {
  padding: 1rem;
}

.event-body h3,
.artist-info h3,
.release-meta h3,
.partner-item h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  gap: 0.15rem;
  margin: 0.75rem 0;
}

.event-summary {
  min-height: 5rem;
  margin: 0;
  color: var(--muted);
}

.event-lineup {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.event-lineup p {
  padding: 0.8rem 0 0;
  margin: 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-lineup ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.6rem 0 0;
  margin: 0;
  list-style: none;
}

.lineup-name {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.28rem 0.45rem;
  border: 1px solid rgba(241, 238, 229, 0.14);
  border-radius: 0.35rem;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.35fr) minmax(0, 0.65fr);
  gap: 1.2rem;
  align-items: start;
}

.section-heading-sticky {
  position: sticky;
  top: 5.8rem;
  display: block;
  margin: 0;
  padding-right: 1rem;
}

.section-heading-sticky h2 {
  margin-bottom: 1rem;
  font-size: 3.9rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.artist-card {
  position: relative;
  min-height: 24rem;
}

.artist-card.is-offset {
  transform: translateY(2rem);
}

.artist-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 18%, rgba(8, 7, 8, 0.88) 100%);
}

.artist-info {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
}

.artist-info span {
  display: block;
  max-width: 22rem;
  margin-top: 0.55rem;
  color: var(--muted);
}

.artist-roster {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.roster-group {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.roster-group:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(255, 59, 48, 0.09), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.roster-group p {
  margin: 0 0 0.5rem;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.roster-group span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.roster-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.roster-chip {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(241, 238, 229, 0.16);
  border-radius: 0.4rem;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.label-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.32fr) minmax(0, 0.68fr);
  gap: 1rem;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.label-copy {
  align-self: center;
  padding: 2rem 1.4rem 2rem 0;
}

.label-copy h2 {
  font-size: 3.45rem;
}

.label-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.label-actions .text-link {
  min-height: 2.55rem;
}

.release-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.release-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 26rem;
}

.release-card img {
  aspect-ratio: 1 / 1;
}

.release-meta {
  padding: 1rem;
}

.release-meta h3 {
  margin-top: 0.55rem;
}

.release-meta p {
  margin: 0.15rem 0 0.75rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-meta small {
  display: block;
  text-transform: none;
}

.release-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  margin-top: 0.9rem;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 12rem;
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.gallery-item.is-tall {
  grid-row: span 2;
}

.gallery-item.is-wide {
  grid-column: span 2;
}

.compact-heading {
  grid-template-columns: 1fr;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-item {
  min-height: 11rem;
  padding: 1rem;
}

.partner-item h3 {
  font-size: 2.3rem;
}

.partner-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 5.2rem 0 6rem;
}

.cta-copy h2 {
  max-width: 54rem;
}

.cta-copy p {
  max-width: 38rem;
  margin-top: 0.9rem;
}

.cta-actions {
  justify-content: flex-end;
}

.cta-routes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cta-routes article {
  min-height: 10.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(226, 14, 25, 0.11), transparent 45%),
    rgba(255, 255, 255, 0.035);
}

.cta-routes span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.mobile-action {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-action a {
  display: grid;
  place-items: center;
  background: rgba(8, 7, 8, 0.86);
  backdrop-filter: blur(18px);
}

.mobile-action a:first-child {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
}

.mobile-action.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(calc(100% + 1rem));
}

.is-missing {
  object-fit: contain;
  opacity: 0.3;
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-shell,
  .manifesto-section,
  .section-heading,
  .split-section,
  .label-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p:not(.eyebrow),
  .section-heading .text-link {
    grid-column: 1;
  }

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

  .next-panel {
    max-width: 32rem;
  }

  .manifesto-copy {
    min-height: auto;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manifesto-pillars,
  .cta-routes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 44rem);
  }

  .proof-item {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .events-grid,
  .partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .release-row,
  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .label-copy {
    padding-right: 0;
  }

  .section-heading-sticky {
    position: static;
  }

  .artist-roster {
    grid-column: 1;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0.65rem 0.75rem;
  }

  .brand-word {
    display: none;
  }

  .header-cta {
    min-height: 2.35rem;
    padding: 0.6rem 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    width: min(100% - 1rem, 44rem);
    gap: 1rem;
    padding: 6rem 0 2.6rem;
  }

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

  .hero-statement {
    font-size: 1rem;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(8, 7, 8, 0.88) 0%, rgba(8, 7, 8, 0.72) 44%, rgba(8, 7, 8, 0.92) 100%);
  }

  .ticker {
    flex-wrap: wrap;
  }

  .ticker span {
    flex: 1 1 33%;
  }

  .next-panel h2,
  .manifesto-copy h2,
  .section-heading h2,
  .section-heading-sticky h2,
  .label-copy h2,
  .cta-copy h2 {
    font-size: 2.85rem;
  }

  .proof-grid,
  .events-grid,
  .manifesto-pillars,
  .artist-grid,
  .release-row,
  .partner-list,
  .cta-routes {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    width: min(100% - 1rem, 44rem);
  }

  .proof-item h3 {
    font-size: 1.8rem;
  }

  .section {
    width: min(100% - 1rem, 44rem);
    padding: 3.6rem 0;
  }

  .section-heading {
    gap: 0.85rem;
  }

  .artist-card,
  .artist-card.is-offset {
    min-height: 22rem;
    transform: none;
  }

  .artist-roster {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .masonry-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 10rem;
    gap: 0.55rem;
  }

  .cta-section {
    padding-bottom: 7.4rem;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .mobile-action {
    display: grid;
  }
}
