:root {
  --night: #0b1020;
  --panel: #141a2e;
  --panel-2: #1b2340;
  --brass: #c9a15b;
  --brass-2: #e8d09a;
  --wine: #a12d45;
  --wine-2: #c43b58;
  --ice: #eef1f8;
  --paper: #f6f1e6;
  --mute: #9aa3bc;
  --line: rgba(201, 161, 91, 0.28);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --ui: "Sora", "Segoe UI", sans-serif;
  --read: "Lora", "Georgia", serif;
  --tick: "Chivo Mono", "Consolas", monospace;
  --max: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ui);
  background: var(--night);
  color: var(--ice);
  line-height: 1.65;
  font-size: 16.5px;
  min-height: 100vh;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 90;
  background: var(--brass);
  color: var(--night);
  padding: 8px 12px;
}

.haze {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(161, 45, 69, 0.22), transparent 60%),
    radial-gradient(700px 380px at 110% 8%, rgba(201, 161, 91, 0.12), transparent 55%),
    repeating-linear-gradient(118deg, transparent 0 22px, rgba(255,255,255,0.012) 22px 23px);
}

.spine {
  display: none;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.gate {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #100816 0%, #120b1a 100%);
  border-bottom: 1px solid var(--line);
}
.gate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--brass-2);
  background: #1a1024;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy b {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand-copy span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.gate-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  animation: pulse 2.4s ease-in-out infinite;
}
.btn-in {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(161, 45, 69, 0.55);
}
.btn-join {
  background: var(--brass);
  color: #1a1208;
  box-shadow: 0 0 0 0 rgba(201, 161, 91, 0.45);
}
@keyframes pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 transparent; }
  50% { transform: translateY(-1px); box-shadow: 0 0 18px 0 rgba(201, 161, 91, 0.28); }
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ice);
}
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ice);
  position: relative;
  margin: 0 auto;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.ribbon {
  overflow: hidden;
  background: var(--brass);
  color: #1a1208;
  border-bottom: 2px solid #8b2240;
}
.ribbon-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: ticker 28s linear infinite;
  padding: 8px 0;
  font-family: var(--tick);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav {
  background: rgba(11, 16, 32, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.nav-list a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.nav-list a:hover,
.nav-list a.is-here { color: var(--brass-2); }

.hero {
  padding: 36px 0 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}
.kicker {
  font-family: var(--tick);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
  font-variant-ligatures: none;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass);
}
.lede {
  font-family: var(--read);
  font-size: 18px;
  color: #d5dbeb;
  max-width: 58ch;
  margin: 0 0 22px;
}
.ticket {
  background:
    linear-gradient(180deg, #22182c 0%, #161022 100%);
  border: 1px dashed var(--brass);
  padding: 22px 20px 18px;
  position: relative;
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--night);
  border-radius: 50%;
}
.ticket::before { left: -9px; top: 42%; }
.ticket::after { right: -9px; top: 42%; }
.ticket small {
  display: block;
  font-family: var(--tick);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.ticket strong {
  display: block;
  font-size: 18px;
  word-break: break-word;
  color: #fff;
}
.ticket p {
  margin: 10px 0 16px;
  color: var(--mute);
  font-size: 14px;
}
.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stage-wrap { padding: 10px 0 28px; }
.stage {
  position: relative;
  min-height: 210px;
}
.slide {
  display: none;
  background: var(--panel);
  border-left: 6px solid var(--wine);
  padding: 26px 24px;
  min-height: 210px;
}
.slide.is-on { display: block; animation: rise 0.45s ease; }
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.slide h2 {
  font-family: var(--display);
  font-size: 40px;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.slide p { margin: 0; color: #d8deee; max-width: 70ch; }
.stage-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.pip,
.nudge {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ice);
  min-width: 36px;
  min-height: 36px;
}
.pip.is-on { background: var(--brass); color: #1a1208; border-color: var(--brass); }

.crumbs {
  font-size: 13px;
  color: var(--mute);
  padding: 16px 0 0;
}
.crumbs a { color: var(--brass-2); text-decoration: none; }

.band { padding: 28px 0; }
.band h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.band .intro {
  font-family: var(--read);
  color: #d5dbeb;
  max-width: 70ch;
}

.article {
  background: var(--paper);
  color: #231910;
  padding: 34px 28px 40px;
  margin: 18px 0 8px;
}
.article img { margin: 0 0 22px; }
.article h2,
.article h3 {
  font-family: var(--display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1020;
}
.article h2 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 12px; }
.article h3 { font-size: 28px; margin: 28px 0 10px; }
.article p,
.article li {
  font-family: var(--read);
  font-size: 17.5px;
  line-height: 1.8;
}
.article p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 58px;
  float: left;
  line-height: 0.8;
  padding: 8px 8px 0 0;
  color: var(--wine);
}
.article ul { padding-left: 20px; }
.article a { color: #8b2240; }
.article .stars { color: #8b2240; letter-spacing: 2px; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card {
  background: var(--panel);
  padding: 20px 18px;
  text-decoration: none;
  border-top: 3px solid var(--brass);
  min-height: 160px;
}
.card b {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}
.card span { color: var(--mute); font-size: 14.5px; }

.score {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  background: var(--panel-2);
  padding: 22px;
  margin-top: 16px;
}
.score-num {
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.85;
  color: var(--brass);
}
.score-num small {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--mute);
}
.stars { color: var(--brass-2); letter-spacing: 2px; margin: 0 0 8px; }

.event {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  background: linear-gradient(135deg, #2a1230, #141a2e);
  border: 1px solid var(--line);
  padding: 20px;
  margin-top: 16px;
}
.event-date {
  font-family: var(--display);
  text-align: center;
  background: var(--wine);
  padding: 16px 8px;
}
.event-date b { display: block; font-size: 42px; line-height: 1; }
.event h3 { margin: 0 0 8px; font-family: var(--display); font-size: 32px; letter-spacing: 0.04em; text-transform: uppercase; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--ice);
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
}
.faq-item div {
  display: none;
  padding: 0 0 16px;
  color: #d5dbeb;
  font-family: var(--read);
}
.faq-item.is-open div { display: block; }

.foot {
  padding: 28px 0 110px;
  color: var(--mute);
  font-size: 13.5px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}
.foot a { color: var(--brass-2); }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 16, 32, 0.94);
  border-top: 1px solid var(--line);
}
.dock .btn { flex: 1; animation: none; min-height: 46px; }

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .score,
  .event { grid-template-columns: 1fr; }
  .burger { display: grid; place-items: center; }
  .nav {
    display: none;
    background: #120b1a;
    border-bottom: 1px solid var(--line);
    padding: 8px 14px 16px;
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; }
  .dock { display: flex; }
  .gate-actions { display: flex; }
  .hero { padding-top: 22px; }
  .article { padding: 24px 16px 28px; }
  .article p:first-of-type::first-letter { font-size: 46px; }
}

@media (max-width: 620px) {
  .brand-copy { display: none; }
}
@media (max-width: 420px) {
  .btn { padding: 0 10px; font-size: 12px; }
  .hero h1 { font-size: 44px; }
}

@media (min-width: 1100px) {
  .spine {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 42px;
    z-index: 30;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #100816;
    color: var(--brass);
    font-family: var(--tick);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  body { padding-left: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .ribbon-track, .slide { animation: none; }
}
