:root {
  --bg: #050505;
  --panel: #111111;
  --ink: #f6f2ea;
  --muted: #c8c0b4;
  --line: rgba(246, 242, 234, 0.22);
  --silver: #d8d8d8;
  --accent: #efeadf;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark,
.hero-panel h1,
.panel h2,
.event-display h3,
.poster-placeholder p {
  font-family: Cinzel, Georgia, serif;
}

.brand-mark {
  justify-self: start;
  width: auto;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
}

.nav-button {
  min-height: 36px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.nav-button:hover,
.nav-button.is-active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.instagram-link {
  justify-self: end;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.experience-app {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    #050505;
  background-size: 72px 72px;
}

.experience-app::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.12), transparent 38%);
  opacity: 0.9;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 100svh;
  max-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: 108px clamp(20px, 6vw, 84px) 98px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
  pointer-events: none;
}

.panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.panel::-webkit-scrollbar {
  display: none;
}

.hero-panel {
  place-items: center;
  text-align: center;
}

.events-panel,
.spotlight-panel {
  grid-template-columns: minmax(280px, 0.84fr) minmax(360px, 1.16fr);
}

.contact-panel {
  place-items: center;
  text-align: center;
}

.panel-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel h1 {
  margin: 0;
  font-size: clamp(4.8rem, 18vw, 13.5rem);
  line-height: 0.78;
  font-weight: 900;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.16);
}

.panel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  line-height: 0.98;
  font-weight: 800;
}

.tagline {
  position: relative;
  display: inline-block;
  margin: 28px 0 0;
  padding: 0 58px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  text-transform: uppercase;
}

.tagline::before,
.tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: var(--line);
}

.tagline::before {
  left: 0;
}

.tagline::after {
  right: 0;
}

.hero-copy,
.panel-copy > p,
.event-display p,
.poster-placeholder span {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.hero-copy {
  width: min(690px, 100%);
  margin: 24px auto 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: #070707;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.stage-note {
  display: none;
}

.mirror-ball,
.wire-ring,
.dot-field {
  position: absolute;
  pointer-events: none;
}

.mirror-ball {
  width: clamp(130px, 21vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.58;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255,255,255,0.42) 49%, transparent 51%),
    linear-gradient(0deg, transparent 47%, rgba(255,255,255,0.34) 49%, transparent 51%),
    radial-gradient(circle at 35% 32%, #aaa 0 8%, #393939 38%, #050505 73%);
  background-size: 38px 38px, 38px 38px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ball-left {
  top: 32px;
  left: -80px;
}

.ball-right {
  right: -76px;
  bottom: 72px;
}

.wire-ring {
  width: clamp(170px, 27vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.32);
  background: repeating-radial-gradient(circle, transparent 0 9px, rgba(255,255,255,0.42) 10px 11px);
  opacity: 0.42;
}

.ring-top {
  top: -110px;
  right: 8%;
  transform: rotate(-24deg) scaleY(0.55);
}

.ring-bottom {
  bottom: -118px;
  left: -58px;
  transform: rotate(24deg) scaleY(0.6);
}

.dot-field {
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.7) 2px, transparent 3px);
  background-size: 18px 18px;
  opacity: 0.58;
}

.dots-one {
  right: 0;
  top: 78px;
}

.dots-two {
  left: 28px;
  bottom: 116px;
}

.event-console {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.event-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.event-card {
  min-height: 86px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.event-card:hover,
.event-card.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #070707;
  transform: translateX(8px);
}

.event-card span {
  color: inherit;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.event-card strong {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
}

.event-display {
  position: relative;
  min-height: 386px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(150deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
    #0b0b0b;
}

.event-display::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.32);
  background: repeating-radial-gradient(circle, transparent 0 8px, rgba(255,255,255,0.38) 9px 10px);
  transform: rotate(-18deg) scaleY(0.55);
}

.event-display h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.event-display p {
  position: relative;
  max-width: 560px;
  margin: 0;
}

.experience-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.experience-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.event-details div {
  min-height: 92px;
  padding: 18px;
  background: var(--bg);
}

.event-details dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.05rem;
}

