/* ============================================================
   BLACKTOP BALLROOM — house stylesheet
   black leather / marquee amber / signal red / stage blue / sticker white
   ============================================================ */

:root {
  --leather: #0e0c0a;
  --leather-2: #17130f;
  --leather-3: #221c15;
  --amber: #ffb64d;
  --amber-hot: #ffd898;
  --red: #e33224;
  --blue: #3e8ee0;
  --white: #f4efe6;
  --white-dim: #b9b2a4;
  --mono: "Special Elite", "Courier New", monospace;
  --poster: "Big Shoulders", "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--leather);
  color: var(--white);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--leather); }

a { color: var(--amber); }
a:hover { color: var(--amber-hot); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- marquee header ---------- */

.marquee-wrap {
  padding: clamp(10px, 2.5vw, 28px) clamp(10px, 3vw, 40px) 0;
  background:
    radial-gradient(120% 90% at 50% 0%, #1c1610 0%, var(--leather) 70%);
}

#marquee {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 6px;
}
.marquee-sm #marquee { max-width: 720px; }

/* ---------- nav strip ---------- */

.navstrip {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px clamp(14px, 3vw, 44px);
  border-bottom: 1px solid #2c251c;
  font-size: 13px;
  letter-spacing: .04em;
}
.navstrip .addr { color: var(--white-dim); }
.navstrip nav { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.navstrip nav a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}
.navstrip nav a:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* ---------- hero ---------- */

.hero {
  padding: clamp(48px, 8vw, 110px) clamp(16px, 4vw, 64px) clamp(40px, 6vw, 80px);
  position: relative;
}
.kicker {
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--amber);
  margin-bottom: 22px;
}
.kicker .dot { color: var(--red); }
.hero h2, .hero .h1 {
  font-family: var(--poster);
  font-weight: 900;
  font-size: clamp(64px, 12.5vw, 176px);
  line-height: .88;
  letter-spacing: .005em;
  text-transform: uppercase;
  max-width: 12ch;
}
.hero .line-red { color: var(--red); }
.hero .line-blue { color: var(--blue); }
.hero p {
  margin-top: 34px;
  max-width: 560px;
  color: var(--white-dim);
  font-size: 15px;
}
.hero .kicker { max-width: none; margin-top: 0; }
.hero p strong { color: var(--white); font-weight: normal; }

/* ---------- torn divider ---------- */

.torn-divider { display: block; width: 100%; height: 26px; }

/* ---------- section scaffolding ---------- */

section { position: relative; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 26px;
  padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 64px) 26px;
}
.section-head h2 {
  font-family: var(--poster);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .9;
  letter-spacing: .01em;
}
.section-head .stamp {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--leather);
  background: var(--amber);
  padding: 3px 10px 2px;
  transform: rotate(-1.6deg);
  display: inline-block;
}
.section-head .side-note { color: var(--white-dim); font-size: 13px; margin-left: auto; }

/* ---------- poster wall ---------- */

