:root {
  --black: #040404;
  --ink: #0b0b0b;
  --paper: #f5f1e9;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.17);
  --red: #e1182d;
  --pink: #e6005c;
  --blue: #215eff;
  --orange: #ff7a18;
  --max: 1240px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.08));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 4, 4, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.capture-mode .site-header {
  position: absolute;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.brand-mark:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 50%;
}

.brand-mark img {
  border-radius: 50%;
}

.site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 3vw, 24px);
  min-width: 0;
  font-size: clamp(0.62rem, 2.8vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-switch {
  grid-column: 2;
  justify-self: end;
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.34);
}

.language-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 64px;
  min-height: 32px;
  padding: 0 9px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
}

.flag-icon {
  display: block;
  width: 22px;
  height: 15px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.38);
}

.language-switch button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.home-hero,
.release-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: end;
  gap: 34px;
  padding: 92px clamp(18px, 5vw, 70px) 44px;
  overflow: hidden;
}

.home-hero__backdrop,
.release-hero__texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), var(--black) 86%),
    url("../rtv-media/rtv002-a-background-1280.webp") center / cover no-repeat;
  opacity: 0.48;
}

.home-hero__backdrop::after,
.release-hero__texture::after,
.story-panel__texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(225, 24, 45, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.92));
}

.home-hero__content,
.release-hero__copy {
  max-width: 680px;
}

.hero-logo {
  width: min(76vw, 380px);
  margin: 0 0 34px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent, var(--red));
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.05rem, 15vw, 6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 10vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 7.2vw, 2.85rem);
  line-height: 1;
}

.lead {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 4.4vw, 1.28rem);
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1.55);
}

.hero-record {
  width: min(88vw, 560px);
  margin: 0 auto;
  align-self: center;
}

.hero-brand-figure {
  display: none;
}

.hero-record img,
.release-hero__art img,
.art-pair img {
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.64));
}

.section-wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 14vw, 130px) 0;
}

.manifesto {
  min-height: 70svh;
  display: grid;
  align-content: center;
}

.manifesto p:last-child,
.story-panel p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 5vw, 1.65rem);
}

.catalogue {
  padding-top: 30px;
}

.community {
  display: grid;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.community__copy p:last-child {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 4.6vw, 1.45rem);
}