.poster-frame {
  position: relative;
  display: block;
  width: min(410px, 100%);
  max-height: min(640px, calc(100svh - 210px));
  aspect-ratio: 1122 / 1402;
  justify-self: center;
  padding: 10px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 30%),
    #0a0a0a;
  transform-style: preserve-3d;
  transition: transform 180ms ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.poster-frame:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 6px;
}

.spotlight-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.22);
  transform: translateZ(34px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.poster-placeholder {
  height: 100%;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.28);
  transform: translateZ(34px);
}

.poster-placeholder p {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2rem);
  text-transform: uppercase;
}

.poster-placeholder span {
  display: block;
  max-width: 240px;
}

.contact-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.contact-copy p {
  max-width: 560px;
  margin: 0;
}

.side-arrow {
  position: fixed;
  z-index: 35;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.45rem;
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.side-arrow span {
  line-height: 1;
}

.side-arrow:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #070707;
}

.side-arrow-left {
  left: clamp(14px, 2.8vw, 34px);
}

.side-arrow-left:hover {
  transform: translate(-4px, -50%);
}

.side-arrow-right {
  right: clamp(14px, 2.8vw, 34px);
}

.side-arrow-right:hover {
  transform: translate(4px, -50%);
}

.progress-dots {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(5, 5, 5, 0.54);
  border: 1px solid rgba(246, 242, 234, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.progress-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(246, 242, 234, 0.32);
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.progress-dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: var(--ink);
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .experience-app {
    min-height: auto;
    overflow: hidden;
  }

  .panel {
    position: relative;
    min-height: auto;
    max-height: none;
    display: none;
    padding: 104px 22px 98px;
  }

  .panel.is-active {
    display: grid;
  }

  .events-panel,
  .spotlight-panel,
  .event-console {
    grid-template-columns: 1fr;
  }

  .event-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card:hover,
  .event-card.is-selected {
    transform: translateY(-4px);
  }
}

@media (max-width: 680px) {
  body {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .experience-app {
    height: 100svh;
  }

  .panel {
    position: absolute;
    inset: 0;
    display: grid;
    min-height: 100svh;
    max-height: 100svh;
    overflow-y: auto;
    padding: 94px 22px 112px;
    scrollbar-width: none;
  }

  .panel::-webkit-scrollbar {
    display: none;
  }

  .panel:not(.is-active) {
    display: grid;
  }

  .instagram-link {
    font-size: 0.78rem;
  }

  .hero-panel h1 {
    font-size: clamp(4.2rem, 27vw, 7rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .stage-note {
    display: none;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .event-display {
    min-height: 260px;
    justify-content: flex-start;
  }

  .event-card {
    min-height: 72px;
  }

  .side-arrow {
    top: auto;
    bottom: 22px;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    background: rgba(5, 5, 5, 0.82);
    transform: none;
  }

  .side-arrow-left {
    left: 18px;
  }

  .side-arrow-right {
    right: 18px;
  }

  .side-arrow-left:hover,
  .side-arrow-right:hover {
    transform: none;
  }

  .progress-dots {
    bottom: 32px;
    padding: 10px 12px;
  }

  .ball-left {
    left: -112px;
  }

  .ball-right {
    right: -116px;
  }
}

@media (min-width: 981px) and (max-height: 840px) {
  .panel {
    padding-top: 92px;
    padding-bottom: 78px;
  }

  .events-panel,
  .spotlight-panel {
    align-items: start;
  }

  .hero-panel h1 {
    font-size: clamp(4.4rem, 14vw, 10rem);
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  .tagline {
    margin-top: 18px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: clamp(0.96rem, 1.35vw, 1.08rem);
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .event-details {
    margin: 22px 0;
  }

  .event-details div {
    min-height: 78px;
    padding: 14px;
  }

  .poster-frame {
    width: min(360px, 100%);
    max-height: calc(100svh - 180px);
  }
}

@media (max-width: 480px) {
  .event-selector {
    grid-template-columns: 1fr;
  }

  .panel {
    padding-right: 18px;
    padding-left: 18px;
  }
}
