/* ========================================
   Seth Bonnell - Electronic Press Kit
   Self-contained stylesheet
   ======================================== */

/* ---------- Variables ---------- */
:root {
  --black: #050505;
  --dark: #0a0a0a;
  --dark-2: #111;
  --dark-3: #181818;
  --dark-4: #222;
  --gray: #666;
  --mid-gray: #999;
  --light-gray: #bbb;
  --white: #f0f0f0;
  --accent: #e84393;
  --accent-hover: #ff6bab;
  --accent-dim: #c9357d;
  --accent-glow: rgba(232, 67, 147, 0.2);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --max-width: 1000px;
  --nav-height: 60px;
  --section-gap: 4rem;
  --gradient: linear-gradient(135deg, #e84393, #c946d4, #6c3ce0);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ---------- Nav ---------- */
.epk-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  border-radius: 4px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav-logo:hover img {
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.nav-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient);
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
  color: var(--white);
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.epk-hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: brightness(0.55) saturate(0.9);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0.4) 50%, rgba(5,5,5,0.95) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(232, 67, 147, 0.1) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-name img {
  display: inline-block;
  width: clamp(220px, 34vw, 420px);
  height: auto;
  margin: 0 auto;
  filter:
    invert(1)
    drop-shadow(0 4px 14px rgba(0,0,0,0.55))
    drop-shadow(0 0 34px rgba(232,67,147,0.35))
    drop-shadow(0 0 68px rgba(201,70,212,0.18));
  mix-blend-mode: screen;
}
.hero-name-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--light-gray);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.hero-location {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
}

.hero-quote {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--light-gray);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  text-align: left;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 100px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---------- Sections (shared) ---------- */
.epk-section {
  padding: var(--section-gap) 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--white);
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
}

/* ---------- Bio ---------- */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  margin-top: 2rem;
}

.bio-block {
  margin-bottom: 2rem;
}

.bio-block:last-child {
  margin-bottom: 0;
}

.bio-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.bio-block p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.8;
}

.bio-sidebar {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.75rem;
  align-self: start;
}

.sidebar-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.sidebar-facts dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.sidebar-facts dd {
  font-size: 0.88rem;
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.sidebar-facts dd:last-child {
  margin-bottom: 0;
}

/* ---------- Press Photos ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.photo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: var(--dark-2);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.7);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.photo-card:hover .photo-overlay {
  opacity: 1;
}

/* ---------- Music ---------- */
.music-embed {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.platform-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.pill-label {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  color: var(--white);
  background: var(--dark-4);
  border-color: var(--accent);
}

/* ---------- Discography Table ---------- */
.table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.disco-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.disco-table thead {
  border-bottom: 2px solid var(--dark-4);
}

.disco-table th {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-align: left;
  padding: 0.75rem 1rem;
}

.disco-table td {
  padding: 0.75rem 1rem;
  color: var(--light-gray);
  border-bottom: 1px solid var(--glass-border);
  vertical-align: top;
}

.disco-table tbody tr:hover {
  background: var(--glass);
}

.disco-table td:first-child {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

/* ---------- Performances ---------- */
.perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.perf-block h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.perf-list {
  list-style: none;
}

.perf-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--light-gray);
}

.perf-list li:last-child {
  border-bottom: none;
}

.perf-loc {
  font-size: 0.75rem;
  color: var(--gray);
  margin-left: 0.5rem;
}

/* ---------- Video ---------- */
.video-embed {
  margin-top: 1.5rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--dark-2);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--mid-gray);
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-card {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.5rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.contact-card a {
  font-size: 0.95rem;
  font-weight: 500;
  word-break: break-all;
}

/* ---------- Social ---------- */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--white);
  background: var(--dark-4);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Upcoming Shows ---------- */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.show-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s ease;
}

.show-card:hover {
  border-color: var(--accent-dim);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 0.5rem 0;
}

.show-month {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.show-day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.show-details h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.show-venue {
  font-size: 0.88rem;
  color: var(--light-gray);
  margin-bottom: 0.15rem;
}

.show-meta {
  font-size: 0.78rem;
  color: var(--gray);
}

.shows-cta {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

/* ---------- Credibility Strip ---------- */
.credibility-strip {
  background: linear-gradient(90deg, rgba(232,67,147,0.08), rgba(108,60,224,0.08));
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
}

.cred-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--light-gray);
  text-align: center;
}

