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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #0a0a0a;
  color: #fafafa;
  min-height: 100vh;
}

/* Top navigation */
.music-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 1.5rem);
  background-color: #000000;
  border-bottom: 1px solid #1f1f1f;
}

.music-wordmark {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.85);
  text-decoration: none;
  border: 0;
}

.music-wordmark:hover {
  color: #ffffff;
}

.music-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  align-items: center;
}

.music-nav a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.45);
  text-decoration: none;
  border: 0;
  transition: color 0.2s ease;
}

.music-nav a:hover {
  color: rgba(250, 250, 250, 0.95);
}

.music-nav a[aria-current="page"] {
  color: #ffffff;
}

/* Hero + bottom ticker (music: compact stack + ticker; modest min-height) */
.music-hero {
  background-color: #000000;
  color: #fafafa;
  min-height: min(52vh, 28rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.music-hero-stack {
  padding: clamp(2rem, 6vw, 3.75rem) clamp(1.25rem, 5vw, 2.5rem)
    clamp(1.5rem, 4vw, 2.5rem);
  text-align: left;
}

.music-hero-l1,
.music-hero-l2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.88;
  font-size: clamp(3rem, 12vw, 6.75rem);
  text-transform: none;
}

.music-hero-l1 {
  color: #ffffff;
}

.music-hero-l2 {
  color: #666666;
}

.music-hero-tag {
  margin: clamp(0.6rem, 1.6vw, 1rem) 0 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: none;
  color: #a3a3a3;
}

@media (min-width: 480px) {
  .music-hero-tag {
    font-size: 11px;
  }
}

.music-hero-ticker {
  border-top: 1px solid #1a1a1a;
  padding: 11px 0;
  overflow: hidden;
  background-color: #000000;
}

.music-hero-ticker-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: hero-ticker 28s linear infinite;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.55);
}

.t-item {
  flex-shrink: 0;
  padding-right: 0.35rem;
}

.t-dot {
  flex-shrink: 0;
  padding-right: 1.75rem;
  color: rgba(250, 250, 250, 0.35);
}

@keyframes hero-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .music-hero-ticker-track {
    animation: none;
  }
}

/* Tour page: hero without tall min-height + space-between gap */
.page-tour .music-hero {
  min-height: 0;
  justify-content: flex-start;
}

.page-tour .music-hero-stack {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 5vw, 2.25rem)
    clamp(1rem, 3vw, 1.5rem);
}

.page-tour .music-hero-l1,
.page-tour .music-hero-l2 {
  font-size: clamp(2.5rem, 10vw, 5.25rem);
}

.page-tour .music-hero-tag {
  margin-top: clamp(0.45rem, 1.2vw, 0.65rem);
}

/* Tour — photo strip under nav */
.tour-hero-visual {
  width: 100%;
  max-height: min(42vh, 21rem);
  overflow: hidden;
  background: #000000;
}

.tour-hero-visual-img {
  display: block;
  width: 100%;
  height: min(42vh, 21rem);
  max-height: min(42vh, 21rem);
  object-fit: cover;
  object-position: center 42%;
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Player */
.player {
  margin-bottom: 50px;
}

.player-embed {
  display: block;
  width: 100%;
  height: clamp(400px, 50vw, 500px);
  border: 0;
}

/* Page bottom — 02 Highlights + 03 About (reference layout) */
.page-bottom {
  background-color: #000000;
  color: #fafafa;
  padding: clamp(3.5rem, 10vw, 6rem) clamp(1.25rem, 5vw, 2.5rem)
    clamp(4rem, 12vw, 6rem);
}

.page-bottom-inner {
  max-width: 720px;
  margin: 0 auto;
}

.sec-block {
  margin: 0;
}

.sec-kicker {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888888;
}

.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 0;
  text-align: left;
}

.hl-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0 1.5rem 0 0;
}

.hl-col--split {
  border-left: 1px solid #3a3a3a;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: 0;
}

.hl-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
}

.hl-value {
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
}

@media (max-width: 540px) {
  .hl-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hl-col {
    padding: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #3a3a3a;
  }

  .hl-col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .hl-col--split {
    border-left: 0;
    padding-left: 0;
  }
}

.page-bottom-rule {
  border: 0;
  height: 1px;
  margin: clamp(2.75rem, 7vw, 4rem) 0;
  background-color: #2a2a2a;
}

.sec-about {
  padding-bottom: 0;
}

.about-copy {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: #fafafa;
}

/* Links */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 28px;
  margin-bottom: 50px;
}

.link {
  color: #fafafa;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.link:hover {
  border-color: #ff3d00;
}

/* Tour page */
.tour-main {
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.tour-lead {
  margin: 0 auto clamp(1rem, 2.5vw, 1.75rem);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #888888;
  max-width: 34rem;
}

.page-tour .page-bottom-inner {
  max-width: min(92vw, 52rem);
}

.page-tour .page-bottom {
  padding: clamp(4rem, 11vw, 6.5rem) clamp(1.25rem, 5vw, 2.5rem)
    clamp(4.5rem, 12vw, 7rem);
}

.page-tour .sec-kicker {
  font-size: 0.8125rem;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.tour-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #3a3a3a;
}

.tour-row {
  border-bottom: 1px solid #3a3a3a;
}

.tour-row--empty {
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.tour-event {
  padding: clamp(1.75rem, 5vw, 2.5rem) clamp(0.75rem, 3vw, 1.25rem);
}

.tour-event-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

.tour-event-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
}

@media (min-width: 560px) {
  .tour-event-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}

.tour-event-title {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fafafa;
}

.tour-event-detail {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a0a0a0;
}

.tour-waitlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.85rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  background-color: #ff3d00;
  border-radius: 9999px;
  border: 0;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.tour-waitlist-btn:hover {
  background-color: #ff6a33;
  color: #0a0a0a;
}

.tour-waitlist-btn:active {
  transform: scale(0.98);
}

@media (min-width: 560px) {
  .tour-waitlist-btn {
    align-self: center;
    flex-shrink: 0;
  }
}

.tour-empty-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fafafa;
}

.tour-empty-note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #a0a0a0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.tour-empty-link {
  color: #fafafa;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 61, 0, 0.45);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tour-empty-link:hover {
  color: #ffffff;
  border-bottom-color: #ff3d00;
}
