/* ── PRESENTATION.CSS ────────────────────────────────────────── */

:root {
  --bg:            #0a0a12;
  --text:          #e8e4d9;
  --text-dim:      rgba(232, 228, 217, 0.42);
  --text-muted:    rgba(232, 228, 217, 0.70);
  --border:        rgba(232, 228, 217, 0.10);
  --border-strong: rgba(232, 228, 217, 0.22);
  --accent-yellow: #e8d900;
  --accent-cyan:   #00e5e5;
  --accent-green:  #b3ff00;
  --font-display:  'Bebas Neue', sans-serif;
  --font-heading:  'Space Grotesk', sans-serif;
  --font-body:     'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 14px,
    rgba(232, 217, 0, 0.025) 14px,
    rgba(232, 217, 0, 0.025) 15px
  );
  color: var(--text);
}

/* ── FLOATING NAV ───────────────────────────────────────────── */
.pnav {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pnav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  text-decoration: none;
  color: var(--text-dim);
  transition: color 0.2s;
}

.pnav-item:hover     { color: var(--text-muted); }
.pnav-item.is-active { color: var(--accent-cyan); }

.pnav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.pnav-item.is-active .pnav-dot { transform: scale(2); }

.pnav-label {
  font-family: var(--font-heading);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── TITLE SECTION BACKGROUND ──────────────────────────────── */
.p-section--title {
  position: relative;
  overflow: hidden;
}

.p-title-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/smile.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* ── SHARED SECTION LAYOUT ──────────────────────────────────── */
.p-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) clamp(60px, 8vw, 100px) clamp(60px, 8vw, 100px) max(160px, 12vw);
}

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

.p-inner { max-width: 960px; width: 100%; }

.p-eyebrow,
.p-section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 24px;
}

/* Big scroll-cue numeral so a presenter can say "scroll to N please"
   without describing content, since they don't control the shared screen. */
.p-section-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--accent-cyan);
  text-shadow: 3px 2px 0 rgba(22, 85, 255, 0.28);
  margin-bottom: 8px;
}

/* ── QUOTE PANELS ───────────────────────────────────────────── */
.p-quote {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 10vw, 120px) max(160px, 14vw) clamp(60px, 10vw, 120px) max(160px, 14vw);
  background: #04040a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.p-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.1vw, 2.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  max-width: 780px;
  margin-bottom: 28px;
}

.p-quote-attr {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 6px;
}

.p-quote-source {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.p-quote--poster {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 6vw, 90px);
  text-align: left;
}

.p-quote--poster .p-quote-side { flex-shrink: 1; }
.p-quote--poster .p-quote-text { margin-bottom: 20px; }
.p-quote--poster .p-quote-source { margin-bottom: 0; }
.p-quote--poster .p-quote-source + .p-artist-why { margin-top: 18px; }

.p-quote-poster {
  flex-shrink: 0;
  width: clamp(220px, 20vw, 320px);
}

.p-quote-poster img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

/* ── VENUE BANNER BAR ───────────────────────────────────────── */
.venue-banner-bar {
  position: relative;
  min-height: 46vh;
  display: flex;
  background: #000;
  overflow: hidden;
}

.vb-half {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vb-divider {
  width: 1px;
  flex-shrink: 0;
  margin: 0 32px;
  background: var(--border-strong);
}

.vb-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
}

.vb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3;
  filter: saturate(0.15) brightness(0.55) contrast(1.2);
}

.vb-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.vb-role {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.vb-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 0.9;
  color: var(--text);
  text-shadow: 4px 3px 0 rgba(22, 85, 255, 0.4);
}

.vb-city {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── 01 TITLE ───────────────────────────────────────────────── */
.p-hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.9;
  color: var(--text);
  text-shadow: 4px 3px 0 rgba(22, 85, 255, 0.30), -2px -1px 0 rgba(232, 217, 0, 0.18);
  margin-bottom: 10px;
}

.p-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--accent-yellow);
  margin-bottom: 44px;
}

.p-hero-date {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: -28px;
  margin-bottom: 28px;
}

/* ── TOOLTIPS (ported from styles.css) ─────────────────────── */
.tt {
  position: relative;
  display: inline;
  border-bottom: 1px dotted var(--accent-cyan);
  cursor: help;
  color: inherit;
}

.tt-box {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #080809;
  border: 1px solid var(--accent-cyan);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.62;
  padding: 12px 14px;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0.16s ease;
  z-index: 500;
}

.tt-box a {
  color: var(--accent-cyan);
  pointer-events: auto;
}

.tt-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--accent-cyan);
}

