/* ═══════════════════════════════════════════════════
   missed call · style system
   shared across all pages.
   ═══════════════════════════════════════════════════ */

:root {
  --coral:      #FF6B6B;
  --coral-soft: #FF8A80;
  --peach:      #FFB695;
  --sand:       #F5E6D3;
  --warm-white: #FFF8F2;
  --stone:      #8A8378;
  --night:      #0A0908;
  --night-mid:  #1A1815;
  --night-light:#2A2722;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--warm-white);
  font-family: 'DM Mono', monospace;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--night); }

a { color: inherit; }

/* ─── SITE NAV ─────────────────────────── */

.site-nav {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  width: 100%;
}

.site-nav.is-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.site-nav-mark {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--coral);
  text-shadow:
    0 0 4px rgba(255, 107, 107, 0.95),
    0 0 12px rgba(255, 107, 107, 0.55);
  text-decoration: none;
  animation: neon-flicker 8s 2s infinite;
}

.site-nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav-links a:hover { color: var(--warm-white); }
.site-nav-links a.is-active { color: var(--warm-white); }

/* ─── HERO (about page) ────────────────── */

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.55) saturate(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.35) 0%,
    rgba(10, 9, 8, 0.25) 30%,
    rgba(10, 9, 8, 0.55) 65%,
    rgba(10, 9, 8, 0.92) 92%,
    var(--night) 100%
  );
}

.hero-status-bar {
  position: relative;
  z-index: 2;
  padding: 0 32px 0;
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
}

.hero-status {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.55);
}

.hero-status .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.7);
  animation: pulse 2.5s ease-in-out infinite;
}

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

@keyframes neon-flicker {
  0%, 18%, 20%, 30%, 32%, 70%, 100% {
    text-shadow:
      0 0 4px rgba(255, 107, 107, 0.95),
      0 0 12px rgba(255, 107, 107, 0.55);
  }
  19% { text-shadow: 0 0 2px rgba(255, 107, 107, 0.45), 0 0 6px rgba(255, 107, 107, 0.25); }
  31% { text-shadow: 0 0 3px rgba(255, 107, 107, 0.6),  0 0 8px rgba(255, 107, 107, 0.35); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 32px 64px;
  max-width: 820px;
}

.hero-headline {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(38px, 8.5vw, 86px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.hero-headline .accent { color: var(--coral); }

.hero-headline .line {
  display: inline-block;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-headline .line-1 { animation-delay: 0.5s; }
.hero-headline .line-2 { animation-delay: 0.95s; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.6);
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 1.45s forwards;
}

.hero-meta span::before {
  content: '·';
  margin-right: 14px;
  color: rgba(245, 230, 211, 0.3);
}

.hero-meta span:first-child::before { display: none; }

.hero-scroll {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(138, 131, 120, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 1.85s forwards;
}

.hero-scroll:hover { color: var(--warm-white); }
.hero-scroll::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(138, 131, 120, 0.4);
}

/* ─── PAGE HEADER (non-about) ──────────── */

.page-header {
  padding: 64px 32px 40px;
  max-width: 760px;
  margin: 0 auto;
}

.page-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
}

.page-title {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--warm-white);
  margin-bottom: 18px;
}

.page-title .accent { color: var(--coral); }

.page-intro {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 248, 242, 0.62);
  max-width: 560px;
}

/* ─── SCENE ───────────────────────────── */

.scene {
  padding: 96px 32px;
  max-width: 580px;
  margin: 0 auto;
}

.scene-time {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(138, 131, 120, 0.55);
  margin-bottom: 4px;
  display: block;
}

.scene-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(138, 131, 120, 0.4);
  margin-bottom: 60px;
}

.scene p {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: rgba(255, 248, 242, 0.78);
  margin-bottom: 28px;
}

.scene p.fragment {
  color: rgba(255, 248, 242, 0.55);
  font-size: 16px;
}

.scene p.incoming {
  color: var(--coral);
  font-size: 17px;
}

.scene p.italic { font-style: italic; }

.scene-final {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--night-light);
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--warm-white);
}

.scene-aphorism {
  margin-top: 28px;
  font-family: 'Courier Prime', monospace;
  font-weight: 400;
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: rgba(255, 248, 242, 0.55);
}

.scene-aphorism .accent { color: var(--coral); }

/* ─── FOR YOU ─────────────────────────── */

.for-you {
  padding: 100px 32px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--night-light);
  border-bottom: 1px solid var(--night-light);
}

.for-you-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
  opacity: 0.6;
}

.for-you-quote {
  font-family: 'Courier Prime', monospace;
  font-weight: 400;
  font-size: clamp(20px, 3.6vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  max-width: 620px;
  margin: 0 auto;
}

/* ─── SECTION LABEL ───────────────────── */

.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--night-light);
}

/* ─── EDITIONS / CALL LOG ─────────────── */

.editions {
  padding: 64px 32px 80px;
  max-width: 760px;
  margin: 0 auto;
}

