/* ============ FAREWELL TO THE TWENTIES TOUR ============ */

:root {
  --paper: #ede3cb;
  --paper2: #e0d3b2;
  --ink: #1a1510;
  --ink2: #26201a;
  --red: #b23a2c;
  --red-dark: #8f2d22;
  --gold: #bE9b3f;
  --cream: #f4ecd9;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Oswald", "Helvetica Neue", sans-serif;
  --type: "Special Elite", "Courier New", monospace;
}

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

/* author display rules (flex etc.) must never defeat the hidden attribute */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

/* paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

/* ============ BUTTONS ============ */

.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 0.8em 1.6em;
  border: 3px solid var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-transform: uppercase;
}
.btn-solid { background: var(--red); color: var(--cream); border-color: var(--ink); }
.btn-ghost { background: transparent; color: inherit; }
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-big { font-size: 1.1rem; padding: 0.9em 1.9em; }

/* ============ AGE GATE ============ */

.agegate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: radial-gradient(ellipse at center, var(--ink2), var(--ink) 75%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: opacity 0.5s ease;
}
.agegate.gone { opacity: 0; pointer-events: none; }
.agegate-eyebrow {
  font-family: var(--type);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.agegate-q {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: 0.02em;
  margin-bottom: 2.2rem;
}
.agegate-btns {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 420px;
  margin: 0 auto 1.6rem;
}
.agegate .btn { border-color: var(--cream); color: var(--cream); }
.agegate .btn-solid { background: var(--red); }
.agegate .btn:hover { box-shadow: 5px 5px 0 var(--red); }
.agegate-fine {
  font-family: var(--type);
  font-size: 0.8rem;
  opacity: 0.55;
}

/* ============ TICKER ============ */

.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.55em 0;
  border-bottom: 3px solid var(--red);
  position: relative;
  z-index: 6;
}
.ticker-track {
  display: inline-block;
  animation: tick 40s linear infinite;
}
.ticker-seq {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  padding-right: 2em;
}
.ticker-seq i {
  font-style: normal;
  color: var(--red);
  padding: 0 1.2em;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ HERO ============ */

.hero { padding: clamp(2.5rem, 6vw, 5rem) 1.5rem; }
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.eyebrow {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.eyebrow-light { color: var(--gold); }

.hero-title { line-height: 0.92; margin-bottom: 1.4rem; }
.hero-title span { display: block; font-family: var(--display); }
.ht-small { font-size: clamp(1.6rem, 4vw, 2.8rem); letter-spacing: 0.06em; }
.ht-big {
  font-size: clamp(4.2rem, 13vw, 9.5rem);
  color: var(--red);
  letter-spacing: 0.01em;
  text-shadow: 5px 5px 0 rgba(190, 155, 63, 0.4);
}
.ht-tour {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: 0.5em;
  margin-top: 0.1em;
}
.hero-date {
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.18em;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 0.5em 0;
  display: inline-block;
  margin-bottom: 0.9rem;
}
.hero-sub {
  font-family: var(--type);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  opacity: 0.8;
}

.countdown { display: flex; gap: 0.8rem; margin-bottom: 2rem; }
.cd-cell {
  background: var(--ink);
  color: var(--cream);
  min-width: 78px;
  padding: 0.6rem 0.4rem 0.5rem;
  text-align: center;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(26, 21, 16, 0.25);
}
.cd-num {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}
.cd-lab {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 0.35em;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.claimed-line {
  font-family: var(--type);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
}
.claimed-line b { color: var(--red); font-size: 1.05em; }

.hero-posterwrap { position: relative; }
.hero-poster {
  border: 10px solid var(--cream);
  outline: 3px solid var(--ink);
  box-shadow: 14px 16px 0 rgba(26, 21, 16, 0.2);
  transform: rotate(1.6deg);
}
.poster-stamp {
  position: absolute;
  top: -22px;
  right: -18px;
  width: 96px;
  height: 96px;
  border: 4px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  background: rgba(244, 236, 217, 0.85);
  box-shadow: 0 4px 14px rgba(26, 21, 16, 0.25);
}

/* ============ LIVE BAR ============ */

.livebar {
  background: var(--red);
  color: var(--cream);
  text-align: center;
  padding: 0.8em 1em;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}
.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--cream);
  border-radius: 50%;
  margin-right: 0.7em;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.25; } }