.cred-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.cred-names {
  font-weight: 500;
  color: var(--white);
}

.cred-divider {
  color: var(--dark-4);
  font-weight: 300;
}

.cred-radio {
  color: var(--light-gray);
}

.cred-radio strong {
  color: var(--white);
  font-weight: 600;
}

/* ---------- Section tag (inline pre-title label) ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  background: var(--accent-glow);
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

/* ---------- Featured Track ---------- */
.ft-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: start;
}

.ft-embed {
  border-radius: 12px;
  overflow: hidden;
}

.ft-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ft-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.ft-sub {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.tag-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 0.25rem;
}

.pill-static {
  pointer-events: none;
}

.pill-static:hover {
  background: var(--dark-3);
  border-color: var(--glass-border);
}

.ft-cta {
  align-self: start;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.ft-cta:hover {
  color: var(--accent-hover);
}

/* ---------- Live Performance ---------- */
.live-video {
  margin: 1.5rem auto 0;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark-2);
}

.live-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.placeholder-block {
  background: var(--dark-2);
  border: 2px dashed var(--dark-4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.placeholder-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
  margin: 0;
}

.placeholder-hint {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  margin: 0;
}

.live-tech {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
}

.live-tech-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.live-tech-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.live-tech-list li {
  font-size: 0.88rem;
  color: var(--light-gray);
}

.live-tech-list strong {
  color: var(--white);
  font-weight: 600;
}

.live-cta {
  margin-top: 1.75rem;
  text-align: left;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient);
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  color: var(--white);
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ---------- Press & Assets ---------- */
.news-hook {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, rgba(232,67,147,0.1), rgba(108,60,224,0.05));
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  flex-wrap: wrap;
}

.news-hook-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.news-hook-body {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
}

.subsection-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.subsection-heading:first-of-type {
  margin-top: 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote-card {
  padding: 1.25rem;
  min-height: 120px;
}

.press-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.download-btn {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1.25rem;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.download-btn:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--dark-3);
  transform: translateY(-2px);
}

