/* ============================================
   STALE JAN — DESIGN SYSTEM
   Indie Rock from Norway
   Dark, atmospheric, warm amber accent
   ============================================ */

:root,
[data-theme='light'] {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing System (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — warm off-white */
  --color-bg: #f5f3ef;
  --color-surface: #ffffff;
  --color-surface-2: #faf8f4;
  --color-surface-offset: #efede8;
  --color-surface-offset-2: #e8e5df;
  --color-surface-dynamic: #ddd9d2;
  --color-divider: #d8d4cd;
  --color-border: #c9c4ba;

  /* Text — warm dark */
  --color-text: #1a1916;
  --color-text-muted: #6b6862;
  --color-text-faint: #9a9790;
  --color-text-inverse: #f5f3ef;

  /* Accent — burnt amber (stage lighting) */
  --color-accent: #b85415;
  --color-accent-hover: #9a4710;
  --color-accent-active: #7d3a0d;
  --color-accent-highlight: #f0e0d0;
  --color-accent-glow: oklch(0.55 0.15 45 / 0.15);

  /* Secondary accent — warm gold */
  --color-gold: #b07a00;
  --color-gold-hover: #8a5b00;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);
  --shadow-glow: 0 0 40px oklch(0.55 0.15 45 / 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Clash Display', 'Arial', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* DARK MODE — moody, atmospheric */
[data-theme='dark'] {
  --color-bg: #0d0c0b;
  --color-surface: #161513;
  --color-surface-2: #1c1b18;
  --color-surface-offset: #14130f;
  --color-surface-offset-2: #1f1d19;
  --color-surface-dynamic: #2a2823;
  --color-divider: #252320;
  --color-border: #33302a;

  --color-text: #e8e6e0;
  --color-text-muted: #8a877f;
  --color-text-faint: #5a5752;
  --color-text-inverse: #0d0c0b;

  --color-accent: #d4631a;
  --color-accent-hover: #e8732a;
  --color-accent-active: #f08540;
  --color-accent-highlight: #2a1f15;
  --color-accent-glow: oklch(0.6 0.15 45 / 0.2);

  --color-gold: #e8af34;
  --color-gold-hover: #fdc551;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.5);
  --shadow-glow: 0 0 60px oklch(0.6 0.15 45 / 0.15);
}

/* System dark mode fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0d0c0b;
    --color-surface: #161513;
    --color-surface-2: #1c1b18;
    --color-surface-offset: #14130f;
    --color-surface-offset-2: #1f1d19;
    --color-surface-dynamic: #2a2823;
    --color-divider: #252320;
    --color-border: #33302a;
    --color-text: #e8e6e0;
    --color-text-muted: #8a877f;
    --color-text-faint: #5a5752;
    --color-text-inverse: #0d0c0b;
    --color-accent: #d4631a;
    --color-accent-hover: #e8732a;
    --color-accent-active: #f08540;
    --color-accent-highlight: #2a1f15;
    --color-accent-glow: oklch(0.6 0.15 45 / 0.2);
    --color-gold: #e8af34;
    --color-gold-hover: #fdc551;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.4);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.5);
    --shadow-glow: 0 0 60px oklch(0.6 0.15 45 / 0.15);
  }
}

/* ============================================
   GRAIN OVERLAY — atmospheric texture
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container-wide {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container-narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

section {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

html {
  overflow-x: clip;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}

.logo .logo-image {
  height: 44px;
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-interactive);
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
}

.theme-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--color-text);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-interactive), opacity var(--transition-interactive);
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-8) var(--space-4);
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 49;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-list--open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    font-size: var(--text-lg);
    font-family: var(--font-display);
    font-weight: 500;
    padding-block: var(--space-2);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--space-16);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--color-accent-glow), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 20%, oklch(0.5 0.1 45 / 0.08), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  text-shadow: 0 0 80px oklch(0.6 0.15 45 / 0.1);
}

.hero-title .accent {
  color: var(--color-accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: var(--space-8);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg);
  transform: translateY(-1px);
}

.btn-secondary {
  background: oklch(from var(--color-text) l c h / 0.08);
  color: var(--color-text);
  border: 1px solid oklch(from var(--color-text) l c h / 0.12);
}

.btn-secondary:hover {
  background: oklch(from var(--color-text) l c h / 0.12);
  color: var(--color-text);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   STREAMING LINKS
   ============================================ */
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  color: var(--color-text-muted);
  text-decoration: none;
}

.streaming-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-highlight);
}

.streaming-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-header {
  margin-bottom: var(--space-10);
}

.section-eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-12);
  }
}

.about-text p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-photo-feature {
  margin-bottom: var(--space-6);
}

.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
  box-shadow: var(--shadow-lg);
}

.about-photo-feature .about-image {
  aspect-ratio: 16 / 9;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.about-gallery .about-image {
  aspect-ratio: 1 / 1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.stat-card {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   COLLABORATORS
   ============================================ */
.collab-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.collab-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  color: var(--color-text);
}

.collab-tag strong {
  color: var(--color-accent);
  margin-right: var(--space-1);
  font-weight: 600;
}

/* ============================================
   MUSIC / DISCOGRAPHY
   ============================================ */
.discography-filter {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
  color: var(--color-text-muted);
}

.filter-btn:hover {
  color: var(--color-text);
  border-color: oklch(from var(--color-text) l c h / 0.2);
}

.filter-btn.active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.release-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.release-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.04);
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}

.release-item:hover {
  border-color: oklch(from var(--color-accent) l c h / 0.3);
  background: var(--color-surface-2);
}

