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

:root {
  --orange: #E85D0C;
  --orange-light: #FF7A2F;
  --black: #0A0A0A;
  --off-white: #F5F0E8;
  --gray: #2A2A2A;
  --font-display: 'Bebas Neue', 'Arial Black', Impact, sans-serif;
  --font-serif: 'Noto Serif SC', 'Songti SC', Georgia, serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Scroll-driven transitions */
section {
  --p: 0;    /* progress: 0 = in view, negative = below, positive = above */
}

/* Global: all section children driven by scroll progress */
section > * {
  transition: none;
}

/* --- HERO exit --- */
#hero .hero-title {
  opacity: calc(1 - var(--p) * 2.5);
  transform: translateX(calc(var(--p) * -80px));
}
#hero .hero-subtitle {
  opacity: calc(1 - var(--p) * 3);
  transform: translateX(calc(var(--p) * -60px));
}
#hero .hero-info {
  opacity: calc(1 - var(--p) * 2.5);
  transform: translateX(calc(var(--p) * 80px)) scale(calc(1 - var(--p) * 0.1));
}
#hero .hero-circle-wrap {
  opacity: calc(1 - var(--p) * 2);
  transform: scale(calc(1 + var(--p) * 0.3));
}
#hero .hero-tag {
  opacity: calc(1 - var(--p) * 4);
}
#hero .hero-arrow {
  opacity: calc(1 - var(--p) * 5);
}

/* --- ORIGIN: entrance + exit --- */
/* entrance: portrait from left, text from right */
#origin .origin-left {
  opacity: clamp(0, 1 + var(--p) * 2.5, 1);
  transform: translateX(calc(min(var(--p), 0) * -60px)) scale(calc(1 - max(var(--p), 0) * 0.2));
}
#origin .origin-right {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateX(calc(min(var(--p), 0) * 40px + max(var(--p), 0) * 60px));
}
#origin .origin-footnote {
  opacity: clamp(0, (1 + var(--p) * 3) * 0.6, 0.6);
}

/* --- ARTISTS: entrance from below staggered, exit scatter sideways --- */
#artists .artists-header {
  opacity: clamp(0, 1 + var(--p) * 2.5, 1);
  transform: translateY(calc(min(var(--p), 0) * -40px + max(var(--p), 0) * -30px));
}
#artists .artists-cards {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateY(calc(min(var(--p), 0) * -50px));
}
/* --- SETLIST A: vinyl spins in from left, tracks slide from right --- */
#setlist-a .vinyl-container {
  opacity: clamp(0, 1 + var(--p) * 2.5, 1);
  transform: translateX(calc(min(var(--p), 0) * -80px)) scale(calc(1 - max(var(--p), 0) * 0.3));
}
#setlist-a .setlist-content {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateX(calc(min(var(--p), 0) * 60px + max(var(--p), 0) * -60px));
}

/* --- SETLIST B: mirror entrance from right, exit to left --- */
#setlist-b .vinyl-container {
  opacity: clamp(0, 1 + var(--p) * 2.5, 1);
  transform: translateX(calc(min(var(--p), 0) * 80px)) scale(calc(1 - max(var(--p), 0) * 0.3));
}
#setlist-b .setlist-content {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateX(calc(min(var(--p), 0) * -60px + max(var(--p), 0) * 60px));
}

/* --- LISTENING PATH: cards fan in from bottom, exit upward --- */
#listening-path .listening-header {
  opacity: clamp(0, 1 + var(--p) * 2.5, 1);
  transform: translateY(calc(min(var(--p), 0) * -40px + max(var(--p), 0) * -50px));
}
#listening-path .listening-cards {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateY(calc(min(var(--p), 0) * -60px)) scale(calc(1 - max(var(--p), 0) * 0.1));
}
#listening-path .listening-footnote {
  opacity: clamp(0, 1 + var(--p) * 3, 1);
}

/* --- VENUE: info from left, notes from right, symmetric --- */
#venue .venue-header {
  opacity: clamp(0, 1 + var(--p) * 2.5, 1);
  transform: translateY(calc(var(--p) * -30px));
}
#venue .venue-info {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateX(calc(min(var(--p), 0) * -50px));
}
#venue .venue-notes {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateX(calc(min(var(--p), 0) * 50px));
}
#venue .venue-map {
  opacity: clamp(0, 1 + var(--p) * 1.8, 1);
  transform: translateX(calc(min(var(--p), 0) * -30px));
}
#venue .venue-photo {
  opacity: clamp(0, 1 + var(--p) * 1.8, 1);
  transform: translateX(calc(min(var(--p), 0) * 30px));
}
#venue .seating-guide {
  opacity: clamp(0, 1 + var(--p) * 1.5, 1);
  transform: translateY(calc(min(var(--p), 0) * -20px));
}