.wall {
  background:
    radial-gradient(90% 60% at 20% 0%, #191410 0%, transparent 60%),
    var(--leather-2);
}
.wall-tools {
  padding: 0 clamp(16px, 4vw, 64px) 8px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.reprint {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--leather);
  background: var(--white);
  border: none;
  padding: 10px 18px 8px;
  cursor: pointer;
  transform: rotate(-.8deg);
  box-shadow: 4px 4px 0 var(--red);
  transition: transform .15s ease, box-shadow .15s ease;
}
.reprint:hover { transform: rotate(-.8deg) translate(-2px, -2px); box-shadow: 6px 6px 0 var(--red); }
.reprint:active { transform: rotate(-.8deg) translate(2px, 2px); box-shadow: 2px 2px 0 var(--red); }
.wall-tools .hint { font-size: 12px; color: var(--white-dim); }

.shows {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: clamp(22px, 3vw, 44px);
  padding: 18px clamp(16px, 4vw, 64px) clamp(50px, 6vw, 90px);
  align-items: start;
}

.show { position: relative; }

.poster-holder {
  position: relative;
  cursor: pointer;
  transition: transform .22s ease;
}
.poster-holder:hover { transform: rotate(0deg) scale(1.02) !important; }
.poster-holder svg { display: block; width: 100%; height: auto; filter: drop-shadow(0 14px 18px rgba(0,0,0,.55)); }

.stub-toggle {
  width: 100%;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-align: left;
  color: var(--white);
  background: var(--leather-3);
  border: 1px solid #3a3126;
  border-left: 4px solid var(--amber);
  padding: 10px 12px 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  transition: background .15s ease, border-color .15s ease;
}
.stub-toggle:hover { background: #2a2118; border-color: var(--amber); }
.stub-toggle .tik { color: var(--amber); transition: transform .2s ease; }
.stub-toggle[aria-expanded="true"] .tik { transform: rotate(90deg); }
.stub-toggle .soldout-flag { color: var(--red); }

/* ---------- ticket stub ---------- */

.stub {
  margin-top: 8px;
  background: var(--white);
  color: var(--leather);
  padding: 16px 16px 14px;
  position: relative;
  font-size: 13.5px;
  line-height: 1.55;
  border-top: 2px dashed #9b9484;
  /* punched holes on the perforation line */
  background-image:
    radial-gradient(circle 7px at 0 0, var(--leather-2) 98%, transparent),
    radial-gradient(circle 7px at 100% 0, var(--leather-2) 98%, transparent);
  background-repeat: no-repeat;
}
.stub[hidden] { display: none; }
.stub .stub-head {
  font-family: var(--poster);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 24px;
  line-height: .95;
  margin-bottom: 8px;
}
.stub table { width: 100%; border-collapse: collapse; }
.stub td { padding: 3px 0; border-bottom: 1px dotted #b9b2a4; vertical-align: top; }
.stub td:last-child { text-align: right; white-space: nowrap; }
.stub .price-row { margin-top: 10px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.stub .price-row .p { letter-spacing: .05em; }
.stub .p .soldout { color: var(--red); letter-spacing: .12em; }
.stub a.tickets {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 7px 14px 5px;
  font-size: 12.5px;
  letter-spacing: .12em;
  transform: rotate(-.5deg);
}
.stub a.tickets:hover { background: #c22014; color: var(--white); }
.stub .barcode {
  margin-top: 12px;
  height: 30px;
  width: 100%;
}

/* ---------- the room ---------- */

.room-figure { position: relative; }
.room-figure img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: cover;
}
.room-figure figcaption {
  position: absolute;
  left: clamp(14px, 3vw, 40px);
  bottom: clamp(12px, 2.5vw, 30px);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--white);
  background: rgba(14,12,10,.78);
  padding: 6px 12px 4px;
  max-width: min(520px, 84%);
}

.room-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 64px);
}
.room-body .lede {
  font-family: var(--poster);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.14;
  text-transform: none;
}
.room-body .lede em { font-style: normal; color: var(--amber); }
.specs { list-style: none; font-size: 13.5px; }
.specs li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0 7px;
  border-bottom: 1px solid #2c251c;
}
.specs li:first-child { border-top: 1px solid #2c251c; }
.specs .k { color: var(--white-dim); letter-spacing: .08em; }
.specs .v { color: var(--white); text-align: right; }
.specs .v.hot { color: var(--red); }

/* ---------- backline ---------- */

.backline {
  background: var(--leather-2);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: stretch;
}
.backline .photo-side img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; min-height: 420px;
}
.backline .copy-side {
  padding: clamp(36px, 5vw, 72px) clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.backline h2 {
  font-family: var(--poster);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .9;
}
.backline p { color: var(--white-dim); font-size: 15px; max-width: 52ch; }
.backline p strong { color: var(--white); font-weight: normal; }

.strike-btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--white);
  background: rgba(255,182,77,.05);
  border: 1px solid #6a5334;
  padding: 14px 24px 12px 16px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.strike-btn:hover { box-shadow: 0 0 24px rgba(255,182,77,.18); }
.strike-btn:hover { border-color: var(--amber); background: rgba(255,182,77,.06); }
.strike-btn svg { display: block; }
.strike-btn .flame { opacity: 0; transform-origin: 50% 100%; }
.strike-btn.lit .flame { opacity: 1; animation: flame .12s steps(2) infinite; }
@keyframes flame {
  from { transform: scaleY(1) skewX(0deg); }
  to   { transform: scaleY(1.25) skewX(-6deg); }
}
.strike-btn .sub { color: var(--white-dim); font-size: 11.5px; display: block; letter-spacing: .06em; }
@media (prefers-reduced-motion: reduce) {
  .strike-btn.lit .flame { animation: none; opacity: 1; }
}

/* ---------- house rules ---------- */