/* Compact list (about page) */
.editions-list .event-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--night-light);
}

.editions-list .event-item:first-child { border-top: 1px solid var(--night-light); }

.event-icon {
  flex-shrink: 0;
  width: 22px;
  margin-top: 3px;
}

.event-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.is-cancelled .event-icon svg {
  stroke: var(--stone);
  opacity: 0.4;
}

.event-body { flex: 1; min-width: 0; }

.event-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.event-edition {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--warm-white);
}

.is-cancelled .event-edition {
  color: var(--stone);
  text-decoration: line-through;
  text-decoration-color: rgba(138, 131, 120, 0.35);
}

.event-date {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone);
  white-space: nowrap;
}

.event-tagline {
  font-size: 14px;
  color: rgba(255, 248, 242, 0.55);
  margin-bottom: 18px;
  line-height: 1.45;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: var(--coral);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.pill:hover { background: rgba(255, 107, 107, 0.08); border-color: var(--coral); }
.pill .arrow { font-size: 13px; transition: transform 0.15s; }
.pill:hover .arrow { transform: translateX(2px); }

.pill.is-muted {
  border-color: var(--night-light);
  color: var(--stone);
}

.pill.is-muted:hover {
  background: rgba(138, 131, 120, 0.08);
  border-color: var(--stone);
  color: var(--warm-white);
}

.event-tbc {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(138, 131, 120, 0.45);
}

.event-missed {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(138, 131, 120, 0.4);
}

/* ─── CALL LOG · expanded edition cards ─ */

.edition-card {
  padding: 56px 0;
  border-bottom: 1px solid var(--night-light);
}

.edition-card:first-child { border-top: 1px solid var(--night-light); }

.edition-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.edition-card-title {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--warm-white);
}

.edition-card-status {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 8px;
}

.edition-card-status .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.edition-card-status.is-upcoming  .dot { background: var(--coral); box-shadow: 0 0 8px rgba(255,107,107,0.7); animation: pulse 2.5s ease-in-out infinite; }
.edition-card-status.is-cancelled .dot { background: var(--stone); opacity: 0.6; }
.edition-card-status.is-past      .dot { background: var(--peach); opacity: 0.7; }

.edition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 248, 242, 0.5);
  margin-bottom: 22px;
}

.edition-meta dt {
  display: inline;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-size: 10px;
  margin-right: 6px;
}

.edition-meta dd { display: inline; color: rgba(255, 248, 242, 0.7); }

.edition-tagline {
  font-family: 'Courier Prime', monospace;
  font-weight: 400;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.35;
  color: rgba(255, 248, 242, 0.78);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.edition-section {
  margin-top: 32px;
}

.edition-section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}

.artist-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artist-list a, .artist-list span {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 17px;
  color: var(--warm-white);
  text-decoration: none;
  transition: color 0.15s;
}

.artist-list a:hover { color: var(--coral); }
.artist-list .artist-meta {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-top: -2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.1);
  transition: filter 0.3s;
}

.gallery-grid img:hover { filter: brightness(1) saturate(1.15); }

.recap-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 248, 242, 0.7);
  max-width: 580px;
}

/* ─── MANIFESTO ───────────────────────── */

.manifesto {
  padding: 96px 32px;
  max-width: 620px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.manifesto-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--night-light);
}

.manifesto p {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: rgba(255, 248, 242, 0.78);
  margin-bottom: 28px;
}

.manifesto .group { margin-bottom: 28px; }

.manifesto .group p.fragment {
  font-size: 16px;
  color: rgba(255, 248, 242, 0.5);
  margin-bottom: 6px;
  line-height: 1.5;
}

.manifesto .group p.fragment:last-child { margin-bottom: 0; }

.manifesto .pivot {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 19px;
  color: var(--warm-white);
  letter-spacing: -0.01em;
  margin-top: 8px;
  margin-bottom: 36px;
}

.manifesto .aphorism {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--warm-white);
  margin: 48px 0;
}

.manifesto .aphorism .accent { color: var(--coral); }

.manifesto-close {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--night-light);
}

.manifesto-close .closer {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(24px, 4.5vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.manifesto-close .signature {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(20px, 3.6vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--coral);
}

/* ─── STAY CLOSE ──────────────────────── */

.stay-close {
  padding: 100px 32px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--night-light);
}

.stay-close h2 {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--warm-white);
}

.stay-close-sub {
  font-size: 13px;
  color: rgba(255, 248, 242, 0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.stay-close-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--coral);
  color: var(--night);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s, transform 0.1s;
}

.stay-close-cta:hover { background: var(--coral-soft); }
.stay-close-cta:active { transform: scale(0.98); }
.stay-close-cta .arrow { font-size: 14px; transition: transform 0.15s; }
.stay-close-cta:hover .arrow { transform: translateX(3px); }

/* ─── FOOTER ──────────────────────────── */

