/*
  TH ENTERTAINMENT - main page
  Design system v3: minimal / editorial / dark-locked.
  No card boxes, no pill buttons, no borders except single hairlines used sparingly.
  Typography and photography carry the page. One accent, used in three places only:
  hover states, the LEA status label, and the audition CTA button.
*/

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

:root {
  --bg: #0a0a0a;
  --bg-2: #0d0d0e;
  --fg: #f5f5f5;
  --fg-dim: #a0a0a0;
  --fg-mute: #6e6e6e;
  --accent: #e2273f;
  --accent-wipe: rgba(226, 39, 63, 0.12);

  --border: rgba(245, 245, 245, 0.08);
  --border-strong: rgba(245, 245, 245, 0.18);

  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;

  --container: 1400px;
  --nav-h: 96px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-feature-settings: "tnum" 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ---------- Typography ---------- */

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.tracked {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--fg-mute);
  font-size: 0.76rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-head h2 {
  font-size: clamp(2.1rem, 1.6vw + 1.6rem, 3.4rem);
  margin-bottom: 1.1rem;
}

.section-head p {
  color: var(--fg-dim);
  font-size: 1.08rem;
  max-width: 52ch;
}

.section-head--between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 0.3rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), gap 0.25s var(--ease);
  white-space: nowrap;
}

.link-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  gap: 0.7rem;
}

/* ---------- The one button (audition CTA only) ---------- */

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--fg);
  padding: 1.15rem 2.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg);
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease);
}

.btn-hero:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-hero:active {
  transform: scale(0.98);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--border-strong);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.86);
  border-bottom-color: var(--border-strong);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.logo img {
  height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.85rem;
}

.logo span {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.8rem, 2.6vw, 3rem);
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--fg-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--fg);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.3rem;
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 3rem);
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}

.nav-drawer.is-open {
  transform: translateY(0);
}

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

