:root {
  --cream: #fffcf5;
  --ink: #0b0b0a;
  --orange: #ff440c;
  --blue: #b9daff;
  --yellow: #ffbd40;
  --line: rgba(11, 11, 10, 0.22);
  --pad: clamp(1rem, 2.1vw, 2.25rem);
  --display: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--cream);
}

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

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

button {
  color: inherit;
  font: inherit;
}

.micro {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-pad {
  padding-inline: var(--pad);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--pad);
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
  transition: visibility 0s 0.9s;
}

.loader::after {
  position: absolute;
  inset: 0;
  background: var(--blue);
  content: "";
  transform: translateY(101%);
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.is-done {
  visibility: hidden;
}

.loader.is-done::after {
  transform: translateY(0);
}

.loader.is-done .loader__top,
.loader.is-done .loader__center,
.loader.is-done .loader__rail,
.loader.is-done .loader__count {
  opacity: 0;
  transform: translateY(-25px);
  transition: 0.35s ease;
}

.loader__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.loader__center {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(48vw, 460px);
  text-align: center;
}

.loader__center img {
  transform-origin: center;
  animation: loader-float 1.5s ease-in-out infinite alternate;
}

.loader__word {
  margin: 1.5rem 0 0;
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.22em;
}

.loader__rail {
  position: absolute;
  right: var(--pad);
  bottom: var(--pad);
  left: var(--pad);
  height: 2px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.loader__rail span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ink);
}