/* ============ SECTIONS ============ */

.section-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 0.03em;
  color: var(--cream);
}
.section-title-dark { color: var(--ink); }
.section-sub {
  font-family: var(--type);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  opacity: 0.8;
}
.section-sub-light { color: var(--cream); }

/* ============ LINEUP ============ */

.lineup {
  background:
    linear-gradient(to bottom, var(--ink) 0%, rgba(26, 21, 16, 0.86) 45%, rgba(26, 21, 16, 0.72) 100%),
    url("../assets/img/crowd-wide.jpg") center bottom / cover no-repeat;
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
  border-top: 4px solid var(--ink);
}
.bill { max-width: 900px; margin: 0 auto; text-align: center; }

.act {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0.6rem;
  transition: transform 0.12s ease;
}
.act:hover { transform: scale(1.03); }
.act-slot {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.3em;
}
.act-name {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: 0.03em;
}
.act-headliner .act-name {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--cream);
  text-shadow: 5px 5px 0 var(--red);
}
.act-tag {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  margin-top: 0.7em;
  opacity: 0.8;
}
.bill-with {
  font-family: var(--type);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin: 2.2rem 0 0.8rem;
}
.act-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}
.act-opener .act-name { font-size: clamp(1.3rem, 3vw, 1.9rem); }

.act-bio {
  max-width: 620px;
  margin: 2.5rem auto 0;
  background: rgba(244, 236, 217, 0.07);
  border: 2px solid var(--gold);
  padding: 1.6rem 1.8rem;
  text-align: center;
}
.act-bio h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.act-bio p { font-weight: 400; font-size: 0.98rem; line-height: 1.55; }
.bio-meta {
  margin-top: 0.9rem;
  font-family: var(--type);
  font-size: 0.82rem;
  color: var(--gold);
}

/* ============ SCHEDULE ============ */

.schedule { padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; }
.stops {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
}
.stop {
  display: flex;
  gap: 1.6rem;
  align-items: baseline;
  padding: 1.3rem 0.5rem;
  border-bottom: 2px dashed rgba(26, 21, 16, 0.35);
  position: relative;
}
.stop:last-child { border-bottom: none; }
.stop-time {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--red);
  min-width: 96px;
  text-align: right;
}
.stop-name {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.stop-note {
  display: block;
  font-family: var(--type);
  font-size: 0.88rem;
  opacity: 0.75;
  margin-top: 0.25em;
}
.stop-live {
  background: rgba(178, 58, 44, 0.12);
  outline: 3px solid var(--red);
  outline-offset: -3px;
}
.stop-live .stop-name::after {
  content: "● NOW ON STAGE";
  color: var(--red);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  margin-left: 1em;
  vertical-align: middle;
  animation: pulse 1.2s ease-in-out infinite;
}
.schedule-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.6rem;
}

/* ============ WHO'S THAT ============ */

