:root {
  color-scheme: dark;
  --black: #020202;
  --black-soft: #07080a;
  --white: #f7f8f4;
  --muted: rgba(247, 248, 244, 0.64);
  --soft: rgba(247, 248, 244, 0.08);
  --line: rgba(247, 248, 244, 0.15);
  --ice: #c4efff;
  --ice-soft: rgba(196, 239, 255, 0.12);
  --red: #a62626;
  --wrap: min(1360px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(196, 239, 255, 0.09), transparent 28rem),
    radial-gradient(circle at 12% 78%, rgba(166, 38, 38, 0.08), transparent 26rem),
    linear-gradient(180deg, #020202 0%, #07080a 48%, #020202 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 248, 244, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 244, 0.018) 1px, transparent 1px);
  background-size: 4.25rem 4.25rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.25rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.6rem);
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.88), rgba(2, 2, 2, 0.18));
  backdrop-filter: blur(20px);
  transition: min-height 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  min-height: 4.25rem;
  background: rgba(2, 2, 2, 0.92);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: inline-flex;
  gap: 0.78rem;
  align-items: center;
  width: fit-content;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  background: #000;
  box-shadow: 0 0 0 1px rgba(247, 248, 244, 0.13), 0 0 38px rgba(196, 239, 255, 0.13);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  position: relative;
  color: rgba(247, 248, 244, 0.64);
  font-size: 0.66rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.78) 52%, rgba(2, 2, 2, 0.98) 100%),
    linear-gradient(135deg, rgba(196, 239, 255, 0.08), transparent 34%, rgba(166, 38, 38, 0.08) 67%, transparent),
    #020202;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.07) 0 1px, transparent 1px 28%),
    radial-gradient(circle at 72% 44%, rgba(196, 239, 255, 0.15), transparent 20rem),
    linear-gradient(0deg, #020202 0%, transparent 44%, rgba(2, 2, 2, 0.72) 100%);
  pointer-events: none;
}

.hero-structure {
  position: absolute;
  inset: 9vh 0 auto auto;
  z-index: -2;
  width: min(58rem, 58vw);
  height: 78svh;
  opacity: 0.72;
  pointer-events: none;
}

.hero-structure span {
  position: absolute;
  right: calc(var(--i, 0) * 15%);
  bottom: 0;
  width: 1px;
  height: var(--h, 42%);
  background: linear-gradient(180deg, transparent, rgba(196, 239, 255, 0.76), transparent);
  box-shadow: 0 0 30px rgba(196, 239, 255, 0.28);
  animation: lightRise 5.8s ease-in-out infinite alternate;
}

.hero-structure span:nth-child(1) {
  --i: 1;
  --h: 46%;
}

.hero-structure span:nth-child(2) {
  --i: 2;
  --h: 76%;
  animation-delay: -1.8s;
}

.hero-structure span:nth-child(3) {
  --i: 3;
  --h: 94%;
  background: linear-gradient(180deg, transparent, rgba(166, 38, 38, 0.78), transparent);
  animation-delay: -3.4s;
}

.hero-structure span:nth-child(4) {
  --i: 4;
  --h: 62%;
  animation-delay: -4.2s;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.36fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  width: var(--wrap);
  margin: 0 auto;
  padding: 9rem 0 6.2rem;
}

.hero-copy {
  max-width: 74rem;
}

