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

:root {
  --purple:  #584b8b;
  --cyan:    #37aaaf;
  --teal:    #48a884;
  --orange:  #e7703e;
  --rust:    #b95537;
  --cream:   #efeeea;
  --dark:    #3d2c26;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--purple);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── ACCENT BAR ── */
.accent-bar {
  height: 4px;
  background: var(--orange);
  width: 100%;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(88, 75, 139, 0.85);
  border-bottom: 0.5px solid rgba(239, 238, 234, 0.2);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-cassette {
  width: 160px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(239, 238, 234, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream);
}

.nav-cta {
  background: var(--orange);
  color: var(--cream);
  border: none;
  padding: 11px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* ── HERO PHOTO BANNER ── */
.hero-banner {
  width: 100%;
  background: var(--dark);
  line-height: 0;
}

.hero-banner img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ── HERO ── */
.hero {
  background: var(--cyan);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.12;
  color: var(--dark);
  margin: 0;
}

.hero h1 em {
  color: var(--purple);
  font-style: normal;
}

.mechanics {
  padding-left: 2rem;
  border-left: 3px solid var(--purple);
}

.mechanics ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mechanics li {
  font-size: 19px;
  color: var(--dark);
  line-height: 1.5;
  opacity: 0.82;
}

.mechanics li strong {
  font-weight: 500;
  opacity: 1;
}

.mechanics .story-beat {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0.5px solid rgba(61, 44, 38, 0.22);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  opacity: 1;
  font-size: 19px;
  color: var(--rust);
}

/* ── SCENE ── */
.scene-section {
  background: var(--cream);
  padding: 4rem 3rem;
}

.scene-section p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark);
  max-width: 660px;
  margin-bottom: 1rem;
}

.scene-section p strong {
  color: var(--purple);
  font-weight: 500;
}

.improv-line {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--rust);
  margin-top: 1.75rem !important;
}

/* ── UNREPEATABLE ── */
.unrepeat-section {
  background: var(--orange);
  padding: 4rem 3rem;
}

.unrepeat-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.85rem;
  max-width: 580px;
}

.unrepeat-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(239, 238, 234, 0.85);
  max-width: 580px;
}

/* ── BAND ── */
.band-section {
  background: var(--purple);
  padding: 4rem 3rem;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 238, 234, 0.45);
  margin-bottom: 1.75rem;
}

.band-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.member {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.member-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

.member-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(55, 170, 175, 0.15);
  border: 0.5px solid rgba(55, 170, 175, 0.35);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239, 238, 234, 0.28);
}

.member-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}

.member-role {
  font-size: 12px;
  color: var(--cyan);
  margin-top: -4px;
}

/* ── SHOWS ── */
.shows-section {
  background: var(--dark);
  padding: 4rem 3rem;
}

.sellout-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(231, 112, 62, 0.12);
  border: 0.5px solid rgba(231, 112, 62, 0.4);
  border-radius: 2px;
  padding: 14px 18px;
  margin-bottom: 2rem;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
}

.sellout-note strong {
  color: var(--orange);
  font-weight: 500;
}

.show-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 0.5px solid rgba(239, 238, 234, 0.1);
  gap: 1rem;
}

.show-row:last-of-type {
  border-bottom: none;
}

.show-date {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.show-venue {
  font-size: 17px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 3px;
}

.show-location {
  font-size: 13px;
  color: rgba(239, 238, 234, 0.38);
}

.ticket-btn {
  background: var(--cream);
  color: var(--dark);
  border: none;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.ticket-btn:hover { opacity: 0.85; }

/* ── VIDEOS PAGE ── */
.videos-hero {
  background: var(--cyan);
  padding: 4rem 3rem 3rem;
}

.videos-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  max-width: 640px;
  margin-bottom: 1rem;
}

.videos-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.85;
  max-width: 560px;
}

.videos-section {
  background: var(--cream);
  padding: 4rem 3rem 5rem;
}

.video-frame {
  max-width: 860px;
  margin: 0 auto;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.video-frame .ratio-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--dark);
  border-radius: 2px;
  overflow: hidden;
}

.video-frame .ratio-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  margin-top: 1.25rem;
  font-size: 14px;
  color: var(--dark);
  opacity: 0.6;
  max-width: 860px;
}

/* ── FOOTER ── */
footer {
  background: var(--purple);
  padding: 1.5rem 3rem;
  border-top: 0.5px solid rgba(239, 238, 234, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-text {
  font-size: 12px;
  color: rgba(239, 238, 234, 0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mechanics {
    padding-left: 1.25rem;
  }
}

@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .logo-cassette { width: 120px; }
  .hero { padding: 3rem 1.25rem; }
  .scene-section,
  .unrepeat-section,
  .band-section,
  .shows-section,
  .videos-hero,
  .videos-section { padding: 3rem 1.25rem; }

  .band-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .show-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  footer { padding: 1.25rem; }
}

@media (max-width: 400px) {
  .nav-cta { padding: 9px 16px; font-size: 11px; }
  .nav-links { gap: 1rem; }
}