.tt:hover .tt-box,
.tt:focus .tt-box,
.tt.tt--open .tt-box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-title-note {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.p-title-note em { color: var(--accent-yellow); font-style: normal; }

.p-venues-tag {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── 02 ARGUMENT ────────────────────────────────────────────── */
.p-statements {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.p-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
}

.p-statement em     { font-style: normal; color: var(--accent-yellow); }
.p-statement strong { color: var(--accent-cyan); font-weight: 600; }
.p-statement--green { color: var(--accent-green); }

.p-statement--alliance {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 400;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-yellow);
  padding-left: 22px;
  line-height: 1.7;
}

.p-statement--alliance em { font-style: normal; color: var(--accent-yellow); }

.p-statement--note {
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-weight: 400;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-cyan);
  padding-left: 22px;
  line-height: 1.7;
}

/* ── 03 LINEUP ──────────────────────────────────────────────── */
.p-artist-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.p-venue-bar {
  background: var(--bg);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  border-left: 3px solid var(--accent-yellow);
}

.p-artist-row {
  display: grid;
  grid-template-columns: 260px 1fr 320px;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border-bottom: 1px solid var(--border);
}

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

.p-artist-photo-lg {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: grayscale(0.25) contrast(1.05);
}

.p-artist-info { min-width: 0; }

.p-artist-slot {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.p-artist-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.95;
  color: var(--text);
  text-shadow: 2px 1px 0 rgba(22, 85, 255, 0.22);
  margin-bottom: 6px;
}

.p-artist-genre {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.p-artist-why {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text-muted);
}

.p-artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.p-artist-video {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-artist-clip-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.p-artist-clip {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--border);
  display: block;
  pointer-events: none;
}

.p-artist-clip-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 18, 0.72);
  border: 1px solid var(--accent-cyan);
  border-radius: 50%;
  color: var(--accent-cyan);
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.p-artist-clip-btn:hover .p-artist-clip-play {
  background: var(--accent-cyan);
  color: var(--bg);
  transform: translate(-50%, -50%) scale(1.08);
}

.p-artist-clip-label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.p-artist-alt-clips {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.p-artist-clip-btn--alt .p-artist-clip-play {
  width: 32px;
  height: 32px;
  font-size: 0.7rem;
}

/* ── ARTIST CLIP MODAL ──────────────────────────────────────── */
.clip-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.clip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 10, 0.88);
}

.clip-modal-box {
  position: relative;
  z-index: 1;
  width: min(860px, 82vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.poster-modal-box {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(560px, 82vw);
  max-height: 86vh;
  background: #000;
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.poster-modal-box img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
}

.p-poster-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.clip-modal-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.clip-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.clip-modal-close:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.p-artist-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.p-artist-link:hover {
  color: var(--text);
  border-color: var(--accent-cyan);
}

.p-artist-link::after { content: ' ↗'; font-size: 0.85em; }

/* ── 04 VENUES ──────────────────────────────────────────────── */
.p-venue-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: start;
  margin-top: 8px;
}

.p-venue-divider {
  background: var(--border-strong);
  min-height: 260px;
  margin: 0 44px;
}

.p-venue-role {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.p-venue-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  line-height: 0.95;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.p-venue-city {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.p-venue-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-venue-points li {
  font-size: 1.03rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.p-venue-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
}

.p-venue-points strong { color: var(--text); font-weight: 600; }

.p-venue-note {
  margin-top: 40px;
  padding: 20px 26px;
  border-left: 3px solid var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── 05 CLOSE ───────────────────────────────────────────────── */
.p-section--close {
  min-height: 60vh;
  align-items: flex-end;
  padding-bottom: 48px;
}

.p-close-line {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--text);
}

.p-close-line--accent {
  color: var(--accent-yellow);
  margin-bottom: 52px;
}

.p-close-detail {
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.p-close-title {
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2.4vw, 2.2rem);
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.p-close-clips {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.p-close-clip {
  width: 200px;
}

/* ── EXPAND TOGGLES ─────────────────────────────────────────── */
.p-expand {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 960px;
}

.p-expand--artist {
  margin-top: 16px;
  max-width: none;
}

.p-expand-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.p-expand-btn:hover { color: var(--text-muted); }
.p-expand-btn[aria-expanded="true"] { color: var(--accent-cyan); }

.p-expand-icon {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

.p-expand-btn[aria-expanded="true"] .p-expand-icon { transform: rotate(45deg); }

.p-expand-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.p-expand-body.is-open { max-height: 1200px; }

.p-expand-content {
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.p-expand-content p {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.p-expand-subhead {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-top: 8px;
}

.p-expand-content p + .p-expand-subhead { margin-top: 20px; }

/* ── CITY BAR ───────────────────────────────────────────────── */
.city-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 200;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.city-bar.is-visible {
  opacity: 0.65;
  pointer-events: auto;
}

.city-bar.is-full {
  opacity: 1;
}

.city-bar-bg {
  position: absolute;
  inset: 0;
  /* swap src for your AI-generated city image when ready: */
  /* background-image: url('resources/cities.png'); */
  background-color: #04040a;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45) saturate(0.2);
}

.city-bar-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,4,10,0.55) 0%, rgba(4,4,10,0.85) 100%),
    repeating-linear-gradient(
      -52deg,
      transparent,
      transparent 14px,
      rgba(232,217,0,0.025) 14px,
      rgba(232,217,0,0.025) 15px
    );
}

.city-bar-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 0 max(160px, 12vw) 0 max(160px, 12vw);
}

.city-item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-top: 16px;
}

.city-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.9;
  pointer-events: none;
}

.city-item--detroit .city-skyline { height: 88px; }
.city-item--ny      .city-skyline { height: 186px; object-fit: contain; object-position: center bottom; }

.city-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.04em;
}

.city-desc {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.city-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-strong);
  flex-shrink: 0;
  margin: 12px clamp(24px, 4vw, 60px);
}