.hero-status {
  display: inline-block;
  margin-bottom: clamp(2rem, 7vh, 5.4rem);
  color: rgba(247, 248, 244, 0.52);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 860;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-intro {
  display: grid;
  gap: 1.45rem;
  align-content: end;
  padding: 0 0 0 1.6rem;
  border-left: 1px solid rgba(196, 239, 255, 0.38);
}

.hero-emblem {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  margin: 0 0 clamp(0.4rem, 2vh, 1.3rem);
}

.hero-emblem img {
  width: min(18rem, 100%);
  max-height: 16rem;
  object-fit: contain;
  opacity: 0.94;
  filter: drop-shadow(0 0 48px rgba(196, 239, 255, 0.12));
}

.hero-emblem figcaption {
  color: rgba(247, 248, 244, 0.58);
  font-size: 0.64rem;
  font-weight: 860;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-intro p {
  color: rgba(247, 248, 244, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.62;
}

.hero-intro span {
  color: rgba(247, 248, 244, 0.46);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker,
.section-index {
  margin: 0;
  color: var(--ice);
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-index {
  color: rgba(247, 248, 244, 0.36);
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1 {
  max-width: 10ch;
  margin-top: 1rem;
  font-size: clamp(3.3rem, 7vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 14ch;
}

.hero-actions,
.artist-links,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 248, 244, 0.035);
  color: var(--white);
  padding: 0 1rem;
  font-size: 0.7rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 239, 255, 0.72);
  background: rgba(196, 239, 255, 0.08);
}

.button.primary {
  border-color: rgba(247, 248, 244, 0.84);
  background: var(--white);
  color: #030303;
}

.button.primary:hover {
  border-color: var(--ice);
  background: var(--ice);
}

.button.ghost {
  background: transparent;
}

.section {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-dark,
.partnership-section {
  position: relative;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(247, 248, 244, 0.02), transparent 34%),
    #040404;
}

.section-dark > *,
.partnership-section > * {
  width: var(--wrap);
  margin-right: auto;
  margin-left: auto;
}

.section-head {
  display: grid;
  grid-template-columns: 4rem minmax(0, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: clamp(1.4rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
}

.section-head h2,
.partnership-panel h2 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.38fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: stretch;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.intro-copy {
  display: grid;
  align-content: center;
  gap: 1.35rem;
}

.intro-copy p,
.artist-copy p,
.release-content p,
.partnership-panel p,
.form-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.intro-copy p {
  max-width: 58rem;
  font-size: clamp(1.07rem, 2vw, 1.42rem);
}

.label-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 1.1rem;
  min-height: 24rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 248, 244, 0.045), rgba(247, 248, 244, 0.018));
  overflow: hidden;
}

.label-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -36% auto;
  width: 18rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(196, 239, 255, 0.14), transparent 68%);
}

.label-card > * {
  position: relative;
}

.label-card > img {
  width: clamp(5.4rem, 10vw, 8rem);
  margin-bottom: auto;
  background: #000;
  box-shadow: 0 0 0 1px rgba(247, 248, 244, 0.1), 0 0 32px rgba(196, 239, 255, 0.1);
}

.label-card p {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.label-card p span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

address {
  color: rgba(247, 248, 244, 0.82);
  font-style: normal;
  line-height: 1.7;
}

.label-socials {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.label-socials a,
.artist-links a {
  display: inline-flex;
  width: fit-content;
  gap: 0.55rem;
  align-items: center;
  min-height: 2.45rem;
  border-bottom: 1px solid rgba(247, 248, 244, 0.18);
  color: rgba(247, 248, 244, 0.82);
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.label-socials a:hover,
.artist-links a:hover {
  color: var(--ice);
  border-color: var(--ice);
  transform: translateY(-2px);
}

.label-socials img,
.artist-links img {
  width: 1rem;
  height: 1rem;
}

.label-socials .icon-tiktok,
.artist-links .icon-tiktok {
  filter: invert(1) drop-shadow(0 0 10px rgba(247, 248, 244, 0.22));
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-strip span {
  min-height: 5.2rem;
  display: grid;
  align-items: center;
  border-right: 1px solid var(--line);
  color: rgba(247, 248, 244, 0.74);
  padding: 1rem;
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.experience-strip span:last-child {
  border-right: 0;
}

.experience-strip span:hover {
  background: var(--ice-soft);
  color: var(--white);
}

.featured-section {
  position: relative;
}

.featured-release {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5.5rem);
  align-items: center;
  margin-top: clamp(2.4rem, 6vw, 4.5rem);
  padding: clamp(1.2rem, 4vw, 2.6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.featured-release::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 38%, rgba(196, 239, 255, 0.14), transparent 24rem),
    linear-gradient(90deg, rgba(166, 38, 38, 0.11), transparent 48%);
  opacity: 0.85;
}

.release-cover {
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
}

.release-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 2, 2, 0.26));
  pointer-events: none;
}

.release-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.06);
  transform: scale(1.02);
  transition: transform 900ms ease;
}

.featured-release:hover .release-cover img {
  transform: scale(1.06);
}

.release-content {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.release-content h3 {
  font-size: clamp(4rem, 12vw, 11.5rem);
  line-height: 0.76;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.release-content p:not(.kicker) {
  max-width: 48rem;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.audio-button {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 248, 244, 0.045);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.audio-button:hover {
  transform: scale(1.06);
  border-color: var(--ice);
}

.audio-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.38rem solid transparent;
  border-bottom: 0.38rem solid transparent;
  border-left: 0.62rem solid currentColor;
}

.featured-release.is-playing .audio-button {
  border-color: var(--ice);
  background: var(--ice);
  color: var(--black);
}

.featured-release.is-playing .audio-button span {
  width: 0.62rem;
  height: 0.82rem;
  margin-left: 0;
  border: 0;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.artist-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.artist-visual {
  position: relative;
  min-height: clamp(28rem, 54vw, 42rem);
  overflow: hidden;
  background: #000;
}

.artist-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(2, 2, 2, 0.56)),
    radial-gradient(circle at 50% 16%, rgba(196, 239, 255, 0.18), transparent 18rem);
  pointer-events: none;
}

.artist-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.1);
  transform: scaleX(-1) scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.artist-feature:hover .artist-visual img {
  filter: grayscale(0.02) contrast(1.12);
  transform: scaleX(-1) scale(1.055);
}