.loader__count {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

@keyframes loader-float {
  to { transform: rotate(-3deg) translateY(-8px); }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  display: grid;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  place-items: center;
  transform: translate3d(-100px, -100px, 0);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
  mix-blend-mode: difference;
}

.cursor span {
  opacity: 0;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.cursor.is-active {
  width: 76px;
  height: 76px;
  background: var(--yellow);
  mix-blend-mode: normal;
}

.cursor.is-active span { opacity: 1; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1rem var(--pad);
  color: white;
  mix-blend-mode: difference;
  transition: transform 0.4s ease;
}

.nav.is-hidden { transform: translateY(-110%); }

.nav__brand {
  display: inline-flex;
  align-items: flex-start;
  justify-self: start;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.nav__brand sup {
  margin: -0.15rem 0 0 0.2rem;
  font-family: var(--sans);
  font-size: 0.4rem;
  letter-spacing: 0;
}

.nav__links {
  display: flex;
  gap: 2.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav > .pill { justify-self: end; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 145px;
  padding: 0.9rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease;
}

.pill i { font-style: normal; }
.pill--dark { background: var(--ink); color: white; }
.pill--dark:hover { background: var(--orange); color: var(--ink); }
.pill--light { background: var(--cream); color: var(--ink); }
.pill--light:hover { background: var(--blue); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: black;
  transition: transform 0.3s ease;
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  padding: 7rem var(--pad) var(--pad);
  visibility: hidden;
  background: var(--blue);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.65s;
}

.menu.is-open {
  visibility: visible;
  clip-path: inset(0);
  transition-delay: 0s;
}

.menu nav { align-self: center; }

.menu nav a {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-family: var(--display);
  font-size: clamp(3.3rem, 15vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu nav small {
  width: 3rem;
  padding-top: 0.3rem;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0;
}

.menu__foot {
  display: flex;
  align-self: end;
  justify-content: space-between;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #07151e;
  color: white;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 48% 51%;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.08);
  will-change: transform;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 11, 0.28), transparent 40%, rgba(0, 0, 0, 0.55));
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background: radial-gradient(circle 25vw at var(--mx, 70%) var(--my, 35%), rgba(255, 189, 64, 0.8), transparent 75%);
  mix-blend-mode: color-dodge;
}

.hero::after,
.release::after,
.contact::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: overlay;
}

.hero__meta {
  position: absolute;
  top: 5.4rem;
  right: var(--pad);
  left: var(--pad);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero__location { display: flex; align-items: center; gap: 0.45rem; }
.hero__location i { width: 7px; height: 7px; border-radius: 50%; background: #64ff8a; box-shadow: 0 0 0 5px rgba(100,255,138,.15); }

.hero__title-wrap {
  position: absolute;
  top: 48%;
  right: var(--pad);
  left: var(--pad);
  z-index: 2;
  transform: translateY(-44%);
}

.hero__kicker {
  margin: 0 0 1.1rem 0.6vw;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7.5rem, 19.5vw, 21rem);
  font-weight: 900;
  letter-spacing: -0.105em;
  line-height: 0.57;
  text-transform: uppercase;
}

.hero__line {
  display: block;
  transform: translateY(130%);
}

.hero__line--two {
  align-self: flex-end;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.16vw, 3px) white;
}

.hero__chrome {
  position: absolute;
  top: 39%;
  left: 51%;
  z-index: 3;
  width: min(38vw, 580px);
  opacity: 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
  transform: translate(-50%, -50%) rotate(-4deg) scale(0.8);
}

.is-ready .hero__line {
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-ready .hero__line--two { transition-delay: 0.08s; }
.is-ready .hero__chrome { opacity: 1; transform: translate(-50%, -50%) rotate(-4deg) scale(1); transition: 1.2s .35s cubic-bezier(.16,1,.3,1); }

.hero__bottom {
  position: absolute;
  right: var(--pad);
  bottom: 1.6rem;
  left: var(--pad);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.hero__listen {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: start;
}

.play-icon {
  display: grid;
  width: 48px;
  height: 48px;
  padding-left: 2px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  font-size: 0.65rem;
  place-items: center;
}

.hero__listen span:last-child {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero__listen small { display: block; margin-bottom: .25rem; opacity: .6; font-size: .55rem; }
.hero__bottom > p { justify-self: center; margin: 0; font-size: .8rem; line-height: 1.25; text-align: center; }
.scroll-cue { display: flex; align-items: center; gap: .8rem; justify-self: end; font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.scroll-cue i { display: grid; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-style: normal; place-items: center; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  contain: paint;
}

.ticker--cream { background: var(--cream); color: var(--ink); }
.ticker__track { display: flex; width: max-content; align-items: center; animation: ticker 23s linear infinite; }
.ticker span { padding: .55rem 1.2rem .7rem; font-family: var(--display); font-size: clamp(2.3rem, 5vw, 5.2rem); font-weight: 900; letter-spacing: -.08em; line-height: .8; }
.ticker b { font-size: clamp(1.5rem, 3vw, 3rem); color: var(--orange); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.manifesto {
  position: relative;
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
  background: var(--cream);
}

.manifesto__copy {
  position: relative;
  z-index: 2;
  margin: clamp(4rem, 9vw, 9rem) 0 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 8.9vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.82;
  text-transform: uppercase;
}

.manifesto__copy em {
  color: var(--orange);
  font-style: normal;
}

.manifesto__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-top: clamp(3rem, 7vw, 8rem);
}

.manifesto__note {
  grid-column: 2 / 5;
  align-self: center;
  margin: 0;
  max-width: 21rem;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.manifesto__portrait { grid-column: 6 / 11; margin: 0; }
.image-shell { position: relative; overflow: hidden; }
.image-shell::after { position: absolute; inset: 0; background: var(--orange); content: ""; transform: scaleY(0); transform-origin: bottom; transition: transform .5s ease; mix-blend-mode: multiply; }
.image-shell:hover::after { transform: scaleY(1); }
.manifesto__portrait .image-shell { aspect-ratio: .8; }
.manifesto__portrait img, .gallery img, .about__photo img, .release__art > img { width: 100%; height: 115%; object-fit: cover; transform: translateY(-7%); will-change: transform; }
figcaption { display: flex; justify-content: space-between; margin-top: .65rem; }

.manifesto__badge {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  width: clamp(120px, 13vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  place-items: center;
}

.manifesto__badge svg { position: absolute; inset: 7%; width: 86%; animation: spin 16s linear infinite; }
.manifesto__badge text { font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: 1.1px; }
.manifesto__badge > span { font-size: clamp(1.8rem, 3vw, 3.6rem); }
@keyframes spin { to { transform: rotate(360deg); } }

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--blue);
  border-block: 1px solid var(--ink);
}

.numbers article {
  position: relative;
  min-height: clamp(360px, 28vw, 540px);
  padding: var(--pad);
  overflow: hidden;
  border-right: 1px solid var(--ink);
}

.numbers article:last-child { border: 0; background: var(--yellow); }
.numbers strong { display: inline-block; font-family: var(--display); font-size: clamp(6rem, 11.5vw, 13rem); font-weight: 900; letter-spacing: -.09em; line-height: .78; white-space: nowrap; }
.numbers sup { display: inline-block; margin-left: .15rem; font-family: var(--display); font-size: clamp(1.5rem, 2.4vw, 3rem); line-height: 1; vertical-align: top; }
.numbers p { position: absolute; right: var(--pad); bottom: var(--pad); left: var(--pad); margin: 0; padding-top: .7rem; border-top: 1px solid var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.release {
  position: relative;
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.release > * { position: relative; z-index: 2; }
.section-index--light { border-color: rgba(255,255,255,.25); }
.release__header { position: relative; display: flex; align-items: flex-end; justify-content: space-between; margin: clamp(3rem, 7vw, 7rem) 0; }
.release__header h2, .moments__heading h2, .about__content h2 { margin: 0; font-family: var(--display); font-size: clamp(4.5rem, 12vw, 13rem); font-weight: 900; letter-spacing: -.09em; line-height: .76; text-transform: uppercase; }
.release__header h2 span { color: var(--orange); }
.release__orb { position: relative; width: clamp(150px, 20vw, 300px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 30%, white, #9b9b9b 26%, #111 59%, #eee 83%, #333); }
.release__orb img { position: absolute; top: 50%; left: 50%; width: 110%; transform: translate(-50%,-50%) rotate(7deg); animation: orb 7s ease-in-out infinite alternate; }
@keyframes orb { to { transform: translate(-50%,-50%) rotate(-7deg) scale(.93); } }

.release__feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); min-height: 640px; height: min(58vw, 920px); border: 1px solid rgba(255,255,255,.35); }
.release__art { position: relative; min-height: 0; overflow: hidden; }
.release__art::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); content: ""; }
.release__art > img { filter: saturate(1.15) contrast(1.08); transition: filter .5s ease, transform .5s ease; }
.release__art:hover > img { filter: saturate(.2) contrast(1.2); }
.release__stamp { position: absolute; top: 1rem; left: 1rem; z-index: 2; display: grid; width: 78px; height: 78px; border: 1px solid white; border-radius: 50%; font-size: .58rem; font-weight: 800; line-height: 1.1; text-align: center; place-items: center; transform: rotate(-10deg); }
.release__play { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; display: grid; width: 76px; height: 76px; padding-left: 3px; border-radius: 50%; background: var(--blue); color: var(--ink); place-items: center; }
.release__info { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 4vw, 4rem); border-left: 1px solid rgba(255,255,255,.35); }
.release__info .micro { position: absolute; top: 1.2rem; right: 1.2rem; left: 1.2rem; display: flex; justify-content: space-between; }
.release__info h3 { margin: 0; color: var(--blue); font-family: var(--display); font-size: clamp(6rem, 13.5vw, 14rem); font-weight: 900; letter-spacing: -.1em; line-height: .72; }
.release__info p { max-width: 26rem; margin: 2.4rem 0; font-size: clamp(1.15rem, 1.7vw, 1.6rem); letter-spacing: -.035em; line-height: 1.12; }
.release__info .pill { align-self: flex-start; }

.tracklist { margin-top: 3.5rem; border-top: 1px solid rgba(255,255,255,.35); }
.tracklist a { display: grid; grid-template-columns: 70px 1fr auto 50px; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.35); transition: padding .35s ease, background .35s ease, color .35s ease; }
.tracklist a:hover { padding-inline: 1rem; background: var(--cream); color: var(--ink); }
.tracklist__no, .tracklist a > span:nth-of-type(2) { font-size: .67rem; font-weight: 700; letter-spacing: .08em; }
.tracklist strong { font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 4rem); letter-spacing: -.06em; text-transform: uppercase; }
.tracklist i { justify-self: end; font-style: normal; }

.support { padding: 1.5rem 0 2.5rem; overflow: hidden; background: var(--orange); border-block: 1px solid var(--ink); }
.support { contain: paint; }
.support > p { margin: 0 var(--pad) 2rem; }
.support__marquee div { display: flex; width: max-content; align-items: center; animation: ticker 27s linear infinite reverse; }
.support__marquee span { padding-inline: 1.2rem; font-family: var(--display); font-size: clamp(3.5rem, 8vw, 9rem); font-weight: 900; letter-spacing: -.09em; line-height: .72; }
.support__marquee b { font-size: clamp(2rem, 4vw, 5rem); font-weight: 400; }

.moments { padding-top: clamp(6rem, 10vw, 10rem); padding-bottom: clamp(6rem, 10vw, 10rem); }
.moments__heading { display: grid; grid-template-columns: 2fr 1fr; align-items: end; gap: 2rem; margin: clamp(3rem, 7vw, 7rem) 0; }
.moments__heading h2 { font-size: clamp(4.6rem, 10vw, 11rem); }
.moments__heading p { max-width: 20rem; margin: 0 0 1rem; font-size: clamp(1rem, 1.5vw, 1.4rem); line-height: 1.18; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2vw, 2rem); align-items: start; }
.gallery__item { margin: 0; }
.gallery__item > img { transition: filter .55s ease; }
.gallery__item:hover > img { filter: saturate(.2) contrast(1.15); }
.gallery__item figcaption { padding-bottom: .5rem; border-bottom: 1px solid var(--ink); font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.gallery__item figcaption i { font-style: normal; }
.gallery__item--a { grid-column: 1 / 6; }
.gallery__item--a > img { aspect-ratio: .8; object-fit: cover; }
.gallery__item--b { grid-column: 8 / 13; margin-top: 15vw; }
.gallery__item--b > img { aspect-ratio: .74; object-fit: cover; }
.gallery__quote { grid-column: 2 / 8; margin: -2vw 0 8vw; color: var(--orange); font-family: var(--display); font-size: clamp(3.2rem, 7vw, 7.5rem); font-weight: 900; letter-spacing: -.085em; line-height: .78; text-transform: uppercase; transform: rotate(-3deg); }
.gallery__item--c { grid-column: 8 / 12; }
.gallery__item--c > img { aspect-ratio: .74; object-fit: cover; }
.gallery__item--d { grid-column: 1 / 5; margin-top: 8vw; }
.gallery__item--d > img { aspect-ratio: .72; object-fit: cover; }
.gallery__item--e { grid-column: 6 / 13; margin-top: 16vw; }
.gallery__item--e > img { aspect-ratio: 1.05; object-fit: cover; object-position: 50% 62%; }

.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding-top: var(--pad); padding-bottom: var(--pad); background: var(--blue); border-top: 1px solid var(--ink); }
.about__visual { position: relative; min-height: calc(100vh - var(--pad) * 2); overflow: hidden; background: var(--ink); }
.about__photo { position: absolute; inset: 9% 13%; z-index: 2; overflow: hidden; }
.about__photo img { filter: saturate(.8) contrast(1.08); }
.about__sun { position: absolute; right: -13%; bottom: -8%; width: 58%; aspect-ratio: 1; border-radius: 50%; background: var(--orange); }
.about__visual .micro { position: absolute; bottom: 1rem; left: 1rem; z-index: 3; color: white; }
.about__content { display: flex; flex-direction: column; padding: 0 0 0 var(--pad); }
.about__content h2 { margin: auto 0; font-size: clamp(4.3rem, 7.4vw, 8.2rem); line-height: .79; }
.about__copy { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; border-top: 1px solid var(--ink); }
.about__copy p { margin: 1rem 0 0; font-size: clamp(.9rem, 1.2vw, 1.15rem); line-height: 1.26; }
.about__actions { display: flex; align-items: center; justify-content: space-between; margin-top: 2.5rem; }

.contact {
  position: relative;
  padding: var(--pad);
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
}

.contact > * { position: relative; z-index: 2; }
.contact__top { display: flex; justify-content: space-between; padding-bottom: .8rem; border-bottom: 1px solid var(--ink); }
.contact__headline { margin: clamp(5rem, 10vw, 10rem) 0; font-family: var(--display); font-size: clamp(5rem, 13.4vw, 14.5rem); font-weight: 900; letter-spacing: -.1em; line-height: .64; text-transform: uppercase; }
.contact__headline span { display: block; }
.contact__shift { margin-left: 10vw; color: transparent; -webkit-text-stroke: clamp(1px,.12vw,2px) var(--ink); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad); margin-bottom: clamp(5rem, 10vw, 10rem); }
.contact-card { display: grid; min-height: 220px; padding: 1.3rem; border: 1px solid var(--ink); background: rgba(255,255,255,.08); transition: background .35s ease, color .35s ease; }
.contact-card:hover { background: var(--ink); color: var(--cream); }
.contact-card small { font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-card strong { align-self: end; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.5rem); letter-spacing: -.07em; line-height: .8; text-transform: uppercase; }
.contact-card__links { display: flex; flex-wrap: wrap; gap: .45rem 1.4rem; margin-top: .9rem; padding-top: .75rem; border-top: 1px solid currentColor; }
.contact-card__links a { font-size: .75rem; font-weight: 700; }
.contact-card__links a:hover { text-decoration: underline; }

footer { padding-top: var(--pad); border-top: 1px solid var(--ink); }
.footer__mark { display: block; width: 100%; height: clamp(150px, 27vw, 410px); overflow: hidden; background: var(--ink); }
.footer__mark img { width: 100%; height: 100%; padding: 4%; object-fit: contain; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.footer__links a:hover { text-decoration: underline; }
.footer__end { display: flex; justify-content: space-between; padding-top: 1rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.16,1,.3,1);
}

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

.media-reveal { position: relative; overflow: hidden; }
.media-reveal.is-visible { animation: media-enter .9s cubic-bezier(.16,1,.3,1) both; }

@keyframes media-enter {
  from { opacity: .72; clip-path: inset(0 0 12% 0); transform: translateY(18px); }
  to { opacity: 1; clip-path: inset(0); transform: none; }
}

@media (max-width: 800px) {
  .cursor { display: none; }
  .nav { grid-template-columns: 1fr auto; mix-blend-mode: normal; }
  .nav__links, .nav > .pill { display: none; }
  .nav__brand { color: white; }
  .menu-toggle { display: block; justify-self: end; }
  .menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero__meta { top: 5rem; }
  .hero__meta span:nth-child(2) { display: none; }
  .hero__title-wrap { top: 45%; }
  .hero__title { font-size: clamp(6rem, 28vw, 10rem); line-height: .62; }
  .hero__line--two { align-self: flex-start; margin-left: 5vw; }
  .hero__chrome { top: 95%; left: 54%; width: 72vw; }
  .hero__bottom { grid-template-columns: 1fr auto; }
  .hero__bottom > p { display: none; }
  .manifesto__copy { font-size: clamp(3.1rem, 12.5vw, 6rem); }
  .manifesto__grid { display: flex; flex-direction: column; gap: 3rem; }
  .manifesto__note { max-width: 85%; }
  .manifesto__portrait { width: 82%; margin-left: auto; }
  .manifesto__badge { right: auto; bottom: 18%; left: 2%; }
  .numbers { grid-template-columns: 1fr; }
  .numbers article { min-height: 62vw; border-right: 0; border-bottom: 1px solid var(--ink); }
  .release__header { align-items: center; }
  .release__header h2 { font-size: 18vw; }
  .release__orb { width: 28vw; }
  .release__feature { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .release__art { min-height: 115vw; }
  .release__info { min-height: 100vw; border-top: 1px solid rgba(255,255,255,.35); border-left: 0; }
  .release__info h3 { font-size: 33vw; }
  .tracklist a { grid-template-columns: 45px 1fr auto; }
  .tracklist a > span:nth-of-type(2) { display: none; }
  .moments__heading { grid-template-columns: 1fr; }
  .moments__heading h2 { font-size: 17vw; }
  .moments__heading p { margin-left: 30%; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .gallery__item--a { grid-column: 1 / 6; }
  .gallery__item--b { grid-column: 2 / 7; margin-top: 14vw; }
  .gallery__quote { grid-column: 1 / 7; margin: 8vw 0; font-size: 13vw; }
  .gallery__item--c { grid-column: 2 / 6; }
  .gallery__item--d { grid-column: 1 / 5; }
  .gallery__item--e { grid-column: 2 / 7; }
  .about { grid-template-columns: 1fr; padding: var(--pad); }
  .about__visual { min-height: 115vw; }
  .about__content { min-height: 130vw; padding: 3rem 0 0; }
  .about__content h2 { font-size: 16vw; }
  .about__copy { grid-template-columns: 1fr; }
  .about__copy p + p { margin-top: 0; }
  .contact__headline { font-size: 19vw; line-height: .68; }
  .contact__shift { margin-left: 0; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .micro { font-size: .58rem; }
  .loader__center { width: 70vw; }
  .hero__media img { object-position: 54% 50%; }
  .hero__meta { border-top: 0; }
  .hero__kicker { font-size: .62rem; }
  .hero__title { font-size: 25vw; }
  .hero__bottom { bottom: 1rem; }
  .scroll-cue span { display: none; }
  .ticker span { font-size: 2.3rem; }
  .section-index { grid-template-columns: 52px 1fr; }
  .manifesto__copy { font-size: 12vw; line-height: .84; }
  .manifesto__note { margin-left: 12%; }
  .numbers strong { font-size: 37vw; }
  .release__header { margin-block: 4rem; }
  .release__orb { display: none; }
  .release__header h2 { font-size: 22vw; }
  .release__info { min-height: 125vw; }
  .tracklist strong { font-size: 1.45rem; }
  .moments__heading p { margin-left: 18%; }
  .about__content { min-height: 170vw; }
  .about__copy p { font-size: .9rem; }
  .about__actions { align-items: flex-end; }
  .contact-card { min-height: 180px; }
  .footer__links { flex-wrap: wrap; gap: .8rem 1.5rem; }
}

@media (pointer: fine) {
  body, a, button { cursor: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal], .media-reveal { opacity: 1; transform: none; clip-path: none; }
  .hero__line { transform: none; }
  .hero__chrome { opacity: 1; transform: translate(-50%, -50%); }
}

/* Editorial refinement — clear hierarchy, robust imagery, restrained motion */
.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;
}

.cursor { display: none; }
.ticker { display: none; }
.section-index { display: none; }

@media (pointer: fine) {
  body, a, button { cursor: auto; }
}

.hero__title-wrap {
  top: auto;
  bottom: 16%;
  transform: none;
}

.hero__title {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}

.hero__chrome {
  position: relative;
  top: auto;
  left: auto;
  width: min(64vw, 1180px);
  margin-top: .8rem;
  opacity: 0;
  transform: translateY(40px);
}

.is-ready .hero__chrome {
  opacity: 1;
  transform: none;
  transition: opacity .9s .2s ease, transform 1s .2s cubic-bezier(.16,1,.3,1);
}

.hero__statement {
  margin: 1rem 0 0 .25rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ticker span {
  padding: .72rem 1.1rem;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  letter-spacing: -.035em;
  line-height: 1;
}

.ticker b {
  font-size: .9rem;
  color: var(--orange);
}

.section-index {
  grid-template-columns: 80px 1fr;
  padding-top: .8rem;
}

.manifesto {
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.manifesto__grid {
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
  margin-top: clamp(3rem, 5vw, 5rem);
}

.manifesto__words {
  grid-column: 1 / 7;
}

.manifesto__copy {
  margin: 0;
  font-size: clamp(4.3rem, 7.2vw, 8.3rem);
  letter-spacing: -.075em;
  line-height: .82;
}

.manifesto__note {
  max-width: 30rem;
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.25;
}

.manifesto__portrait {
  grid-column: 8 / 13;
  width: 100%;
  margin: 0;
}

.manifesto__portrait .image-shell { aspect-ratio: .82; }

.release__header {
  align-items: flex-end;
  margin: clamp(3rem, 5vw, 5rem) 0;
}

.release__header h2 {
  font-size: clamp(4.3rem, 8.7vw, 9.5rem);
  line-height: .78;
}

.release__header > p {
  margin: 0 0 .5rem;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.05;
  text-align: right;
}

.release__feature {
  grid-template-columns: 55% 45%;
  height: min(47vw, 840px);
  min-height: 620px;
}

.release__info {
  justify-content: flex-start;
}

.release__info .release__meta {
  position: static;
  display: flex;
  justify-content: space-between;
  margin: 0 0 auto;
}

.release__info h3 {
  margin-top: auto;
  font-size: clamp(6rem, 11vw, 12rem);
}

.release__play {
  width: 64px;
  height: 64px;
}

.moments {
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.moments__heading {
  margin: clamp(3rem, 5vw, 5rem) 0;
}

.moments__heading h2 {
  font-size: clamp(4.2rem, 8vw, 8.8rem);
  line-height: .8;
}

.gallery {
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.25rem, 2vw, 2.5rem);
}

.gallery__item--a,
.gallery__item--b,
.gallery__item--c,
.gallery__item--d,
.gallery__item--e {
  margin-top: 0;
}

.gallery__item--a { grid-column: 1 / 5; }
.gallery__item--b { grid-column: 5 / 9; }
.gallery__item--c { grid-column: 9 / 13; }
.gallery__item--d { grid-column: 1 / 7; margin-top: 2rem; }
.gallery__item--e { grid-column: 7 / 13; margin-top: 2rem; }

.gallery__item--a > img,
.gallery__item--b > img,
.gallery__item--c > img {
  aspect-ratio: .76;
}

.gallery__item--d > img,
.gallery__item--e > img {
  aspect-ratio: 1.05;
}

.about {
  min-height: clamp(760px, 92vh, 980px);
}

.about__visual {
  min-height: 100%;
}

.about__photo {
  inset: 0;
}

.about__photo img {
  height: 112%;
  object-position: center 35%;
}

.about__content {
  padding-left: clamp(1.5rem, 3vw, 3.5rem);
}

.about__content h2 {
  font-size: clamp(4.2rem, 6.2vw, 7.2rem);
  line-height: .82;
}

.contact__headline {
  margin: clamp(5rem, 8vw, 8rem) 0 clamp(3rem, 5vw, 5rem);
  font-size: clamp(4.4rem, 9vw, 9.8rem);
  line-height: .78;
}

.contact__headline span:last-child {
  color: var(--cream);
}

.footer__mark {
  display: flex;
  width: 100%;
  height: auto;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: visible;
  background: transparent;
  justify-content: center;
}

.footer__mark img {
  width: min(60vw, 720px);
  height: auto;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.16));
}

@media (max-width: 800px) {
  .hero__title-wrap {
    top: auto;
    bottom: 22%;
  }

  .hero__chrome {
    top: auto;
    left: auto;
    width: 88vw;
    margin-top: .6rem;
  }

  .hero__statement { font-size: .56rem; }

  .manifesto__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto__words,
  .manifesto__portrait {
    grid-column: 1;
    width: 100%;
  }

  .manifesto__copy { font-size: 16vw; }
  .manifesto__note { margin-left: 0; }

  .release__header > p { display: none; }
  .release__feature { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .release__art { min-height: 118vw; }
  .release__info { min-height: 100vw; }

  .moments__heading { margin-block: 3rem; }
  .moments__heading h2 { font-size: 15vw; }

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

  .gallery__item--a,
  .gallery__item--b,
  .gallery__item--c,
  .gallery__item--d {
    grid-column: auto;
    margin-top: 0;
  }

  .gallery__item--e {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .gallery__item--a > img,
  .gallery__item--b > img,
  .gallery__item--c > img,
  .gallery__item--d > img { aspect-ratio: .76; }

  .gallery__item--e > img { aspect-ratio: 1.05; }

  .about { min-height: 0; }
  .about__visual { min-height: 120vw; }
  .about__photo { inset: 0; }
  .about__content { min-height: 145vw; padding-left: 0; }
  .about__content h2 { font-size: 15vw; line-height: .84; }

  .contact__headline {
    font-size: 16vw;
    line-height: .82;
  }

  .footer__mark img { width: 88vw; }
}

@media (max-width: 520px) {
  .ticker span { font-size: .9rem; }
  .section-index { grid-template-columns: 52px 1fr; }
  .manifesto__copy { font-size: 15vw; }
  .release__header h2 { font-size: 19vw; }
  .release__info { min-height: 108vw; }
  .about__content { min-height: 165vw; }
}

.support {
  padding: clamp(3rem, 5vw, 5rem) var(--pad);
  background: var(--cream);
}

.support > p {
  margin: 0 0 2rem;
}

.support__marquee div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-top: 1px solid var(--ink);
  animation: none;
}

.support__marquee span {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  line-height: 1;
}

.support__marquee b { display: none; }

@media (max-width: 800px) {
  .hero__media img { object-position: 72% 50%; }
  .moments__heading h2 { font-size: 13vw; line-height: .86; }
  .contact__headline { font-size: 12.5vw; line-height: .86; letter-spacing: -.075em; }
  .contact__grid { margin-bottom: clamp(3rem, 12vw, 5rem); }
  .footer__mark { padding-block: 2.5rem; }
  .support__marquee div { grid-template-columns: 1fr 1fr; }
  .support__marquee span { font-size: 1.2rem; }
}