.download-btn-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.download-btn-hint {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* ---------- Sync & Licensing ---------- */
.sync-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sync-block {
  padding: 1.25rem 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
}

.sync-block-wide {
  grid-column: 1 / -1;
}

.sync-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.sync-block p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.sync-cta {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

/* ---------- Contact additions ---------- */
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card-note {
  font-size: 0.88rem;
  color: var(--light-gray);
  font-style: italic;
}

#contact .social-row {
  margin-top: 2.5rem;
  justify-content: flex-start;
}

/* ---------- Print-only QR codes (shown only in print) ---------- */
.ft-qr,
.page1-qr {
  display: none;
}

/* ---------- Footer ---------- */
.epk-footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.epk-footer p {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-updated {
  color: var(--mid-gray) !important;
  font-style: italic;
}

.epk-footer a {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  :root {
    --section-gap: 3rem;
  }

  .epk-hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero-quote {
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat {
    min-width: 80px;
  }

  .stat-value {
    font-size: 1rem;
  }

  .bio-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bio-sidebar {
    order: -1;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .perf-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .disco-table td:first-child {
    white-space: normal;
  }

  .show-card {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .ft-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .live-tech-list {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .press-actions {
    grid-template-columns: 1fr;
  }

  .sync-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cred-inner {
    font-size: 0.78rem;
    gap: 0.5rem 1rem;
  }

  .cred-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .epk-hero {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-name {
    font-size: 2rem;
  }

  .hero-quote {
    font-size: 0.85rem;
    padding-left: 1rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat {
    min-width: 70px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .nav-right {
    gap: 0.75rem;
  }

  .nav-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }

  .show-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .show-date {
    flex-direction: row;
    gap: 0.5rem;
  }
}

/* ========================================
   Print Styles — Designed PDF Press Kit
   ======================================== */

@page {
  size: letter;
  margin: 0.5in 0.6in;
}

@media print {

  /* --- Base reset (keep strategic color) --- */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    background: white !important;
    color: #1a1a1a !important;
    font-size: 9.5pt;
    line-height: 1.5;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  a {
    color: #1a1a1a !important;
    text-decoration: none !important;
  }

  /* --- Hide web-only elements --- */
  .epk-nav,
  .epk-footer,
  .video-embed,
  .video-caption,
  .music-embed,
  .photo-overlay,
  .nav-btn,
  .platform-pills,
  .hero-bg,
  #video,
  #music,
  #social,
  .shows-cta,
  .ft-embed,
  .live-video,
  .live-cta,
  .press-actions,
  .social-row,
  .news-hook {
    display: none !important;
  }

  /* --- Hero: dark branded header banner --- */
  .epk-hero {
    background: #0a0a0a !important;
    color: white !important;
    padding: 0.5in 0.9in 0.4in !important;
    margin: -0.5in -0.6in 0 !important;
    width: calc(100% + 1.2in) !important;
    text-align: left;
    border-bottom: 3px solid #e84393 !important;
    page-break-after: avoid;
  }

  .hero-inner {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0 0.5in;
    align-items: start;
  }

  .hero-label {
    grid-column: 1 / -1;
    font-size: 7pt;
    letter-spacing: 0.18em;
    color: #e84393 !important;
    margin-bottom: 0.1in;
  }

  .hero-name {
    grid-column: 1;
    font-size: 26pt;
    color: white !important;
    margin-bottom: 0.05in;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .hero-name img { display: none !important; }
  .hero-name-text {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .hero-tagline {
    grid-column: 1;
    font-size: 10pt;
    color: #bbb !important;
    margin-bottom: 0.03in;
  }

  .hero-location {
    grid-column: 1;
    font-size: 8.5pt;
    color: #888 !important;
    margin-bottom: 0;
  }

  .hero-quote {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
    max-width: 2.6in;
    font-size: 8.5pt;
    color: #ccc !important;
    border-left: 2px solid #e84393 !important;
    padding-left: 0.15in;
    margin: 0;
    line-height: 1.5;
  }

  .hero-stats {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.4in;
    margin-top: 0.25in;
    padding-top: 0.18in;
    border-top: 1px solid #333 !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
  }

  .stat {
    min-width: auto;
  }

  .stat-value {
    font-size: 14pt;
    font-weight: 700;
    color: white !important;
  }

  .stat-label {
    font-size: 6pt;
    letter-spacing: 0.1em;
    color: #888 !important;
  }

  /* --- Sections --- */
  .epk-section {
    padding: 0.15in 0 0.1in;
    border-bottom: 1px solid #ddd !important;
    break-inside: avoid;
  }

  /* Keep titles glued to their content, keep photo-grid together */
  .section-title { break-after: avoid; }
  .photo-grid { break-inside: avoid; }

  /* Explicit page breaks for clean section flow */
  #bio {
    break-before: page !important;
    page-break-before: always !important;
  }

  #live {
    break-before: page !important;
    page-break-before: always !important;
  }

  /* --- Featured Track QR (next to Smile metadata) --- */
  .ft-qr {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.04in;
  }

  .ft-qr-image {
    width: 1.1in;
    height: 1.1in;
    display: block;
  }

  .ft-qr-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 7.5pt;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e84393 !important;
    margin: 0.03in 0 0 0;
    line-height: 1.2;
  }

  .ft-qr-sub {
    font-size: 7pt;
    color: #555 !important;
    margin: 0;
    line-height: 1.2;
  }

  /* --- Page 1 footer QR (sethbonnell.com, fills white space) --- */
  .page1-qr {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.25in 0 0.15in;
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    break-before: avoid !important;
    page-break-before: avoid !important;
  }

  .page1-qr-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.2in;
    padding: 0.12in 0.25in;
    border: 1px solid #ddd !important;
    border-radius: 4px;
    background: #f5f5f5 !important;
  }

  .page1-qr-image {
    width: 1.1in;
    height: 1.1in;
    display: block;
    flex: none;
  }

  .page1-qr-text {
    display: flex;
    flex-direction: column;
    gap: 0.04in;
  }

  .page1-qr-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8pt;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e84393 !important;
    margin: 0;
    line-height: 1.2;
  }

  .page1-qr-url {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12pt;
    font-weight: 700;
    color: #1a1a1a !important;
    margin: 0;
    line-height: 1.2;
  }

  .section-inner {
    max-width: 100%;
  }

  .section-title {
    font-size: 11pt;
    font-weight: 700;
    color: #e84393 !important;
    border-bottom: none;
    padding-bottom: 0.03in;
    margin-bottom: 0.06in;
  }

  .section-subtitle {
    display: none;
  }

  /* --- Bio --- */
  .bio-layout {
    grid-template-columns: 1fr 2.2in;
    gap: 0.25in;
    margin-top: 0.1in;
  }

  .bio-content {
    grid-column: 1 !important;
    order: 0 !important;
  }

  .bio-sidebar {
    grid-column: 2 !important;
    order: 0 !important;
  }

  .bio-block {
    margin-bottom: 0.08in;
  }

  .bio-label {
    font-size: 7pt;
    color: #e84393 !important;
    margin-bottom: 0.05in;
  }

  .bio-block p {
    font-size: 9pt;
    color: #333 !important;
    line-height: 1.55;
  }

  .bio-sidebar {
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px;
    padding: 0.15in;
  }

  .sidebar-heading {
    font-size: 9pt;
    color: #1a1a1a !important;
    margin-bottom: 0.1in;
  }

  .sidebar-facts dt {
    font-size: 6.5pt;
    color: #e84393 !important;
    margin-bottom: 0;
  }

  .sidebar-facts dd {
    font-size: 8.5pt;
    color: #333 !important;
    margin-bottom: 0.08in;
  }

  /* --- Press Photos --- */
  #photos {
    padding-top: 0.1in;
    padding-bottom: 0.08in;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.08in;
    margin-top: 0.05in;
  }

  .photo-card {
    border: 1px solid #ddd;
    border-radius: 2px;
    aspect-ratio: 16 / 9;
    background: #f5f5f5 !important;
  }

  /* --- Discography Table --- */
  .table-wrap {
    margin-top: 0.05in;
  }

  .disco-table {
    font-size: 8pt;
  }

  .disco-table thead {
    border-bottom: 2px solid #e84393 !important;
  }

  .disco-table th {
    font-size: 6.5pt;
    color: #e84393 !important;
    padding: 0.04in 0.08in;
    border: none !important;
  }

  .disco-table td {
    padding: 0.04in 0.08in;
    color: #333 !important;
    border-bottom: 1px solid #eee !important;
  }

  .disco-table td:first-child {
    font-weight: 600;
    color: #1a1a1a !important;
  }

  /* --- Performances --- */
  .perf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.15in;
    margin-top: 0.06in;
  }

  .perf-block h3 {
    font-size: 9pt;
    color: #1a1a1a !important;
    margin-bottom: 0.05in;
  }

  .perf-list li {
    font-size: 8.5pt;
    padding: 0.03in 0;
    color: #333 !important;
    border-bottom: 1px solid #eee !important;
  }

  .perf-loc {
    font-size: 7pt;
    color: #888 !important;
  }

  /* --- Upcoming Shows --- */
  #shows {
    break-before: avoid;
    page-break-before: avoid;
  }

  .shows-list {
    margin-top: 0.06in;
    gap: 0.06in;
  }

  .show-card {
    display: flex;
    align-items: center;
    gap: 0.15in;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-left: 3px solid #e84393 !important;
    border-radius: 2px;
    padding: 0.08in 0.12in;
    page-break-inside: avoid;
  }

  .show-date {
    min-width: 0.45in;
  }

  .show-month {
    font-size: 7pt;
    color: #e84393 !important;
  }

  .show-day {
    font-size: 16pt;
    color: #1a1a1a !important;
  }

  .show-details h3 {
    font-size: 9pt;
    color: #1a1a1a !important;
    margin-bottom: 0;
  }

  .show-venue {
    font-size: 8pt;
    color: #555 !important;
  }

  .show-meta {
    font-size: 7pt;
    color: #888 !important;
  }

  /* --- Contact --- */
  #contact {
    background: #f5f5f5 !important;
    padding: 0.15in 0.65in !important;
    margin: 0 -0.6in 0 !important;
    width: calc(100% + 1.2in) !important;
    border-top: 2px solid #e84393 !important;
    border-bottom: none !important;
    break-inside: avoid;
    break-before: avoid;
    page-break-before: avoid;
  }

  #contact .section-inner {
    padding: 0;
  }

  #contact .section-title {
    color: #1a1a1a !important;
    font-size: 11pt;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.15in;
    margin-top: 0.08in;
  }

  .contact-card {
    background: transparent !important;
    border: none !important;
    padding: 0;
  }

  .contact-card h3 {
    font-size: 6.5pt;
    color: #e84393 !important;
    margin-bottom: 0.02in;
  }

  .contact-card a {
    font-size: 8.5pt;
    color: #1a1a1a !important;
    font-weight: 600;
  }

  /* --- Links: only show URLs in contact section --- */
  a[href]::after {
    content: none;
  }

  .contact-card a[href^="http"]::after {
    content: "\A" attr(href);
    display: block;
    font-size: 6.5pt;
    font-weight: 400;
    color: #888 !important;
    word-break: break-all;
    white-space: pre-wrap;
  }

  .contact-card a[href^="mailto:"]::after,
  .contact-card a[href^="tel:"]::after {
    content: none;
  }

  /* --- Credibility strip --- */
  .credibility-strip {
    background: #f5f5f5 !important;
    border-bottom: 1px solid #ddd !important;
    padding: 0.12in 0.9in !important;
    margin: 0 -0.6in !important;
    width: calc(100% + 1.2in) !important;
    page-break-after: avoid;
  }

  .cred-inner {
    max-width: 100%;
    font-size: 8pt;
    color: #333 !important;
    gap: 0.06in 0.25in;
    justify-content: flex-start;
  }

  .cred-label {
    font-size: 6.5pt;
    color: #e84393 !important;
  }

  .cred-names, .cred-radio {
    color: #1a1a1a !important;
  }

  .cred-radio strong { color: #1a1a1a !important; }
  .cred-divider { color: #999 !important; }

  /* --- Section tag --- */
  .section-tag {
    font-size: 6.5pt;
    color: #e84393 !important;
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 0.03in;
  }

  /* --- Featured Track --- */
  #featured .section-inner {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  #featured .ft-layout {
    grid-template-columns: 1fr auto;
    gap: 0.25in;
    align-items: start;
    margin-top: 0.05in;
  }

  .ft-title {
    font-size: 12pt;
    color: #1a1a1a !important;
  }

  .ft-sub {
    font-size: 8pt;
    color: #555 !important;
  }

  .tag-row {
    gap: 0.04in;
  }

  .tag-label {
    font-size: 6.5pt;
    color: #e84393 !important;
  }

  .pill, .pill-static {
    font-size: 7.5pt !important;
    padding: 0.02in 0.1in !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
  }

  .ft-cta {
    display: none !important;
  }

  /* --- Live Performance --- */
  .live-tech {
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    padding: 0.08in 0.12in !important;
    margin-top: 0.08in !important;
  }

  .live-tech-heading {
    font-size: 7pt;
    color: #e84393 !important;
    margin-bottom: 0.04in;
  }

  .live-tech-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.03in 0.15in;
  }

  .live-tech-list li {
    font-size: 8pt;
    color: #333 !important;
  }

  .live-tech-list strong {
    color: #1a1a1a !important;
  }

  /* --- Placeholder blocks (hide in print) --- */
  .placeholder-block {
    display: none !important;
  }

  /* --- Press & Assets --- */
  #press .subsection-heading {
    font-size: 7pt;
    color: #e84393 !important;
    margin-top: 0.08in;
    margin-bottom: 0.04in;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 0.05in;
  }

  /* --- Sync & Licensing --- */
  .sync-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.1in;
    margin-top: 0.05in;
  }

  .sync-block {
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    padding: 0.08in 0.12in !important;
  }

  .sync-block-wide {
    grid-column: 1 / -1;
  }

  .sync-label {
    font-size: 7pt;
    color: #e84393 !important;
    margin-bottom: 0.03in;
  }

  .sync-block p {
    font-size: 8pt;
    color: #333 !important;
  }

  .sync-cta {
    font-size: 7.5pt;
    color: #555 !important;
    margin-top: 0.05in;
  }

  /* --- Contact grid: widen to 3 columns for more cards --- */
  #contact .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-card-note {
    font-size: 7.5pt;
    color: #555 !important;
  }
}
