:root {
  --ink: #252147;
  --ink-soft: #595476;
  --paper: #fffaf4;
  --peach: #ffb591;
  --coral: #ff765f;
  --cyan: #68dce9;
  --sky: #b9e5f5;
  --lavender: #c9b8ed;
  --yellow: #ffe17c;
  --line: rgba(37, 33, 71, 0.15);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
  --body: Inter, Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

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

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.17;
  pointer-events: none;
}

.ambient--one {
  top: 38vh;
  left: -20rem;
  background: var(--coral);
}

.ambient--two {
  top: 130vh;
  right: -20rem;
  background: var(--cyan);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1.35rem clamp(1.25rem, 4vw, 4.5rem);
  color: white;
  background: linear-gradient(180deg, rgba(31, 26, 61, 0.78), rgba(31, 26, 61, 0.48));
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: 0 8px 30px rgba(31, 26, 61, 0.08);
  text-shadow: 0 1px 12px rgba(37, 33, 71, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: max-content;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-mark {
  color: var(--yellow);
  font-size: 1.65rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: clamp(1.3rem, 3vw, 3.25rem);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-code {
  justify-self: end;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: white;
  background: #e9b4b2;
}

.hero-banner,
.hero-wash,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.015);
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(51, 39, 94, 0.28) 0%, rgba(65, 42, 76, 0.04) 56%, rgba(51, 39, 94, 0.14) 100%),
    linear-gradient(0deg, rgba(36, 31, 71, 0.18), transparent 45%);
}

.hero-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(62rem, 92vw);
  margin: 0 auto;
  padding-top: clamp(10rem, 20vh, 13rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.15rem;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.eyebrow span {
  width: 2.7rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--coral);
}

.hero h1,
.section-heading h2,
.featured h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4.8rem, 12.5vw, 10.5rem);
  text-shadow: 0 3px 28px rgba(44, 34, 78, 0.1);
}

.hero h1 em,
.featured h2 em,
.about h2 em,
.contact h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.09em;
}

.hero-copy {
  margin: 2.4rem 0 2.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.hero-cta,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 0.65rem;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  border-bottom: 1px solid currentColor;
}

.hero-cta span,
.text-button span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.hero-cta:hover span,
.text-button:hover span {
  transform: translate(4px, 4px);
}

.hero-profile {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 3.3rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.avatar-wrap {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  object-fit: cover;
}

.avatar-orbit {
  position: absolute;
  inset: -0.45rem;
  border: 1px dashed rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  animation: orbit 12s linear infinite;
}

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

.hero-profile strong,
.hero-profile span {
  display: block;
}

.hero-profile strong {
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero-profile div > span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-index {
  position: absolute;
  z-index: 2;
  bottom: 3.5rem;
  left: clamp(1.25rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 900;
}

.hero-index i {
  width: 4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.cosmic-type-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(15rem, 26vw, 25rem);
  overflow: hidden;
  color: white;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(104, 220, 233, 0.26), transparent 33%),
    radial-gradient(ellipse at 70% 58%, rgba(201, 184, 237, 0.2), transparent 35%),
    var(--ink);
}

.cosmic-type-art::before {
  position: absolute;
  inset: -40% -10%;
  content: "";
  opacity: 0.55;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 225, 124, 0.85) 0 1px, transparent 1.5px);
  background-position: 0 0, 2.5rem 1.3rem;
  background-size: 4.8rem 4.8rem, 7.2rem 7.2rem;
  transform: rotate(-8deg);
  mask-image: linear-gradient(100deg, transparent 4%, black 48%, transparent 96%);
}

.cosmic-orbit {
  position: absolute;
  width: max-content;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
}

.cosmic-orbit--far {
  color: transparent;
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  transform: rotate(-5deg) translateY(-1.8rem);
}

