:root {
  --ink: #16110c;
  --paper: #f7ecd4;
  --cream: #fff8ea;
  --stage: #140c16;
  --stage-2: #241018;
  --curtain: #7a1e2c;
  --gold: #e8b23a;
  --gold-2: #f4d27a;
  --brick: #c23b3b;
  --shadow: 8px 8px 0 var(--ink);
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  background: var(--stage);
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.stage-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(244, 210, 122, 0.28), transparent 58%),
    radial-gradient(ellipse 40% 40% at 8% 70%, rgba(122, 30, 44, 0.45), transparent 70%),
    radial-gradient(ellipse 45% 40% at 92% 80%, rgba(36, 16, 24, 0.9), transparent 70%),
    linear-gradient(180deg, #120b14 0%, #1c1018 42%, #241218 100%);
}

.stage-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(#f4d27a 1.1px, transparent 1.2px);
  background-size: 18px 18px;
}

.floor {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34vh;
  z-index: -1;
  pointer-events: none;
  perspective: 900px;
  overflow: hidden;
}

.floor-planks {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -18%;
  height: 140%;
  transform: rotateX(62deg);
  transform-origin: center bottom;
  background:
    repeating-linear-gradient(
      90deg,
      #3a2418 0 28px,
      #4a2e1c 28px 30px,
      #2c1a12 30px 58px,
      #4a2e1c 58px 60px
    );
  opacity: 0.28;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 78%);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0 12px;
  background: linear-gradient(180deg, rgba(20, 12, 22, 0.94), rgba(20, 12, 22, 0.72) 70%, transparent);
  backdrop-filter: blur(8px);
}

.head-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 10px;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  padding: 3px;
  background: #1a120c;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy b {
  font-family: "Alfa Slab One", serif;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  font-family: Boogaloo, cursive;
  color: #7a4a16;
  font-size: 1rem;
}

.desk-nav {
  display: flex;
  gap: 6px;
}

.desk-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 999px;
}

.desk-nav a:hover {
  background: var(--gold-2);
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.buy-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 3px solid var(--ink);
  color: var(--ink);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.icon-btn.gold {
  background: var(--gold);
}

.icon-btn:hover,
.buy-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.buy-btn {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--ink);
}

.ghost-btn {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--gold);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 3px;
  margin: 4px auto;
  background: var(--ink);
}

.nav-drawer {
  display: none;
}

.hero {
  padding: 28px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  background: var(--brick);
  color: #fff8ea;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero h1 {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 0.92;
  color: var(--cream);
  text-shadow: 4px 4px 0 #7a1e2c, 7px 7px 0 var(--ink);
}

.symbol-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 16px 0 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-family: Boogaloo, cursive;
  font-size: 1.2rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.bubble {
  position: relative;
  margin: 0 0 22px;
  padding: 18px 20px 20px;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 28px 28px 28px 10px;
  box-shadow: var(--shadow);
  font-size: 1.08rem;
  line-height: 1.55;
}

.bubble::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -18px;
  width: 22px;
  height: 22px;
  background: var(--cream);
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: rotate(45deg);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spotlight {
  position: relative;
  padding: 18px;
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle at 50% 42%, rgba(244, 210, 122, 0.55), transparent 62%);
  z-index: 0;
}

.photo-well {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: #0e0a08;
  border: 5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 12px 12px 0 var(--ink), 0 0 0 8px var(--gold);
}

.photo-well img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0e0a08;
}

.caption {
  position: relative;
  z-index: 1;
  margin: 12px 8px 0;
  text-align: center;
  font-family: Boogaloo, cursive;
  color: var(--gold-2);
  font-size: 1.25rem;
}

.lineup {
  padding: 10px 0 8px;
}

.lineup-frame {
  padding: 10px;
  background: #0b0807;
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lineup-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section {
  padding: 56px 0;
}

.program {
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 32px;
  box-shadow: 14px 14px 0 #7a1e2c;
  padding: clamp(22px, 4vw, 42px);
}

.act-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 8px;
  font-family: Boogaloo, cursive;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--curtain);
  font-size: 1.05rem;
}

.act-label::before,
.act-label::after {
  content: "";
  height: 3px;
  width: 48px;
  background: var(--ink);
}

.section h2 {
  margin: 0 0 14px;
  text-align: center;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1;
}

.lead {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.65;
}

.acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.act-card {
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 7px 7px 0 var(--ink);
}

.act-card .photo-well {
  margin: 14px 14px 0;
  box-shadow: 6px 6px 0 var(--ink), 0 0 0 5px var(--gold);
}

.act-copy {
  padding: 16px 18px 20px;
}

.act-copy h3 {
  margin: 0 0 8px;
  font-family: "Alfa Slab One", serif;
  font-size: 1.35rem;
}

.act-copy p {
  margin: 0;
  line-height: 1.55;
}

.box-office {
  background:
    linear-gradient(180deg, rgba(232, 178, 58, 0.16), transparent 40%),
    #1a1014;
  border: 5px solid var(--gold);
  color: var(--cream);
  box-shadow: 14px 14px 0 var(--ink);
}

.box-office h2,
.box-office .lead,
.box-office .act-label {
  color: var(--cream);
}

.box-office .act-label {
  color: var(--gold-2);
}

.box-office .act-label::before,
.box-office .act-label::after {
  background: var(--gold);
}

.tickets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ticket {
  position: relative;
  padding: 22px 16px 20px;
  background: var(--cream);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--ink);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 46px;
  width: 18px;
  height: 18px;
  background: #1a1014;
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.ticket::before {
  left: -13px;
}

.ticket::after {
  right: -13px;
}

.num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: "Alfa Slab One", serif;
}

.ticket h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.ticket p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ca-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 14px;
  background: #0e0a08;
  border: 4px dashed var(--gold);
  border-radius: 18px;
}

.ca-bar span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 800;
}

.ca-bar code {
  flex: 1 1 220px;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  color: var(--cream);
}

.copy-btn {
  cursor: pointer;
  font-family: Outfit, sans-serif;
}

.stage-door {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: center;
}

.mascot-well {
  padding: 16px;
  background: #0e0a08;
  border: 5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 10px 10px 0 var(--ink), 0 0 0 8px var(--gold);
}

.mascot-well img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.community-copy h2,
.community-copy .act-label,
.community-copy .lead {
  text-align: left;
}

.community-copy .lead {
  margin-left: 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-foot {
  padding: 18px 0 36px;
}

.foot-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Alfa Slab One", serif;
}

.foot-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 16px;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .desk-nav,
  .head-actions .buy-btn {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-drawer {
    display: block;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
  }

  .nav-drawer.is-open {
    max-height: 280px;
    margin-top: 10px;
  }

  .nav-drawer a {
    display: block;
    padding: 10px 14px;
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    font-weight: 800;
  }

  .hero-grid,
  .acts,
  .tickets,
  .stage-door {
    grid-template-columns: 1fr;
  }

  .community-copy h2,
  .community-copy .act-label,
  .community-copy .lead {
    text-align: center;
  }

  .community-copy .lead {
    margin-inline: auto;
  }

  .social-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1180px, calc(100% - 18px));
  }

  .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .program {
    border-radius: 22px;
    box-shadow: 8px 8px 0 #7a1e2c;
  }
}