/* --- RSVP: dramatic scale entrance, compress exit --- */
#rsvp .rsvp-label {
  opacity: clamp(0, 1 + var(--p) * 3, 1);
}
#rsvp .rsvp-title {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: scale(clamp(0.6, calc(1 + var(--p) * 0.4), 1));
}
#rsvp .rsvp-date {
  opacity: clamp(0, 1 + var(--p) * 2.5, 1);
  transform: translateY(calc(min(var(--p), 0) * -20px));
}
#rsvp .rsvp-btn {
  opacity: clamp(0, 1 + var(--p) * 2, 1);
  transform: translateY(calc(min(var(--p), 0) * -30px));
}
#rsvp .rsvp-triangle {
  opacity: clamp(0, 1 + var(--p) * 1.5, 0.12);
  transform: scale(clamp(0.5, calc(1 + var(--p) * 0.5), 1));
}

.scroll-container {
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

section {
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==================== NAV DOTS ==================== */
.scroll-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scroll-dots a {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
  mix-blend-mode: difference;
}

.scroll-dots a:hover {
  background: var(--orange);
  transform: scale(1.4);
}
.scroll-dots a.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ==================== SCREEN 1: HERO ==================== */
#hero {
  background: var(--orange);
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 5vw;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--off-white);
}

.hero-tag {
  position: absolute;
  top: 2rem;
  left: 5vw;
  font-family: var(--font-display);
  font-size: clamp(10px, 1.2vw, 14px);
  color: var(--off-white);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-circle-wrap {
  position: absolute;
  right: -10vw;
  top: -10vw;
  width: 50vw;
  height: 50vw;
  animation: breathe 6s ease-in-out infinite;
  scale: 1;
  transition: scale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-circle-wrap:hover {
  scale: 1.2;
}
.hero-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.85;
}
.hero-circle-white {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  scale: 0;
  transition: scale 1.2s ease;
}
.hero-circle-wrap:hover .hero-circle-white {
  scale: 1;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  line-height: 0.9;
  color: var(--black);
  margin-top: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.8vw, 22px);
  color: var(--off-white);
  margin-top: 1.5rem;
}

.hero-info {
  position: absolute;
  right: 5vw;
  bottom: 5vh;
  background: var(--black);
  color: var(--orange);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 32px);
  line-height: 1.4;
  text-align: right;
  z-index: 1;
}

.hero-arrow {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--black);
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { bottom: 3vh; opacity: 1; }
  50% { bottom: 1.5vh; opacity: 0.5; }
}

/* ==================== SCREEN 2: ORIGIN ==================== */
#origin {
  background: var(--black);
  padding: 3rem 5vw;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.origin-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.origin-portrait {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(1) contrast(1.15) brightness(0.9);
}
.origin-left::after {
  content: '1926 — 2026';
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.2em;
  color: var(--off-white);
  opacity: 0.7;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  z-index: 2;
}
.origin-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 93, 12, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}


.origin-right {
  position: relative;
  z-index: 1;
}

.section-number {
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 14px);
  color: var(--orange);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.origin-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--off-white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.origin-text {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--off-white);
  line-height: 1.8;
  opacity: 0.85;
}

.origin-text p {
  margin-bottom: 1em;
}

.origin-footnote {
  position: absolute;
  bottom: 3vh;
  right: 5vw;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--orange);
  opacity: 0.6;
}

/* ==================== SCREEN 3: ARTISTS ==================== */
#artists {
  background: var(--orange);
  flex-direction: column;
  padding: 3rem 5vw;
}

.artists-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.artists-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  color: var(--black);
  line-height: 1;
}

.artists-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--black);
  opacity: 0.6;
  margin-top: 0.5rem;
}

.artists-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2.5rem;
  min-width: 200px;
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.artist-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--black);
}

/* Printer receipt */
.printer-receipt {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-height: 0;
  overflow: hidden;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.7;
  padding: 0 16px;
  z-index: 10;
  transition: max-height 1s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  border-top: 3px solid var(--black);
}
.artist-card:hover .printer-receipt {
  max-height: 420px;
  padding: 16px 16px;
}
.receipt-header {
  font-family: var(--font-display);
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.15em;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.receipt-line {
  padding: 2.5px 0;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.receipt-highlight {
  color: var(--orange);
  font-weight: 600;
}
.receipt-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.15);
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.4);
}