.release-number {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-faint);
  width: 32px;
  text-align: right;
}

.release-item .cover-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
  box-shadow: var(--shadow-sm);
}

.release-info {
  min-width: 0;
}

.release-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.release-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: oklch(from var(--color-accent) l c h / 0.12);
  color: var(--color-accent);
}

.release-date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .release-item {
    grid-template-columns: auto 1fr;
  }
  .release-date {
    grid-column: 2;
    font-size: var(--text-xs);
  }
}

/* ============================================
   PRESS QUOTES
   ============================================ */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.press-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.press-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: var(--space-4);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: oklch(from var(--color-accent) l c h / 0.08);
  font-weight: 700;
}

.press-quote {
  display: block;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.press-card a:hover,
.press-card a:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: var(--space-1);
}

.press-source {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
}

/* ============================================
   PRESS COVERAGE LIST
   ============================================ */
.press-coverage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

@media (min-width: 640px) {
  .press-coverage {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .press-coverage {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.04);
}

.coverage-item a {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  color: inherit;
  text-decoration: none;
}

.coverage-item:has(a):hover,
.coverage-item:has(a:focus-visible) {
  border-color: oklch(from var(--color-accent) l c h / 0.45);
  background: var(--color-surface-2);
}

.coverage-item a:focus-visible {
  outline-offset: var(--space-2);
}

.coverage-country {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coverage-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

/* ============================================
   LATEST RELEASE FEATURE
   ============================================ */
.latest-release {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.latest-release::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--color-accent-glow), transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .latest-release {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-10);
  }
}

.release-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent), oklch(0.3 0.1 45));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.release-cover-img {
  width: min(100%, 300px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.release-art-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: oklch(1 0 0 / 0.9);
  text-align: center;
  padding: var(--space-4);
  line-height: 1.2;
}

.latest-release-info {
  position: relative;
  z-index: 1;
}

.latest-release-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.latest-release-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.latest-release-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* ============================================
   VIDEO
   ============================================ */
.video-embed {
  max-width: var(--content-default);
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  text-align: center;
}

.contact-email {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  display: inline-block;
  margin-block: var(--space-4) var(--space-8);
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  text-align: left;
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.contact-form label {
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
  background: var(--color-surface-offset);
  border: 1px solid oklch(from var(--color-text) l c h / 0.15);
  border-radius: var(--radius-md);
  line-height: 1.5;
}

.contact-form textarea {
  resize: vertical;
  min-height: calc(var(--space-32) + var(--space-12));
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.contact-form .btn {
  justify-self: start;
}

@media (min-width: 640px) {
  .contact-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: var(--space-5);
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  color: var(--color-text-muted);
  text-decoration: none;
}

.social-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  padding-block: var(--space-12) var(--space-8);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

.footer-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
  text-decoration: none;
}

.footer-logo .logo-image {
  height: 36px;
  opacity: 0.9;
}

.footer-logo .logo-text {
  font-size: var(--text-base);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-links {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.divider {
  height: 1px;
  background: oklch(from var(--color-text) l c h / 0.06);
  margin-block: var(--space-12);
  max-width: var(--content-default);
  margin-inline: auto;
}

/* ============================================
   EPK PAGE STYLES
   ============================================ */

.epk-hero {
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  padding-bottom: var(--space-16);
}

.epk-hero-content {
  max-width: 800px;
  z-index: 2;
}

.epk-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-accent);
  margin-top: var(--space-3);
}

.epk-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-6);
}

.epk-meta-item { white-space: nowrap; }
.epk-meta-divider { opacity: 0.4; }

.epk-cover-art {
  margin-top: var(--space-10);
  z-index: 2;
}

.epk-cover-art img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5);
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
}

.epk-cover-large img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5);
}

.epk-blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
}

/* Lyrics Excerpts */
.lyrics-excerpts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}

.lyric-card {
  background: oklch(from var(--color-surface-2) l c h / 0.5);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
}

.lyric-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

.lyric-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* Full Lyrics */
.lyrics-full {
  max-width: 700px;
  margin: 0 auto;
}

.lyric-section {
  margin-bottom: var(--space-8);
}

.lyric-heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.lyric-section p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.lyrics-copyright {
  margin-top: var(--space-8);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Credits */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.credit-item {
  background: oklch(from var(--color-surface-2) l c h / 0.5);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.credit-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.credit-value {
  font-size: var(--text-base);
  color: var(--color-text);
  font-weight: 500;
}

.epk-blackbird-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

/* Press Assets */
.press-assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.press-asset-card {
  display: block;
  background: oklch(from var(--color-surface-2) l c h / 0.5);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.press-asset-card:hover {
  transform: translateY(-4px);
  border-color: oklch(from var(--color-accent) l c h / 0.4);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.3);
}

.press-asset-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.press-asset-info {
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.press-asset-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.press-asset-action {
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.press-assets-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-6);
}

.press-assets-note a {
  color: var(--color-accent);
  text-decoration: none;
}

.press-assets-note a:hover {
  text-decoration: underline;
}

/* EPK COLLAPSIBLE SECTIONS */
.epk-collapse {
  width: 100%;
}

.epk-collapse[open] .epk-collapse-icon {
  transform: rotate(180deg);
}

.epk-collapse-icon {
  transition: transform 0.25s ease;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.epk-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  list-style: none;
  padding: var(--space-2) 0;
}

.epk-collapse-header::-webkit-details-marker {
  display: none;
}

.epk-collapse-header:hover .epk-collapse-icon {
  color: var(--color-text);
}