/* push page content up so city bar doesn't cover the close section */
body { padding-bottom: 160px; }

/* ── MUSIC PLAYER ───────────────────────────────────────────── */
.music-player {
  position: fixed;
  bottom: calc(160px + 16px);
  right: 24px;
  width: 272px;
  background: #06060a;
  border: 1px solid var(--accent-cyan);
  z-index: 9999;
  font-family: var(--font-heading);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
}

.mp-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.mp-toggle-icon {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text-muted);
  flex-shrink: 0;
}

.music-player.is-collapsed .mp-body  { display: none; }
.music-player.is-collapsed .mp-header { border-bottom: none; }

.mp-body { display: flex; flex-direction: column; gap: 0; }

.mp-track-info {
  padding: 14px 14px 10px;
  min-height: 64px;
  border-bottom: 1px solid var(--border);
}

.mp-track-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-track-artist {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.mp-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 12px;
  font-size: 0.9rem;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.mp-btn:hover { color: var(--text); }

.mp-btn--play {
  flex: 1;
  font-size: 1rem;
  color: var(--accent-cyan);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.mp-btn--play:hover { background: var(--accent-cyan); color: var(--bg); }

.mp-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.mp-vol-icon {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  flex-shrink: 0;
}

.mp-vol-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  accent-color: var(--accent-cyan);
  height: 3px;
  background: var(--border-strong);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.mp-vol-slider::-webkit-slider-runnable-track {
  height: 3px;
  background: var(--border-strong);
  border-radius: 2px;
}

.mp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  margin-top: -4px;
}

.mp-vol-slider::-moz-range-track {
  height: 3px;
  background: var(--border-strong);
  border-radius: 2px;
}

.mp-vol-slider::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
}

.mp-sc-link {
  display: block;
  text-align: center;
  padding: 9px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.mp-sc-link:hover { background: var(--accent-cyan); color: var(--bg); }

.mp-sc-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── RESPONSIVE (TABLET / MOBILE) ───────────────────────────── */
/* This site was originally built for desktop screen-sharing only.
   These overrides stack the fixed-width grids to a single column,
   hide the desktop-only scroll nav, and turn the fixed city bar into
   a normal in-flow block so nothing gets crushed sideways or hidden
   under fixed chrome on a phone. */
@media (max-width: 860px) {
  .pnav { display: none; }

  .p-section {
    padding: 48px 20px;
  }

  .p-hero-title {
    font-size: clamp(2.6rem, 13vw, 6rem);
  }

  .p-hero-sub {
    font-size: clamp(1.8rem, 8vw, 3.2rem);
  }

  .p-statement {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  }

  .p-close-line {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .p-quote {
    padding: 48px 24px;
  }

  .p-quote--poster {
    flex-direction: column;
    text-align: center;
  }

  .p-quote--poster .p-quote-side { text-align: left; }

  .p-quote-poster {
    width: min(280px, 70vw);
  }

  .venue-banner-bar {
    flex-direction: column;
    min-height: 0;
  }

  .vb-half { min-height: 34vh; }

  .vb-divider {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .p-venue-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-venue-divider { display: none; }

  .p-artist-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .p-artist-photo-lg {
    height: auto;
    aspect-ratio: 11 / 4;
  }

  .p-artist-video { width: min(320px, 100%); }

  body { padding-bottom: 0; }

  .city-bar {
    position: relative;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: auto;
  }

  .city-bar-inner {
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
  }

  .city-item { padding-top: 0; }

  .city-bar .city-skyline {
    position: static;
    width: auto;
    height: 90px;
    margin-top: 8px;
  }

  .city-divider { display: none; }

  .music-player {
    bottom: 12px;
    right: 12px;
    width: min(272px, calc(100vw - 24px));
  }

  .p-close-clip { width: min(220px, 60vw); }
}

.sc-widget-iframe { width: 100%; height: 100%; }