.cosmic-orbit--main {
  z-index: 2;
  max-width: 12ch;
  white-space: normal;
  font-size: clamp(2.6rem, 6vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-shadow: 0 0 36px rgba(104, 220, 233, 0.35);
  transform: rotate(-4deg);
}

.cosmic-orbit--main em {
  color: var(--peach);
  font-family: var(--serif);
  font-weight: 400;
}

.cosmic-stars {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  width: 100%;
  color: var(--yellow);
  font-size: clamp(0.7rem, 1.5vw, 1.4rem);
  transform: rotate(-7deg);
}

.cosmic-stars span:nth-child(2n) {
  color: var(--cyan);
}

.cosmic-type-art > p {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 1.25rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-shell {
  width: min(86rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

.discography {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4.3rem;
}

.section-heading h2 {
  font-size: clamp(4rem, 9vw, 8.5rem);
}

.section-heading > p {
  max-width: 34rem;
  margin: 0 0 0.25rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: right;
}

.text-button,
.dialog-close {
  color: inherit;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  cursor: pointer;
}

.release-groups {
  border-top: 1px solid var(--ink);
}

.release-group {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--ink);
}

.release-group-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.release-group-heading h3 {
  grid-row: 1;
  grid-column: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  text-transform: uppercase;
}

.release-group-heading p,
.release-group-heading span {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.6;
}

.release-group-heading p {
  grid-row: 2;
  grid-column: 1;
  max-width: 34rem;
  text-align: left;
}

.release-group-heading span {
  grid-row: 1;
  grid-column: 2;
  align-self: end;
  color: var(--coral);
}

.release-list {
  border-top: 1px solid var(--line);
}

.release-item {
  border-bottom: 1px solid var(--line);
}

.release-row {
  display: grid;
  grid-template-columns: 4.5rem 6.2rem minmax(13rem, 1fr) minmax(10rem, 0.5fr) 6rem 2rem;
  gap: clamp(0.8rem, 2vw, 2rem);
  align-items: center;
  width: 100%;
  padding: 1.05rem 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.release-row:hover,
.release-row:focus-visible,
.release-item.is-open .release-row {
  color: var(--coral);
}

.release-row:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.release-number,
.release-catalog,
.release-date,
.release-genre {
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-number {
  color: var(--coral);
  font-family: var(--display);
}

.release-catalog,
.release-date,
.release-genre {
  color: var(--ink-soft);
}

.release-title {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.release-toggle {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.release-toggle::before,
.release-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.release-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.release-item.is-open .release-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.release-expanded {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 320ms ease, visibility 320ms;
}

.release-item.is-open .release-expanded {
  grid-template-rows: 1fr;
  visibility: visible;
}

.release-expanded-inner {
  min-height: 0;
  overflow: hidden;
}

.release-detail {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 1.5rem 0 3.5rem 12.7rem;
}

.release-detail .cover-placeholder {
  width: 100%;
  max-width: 20rem;
}

.release-detail-copy {
  display: grid;
  grid-template-columns: minmax(12rem, 0.75fr) 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.release-description {
  align-self: start;
}

.release-description p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.9;
}

.release-description dl {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.release-description dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.release-description dt,
.release-description dd {
  margin: 0;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.release-description dt {
  color: var(--coral);
}

.release-detail .tracklist {
  align-self: start;
}

.cover-placeholder {
  --cover-a: #ffd6c3;
  --cover-b: #a9e7eb;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(37, 33, 71, 0.08);
  background:
    radial-gradient(circle at 68% 35%, rgba(255, 255, 255, 0.75) 0 4%, transparent 4.5%),
    linear-gradient(138deg, transparent 0 46%, rgba(255, 255, 255, 0.4) 46.3% 47%, transparent 47.3%),
    linear-gradient(150deg, var(--cover-a), var(--cover-b));
}

.cover-placeholder::before,
.cover-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
}

.cover-placeholder::before {
  inset: 20% -35% -45% 25%;
}

.cover-placeholder::after {
  inset: 43% 30% -20% -30%;
}

.release-item:nth-child(4n + 2) .cover-placeholder {
  --cover-a: #c5def7;
  --cover-b: #dbbdf0;
}

.release-item:nth-child(4n + 3) .cover-placeholder {
  --cover-a: #ffdb95;
  --cover-b: #ff9d89;
}

.release-item:nth-child(4n + 4) .cover-placeholder {
  --cover-a: #b7ebe1;
  --cover-b: #f1c2dd;
}

.cover-index,
.cover-symbol,
.cover-placeholder small {
  position: absolute;
  z-index: 2;
}

.cover-index {
  top: 1rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cover-symbol {
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(3rem, 6vw, 5.5rem);
  text-shadow: 0 6px 30px rgba(86, 63, 117, 0.08);
  transform: translate(-50%, -50%);
  transition: transform 350ms ease;
}

.cover-placeholder small {
  right: 1rem;
  bottom: 1rem;
  font-size: 0.49rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: right;
}

.release-item.is-open .cover-symbol {
  transform: translate(-50%, -50%) rotate(18deg) scale(1.12);
}

.featured {
  display: grid;
  grid-template-columns: minmax(19rem, 0.9fr) 1.1fr auto;
  min-height: 43rem;
  color: var(--ink);
  background: linear-gradient(115deg, #ffbf9e 0%, #ffdfbd 43%, #d5e8f4 100%);
}

.featured-art {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.featured-star {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11rem, 22vw, 23rem);
  line-height: 0.6;
  text-shadow: 0 20px 80px rgba(255, 116, 95, 0.16);
  transform: translate(-50%, -50%);
}

.featured-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.featured-ring--one {
  width: 75%;
  aspect-ratio: 1;
}

.featured-ring--two {
  width: 110%;
  aspect-ratio: 1;
}

.featured-label {
  position: absolute;
  z-index: 3;
  top: 2.2rem;
  left: 2.2rem;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.featured-copy {
  align-self: center;
  max-width: 48rem;
  padding: clamp(3rem, 7vw, 7rem);
}

.featured h2,
.about h2,
.contact h2 {
  font-size: clamp(3.7rem, 7vw, 7.4rem);
}

.featured-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 2.2rem 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.85;
}

.text-button {
  padding-right: 0;
  padding-left: 0;
}

.featured-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 12rem;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.featured-meta div {
  padding: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.featured-meta span,
.featured-meta strong {
  display: block;
}

.featured-meta span {
  margin-bottom: 0.65rem;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.featured-meta strong {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.about {
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(7rem, 12vw, 12rem) 0;
}

.about-image {
  position: relative;
}

.about-image img {
  aspect-ratio: 0.86;
  object-fit: cover;
  box-shadow: 1.2rem 1.2rem 0 var(--sky);
}

.about-image span {
  position: absolute;
  right: -2.3rem;
  bottom: -2.8rem;
  color: var(--coral);
  font-size: 6rem;
}

.about-copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 2.5rem 0 3rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 2;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stats div {
  padding: 1.5rem 1rem 1.5rem 0;
  border-right: 1px solid var(--line);
}

.about-stats div:not(:first-child) {
  padding-left: 1.5rem;
}

.about-stats div:last-child {
  border-right: 0;
}

.about-stats dt {
  margin-bottom: 0.7rem;
  color: var(--coral);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.about-stats dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(7rem, 12vw, 12rem) 1.25rem;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 219, 234, 0.34), transparent 45%),
    var(--ink);
}

.contact h2 {
  margin-bottom: 3.5rem;
}

.contact h2 em {
  color: var(--peach);
}

.contact > a {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid currentColor;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.13em;
}

.contact-note {
  margin: 1.2rem 0 0;
  color: #c2bdd5;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem);
  color: #bbb6ce;
  background: #1e1a3d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand--footer {
  color: white;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

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

.release-dialog {
  width: min(62rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 100px rgba(31, 26, 61, 0.32);
}

.release-dialog::backdrop {
  background: rgba(31, 26, 61, 0.72);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 0.8rem;
  right: 1rem;
  padding: 0.25rem;
  border-bottom: 0;
  font-size: 2rem;
  font-weight: 300;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) 1.15fr;
}

.dialog-cover {
  align-self: start;
  aspect-ratio: 1;
  margin: 2rem;
}

.dialog-content {
  min-width: 0;
  padding: 4rem 3rem 3rem 1rem;
}

.dialog-kicker {
  margin: 0 0 0.75rem;
  color: var(--coral);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.dialog-content h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0 2rem;
}

.dialog-tags span {
  padding: 0.4rem 0.6rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tracklist {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: tracks;
  border-top: 1px solid var(--line);
}

.tracklist li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: tracks;
  font-size: 0.72rem;
  font-weight: 800;
}

.tracklist li::before {
  color: var(--coral);
  content: counter(tracks, decimal-leading-zero);
  font-family: var(--display);
  font-size: 0.55rem;
}

.tracklist small {
  color: #918aa6;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

@media (max-width: 1050px) {
  .release-row { grid-template-columns: 3.5rem 5.5rem minmax(12rem, 1fr) 6rem 2rem; }
  .release-genre { display: none; }
  .release-detail { padding-left: 11rem; }
  .release-detail-copy { grid-template-columns: 1fr; }
  .featured { grid-template-columns: minmax(17rem, 0.8fr) 1.2fr; }
  .featured-meta { grid-column: 1 / -1; flex-direction: row; min-width: 0; border-top: 1px solid rgba(255, 255, 255, 0.5); border-left: 0; }
  .featured-meta div { flex: 1; border-right: 1px solid rgba(255, 255, 255, 0.5); }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 10.5rem; }
  .hero h1 { font-size: clamp(4.2rem, 20vw, 7.2rem); }
  .hero-profile { right: auto; bottom: 2rem; left: 1.25rem; }
  .hero-index { display: none; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 2rem; text-align: left; }
  .cosmic-type-art { min-height: 18rem; }
  .cosmic-type-art > p { right: 1rem; bottom: 1rem; }
  .release-group-heading { grid-template-columns: 1fr auto; }
  .release-group-heading p { grid-column: 1 / -1; grid-row: 2; }
  .release-row { grid-template-columns: 2.5rem minmax(0, 1fr) 5.3rem 2rem; gap: 0.7rem; }
  .release-catalog { display: none; }
  .release-detail { grid-template-columns: minmax(10rem, 0.45fr) 1fr; gap: 1.5rem; padding: 1rem 0 3rem; }
  .release-detail-copy { gap: 1.5rem; }
  .featured { grid-template-columns: 1fr; }
  .featured-art { min-height: 25rem; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  .featured-copy { padding: 4.5rem 1.25rem; }
  .about { grid-template-columns: 1fr; }
  .about-image { max-width: 27rem; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-cover { width: min(18rem, calc(100% - 4rem)); margin: 2rem auto 0; }
  .dialog-content { padding: 2rem; }
  .site-footer { grid-template-columns: 1fr; gap: 0.8rem; text-align: center; }
  .brand--footer, .site-footer p:last-child { justify-self: center; }
}

@media (max-width: 480px) {
  .hero-banner { object-position: 38% center; }
  .hero h1 { font-size: 4.2rem; }
  .section-heading h2 { font-size: clamp(2.5rem, 10.8vw, 3rem); }
  .cosmic-orbit--main { width: 92%; max-width: none; font-size: 2.2rem; }
  .release-group-heading h3 { font-size: 3rem; }
  .release-date { display: none; }
  .release-row { grid-template-columns: 2.2rem minmax(0, 1fr) 2rem; }
  .release-detail { grid-template-columns: 1fr; }
  .release-detail .cover-placeholder { max-width: 13rem; }
  .featured-meta { display: grid; grid-template-columns: 1fr; }
  .featured-meta div { border-right: 0; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats div, .about-stats div:not(:first-child) { padding-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact h2 { font-size: 3.3rem; }
}

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