.whosthat {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem clamp(3.5rem, 8vw, 5.5rem);
  overflow: hidden;
}
.wt-stage {
  position: relative;
  display: block;
  width: min(340px, 78vw);
  aspect-ratio: 599 / 760;
  margin: 0 auto 1.8rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.wt-burst {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 190%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(190, 155, 63, 0.5) 0deg 7deg,
    transparent 7deg 14deg
  );
  /* fade the rays out toward the rim so the burst doesn't hit a hard circular edge */
  -webkit-mask-image: radial-gradient(circle, #000 32%, transparent 68%);
  mask-image: radial-gradient(circle, #000 32%, transparent 68%);
  animation: wt-spin 24s linear infinite;
  opacity: 0.55;
  transition: opacity 0.5s ease;
}
@keyframes wt-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.wt-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.45s ease;
}
.wt-rev { opacity: 0; }

.whosthat.revealed .wt-sil { opacity: 0; }
.whosthat.revealed .wt-rev { opacity: 1; }
.whosthat.revealed .wt-burst { opacity: 1; animation-duration: 5s; }

.wt-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5.5vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.wt-hint {
  font-family: var(--type);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 0.9rem;
  animation: wt-blink 1.8s ease-in-out infinite;
}
@keyframes wt-blink { 50% { opacity: 0.28; } }

.wt-answer { margin-top: 1rem; }
.wt-answer-big {
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  color: var(--red);
  letter-spacing: 0.02em;
  transform: skewX(-8deg);
  animation: challenger-in 0.5s cubic-bezier(0.2, 1.5, 0.4, 1) both;
}
.wt-answer-sub {
  font-family: var(--type);
  font-size: 1rem;
  opacity: 0.75;
  margin-top: 0.6rem;
}
@media (prefers-reduced-motion: reduce) {
  .wt-burst { animation: none; }
  .wt-hint { animation: none; }
  .wt-answer-big { animation: none; }
}

/* ============ MERCH ============ */

.merch {
  background: var(--ink2);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}
.merch-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.merch-card {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.merch-real { grid-column: span 2; grid-row: span 2; }
.merch-real h3 { font-family: var(--display); font-size: 1.7rem; letter-spacing: 0.04em; }
.merch-imgwrap { margin: -1.2rem -1.2rem 1rem; border-bottom: 3px solid var(--ink); }
.merch-desc { font-size: 0.95rem; font-weight: 400; line-height: 1.5; margin: 0.5rem 0 0.8rem; }
.btn-flip {
  background: none;
  border: none;
  font-family: var(--type);
  font-size: 0.85rem;
  color: var(--red);
  cursor: pointer;
  text-decoration: underline;
  align-self: flex-start;
  margin-bottom: 0.6rem;
  padding: 0;
}
.merch-price { font-family: var(--display); font-size: 1.2rem; margin-bottom: 0.9rem; }
.price-note { font-family: var(--type); font-size: 0.72rem; opacity: 0.65; }

.waitlist-form { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.waitlist-form input,
.waitlist-form select {
  font-family: var(--body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.7em 0.9em;
  border: 3px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
}
.waitlist-form input { flex: 1 1 140px; }
.waitlist-form select { flex: 0 0 auto; }
.waitlist-form .btn { flex: 1 1 100%; }
.waitlist-count {
  margin-top: 0.9rem;
  font-family: var(--type);
  font-size: 0.85rem;
}
.waitlist-count b { color: var(--red); font-size: 1.1em; }
.waitlist-done {
  margin-top: 0.4rem;
  font-family: var(--type);
  font-size: 0.95rem;
  color: var(--red-dark);
}

/* shirt back */
.tee-back-card {
  background: #211e1a;
  color: var(--cream);
  border-color: var(--ink);
  grid-column: span 2;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.4rem;
}
.tee-back { max-width: 400px; margin: 0 auto; }
.tb-title { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.06em; }
.tb-years { font-family: var(--type); font-size: 0.9rem; color: var(--gold); margin: 0.4em 0 1.3em; }
.tb-dates { list-style: none; margin-bottom: 1.3em; }
.tb-dates li {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  padding: 0.42em 0;
  border-bottom: 1px dotted rgba(244, 236, 217, 0.25);
}
.tb-dates li span { color: var(--red); font-weight: 600; margin-right: 0.8em; }
.tb-final { font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.06em; line-height: 1.4; margin-bottom: 0.9em; }
.tb-venues { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.18em; line-height: 1.7; opacity: 0.85; margin-bottom: 1.1em; }
.tb-url { font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.14em; color: var(--gold); }
.tb-fine { font-family: var(--type); font-size: 0.75rem; opacity: 0.6; margin-top: 0.5em; }

/* sold out graveyard */
.merch-dead { align-items: center; text-align: center; justify-content: center; min-height: 210px; }
.merch-dead h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin: 0.6rem 0 0.3rem;
}
.merch-dead-ph { font-size: 2.6rem; filter: grayscale(1) opacity(0.75); }
.merch-dead .merch-price { margin-bottom: 0; font-size: 1rem; }
.soldout {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(237, 227, 203, 0.55);
}
.soldout::before {
  content: "SOLD OUT";
  border: 5px solid var(--red);
  padding: 0.15em 0.6em;
  transform: rotate(-14deg);
  background: rgba(244, 236, 217, 0.8);
  box-shadow: 0 3px 10px rgba(26, 21, 16, 0.2);
}
.soldout { font-size: 0; }
.soldout::before { font-size: 1.6rem; }

/* ============ IN MEMORIAM ============ */

.memoriam {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}
.mem-wrap { max-width: 560px; margin: 0 auto; cursor: pointer; }
.mem-stage {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}
.mem-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.mem-slide.on { opacity: 1; }
.mem-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid #0e0b08;
  outline: 2px solid rgba(244, 236, 217, 0.25);
}
.mem-caption {
  margin-top: 1.5rem;
  text-align: center;
  min-height: 4.6rem;
}
.mem-cap-main {
  display: block;
  font-family: var(--type);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  line-height: 1.4;
}
.mem-cap-sub {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.6;
  margin-top: 0.5em;
  font-style: italic;
}
.mem-dots {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  flex-wrap: wrap;
}
.mem-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 236, 217, 0.22);
  transition: background 0.3s ease;
}
.mem-dots span.on { background: var(--gold); }