.community-form {
  display: grid;
  gap: 14px;
  align-content: start;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.field-label {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-form__row {
  display: grid;
  gap: 10px;
}

.community-form input[type="email"] {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 0 16px;
  font: inherit;
  font-size: 1rem;
}

.community-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.community-form button {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-form input[type="email"]:focus-visible,
.community-form button:focus-visible,
.consent-line input:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.consent-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.community-status {
  min-height: 1.5em;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.community-status.is-error {
  color: var(--red);
}

.community-status.is-success {
  color: var(--white);
}

.release-grid {
  display: grid;
  gap: 72px;
}

.release-tile {
  display: grid;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.release-tile__image {
  display: block;
  position: relative;
  isolation: isolate;
}

.release-tile__image::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  border-radius: 50%;
  background: var(--tile-accent);
  opacity: 0.2;
  filter: blur(34px);
}

.release-tile__image img {
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.release-tile__meta p {
  max-width: 460px;
  color: var(--muted);
}

.catalogue-number {
  margin-bottom: 12px;
  color: var(--tile-accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-tile--pink {
  --tile-accent: var(--pink);
}

.release-tile--blue {
  --tile-accent: var(--blue);
}

.release-page {
  --accent: var(--pink);
}

.release-rtv002 {
  --accent: var(--blue);
}

.release-rtv001 .release-hero__texture {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), var(--black) 86%),
    url("../rtv-media/rtv001-a-background-1280.webp") center / cover no-repeat;
}

.release-rtv002 .release-hero__texture {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), var(--black) 86%),
    url("../rtv-media/rtv002-a-background-1280.webp") center / cover no-repeat;
}

.release-hero__art {
  width: min(90vw, 560px);
  margin: 0 auto;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
}

.story-panel {
  position: relative;
  isolation: isolate;
  min-height: 70svh;
  display: grid;
  align-content: center;
}

.story-panel__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.12;
}

.release-rtv001 .story-panel__texture--a {
  background-image: url("../rtv-media/rtv001-b-background-1280.webp");
}

.release-rtv002 .story-panel__texture--a {
  background-image: url("../rtv-media/rtv002-b-background-1280.webp");
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #111;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tracks {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.tracks li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.tracks span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.tracks strong,
.tracks em {
  grid-column: 2;
  font-style: normal;
}

.tracks strong {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.tracks em {
  color: var(--muted);
  font-size: 1rem;
}

.art-exhibit {
  min-height: 100svh;
  padding: clamp(80px, 16vw, 150px) clamp(18px, 5vw, 70px);
  text-align: center;
}

.art-exhibit .eyebrow,
.art-exhibit h2 {
  margin-inline: auto;
}

.art-pair {
  display: grid;
  gap: clamp(56px, 12vw, 120px);
  margin-top: 44px;
}

.art-pair figure {
  margin: 0;
}

.art-pair img {
  width: min(90vw, 620px);
  margin: 0 auto;
}

.art-pair figcaption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buy-panel {
  border-top: 1px solid var(--line);
}

.link-stack {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.link-stack a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: clamp(1.2rem, 6vw, 2.35rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.link-stack a::after {
  content: ">";
  color: var(--accent);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 44px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.site-footer img {
  border-radius: 50%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (min-width: 760px) {
  .site-header {
    display: flex;
    gap: 18px;
  }

  .site-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-end;
    font-size: 0.72rem;
  }

  .language-switch {
    grid-column: auto;
  }

  .home-hero,
  .release-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: center;
    padding-bottom: 56px;
  }

  .home-hero {
    min-height: 96svh;
    grid-template-columns: minmax(0, 720px);
    align-items: center;
    align-content: center;
  }

  .release-grid {
    gap: 56px;
  }

  .community {
    grid-template-columns: minmax(300px, 0.9fr) minmax(330px, 0.8fr);
    align-items: start;
    column-gap: clamp(42px, 6vw, 80px);
  }

  .community-form {
    margin-top: 10px;
  }

  .community-form__row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .community-form button {
    padding: 0 24px;
  }

  .community-status,
  .consent-line {
    max-width: 560px;
  }

  .release-tile {
    grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 1fr);
    align-items: center;
  }

  .release-tile:nth-child(even) .release-tile__image {
    order: 2;
  }

  .tracks li {
    grid-template-columns: 70px minmax(180px, 0.72fr) 1fr;
    align-items: baseline;
  }

  .tracks strong,
  .tracks em {
    grid-column: auto;
  }

  .art-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

@media (min-width: 980px) {
  .site-header {
    padding-left: max(40px, calc((100vw - var(--max)) / 2));
    padding-right: max(40px, calc((100vw - var(--max)) / 2));
  }

  .home-hero,
  .release-hero {
    grid-template-columns: minmax(410px, 0.92fr) minmax(420px, 1.08fr);
    min-height: 94svh;
    gap: clamp(48px, 6vw, 92px);
  }

  .home-hero__content,
  .release-hero__copy {
    max-width: 630px;
  }

  .home-hero {
    grid-template-columns: minmax(410px, 0.92fr) minmax(420px, 1.08fr);
    min-height: 92svh;
  }

  .home-hero__content {
    max-width: 720px;
    transform: translateY(-8vh);
  }

  .home-hero__content .hero-logo {
    display: none;
  }

  .hero-brand-figure {
    display: block;
    width: min(38vw, 600px);
    justify-self: center;
    transform: translateY(-2vh);
  }

  .hero-logo {
    width: clamp(300px, 22vw, 380px);
  }

  h1 {
    font-size: clamp(4.6rem, 7.8vw, 7.6rem);
  }

  h2 {
    font-size: clamp(3.25rem, 6vw, 5.55rem);
  }

  h3 {
    font-size: clamp(2rem, 3.3vw, 3.25rem);
  }

  .lead {
    font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  }

  .manifesto,
  .story-panel {
    grid-template-columns: minmax(320px, 0.85fr) minmax(400px, 1fr);
    align-items: end;
    align-content: center;
    column-gap: clamp(54px, 7vw, 92px);
  }

  .manifesto .eyebrow,
  .story-panel .eyebrow,
  .story-panel__texture {
    grid-column: 1 / -1;
  }

  .manifesto h2,
  .story-panel h2 {
    grid-column: 1;
    margin-bottom: 0;
  }

  .manifesto p:last-child,
  .story-panel p:last-child {
    grid-column: 2;
    margin-bottom: 8px;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
  }

  .preview.section-wrap,
  .tracklist.section-wrap,
  .buy-panel.section-wrap {
    display: grid;
    grid-template-columns: minmax(280px, 0.5fr) minmax(520px, 1fr);
    align-items: start;
    column-gap: clamp(54px, 7vw, 92px);
  }

  .preview .video-frame,
  .tracklist .tracks,
  .buy-panel .link-stack {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }

  .video-frame {
    max-width: 820px;
    width: 100%;
    justify-self: end;
  }

  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(34px, 4.2vw, 56px);
  }

  .release-tile {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    padding-top: 34px;
  }

  .release-tile:nth-child(even) .release-tile__image {
    order: 0;
  }

  .release-tile__image img {
    width: min(100%, 520px);
  }

  .art-pair img {
    width: min(40vw, 560px);
  }

  .link-stack a {
    font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  }
}

@media (min-width: 1120px) {
  .home-hero,
  .release-hero {
    padding-left: max(70px, calc((100vw - var(--max)) / 2));
    padding-right: max(70px, calc((100vw - var(--max)) / 2));
  }

  .hero-record,
  .release-hero__art {
    width: min(42vw, 620px);
  }

  .hero-brand-figure {
    width: min(36vw, 620px);
  }
}
