/* EPK page — builds on styles.css (dark theme) */

.epk-head {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem);
}

.epk-head h1 {
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.epk-sub {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
}

.epk-head .hero-actions {
  margin-top: 1.5rem;
}

.tour-content {
  padding: clamp(1.25rem, 3vw, 2rem);
}

/* Long EPK sidebar headings (Selected Shows, Technical Rider) must wrap
   inside the sidebar column instead of overflowing into the content. */
.tour-sidebar h2 {
  white-space: normal;
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
  line-height: 1.05;
}

/* No auto-hyphenation on EPK copy (avoids "Spo-tify" line breaks). */
main p,
main li {
  hyphens: none;
}

.epk-copy {
  max-width: 44rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

/* Stats: fixed column counts so all 6 cells always fill the grid
   with no empty leftover area (3x2, 2x3, 1x6). */
.epk-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .epk-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .epk-stats {
    grid-template-columns: 1fr;
  }
}

.epk-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem;
  background: var(--bg);
}

.epk-stats strong {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.epk-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Photos */
.epk-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.75rem;
}

.epk-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* Mix embed */
.epk-live-links {
  margin-top: 1rem;
}

.epk-mix {
  margin-top: 1.25rem;
}

.epk-mix iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.epk-video iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* Lists */
.epk-list {
  list-style: none;
  max-width: 44rem;
}

.epk-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  font-weight: 600;
}

.epk-list li:last-child {
  border-bottom: 0;
}

.epk-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--ink);
}

.epk-note {
  margin-top: 1rem;
}

/* Contact */
.epk-contact-line {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.epk-contact-line + .epk-contact-line {
  margin-top: 0.4rem;
}

.epk-contact-line a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Print: flip to light, hide chrome, keep content */
@media print {
  :root {
    --ink: #111;
    --bg: #fff;
    --line: #999;
    --muted: #444;
  }

  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .site-footer,
  .epk-mix,
  .epk-live-links {
    display: none !important;
  }

  .epk-photos img {
    aspect-ratio: auto;
    max-height: 3.2in;
  }

  .panel-section {
    break-inside: avoid;
  }

  a {
    color: #111;
  }
}