/* ============ RIDER ============ */

.rider { padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; background: var(--paper2); }
.rider-doc {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(26, 21, 16, 0.15);
  padding: clamp(1.5rem, 4vw, 2.8rem);
  font-family: var(--type);
}
.rider-head {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.8em;
  margin-bottom: 1.2em;
}
.rider-doc ol { padding-left: 1.4em; }
.rider-doc li { font-size: 0.92rem; line-height: 1.55; margin-bottom: 0.75em; }
.rider-sig { margin-top: 1.6em; font-size: 0.9rem; }
.rider-sig span { color: var(--red); letter-spacing: 0.1em; }

/* ============ FOOTER ============ */

.foot {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
}
.foot-crest {
  width: 132px;
  height: 132px;
  /* contain, not cover — the seal's outer ring must not get clipped by the circle */
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  border: 3px solid var(--gold);
}
.foot-big { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.12em; }
.foot-url { font-family: var(--display); font-size: 1rem; letter-spacing: 0.2em; color: var(--gold); margin: 0.5rem 0 1.4rem; }
.foot-fine {
  font-family: var(--type);
  font-size: 0.75rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0.6;
}

/* ============ TICKET MODAL ============ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(26, 21, 16, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.modal-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
  max-width: 720px;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  text-align: center;
}
.modal-x {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
.modal-title { font-family: var(--display); font-size: 2rem; letter-spacing: 0.04em; }
.modal-sub { font-family: var(--type); font-size: 0.9rem; opacity: 0.75; margin: 0.6rem 0 1.4rem; }
#ticketForm { display: flex; flex-direction: column; gap: 1rem; max-width: 380px; margin: 0 auto; }
#ticketForm input {
  font-family: var(--display);
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 0.6em;
  border: 3px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  text-transform: uppercase;
}
.challenger {
  font-family: var(--display);
  font-size: clamp(1.1rem, 3.4vw, 1.7rem);
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 1rem;
  transform: skewX(-8deg);
  animation: challenger-in 0.5s cubic-bezier(0.2, 1.5, 0.4, 1) both;
}
@keyframes challenger-in {
  from { opacity: 0; transform: skewX(-8deg) scale(0.55); }
  to   { opacity: 1; transform: skewX(-8deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .challenger { animation: none; }
}

#ticketCanvas {
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(26, 21, 16, 0.2);
}
.modal-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.4rem; }
.modal-fine { font-family: var(--type); font-size: 0.8rem; opacity: 0.65; margin-top: 1.1rem; }

/* ============ CONFETTI ============ */

#confetti {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 200;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-posterwrap { max-width: 420px; margin: 0 auto; }
  .act-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-real, .tee-back-card { grid-column: span 2; }
  .cd-cell { min-width: 64px; }
  .cd-num { font-size: 1.7rem; }
  .stop { gap: 1rem; }
  .stop-time { min-width: 74px; font-size: 1.6rem; }
}
@media (max-width: 520px) {
  .merch-grid { grid-template-columns: 1fr; }
  .merch-real, .tee-back-card { grid-column: span 1; }
  .countdown { flex-wrap: wrap; }
}