.artist-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 2px solid rgba(0,0,0,0.15);
}
.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-avatar img.photo-rolff {
  object-position: center 15%;
}
.artist-avatar img.photo-maglini {
  object-position: center 20%;
}

.artist-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--black);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.artist-instrument {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 0.3rem;
}

.artist-origin {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

/* ==================== SCREENS 4 & 5: SETLIST ==================== */
.setlist-section {
  padding: 3rem 5vw;
}

#setlist-a {
  background: var(--black);
}

#setlist-b {
  background: var(--orange);
  color: var(--black);
}

.setlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

.setlist-layout--mirror {
  direction: rtl;
}

.setlist-layout--mirror > * {
  direction: ltr;
}

/* --- Vinyl Record (CSS-drawn) --- */
.vinyl-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vinyl {
  width: min(38vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 18%, rgba(40,40,40,0.3) 18.5%, transparent 19%),
    radial-gradient(circle, transparent 28%, rgba(40,40,40,0.3) 28.5%, transparent 29%),
    radial-gradient(circle, transparent 38%, rgba(40,40,40,0.3) 38.5%, transparent 39%),
    radial-gradient(circle, transparent 48%, rgba(40,40,40,0.3) 48.5%, transparent 49%),
    radial-gradient(circle, transparent 58%, rgba(40,40,40,0.3) 58.5%, transparent 59%),
    radial-gradient(circle, transparent 68%, rgba(40,40,40,0.3) 68.5%, transparent 69%),
    radial-gradient(circle, transparent 78%, rgba(40,40,40,0.3) 78.5%, transparent 79%),
    radial-gradient(circle, transparent 88%, rgba(40,40,40,0.3) 88.5%, transparent 89%),
    repeating-conic-gradient(
      #1a1a1a 0deg, #222 0.4deg, #1a1a1a 0.8deg
    );
  box-shadow: 0 0 0 4px #333, 0 20px 60px rgba(0,0,0,0.8);
  animation: spin 20s linear infinite;
  position: relative;
  will-change: transform;
}

.vinyl-b {
  box-shadow: 0 0 0 4px #666, 0 20px 60px rgba(0,0,0,0.4);
}

.vinyl-reflection {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.vinyl-label {
  position: absolute;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.vinyl-label--b {
  background: var(--black);
  color: var(--orange);
}

.label-brand {
  font-family: var(--font-display);
  font-size: clamp(7px, 0.9vw, 11px);
  letter-spacing: 0.15em;
  color: var(--black);
  text-transform: uppercase;
}

.vinyl-label--b .label-brand {
  color: var(--orange);
}

.label-title {
  font-family: var(--font-display);
  font-size: clamp(10px, 1.4vw, 16px);
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 2px 0;
}

.vinyl-label--b .label-title {
  color: var(--orange);
}

.label-cat {
  font-family: var(--font-sans);
  font-size: clamp(6px, 0.7vw, 9px);
  opacity: 0.6;
  color: var(--black);
}

.vinyl-label--b .label-cat {
  color: var(--orange);
}

.label-hole {
  position: absolute;
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vinyl-label--b .label-hole {
  background: var(--orange);
}

/* Track highlight ring */
.track-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid var(--orange-light);
  pointer-events: none;
  opacity: 0;
  transition: all 0.35s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(232, 93, 12, 0.4);
}

.track-ring--b {
  border-color: var(--black);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.track-ring.active {
  opacity: 1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .vinyl { animation-play-state: paused; }
}

/* --- Track list --- */
.setlist-content {
  display: flex;
  flex-direction: column;
}

.setlist-side-label {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

#setlist-a .setlist-side-label {
  color: var(--orange);
}

#setlist-b .setlist-side-label {
  color: var(--black);
}

.setlist-divider {
  width: 100%;
  height: 2px;
  margin-bottom: 1.2rem;
}

#setlist-a .setlist-divider {
  background: var(--orange);
  opacity: 0.4;
}

#setlist-b .setlist-divider {
  background: var(--black);
  opacity: 0.3;
}

.track-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.track-item::after {
  content: '→';
  font-family: var(--font-display);
  font-size: 14px;
  opacity: 0;
  margin-left: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-4px);
}
#setlist-a .track-item::after { color: var(--orange); }
#setlist-b .track-item::after { color: var(--black); }
.track-item:hover::after {
  opacity: 0.5;
  transform: translateX(0);
}