.rules-wrap { padding: 0 clamp(16px, 4vw, 64px) clamp(56px, 7vw, 100px); }
.rules {
  list-style: none;
  max-width: 900px;
  counter-reset: rule;
}
.rules li {
  counter-increment: rule;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0 16px;
  border-bottom: 1px solid #2c251c;
  align-items: baseline;
}
.rules li::before {
  content: "RULE " counter(rule, decimal-leading-zero);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--amber);
}
.rules li:nth-child(3)::before { color: var(--red); }
.rules .rule-line {
  font-family: var(--poster);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
}
.rules .rule-note { display: block; font-family: var(--mono); font-size: 13px; color: var(--white-dim); margin-top: 4px; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid #2c251c;
  padding: clamp(36px, 5vw, 60px) clamp(16px, 4vw, 64px) 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  font-size: 13px;
  color: var(--white-dim);
  background: var(--leather-2);
}
footer h3 {
  font-family: var(--poster);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  font-size: 19px;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
footer p { max-width: 40ch; }
footer a { color: var(--amber); }
.footer-marq {
  grid-column: 1 / -1;
  font-family: var(--poster);
  font-weight: 900;
  text-transform: uppercase;
  color: #2a2118;
  font-size: clamp(44px, 9vw, 120px);
  line-height: .9;
  letter-spacing: .01em;
  user-select: none;
}

/* ---------- guide page ---------- */

.guide-main { max-width: 980px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px) 90px; }
.guide-main > section { padding-top: clamp(36px, 5vw, 60px); }
.guide-main h2 {
  font-family: var(--poster);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .92;
  margin-bottom: 18px;
}
.guide-main h2 .idx { color: var(--red); }
.guide-main p { color: var(--white-dim); margin-bottom: 14px; max-width: 68ch; font-size: 15px; }
.guide-main p strong { color: var(--white); font-weight: normal; }
.guide-main ul, .guide-main ol { color: var(--white-dim); padding-left: 22px; margin-bottom: 14px; font-size: 15px; }
.guide-main li { margin-bottom: 8px; }
.guide-main li strong { color: var(--white); font-weight: normal; }

.swatches { display: flex; flex-wrap: wrap; gap: 14px; margin: 18px 0 8px; padding: 0; list-style: none; }
.swatches li { width: 132px; }
.swatches .chip {
  height: 76px;
  border: 1px solid #3a3126;
  transform: rotate(-.6deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.swatches .lbl { font-size: 11.5px; letter-spacing: .08em; margin-top: 7px; color: var(--white); }
.swatches .hex { font-size: 11px; color: var(--white-dim); }

.typecard {
  border: 1px solid #2c251c;
  padding: 22px 22px 18px;
  margin: 14px 0;
  background: var(--leather-2);
}
.typecard .sample-poster {
  font-family: var(--poster); font-weight: 900; text-transform: uppercase;
  font-size: clamp(38px, 6vw, 64px); line-height: .9;
}
.typecard .sample-mono { font-size: 15px; margin-top: 10px; color: var(--amber); }
.typecard .why { font-size: 13px; color: var(--white-dim); margin-top: 12px; max-width: 62ch; }

pre {
  background: #090807;
  border: 1px solid #2c251c;
  border-left: 4px solid var(--blue);
  padding: 16px 18px;
  overflow-x: auto;
  margin: 14px 0 22px;
  font-size: 12.5px;
  line-height: 1.6;
}
code { font-family: "Special Elite", monospace; color: var(--white); }
pre code .c { color: #6f6656; }
pre code .a { color: var(--amber); }

.pass-list { list-style: none; padding: 0; }
.pass-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0 12px;
  border-bottom: 1px solid #2c251c;
  align-items: baseline;
}
.pass-list .pn { color: var(--amber); font-size: 12px; letter-spacing: .14em; }

.backlink {
  display: inline-block;
  margin: 26px 0 4px;
  font-size: 13px;
  letter-spacing: .1em;
  text-decoration: none;
  color: var(--white);
  border: 1px solid #4a3d2c;
  padding: 9px 16px 7px;
}
.backlink:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .room-body, .backline { grid-template-columns: 1fr; }
  .backline .photo-side img { min-height: 300px; max-height: 56vh; }
  .rules li { grid-template-columns: 64px minmax(0, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .shows { grid-template-columns: 1fr 1fr; gap: 16px; padding-left: 14px; padding-right: 14px; }
  .stub-toggle { font-size: 11px; }
  .navstrip { font-size: 12px; }
  .rules li { grid-template-columns: 1fr; gap: 2px; padding: 14px 0 12px; }
}

@media (max-width: 400px) {
  .shows { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .poster-holder, .reprint, .stub-toggle .tik { transition: none; }
  .poster-holder:hover { transform: none !important; }
}