.artist-copy {
  display: grid;
  align-content: center;
  gap: 1.1rem;
}

.artist-copy h3 {
  max-width: 12ch;
  font-size: clamp(3rem, 7.4vw, 8.2rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.identity-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0 0.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.identity-row figure {
  display: grid;
  min-height: 8.8rem;
  align-content: center;
  gap: 0.8rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.identity-row figure:last-child {
  border-right: 0;
}

.identity-row img {
  width: 100%;
  height: 4.8rem;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(196, 239, 255, 0.08));
}

.identity-row figcaption {
  color: rgba(247, 248, 244, 0.58);
  font-size: 0.62rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.partnership-panel {
  display: grid;
  min-height: 52svh;
  align-content: center;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.partnership-panel p {
  max-width: 60rem;
  margin: 1.5rem 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.newsletter-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.newsletter-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter-block h2 {
  max-width: 10ch;
  margin-top: 0.8rem;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.newsletter-block p:not(.kicker):not(.section-index) {
  max-width: 42rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  line-height: 1.7;
}

.newsletter-form {
  display: grid;
  gap: 1rem;
}

.check-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.check-field input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.1rem;
  accent-color: var(--ice);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

label {
  display: grid;
  gap: 0.5rem;
  color: rgba(247, 248, 244, 0.76);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.05em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: rgba(2, 2, 2, 0.48);
  color: var(--white);
  padding: 0.95rem;
  transition: border-color 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(196, 239, 255, 0.72);
  background: rgba(196, 239, 255, 0.045);
}

.wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: #020202;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.site-footer a {
  color: rgba(247, 248, 244, 0.76);
  font-size: 0.76rem;
}

.site-footer a:hover {
  color: var(--ice);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes floatMark {
  from {
    transform: translateY(-50%) scale(0.98);
  }

  to {
    transform: translateY(-53%) scale(1.03);
  }
}

@keyframes lightRise {
  from {
    opacity: 0.32;
    transform: translateY(1.1rem);
  }

  to {
    opacity: 0.9;
    transform: translateY(-1.4rem);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    z-index: 2;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-content: center;
    gap: 0.34rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(247, 248, 244, 0.04);
    color: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    width: 1rem;
    height: 1px;
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    border: 0;
    background: rgba(2, 2, 2, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: clamp(1.6rem, 7vw, 3.2rem);
    text-align: center;
  }

  .section-head,
  .intro-layout,
  .featured-release,
  .artist-feature,
  .newsletter-block,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-dark > *,
  .partnership-section > * {
    width: var(--wrap);
  }

  .experience-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-strip span:nth-child(even) {
    border-right: 0;
  }

  .site-footer nav {
    justify-items: start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 2.4rem;
  }

  .hero-structure {
    width: min(36rem, 60vw);
    opacity: 0.32;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .hero-inner {
    padding-bottom: 3.5rem;
  }

  .hero-status {
    margin-bottom: 2.5rem;
    letter-spacing: 0.22em;
  }

  .hero-intro {
    padding-left: 1rem;
  }

  .hero-emblem img {
    width: min(13rem, 72vw);
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .hero-actions,
  .artist-links,
  .release-actions {
    display: grid;
  }

  .section-head h2,
  .partnership-panel h2 {
    font-size: clamp(2.15rem, 11vw, 4rem);
  }

  .experience-strip,
  .identity-row {
    grid-template-columns: 1fr;
  }

  .experience-strip span,
  .identity-row figure {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-strip span:last-child,
  .identity-row figure:last-child {
    border-bottom: 0;
  }

  .label-card,
  .artist-visual {
    min-height: 25rem;
  }

  .release-content h3 {
    font-size: clamp(3.2rem, 20vw, 5.6rem);
  }

  .hero-structure {
    inset: 18vh -8vw auto auto;
    width: 70vw;
    height: 48svh;
    opacity: 0.24;
  }
}

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

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