.nav-drawer a {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-drawer .social-row {
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .logo img {
    height: 32px;
  }
  .logo span {
    font-size: 1.1rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 24s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.35) 35%,
      rgba(10, 10, 10, 0.94) 88%,
      var(--bg) 100%
    ),
    linear-gradient(90deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-bottom: clamp(3.5rem, 9vh, 6.5rem);
}

.hero-content h1 {
  font-size: clamp(3rem, 5.6vw + 1rem, 6.8rem);
  font-weight: 900;
  margin-bottom: 1.75rem;
}

.hero-content p {
  color: var(--fg-dim);
  font-size: clamp(1.05rem, 1vw + 0.6rem, 1.3rem);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

/* hero entrance, plays once on load */
.hero-content h1,
.hero-content p,
.hero-content .link-arrow {
  opacity: 0;
  transform: translateY(26px);
  animation: heroEnter 1s var(--ease) forwards;
}

.hero-content h1 {
  animation-delay: 0.2s;
}

.hero-content p {
  animation-delay: 0.42s;
}

.hero-content .link-arrow {
  animation-delay: 0.64s;
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* staggered cascades for repeated items */
.artist-photos > [data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}
.artist-photos > [data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}

.stat-row > [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.stat-row > [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
.stat-row > [data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}

.release-info[data-reveal] {
  transition-delay: 0.12s;
}

.news-list > [data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}

.news-list > [data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}

.news-list > [data-reveal]:nth-child(4) {
  transition-delay: 0.3s;
}

.timeline > [data-reveal]:nth-child(2) {
  transition-delay: 0.06s;
}
.timeline > [data-reveal]:nth-child(3) {
  transition-delay: 0.12s;
}
.timeline > [data-reveal]:nth-child(4) {
  transition-delay: 0.18s;
}
.timeline > [data-reveal]:nth-child(5) {
  transition-delay: 0.24s;
}

.fan-grid > [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.fan-grid > [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
.fan-grid > [data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-content h1,
  .hero-content p,
  .hero-content .link-arrow {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-media img {
    animation: none;
  }
}

/* ---------- Marquee (one per page) ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  background: var(--bg);
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(2rem, 4vw, 4rem);
  animation: marqueeScroll 30s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex: none;
  gap: clamp(2rem, 4vw, 4rem);
}

.marquee__track span {
  display: inline-block;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.marquee__track .is-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fg);
}

.marquee__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  flex: none;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ---------- Sections ---------- */

section {
  padding: clamp(6.5rem, 10vw, 10.5rem) 0;
}

.section-alt {
  background: var(--bg-2);
}

/* ---------- Artists ---------- */

.artist-photos {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.artist-photo-card {
  display: block;
  perspective: 1200px;
}

.artist-photo-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.artist-photo-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.artist-photo-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.artist-photo-card__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.artist-photo-card:nth-child(1) .artist-photo-card__media {
  height: 100%;
}

.artist-photo-card:nth-child(2) .artist-photo-card__media,
.artist-photo-card:nth-child(3) .artist-photo-card__media {
  aspect-ratio: 16 / 10;
}

.artist-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.artist-photo-card:hover .artist-photo-card__media img {
  transform: scale(1.04);
}

.artist-photo-card__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.artist-photo-card__caption .name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}

.artist-photo-card:hover .artist-photo-card__caption .name {
  color: var(--accent);
}

.artist-photo-card__caption .role {
  color: var(--fg-mute);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .artist-photos {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .artist-photo-card:nth-child(1),
  .artist-photo-card:nth-child(2),
  .artist-photo-card:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
  .artist-photo-card:nth-child(1) .artist-photo-card__media {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .artist-photo-card:nth-child(2) .artist-photo-card__media,
  .artist-photo-card:nth-child(3) .artist-photo-card__media {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- Artist profile modal ---------- */

.artist-modal__gallery {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  margin: 0 0 1.5rem;
}

.artist-modal__gallery img {
  flex: none;
  height: 220px;
  width: auto;
  object-fit: cover;
  background: var(--bg);
}

.artist-modal__qr {
  margin-top: 1.5rem;
}

.artist-modal__qr img {
  width: 140px;
  height: 140px;
  background: #fff;
  padding: 0.5rem;
}

.artist-modal__qr .caption {
  display: block;
  margin-top: 0.6rem;
  color: var(--fg-mute);
  font-size: 0.78rem;
}

/* ---------- Release (split) ---------- */

.release {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.release-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-info .tracked {
  display: block;
  margin-bottom: 1rem;
}

.release-info h2 {
  font-size: clamp(2.1rem, 2vw + 1.2rem, 3.1rem);
  margin-bottom: 1rem;
}

.release-info .meta {
  color: var(--fg-mute);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.8rem;
}

.release-info p.desc {
  color: var(--fg-dim);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.stream-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stream-row a {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  padding-left: 1.5rem;
  border-left: 1px solid var(--border-strong);
  transition: color 0.25s var(--ease);
}

.stream-row a:first-child {
  padding-left: 0;
  border-left: none;
}

.stream-row a:hover {
  color: var(--fg);
}

@media (max-width: 780px) {
  .release {
    grid-template-columns: 1fr;
  }
  .release-cover {
    max-width: 420px;
  }
  .stream-row {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }
}

/* ---------- Schedule (timeline) ---------- */

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7rem;
  width: 1px;
  background: var(--border-strong);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 2rem 1fr;
  column-gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item__date {
  grid-column: 1;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.timeline-item__date span {
  display: block;
  margin-top: 0.5rem;
  color: var(--fg-mute);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline-item__marker {
  grid-column: 2;
  position: relative;
}

.timeline-item__marker::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  z-index: 1;
  transition: transform 0.3s var(--ease);
}

.timeline-item:hover .timeline-item__marker::before {
  transform: translateX(-50%) scale(1.4);
}

.timeline-item__body {
  grid-column: 3;
}

.timeline-item__body .tracked {
  display: block;
  margin-bottom: 0.6rem;
}

.timeline-item__body h3 {
  font-size: clamp(1.1rem, 0.6vw + 1rem, 1.3rem);
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.25s var(--ease);
}

.timeline-item:hover .timeline-item__body h3 {
  color: var(--accent);
}

@media (max-width: 640px) {
  .timeline::before {
    left: 0.75rem;
  }
  .timeline-item {
    grid-template-columns: 1.5rem 1fr;
    column-gap: 1rem;
  }
  .timeline-item__date {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .timeline-item__date span {
    margin-top: 0;
  }
  .timeline-item__marker {
    grid-column: 1;
  }
  .timeline-item__body {
    grid-column: 2;
  }
}

.empty-note {
  color: var(--fg-mute);
  font-size: 0.92rem;
  padding: 1.5rem 0;
}

/* ---------- Stats ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(2.1rem, 2vw + 1.2rem, 3.2rem);
  margin-bottom: 1.4rem;
}

.about-copy p {
  color: var(--fg-dim);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.1rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.stat-cell .num {
  font-size: clamp(2.6rem, 3vw + 1rem, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.stat-cell .label {
  color: var(--fg-mute);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 780px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Partners ---------- */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.9rem;
}

.partners-grid img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  background: #fff;
  opacity: 0.88;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.partners-grid img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---------- News ---------- */

.news-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 5vw, 5rem);
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--border);
  perspective: 1200px;
}

.news-feature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.news-feature:hover .news-feature__media img {
  transform: scale(1.04);
}

.news-feature__body .tracked {
  margin-bottom: 1rem;
}

.news-feature__body h3 {
  font-size: clamp(1.5rem, 1.4vw + 1rem, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  transition: color 0.25s var(--ease);
}

.news-feature:hover .news-feature__body h3 {
  color: var(--accent);
}

@media (max-width: 780px) {
  .news-feature {
    grid-template-columns: 1fr;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-row {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 1.9rem 1.25rem;
  margin: 0 -1.25rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: padding-left 0.4s var(--ease);
}

.news-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-wipe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}

.news-row:hover {
  padding-left: 2rem;
}

.news-row:hover::before {
  transform: scaleX(1);
}

.news-row .tracked {
  position: relative;
  z-index: 1;
  flex: none;
  width: 8rem;
  margin: 0;
}

.news-row h3 {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  transform-origin: left center;
  transition: color 0.3s var(--ease), transform 0.4s var(--ease);
}

.news-row:hover h3 {
  color: var(--accent);
  transform: scale(1.03);
}

.news-row__arrow {
  position: relative;
  z-index: 1;
  flex: none;
  color: var(--fg-mute);
  font-size: 1.1rem;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.news-row:hover .news-row__arrow {
  color: var(--accent);
  transform: translateX(8px) scale(1.15);
}

@media (max-width: 600px) {
  .news-row {
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
  }
  .news-row__arrow {
    display: none;
  }
}

/* ---------- Fan Board ---------- */

.fan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fan-post {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 clamp(1.25rem, 2vw, 1.75rem);
  border-left: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}

.fan-post:first-child {
  padding-left: 0;
  border-left: none;
}

.fan-post:hover {
  transform: translateY(-4px);
}

.fan-post h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s var(--ease);
}

.fan-post:hover h3 {
  color: var(--accent);
}

.fan-post__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  color: var(--fg-mute);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fan-post__meta .comments {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
}

@media (max-width: 900px) {
  .fan-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }
  .fan-post:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 560px) {
  .fan-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .fan-post {
    padding: 1.75rem 0;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .fan-post:first-child {
    border-top: none;
  }
}

/* ---------- Audition CTA ---------- */

.audition {
  position: relative;
  padding: clamp(6.5rem, 13vw, 10rem) 0;
  text-align: center;
  overflow: hidden;
}

.audition-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.audition-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.audition-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(10, 10, 10, 0.82) 12%,
    rgba(160, 19, 38, 0.32) 50%,
    rgba(10, 10, 10, 0.88) 88%,
    var(--bg) 100%
  );
}

.audition-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.audition h2 {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.6rem);
  margin-bottom: 1.25rem;
}

.audition p {
  color: var(--fg-dim);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ---------- Audition modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 90dvh;
  overflow-y: auto;
  background: linear-gradient(180deg, #121214 0%, var(--bg-2) 120px);
  border: 1px solid var(--border-strong);
  border-top: 2px solid var(--accent);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  padding: clamp(2.25rem, 4vw, 3rem);
  transform: translateY(18px);
  transition: transform 0.4s var(--ease);
}

.modal.is-open .modal__panel {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.3rem;
  color: var(--fg-mute);
  transition: color 0.2s var(--ease);
}

.modal__close:hover {
  color: var(--fg);
}

.modal__panel h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.modal__desc {
  color: var(--fg-dim);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.modal form {
  display: flex;
  flex-direction: column;
}

.modal__eyebrow {
  display: block;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}

@media (max-width: 560px) {
  .modal .form-row {
    grid-template-columns: 1fr;
  }
  .modal .form-row > div + div {
    margin-top: 1.4rem;
  }
}

.modal form label {
  font-size: 0.72rem;
  color: var(--fg-mute);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
  margin-top: 1.4rem;
}

.modal form > label:first-child,
.modal form > :first-child label {
  margin-top: 0;
}

.modal form input,
.modal form select,
.modal form textarea {
  width: 100%;
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.modal form input::placeholder,
.modal form textarea::placeholder {
  color: var(--fg-mute);
}

.modal form input:hover,
.modal form select:hover,
.modal form textarea:hover {
  border-color: rgba(245, 245, 245, 0.34);
}

.modal form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23a0a0a0' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.modal form select:invalid {
  color: var(--fg-mute);
}

.modal form select option {
  background: var(--bg-2);
  color: var(--fg);
}

.modal form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.modal form input:focus,
.modal form select:focus,
.modal form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(245, 245, 245, 0.05);
}

.modal form .btn-hero {
  margin-top: 2.25rem;
  justify-content: center;
  width: 100%;
}

.modal form .btn-hero:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.modal__msg {
  margin-top: 1rem;
  min-height: 1.2em;
  font-size: 0.85rem;
}

.modal__msg.success {
  color: #6fce8e;
}

.modal__msg.error {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__panel {
    transition: none;
  }
}

/* ---------- Post detail modal (notices / fan posts) ---------- */

.post-modal__panel {
  max-width: 640px;
}

.post-modal__panel .tracked {
  display: block;
  margin-bottom: 1rem;
}

.post-modal__panel h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.post-modal__body {
  color: var(--fg-dim);
  font-size: 0.98rem;
  line-height: 1.8;
}

.post-modal__body p {
  margin-bottom: 1.1rem;
}

.post-modal__body h1,
.post-modal__body h2,
.post-modal__body h3 {
  color: var(--fg);
  margin: 1.5rem 0 0.9rem;
}

.post-modal__body ul,
.post-modal__body ol {
  margin: 0 0 1.1rem 1.4rem;
}

.post-modal__body li {
  margin-bottom: 0.4rem;
}

.post-modal__body blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.2rem;
  color: var(--fg-mute);
  margin: 1.1rem 0;
}

.post-modal__body a {
  color: var(--accent);
  text-decoration: underline;
}

.post-modal__body img {
  max-width: 100%;
  height: auto;
  margin: 1.1rem 0;
}

.post-modal__body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  margin: 1.1rem 0;
}

/* ---------- Contact ---------- */

.contact {
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
  margin-bottom: 1.1rem;
}

.contact-inner p {
  color: var(--fg-dim);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.contact-direct {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--fg-dim);
  font-size: 0.95rem;
  line-height: 1.9;
}

.contact-direct a {
  color: var(--fg);
  border-bottom: 1px solid var(--border-strong);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact-direct a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(4rem, 6vw, 6rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.footer-brand p {
  color: var(--fg-dim);
  max-width: 34ch;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.social-row {
  display: flex;
  gap: 1.25rem;
}

.social-row a {
  font-size: 1.25rem;
  color: var(--fg-dim);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.social-row a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.74rem;
  color: var(--fg-mute);
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  color: var(--fg-dim);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-form label {
  display: block;
  font-size: 0.74rem;
  color: var(--fg-mute);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
}

.footer-form-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.footer-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--fg);
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer-form input[type="email"]::placeholder {
  color: var(--fg-mute);
}

.footer-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.footer-form button {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-form button:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer-form .form-msg {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.footer-form .form-msg.success {
  color: #6fce8e;
}

.footer-form .form-msg.error {
  color: var(--accent);
}

.footer-biz {
  padding-top: 2.25rem;
  color: var(--fg-mute);
  font-size: 0.8rem;
}

.footer-biz a {
  color: var(--fg-mute);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}

.footer-biz a:hover {
  color: var(--fg-dim);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.footer-bottom .legal {
  color: var(--fg-mute);
  font-size: 0.85rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom .legal a:hover {
  color: var(--fg-dim);
}

.admin-link {
  font-size: 0.72rem;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}

.admin-link:hover {
  opacity: 1;
  color: var(--fg-dim);
}

.footer-address {
  color: var(--fg-mute);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Multi-page layout: sub-page hero, active nav, business grid ===== */
.nav-links a.is-active,
.nav-drawer-link.is-active {
  color: var(--fg);
}
.nav-links a.is-active {
  border-color: var(--accent);
}

.page-hero {
  padding: calc(var(--nav-h) + clamp(3.5rem, 7vw, 6rem)) 0 0;
}
.page-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.page-hero p {
  margin-top: 1.2rem;
  max-width: 640px;
  color: var(--fg-dim);
  line-height: 1.75;
}

section.section-tight {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 0;
}
.biz-item {
  padding: 0 clamp(1.25rem, 2vw, 1.75rem);
  border-left: 1px solid var(--border);
}
.biz-item i {
  font-size: 1.7rem;
  color: var(--accent);
}
.biz-item h3 {
  margin: 0.9rem 0 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.biz-item p {
  color: var(--fg-dim);
  font-size: 0.92rem;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .biz-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem 0;
  }
}

.audition--page {
  padding-top: calc(var(--nav-h) + clamp(6.5rem, 13vw, 10rem));
}
.audition--page .tracked {
  display: block;
  margin-bottom: 1.1rem;
}

.contact--page .contact-inner {
  max-width: none;
}
.contact--page .contact-channels {
  text-align: left;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* ===== Fan board membership ===== */
.board-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.board-bar__guest,
.board-bar__member {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.board-bar__guest[hidden],
.board-bar__member[hidden] {
  display: none;
}
.board-bar__hint {
  color: var(--fg-mute);
  font-size: 0.88rem;
}
.board-bar__hint strong {
  color: var(--fg);
  font-weight: 700;
}

.btn-ghost {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--accent);
}

.btn-hero--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.78rem;
  gap: 0.6rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-strong);
  margin-bottom: 1.75rem;
}
.auth-tabs button {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.auth-tabs button.is-active {
  color: var(--fg);
  background: rgba(245, 245, 245, 0.06);
}

.fan-post__del {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--fg-mute);
  transition: color 0.2s var(--ease);
}
.fan-post__del:hover {
  color: var(--accent);
}

/* ===== Legal / policy documents ===== */
.legal-doc {
  max-width: 760px;
}
.legal-doc h2 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 2.75rem 0 0.9rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}
.legal-doc h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-doc p {
  color: var(--fg-dim);
  font-size: 0.94rem;
  line-height: 1.85;
  margin-bottom: 0.7rem;
}
.legal-doc a {
  color: var(--fg);
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 0.2s var(--ease);
}
.legal-doc a:hover {
  border-color: var(--accent);
}

/* ===== Artist list (nel) — clickable rows on /artists ===== */
.artist-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.artist-row {
  display: grid;
  grid-template-columns: auto 96px 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.9rem) 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.artist-row:hover {
  background: rgba(245, 245, 245, 0.03);
  padding-left: 1.25rem;
}
.artist-row__index {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
}
.artist-row__media {
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: var(--bg-2);
}
.artist-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.artist-row:hover .artist-row__media img {
  transform: scale(1.06);
}
.artist-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.artist-row__info .name {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.artist-row__info .role {
  font-size: 0.85rem;
  color: var(--fg-dim);
}
.artist-row__arrow {
  font-size: 1.3rem;
  color: var(--fg-mute);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.artist-row:hover .artist-row__arrow {
  color: var(--accent);
  transform: translateX(6px);
}
@media (max-width: 640px) {
  .artist-row {
    grid-template-columns: 64px 1fr auto;
    gap: 1rem;
  }
  .artist-row__index {
    display: none;
  }
  .artist-row__media {
    width: 64px;
    height: 64px;
  }
}

/* ===== Artist detail page ===== */
.artist-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.artist-detail__back:hover {
  color: var(--fg);
  gap: 0.8rem;
}
.artist-detail__gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  scroll-snap-type: x mandatory;
}
.artist-detail__gallery img {
  height: clamp(280px, 42vw, 460px);
  width: auto;
  flex: 0 0 auto;
  object-fit: cover;
  scroll-snap-align: start;
}
.artist-detail__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.artist-detail__head .tracked {
  display: block;
  margin-bottom: 0.9rem;
}
.artist-detail__head h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.artist-detail__section {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.artist-detail__h {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
}
.artist-videos {
  max-width: 900px;
}
.artist-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.artist-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.artist-video--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--fg-mute);
}
.artist-video--empty i {
  font-size: 2.4rem;
}
.artist-video--empty span {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.artist-detail__qr {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 220px;
}
.artist-detail__qr img {
  width: 180px;
  height: 180px;
  background: #fff;
  padding: 10px;
}
.artist-detail__qr .caption {
  font-size: 0.82rem;
  color: var(--fg-dim);
}

/* ===== Artist category tabs (/artists) ===== */
.artist-tabs {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
.artist-tab {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  padding: 0.9rem 0.15rem;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.artist-tab:hover {
  color: var(--fg);
}
.artist-tab.is-active {
  color: var(--fg);
  border-bottom-color: var(--accent);
}

/* ===== Multimedia page (/multimedia) ===== */
.mm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.mm-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.mm-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mm-card__media .artist-video--empty {
  position: absolute;
  inset: 0;
}
.mm-card__caption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 0.2rem 0;
}
.mm-card__caption .title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mm-card__caption .meta {
  font-size: 0.82rem;
  color: var(--fg-dim);
}