#setlist-a .track-item:hover {
  background: rgba(232, 93, 12, 0.1);
  transform: translateX(4px);
}

#setlist-b .track-item:hover {
  background: rgba(10, 10, 10, 0.08);
  transform: translateX(4px);
}

.track-item.highlighted {
  transform: translateX(4px);
}

#setlist-a .track-item.highlighted {
  background: rgba(232, 93, 12, 0.15);
}

#setlist-b .track-item.highlighted {
  background: rgba(10, 10, 10, 0.1);
}

.track-num {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  min-width: 2ch;
}

#setlist-a .track-num {
  color: var(--orange);
}

#setlist-b .track-num {
  color: var(--black);
  opacity: 0.6;
}

.track-name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 22px);
}

#setlist-a .track-name {
  color: var(--off-white);
}

#setlist-b .track-name {
  color: var(--black);
}

/* ==================== SCREEN 6: LISTENING PATH ==================== */
#listening-path {
  background: var(--black);
  flex-direction: column;
  padding: 3rem 5vw;
}

.listening-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.listening-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  color: var(--orange);
  font-weight: 700;
}

.listening-subtitle {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
  letter-spacing: 0.15em;
}

.listening-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
}

.listening-card {
  flex: 1 1 280px;
  max-width: 340px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  transition: all 0.3s ease;
}

.listening-card:hover {
  background: rgba(232, 93, 12, 0.08);
  border-color: var(--orange);
}

.listening-card-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.listening-card-label {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--off-white);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.listening-card-audience {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.listening-card-albums {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--orange);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.listening-card-desc {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.listening-footnote {
  margin-top: 2rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* ==================== SCREEN 7: VENUE ==================== */
#venue {
  background: var(--orange);
  color: var(--black);
  flex-direction: column;
  padding: 2rem 5vw;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
}

.venue-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.venue-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: var(--black);
  line-height: 1;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 3rem;
  width: 100%;
  max-width: 900px;
}
.venue-info { grid-column: 1; grid-row: 1; }
.venue-notes { grid-column: 2; grid-row: 1; }
.venue-map { grid-column: 1; grid-row: 2; }
.venue-photo { grid-column: 2; grid-row: 2; }

.venue-info h3,
.venue-notes h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.venue-info p,
.venue-notes p {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.85);
  margin: 0;
  padding: 0;
}

.venue-photo {
  margin-top: 1rem;
  align-self: start;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  max-height: 210px;
}
.venue-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.seating-guide {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 900px;
}
.seating-guide h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.seating-zones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.seating-zone {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--orange);
  background: rgba(0,0,0,0.15);
}
.seating-zone .zone-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.seating-zone .zone-desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}
.seating-tip {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--orange);
  font-size: 13px;
  line-height: 1.6;
}
.seating-tip strong {
  color: var(--orange);
}

.venue-map {
  margin-top: 1rem;
  width: 100%;
  max-width: 900px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.2);
}
.venue-map iframe {
  width: 100%;
  height: 210px;
  border: none;
  display: block;
  filter: grayscale(0.3);
}
.venue-map-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: var(--black);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.venue-map-btn:hover {
  background: rgba(10, 10, 10, 0.8);
}

/* ==================== SCREEN 8: RSVP ==================== */
#rsvp {
  background: var(--black);
  flex-direction: column;
  text-align: center;
  padding: 3rem 5vw;
}

.rsvp-label {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.2vw, 16px);
  color: var(--orange);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.rsvp-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 150px);
  color: var(--off-white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 80px rgba(232, 93, 12, 0.15);
}

.rsvp-date {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 20px);
  color: var(--orange);
  letter-spacing: 0.3em;
  margin-bottom: 3rem;
}

/* TODO: Replace mailto: with actual RSVP form URL -->  */
.rsvp-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.2em;
  box-shadow: 0 0 20px rgba(232, 93, 12, 0.3);
  border: none;
  outline: none;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease !important;
}
.rsvp-btn.pop {
  transform: scale(1.15) !important;
}

/* Heart particles */
.heart-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  will-change: transform, opacity;
}

/* Orange ripple that expands from button */
.rsvp-ripple {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  z-index: 0;
  pointer-events: none;
  transform: scale(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

/* Confirmed state after ripple */
#rsvp.confirmed {
  background: var(--orange) !important;
}
#rsvp.confirmed .rsvp-label {
  color: var(--off-white) !important;
}
#rsvp.confirmed .rsvp-title {
  color: #fff !important;
  animation: title-glow 2s ease-in-out infinite;
}
#rsvp.confirmed .rsvp-date {
  color: var(--off-white) !important;
}
#rsvp.confirmed .rsvp-footer {
  color: rgba(255,255,255,0.4) !important;
}
#rsvp.confirmed .rsvp-triangle {
  opacity: 0 !important;
}
#rsvp.confirmed .rsvp-btn {
  background: var(--off-white) !important;
  color: var(--orange) !important;
  box-shadow: none !important;
}