footer {
  padding: 60px 32px 48px;
  border-top: 1px solid var(--night-light);
  max-width: 760px;
  margin: 0 auto;
}

.footer-line {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(138, 131, 120, 0.55);
  margin-bottom: 6px;
}

.footer-status {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(138, 131, 120, 0.4);
  font-style: italic;
  margin-bottom: 28px;
}

.footer-tagline {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  margin-bottom: 36px;
  line-height: 1.2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--warm-white); }
.footer-sep { color: var(--night-light); }

/* ─── SCROLL REVEAL ───────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ─── INCOMING CALL NOTIFICATION ──────── */

.notification {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(-160%);
  width: calc(100% - 28px);
  max-width: 380px;
  z-index: 1000;
  background: rgba(20, 18, 15, 0.78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0.3, 1),
              opacity 0.3s ease-out;
  font-family: 'DM Mono', monospace;
  user-select: none;
}

.notification.is-visible { transform: translateX(-50%) translateY(0); }

.notification-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--coral);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(255, 107, 107, 0.45);
}

.notification-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--night);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notification-body { flex: 1; min-width: 0; }

.notification-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.55);
  margin-bottom: 3px;
}

.notification-title {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--warm-white);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.notification-text {
  font-size: 12px;
  color: rgba(245, 230, 211, 0.7);
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin-top: 2px;
}

/* ─── SOUNDTRACK BUTTON & DRAWER ──────── */

.soundtrack-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(20, 18, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 107, 0.4);
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 107, 107, 0.15);
}

.soundtrack-btn:hover {
  background: rgba(35, 30, 25, 0.95);
  border-color: var(--coral);
}

.soundtrack-btn:active { transform: scale(0.97); }

.soundtrack-btn-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--night);
  border-radius: 50%;
  font-size: 8px;
  padding-left: 1px;
}

body.drawer-open .soundtrack-btn { opacity: 0; pointer-events: none; }

.soundtrack-drawer {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  width: calc(100% - 36px);
  max-width: 420px;
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  transform: translateY(calc(100% + 30px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0.3, 1),
              opacity 0.25s ease-out;
}

.soundtrack-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.soundtrack-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.soundtrack-drawer-title {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--warm-white);
}

.soundtrack-drawer-meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 2px;
}

.soundtrack-drawer-close {
  background: transparent;
  border: 1px solid var(--night-light);
  color: var(--stone);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}

.soundtrack-drawer-close:hover {
  color: var(--warm-white);
  border-color: var(--stone);
}

.soundtrack-drawer-player iframe {
  width: 100%;
  height: 166px;
  border: none;
  border-radius: 8px;
  display: block;
}

.soundtrack-drawer-empty {
  padding: 24px 8px 20px;
  text-align: center;
}

.soundtrack-drawer-empty p {
  font-size: 13px;
  color: rgba(255, 248, 242, 0.55);
  line-height: 1.55;
  margin-bottom: 16px;
}

.soundtrack-drawer-empty a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: var(--coral);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.soundtrack-drawer-empty a:hover {
  background: rgba(255, 107, 107, 0.08);
}

.soundtrack-drawer-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.soundtrack-drawer-foot a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.15s;
}

.soundtrack-drawer-foot a:hover { color: var(--coral-soft); }

/* ─── SOUNDTRACK PAGE ─────────────────── */

.soundtrack-section {
  padding: 64px 32px;
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--night-light);
}

.soundtrack-section:first-of-type { border-top: none; }

.soundtrack-section-title {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(24px, 4.5vw, 32px);
  letter-spacing: -0.01em;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.soundtrack-section-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
}

.artist-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--night-light);
}

.artist-block:last-child { border-bottom: none; }

.artist-block-name {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.artist-block-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.artist-block-embed iframe {
  width: 100%;
  height: 120px;
  border: none;
  border-radius: 6px;
}

/* ─── RESPONSIVE ──────────────────────── */

@media (max-width: 540px) {
  .site-nav     { padding: 18px 22px; }
  .site-nav-links { gap: 14px; }
  .site-nav-links a { font-size: 10px; letter-spacing: 0.12em; }

  .hero-status-bar { padding: 0 22px; }
  .hero-content    { padding: 0 22px 48px; }
  .page-header     { padding: 48px 22px 32px; }
  .scene           { padding: 72px 22px; }
  .for-you         { padding: 72px 22px; }
  .editions        { padding: 56px 22px 60px; }
  .manifesto       { padding: 72px 22px; }
  .stay-close      { padding: 72px 22px; }
  .soundtrack-section { padding: 48px 22px; }
  footer           { padding: 48px 22px 40px; }

  .event-top { flex-direction: column; gap: 4px; align-items: flex-start; }
  .stay-close-cta { width: 100%; justify-content: center; }

  .soundtrack-btn  { bottom: 14px; right: 14px; padding: 10px 14px; }
  .soundtrack-drawer { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}

/* ─── REDUCED MOTION ──────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .notification { display: none; }
}