@keyframes title-glow {
  0%, 100% {
    text-shadow: 0 0 30px rgba(255,255,255,0.3), 0 0 60px rgba(255,255,255,0.1);
  }
  50% {
    text-shadow: 0 0 50px rgba(255,255,255,0.6), 0 0 100px rgba(255,255,255,0.2), 0 0 150px rgba(255,255,255,0.1);
  }
}

.rsvp-btn:hover {
  background: var(--black);
  color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--orange), 0 0 30px rgba(232, 93, 12, 0.2);
}

.rsvp-footer {
  position: absolute;
  bottom: 2vh;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.rsvp-triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 clamp(120px, 20vw, 250px) clamp(120px, 20vw, 250px);
  border-color: transparent transparent var(--orange) transparent;
  opacity: 0.12;
}

/* ==================== RESPONSIVE ==================== */
/* --- Tablet --- */
@media (max-width: 1024px) {
  .origin-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
  }
  .setlist-layout,
  .setlist-layout--mirror {
    gap: 2rem;
  }
  .venue-grid {
    gap: 2rem;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  /* Allow sections to grow beyond viewport if needed */
  section {
    padding: 2rem 4vw;
  }

  /* Hero */
  #hero {
    padding: 2rem 5vw;
  }
  .hero-circle-wrap {
    width: 70vw;
    height: 70vw;
    right: -20vw;
    top: -20vw;
  }
  .hero-info {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1.5rem;
    text-align: left;
    padding: 1rem 1.2rem;
    font-size: clamp(14px, 4vw, 20px);
  }
  .hero-tag {
    font-size: 10px;
  }

  /* Origin */
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .origin-left {
    max-height: 30vh;
    border-radius: 4px;
  }
  .origin-portrait {
    max-height: 30vh;
  }
  .origin-right {
    text-align: left;
  }
  .section-number {
    margin-bottom: 0.8rem;
  }

  /* Artists */
  .artists-cards {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .artist-card {
    padding: 1.5rem 2rem;
  }
  .artist-avatar {
    width: 100px;
    height: 100px;
  }
  .printer-receipt {
    width: 95%;
    font-size: 10px;
  }

  /* Setlist */
  .setlist-layout,
  .setlist-layout--mirror {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .vinyl-container {
    display: none;
  }
  .setlist-layout--mirror {
    direction: ltr;
  }
  .setlist-side-label {
    font-size: clamp(28px, 8vw, 48px);
  }

  /* Listening */
  .listening-cards {
    flex-direction: column;
    align-items: center;
  }
  .listening-card {
    max-width: 100%;
  }

  /* Venue */
  #venue {
    padding: 2rem 4vw;
  }
  .venue-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .venue-info,
  .venue-notes,
  .venue-map,
  .venue-photo {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .venue-map iframe {
    height: 180px;
  }
  .venue-photo img {
    height: 160px;
  }
  .seating-zones {
    flex-direction: column;
  }

  /* RSVP */
  .rsvp-title {
    font-size: clamp(48px, 14vw, 100px);
  }
  .rsvp-btn {
    padding: 1rem 2rem;
    font-size: clamp(16px, 4vw, 20px);
  }

  /* Nav dots */
  .scroll-dots {
    right: 0.6rem;
    gap: 8px;
  }
  .scroll-dots a {
    width: 6px;
    height: 6px;
  }
}

/* --- Small phone --- */
@media (max-width: 390px) {
  #hero {
    padding: 1.5rem 4vw;
  }
  .hero-info {
    font-size: 14px;
    padding: 0.8rem 1rem;
  }
  .artist-avatar {
    width: 80px;
    height: 80px;
  }
  .artists-header {
    margin-bottom: 1.5rem;
  }
  .track-item {
    padding: 0.35rem 0.4rem;
  }
  .rsvp-title {
    font-size: clamp(40px, 12vw, 80px);
  }
}

@media print {
  .scroll-dots,
  .hero-arrow,
  .vinyl,
  .rsvp-triangle {
    display: none;
  }
  section {
    height: auto;
    page-break-after: always;
  }
}
