/* ═══════════════════════════════════════════════════════════════════
   USA.gov — THE GRAND FEDERAL EXPOSITION
   WPA poster × travelling carnival bill. Navy, cream, vermillion, gold.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #202c4a;
  --navy-deep: #161f38;
  --cream: #f2e7ce;
  --cream-2: #eadcbc;
  --vermil: #b63a22;
  --vermil-deep: #8f2a16;
  --gold: #c99f3f;
  --gold-bright: #e3b94e;
  --ink: #241d14;
  --slab: "Alfa Slab One", "Rockwell", serif;
  --wood: "Rye", "Alfa Slab One", serif;
  --play: "Oswald", "Arial Narrow", sans-serif;
  --body: "Public Sans", "Helvetica Neue", sans-serif;
  --press: cubic-bezier(.2, 1.35, .3, 1);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  --pennant: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='48' viewBox='0 0 96 48'%3E%3Cpath d='M0 0h96' stroke='%23c99f3f' stroke-width='2.5'/%3E%3Cpath d='M4 2l20 0-10 40z' fill='%23b63a22'/%3E%3Cpath d='M28 2h20l-10 40z' fill='%23f2e7ce'/%3E%3Cpath d='M52 2h20l-10 40z' fill='%23202c4a'/%3E%3Cpath d='M76 2h20l-10 40z' fill='%23c99f3f'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--navy-deep);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
/* paper grain over everything */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: var(--grain);
  opacity: .14;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2000;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold-bright); color: var(--navy-deep); }

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

/* ── CURTAIN ─────────────────────────────────────────────────────── */
.curtain {
  position: fixed; inset: 0; z-index: 3000;
  display: grid; place-items: center;
  pointer-events: none;
}
.curtain-half {
  position: absolute; top: 0; bottom: 0; width: 51%;
  background:
    repeating-linear-gradient(90deg, var(--vermil) 0 34px, var(--vermil-deep) 34px 68px);
  box-shadow: 0 0 80px rgba(0,0,0,.5) inset;
  transition: transform 1.15s cubic-bezier(.7, 0, .2, 1);
}
.curtain-l { left: 0; border-right: 5px solid var(--gold); }
.curtain-r { right: 0; border-left: 5px solid var(--gold); }
.curtain-word {
  position: relative; z-index: 1;
  font-family: var(--wood);
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  color: var(--gold-bright);
  text-shadow: 0 3px 0 rgba(0,0,0,.35);
  letter-spacing: .02em;
  text-align: center;
  padding: 0 1rem;
  transition: opacity .4s;
}
.curtain.raise .curtain-l { transform: translateX(-102%); }
.curtain.raise .curtain-r { transform: translateX(102%); }
.curtain.raise .curtain-word { opacity: 0; }
.curtain.gone { display: none; }

/* ── GOV PLATE ───────────────────────────────────────────────────── */
.govplate {
  background: var(--ink);
  color: var(--cream);
  font-size: .82rem;
  border-bottom: 3px solid var(--gold);
}
.govplate-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .45rem 0; }
.gp-star { color: var(--gold-bright); }
.govplate-toggle {
  background: none; border: 1px solid var(--gold); color: var(--gold-bright);
  font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; padding: .35rem .8rem; border-radius: 2px;
  min-height: 34px;
}
.govplate-toggle:hover { background: var(--gold); color: var(--ink); }
.govplate-toggle[aria-expanded="true"] .gp-caret { display: inline-block; transform: rotate(180deg); }
.govplate-panel { padding: .4rem 0 1rem; max-width: 60ch; }

/* ── MASTHEAD ────────────────────────────────────────────────────── */
.masthead {
  position: sticky; top: 0; z-index: 1000;
  background: var(--cream);
  border-bottom: 4px double var(--navy);
  box-shadow: 0 4px 0 rgba(0,0,0,.25);
}
.masthead-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.brand { display: flex; align-items: baseline; gap: .6rem; text-decoration: none; color: var(--navy); }
.brand-star { color: var(--vermil); font-size: 1.3rem; }
.brand-word { font-family: var(--slab); font-size: 1.5rem; letter-spacing: .01em; }
.brand-word em { font-style: normal; color: var(--vermil); }
.brand-sub {
  font-family: var(--play); font-weight: 600; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--ink); opacity: .75; align-self: center;
}
.mainnav { display: flex; gap: .2rem; }
.mainnav a {
  font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  font-size: .8rem; text-decoration: none; color: var(--navy);
  padding: .55rem .7rem; border: 1px solid transparent; border-radius: 2px;
}
.mainnav a:hover { border-color: var(--navy); background: var(--gold-bright); box-shadow: 3px 3px 0 var(--navy); transform: translate(-1px,-1px); }
.burger {
  display: none;
  align-items: center; gap: .5rem;
  background: var(--navy); color: var(--cream); border: 2px solid var(--navy);
  font-family: var(--play); font-weight: 600; letter-spacing: .14em; font-size: .75rem;
  padding: .6rem .9rem; min-height: 44px; border-radius: 2px;
  box-shadow: 3px 3px 0 var(--gold);
}
.burger i { display: block; width: 16px; height: 2px; background: var(--gold-bright); }
.burger { flex-wrap: wrap; }
.burger i { margin-left: 2px; }
.mobilemenu {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: .5rem 1.25rem 1.25rem;
}
.mobilemenu a {
  display: block; padding: .9rem .25rem; min-height: 44px;
  font-family: var(--play); font-weight: 500; text-transform: uppercase; letter-spacing: .1em;
  color: var(--cream); text-decoration: none; border-bottom: 1px dashed rgba(242,231,206,.35);
}
.mobilemenu a:hover { color: var(--gold-bright); }

/* ── OVERTURE / HERO ─────────────────────────────────────────────── */
.overture {
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, #2c3c63 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 3.2rem 0 0;
  position: relative;
  overflow: clip;
}
.overture-stars { position: absolute; inset: 0; pointer-events: none; }
.overture-stars i {
  position: absolute; width: 5px; height: 5px;
  background: var(--gold-bright);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: .15; } 50% { opacity: .9; } }

.presented {
  text-align: center;
  font-family: var(--play); font-weight: 500; text-transform: uppercase;
  letter-spacing: .34em; font-size: clamp(.7rem, 1.6vw, .95rem);
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
}
.pr-star { color: var(--vermil); }

/* pasted poster */
.poster, .hero-poster {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow:
    0 0 0 6px var(--cream),
    0 0 0 8px var(--ink),
    14px 18px 0 rgba(0,0,0,.38);
  position: relative;
}
.corner { position: absolute; width: 22px; height: 22px; border: 3px solid var(--vermil); z-index: 2; }
.c-tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.c-tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.c-bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.c-br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }

.hero-poster {
  max-width: 980px; margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3.2rem) clamp(1.2rem, 4vw, 3rem);
  text-align: center;
  transform: rotate(-.8deg);
}
.hero-rule {
  font-family: var(--play); font-weight: 600; letter-spacing: .3em; font-size: .72rem;
  color: var(--vermil); margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--slab);
  font-size: clamp(3.6rem, 12vw, 9.5rem);
  line-height: .95;
  color: var(--navy);
  letter-spacing: -.01em;
  text-shadow: 4px 4px 0 var(--gold-bright);
}
.hero-dot { color: var(--vermil); }
.hero-wood {
  font-family: var(--wood);
  font-size: clamp(1.5rem, 4.6vw, 3.1rem);
  color: var(--vermil);
  margin-top: .4rem;
}
.hero-under {
  font-family: var(--play); font-weight: 700; text-transform: uppercase;
  letter-spacing: .5em; font-size: clamp(.72rem, 2vw, 1.05rem);
  color: var(--navy); margin: .7rem 0 1.4rem;
}
.hero-plate {
  max-width: 640px; margin: 0 auto 1.4rem;
  border: 2px solid var(--ink);
  outline: 6px solid var(--cream-2);
  outline-offset: 4px;
  box-shadow: 6px 8px 0 rgba(0,0,0,.3);
}
.hero-plate figcaption {
  font-family: var(--play); font-weight: 600; letter-spacing: .22em; font-size: .66rem;
  background: var(--ink); color: var(--gold-bright); padding: .35rem;
  text-transform: uppercase;
}
/* two-tone show-ink photo treatment */
.print-photo { background: var(--navy); overflow: hidden; }
.print-photo img {
  filter: grayscale(1) contrast(1.18) brightness(1.02);
  mix-blend-mode: screen;
  width: 100%;
}
.hero-copy { max-width: 56ch; margin: 0 auto 1.6rem; font-size: 1.02rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: .9rem 0;
  gap: .5rem 2.4rem;
}
.stat { display: grid; justify-items: center; }
.stat-num { font-family: var(--slab); font-size: 2.1rem; color: var(--vermil); line-height: 1; }
.stat-label { font-family: var(--play); font-weight: 500; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; }

/* ── TICKET WINDOW (finder) ──────────────────────────────────────── */
.ticketwindow { max-width: 980px; margin: 2.8rem auto 3.4rem; text-align: center; position: relative; z-index: 5; }
.tw-marquee {
  display: inline-block;
  font-family: var(--play); font-weight: 700; letter-spacing: .34em; font-size: .8rem;
  background: var(--vermil); color: var(--cream);
  border: 2px solid var(--gold-bright);
  padding: .5rem 1.4rem; transform: rotate(-1deg);
  box-shadow: 5px 5px 0 rgba(0,0,0,.35);
  text-transform: uppercase;
}
.tw-title {
  font-family: var(--slab);
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  color: var(--cream);
  text-shadow: 3px 3px 0 var(--vermil-deep);
  margin: 1.1rem 0 1.3rem;
}
/* the ticket */
.ticket {
  display: grid; grid-template-columns: 108px 1fr;
  background: var(--gold-bright);
  border: 3px solid var(--ink);
  box-shadow: 10px 12px 0 rgba(0,0,0,.4);
  text-align: left;
  transform: rotate(.5deg);
}
.ticket-stub {
  background: var(--vermil); color: var(--cream);
  display: grid; place-content: center; gap: .6rem; text-align: center;
  font-family: var(--slab); font-size: 1.15rem; line-height: 1.1;
  border-right: 3px dashed var(--ink);
  padding: 1rem .4rem;
  position: relative;
}
.stub-no { font-family: var(--play); font-weight: 500; font-size: .7rem; letter-spacing: .2em; color: var(--gold-bright); }
.ticket-main { padding: 1.2rem 1.4rem 1.4rem; position: relative; }
.tw-label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .6rem; }
.tw-row { display: flex; align-items: center; gap: .8rem; }
#finderInput {
  flex: 1;
  font-family: var(--body); font-size: 1.05rem;
  padding: .85rem 1rem;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  border-radius: 0;
  min-height: 52px;
}
#finderInput::placeholder { color: rgba(36,29,20,.5); font-style: italic; }
#finderInput:focus { outline: 3px solid var(--vermil); outline-offset: 2px; }
.tw-key {
  font-family: var(--play); font-weight: 500; text-transform: uppercase; letter-spacing: .1em;
  font-size: .7rem; color: var(--ink); opacity: .75; white-space: nowrap;
}
.tw-key b { border: 1.5px solid var(--ink); padding: .1rem .4rem; background: var(--cream); }
.finder-results {
  position: absolute; left: 1.4rem; right: 1.4rem; top: calc(100% - .6rem);
  background: var(--cream); border: 2px solid var(--ink);
  box-shadow: 8px 10px 0 rgba(0,0,0,.35);
  max-height: 380px; overflow-y: auto;
  z-index: 50;
  text-align: left;
}
.fr-item {
  display: grid; grid-template-columns: 1fr auto; gap: .1rem .8rem;
  padding: .8rem 1rem; text-decoration: none; color: var(--ink);
  border-bottom: 1px dashed rgba(36,29,20,.4);
}
.fr-item:hover, .fr-item.active { background: var(--navy); color: var(--cream); }
.fr-item:hover .fr-c, .fr-item.active .fr-c { color: var(--gold-bright); border-color: var(--gold-bright); }
.fr-t { font-weight: 700; }
.fr-c {
  font-family: var(--play); font-weight: 600; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--vermil); color: var(--vermil); padding: .15rem .5rem; align-self: start;
}
.fr-item:hover .fr-c, .fr-item.active .fr-c { color: var(--gold-bright); border-color: var(--gold-bright); }
.fr-d { grid-column: 1 / -1; font-size: .85rem; opacity: .85; }
.fr-empty { padding: 1.2rem; }
.fr-empty p { margin: .4rem 0 .8rem; font-size: .9rem; }
.finder-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: 1.3rem; }
.chip {
  font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem;
  background: var(--cream); color: var(--navy);
  border: 2px solid var(--ink);
  padding: .5rem .9rem; min-height: 40px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.35);
  transition: transform .12s, box-shadow .12s;
}
.chip:hover { transform: translate(-1px,-2px) rotate(-1deg); box-shadow: 5px 6px 0 rgba(0,0,0,.35); background: var(--gold-bright); }
.chip:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(0,0,0,.35); }
.fr-empty .chip { margin: .2rem .25rem 0 0; }

/* ── TICKER ──────────────────────────────────────────────────────── */
.ticker {
  background: var(--vermil);
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  transform: rotate(-1.1deg);
  overflow: hidden;
  margin-top: 1rem;
  position: relative;
  height: 2.6rem;
}
.ticker-track {
  position: absolute; left: 0; top: 50%;
  display: inline-flex; white-space: nowrap;
  animation: tick 40s linear infinite;
  will-change: transform;
  transform: translateY(-50%);
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { from { transform: translate(0, -50%); } to { transform: translate(-50%, -50%); } }
.m-set { display: inline-flex; align-items: center; gap: 2.6rem; margin-right: 2.6rem; }
.m-set svg { width: 14px; height: 14px; fill: var(--gold-bright); flex: none; }
.m-set span {
  font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .2em;
  font-size: .85rem; color: var(--cream);
}

/* ── ACTS — shared section chrome ────────────────────────────────── */
.act { padding: 4.5rem 0 5.5rem; position: relative; overflow: clip; overflow-clip-margin: 32px; }
.act-navy { background: var(--navy); color: var(--cream); }
.act-vermil {
  background:
    repeating-linear-gradient(90deg, var(--vermil) 0 46px, #ad3520 46px 92px);
  color: var(--cream);
}
.act-cream { background: var(--cream); color: var(--ink); }

.playbill { text-align: center; max-width: 780px; margin: 0 auto 3rem; padding: 0 1.25rem; }
.act-plaque {
  display: inline-grid; place-items: center;
  width: 108px; height: 108px;
  background: var(--cream); color: var(--navy);
  border: 3px solid var(--ink);
  outline: 3px solid var(--cream); outline-offset: 5px;
  border-radius: 50%;
  box-shadow: 7px 8px 0 rgba(0,0,0,.35);
  transform: rotate(-4deg);
  margin-bottom: 1.2rem;
}
.act-plaque i { font-family: var(--play); font-weight: 600; font-style: normal; letter-spacing: .3em; font-size: .66rem; text-indent: .3em; }
.act-plaque b { font-family: var(--wood); font-weight: 400; font-size: 2.5rem; line-height: .9; color: var(--vermil); }
.act-plaque.gold { background: var(--gold-bright); }
.act-plaque.gold b { color: var(--vermil-deep); }
.pb-rule { display: flex; align-items: center; gap: 1rem; color: var(--gold-bright); margin-bottom: 1rem; }
.pb-rule span { flex: 1; border-top: 2px solid currentColor; opacity: .8; }
.act-navy .pb-rule, .act-vermil .pb-rule { color: var(--gold-bright); }
.act-cream .pb-rule { color: var(--vermil); }
.playbill h2 {
  font-family: var(--slab);
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: .005em;
}
.act-navy .playbill h2 { color: var(--cream); text-shadow: 4px 4px 0 var(--vermil-deep); }
.act-vermil .playbill h2 { color: var(--gold-bright); text-shadow: 4px 4px 0 rgba(0,0,0,.35); }
.act-cream .playbill h2 { color: var(--navy); text-shadow: 4px 4px 0 var(--gold-bright); }
.pb-sub {
  font-family: var(--play); font-weight: 600; text-transform: uppercase;
  letter-spacing: .26em; font-size: clamp(.68rem, 1.7vw, .9rem);
  margin-top: .9rem;
  color: var(--gold-bright);
}
.act-cream .pb-sub { color: var(--vermil); }
.pb-copy { margin: 1rem auto 0; max-width: 58ch; font-size: 1rem; }
.act-navy .pb-copy, .act-vermil .pb-copy { color: rgba(242,231,206,.92); }

/* ── BUNTING DIVIDER ─────────────────────────────────────────────── */
.bunting {
  height: 48px;
  background-image: var(--pennant);
  background-repeat: repeat-x;
  background-color: var(--gold);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.bunting.flip { transform: scaleX(-1); }

/* ── PASTE-UP MOTION ─────────────────────────────────────────────── */
.paste { opacity: 0; }
.paste.in {
  opacity: 1;
  animation: pasteUp .75s var(--press) backwards;
}
@keyframes pasteUp {
  0% { opacity: 0; transform: translateY(54px) rotate(var(--tilt, 0deg)) scale(1.045); }
  60% { opacity: 1; }
  80% { transform: translateY(-5px) rotate(var(--tilt, 0deg)) scale(.998); }
  100% { opacity: 1; transform: translateY(0) rotate(var(--tilt, 0deg)) scale(1); }
}
/* keep decorative base tilts after animation */
.hero-poster.paste.in { animation-name: pasteUpHero; }
@keyframes pasteUpHero {
  0% { opacity: 0; transform: translateY(60px) rotate(-3deg) scale(1.05); }
  60% { opacity: 1; }
  80% { transform: translateY(-6px) rotate(-.6deg) scale(.998); }
  100% { opacity: 1; transform: translateY(0) rotate(-.8deg) scale(1); }
}

/* ── ACT I — LIFE EVENT POSTERS ──────────────────────────────────── */
.acts-grid { display: grid; gap: 3.4rem; }
.scene:nth-child(odd) { --tilt: .7deg; }
.scene:nth-child(even) { --tilt: -.7deg; }
.guide-card:nth-child(3n+1) { --tilt: -.9deg; }
.guide-card:nth-child(3n+2) { --tilt: .8deg; }
.guide-card:nth-child(3n) { --tilt: -.4deg; }
.scene {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 0;
  min-width: 0;
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px var(--ink), 12px 14px 0 rgba(0,0,0,.35);
  transform: rotate(var(--tilt));
}
.scene:nth-child(even) { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.scene-photo, .scene-body { min-width: 0; }
.scene:nth-child(even) .scene-photo { order: 2; }
.scene-photo { position: relative; min-height: 100%; }
.scene-photo img { height: 100%; object-fit: cover; position: absolute; inset: 0; }
.scene-photo .plate-no {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  font-family: var(--play); font-weight: 600; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  background: var(--ink); color: var(--gold-bright); padding: .3rem .7rem;
}
.scene-no {
  position: absolute; top: -26px; left: -18px; z-index: 3;
  width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: var(--vermil); color: var(--cream);
  border: 3px solid var(--cream);
  box-shadow: 4px 5px 0 rgba(0,0,0,.4);
  transform: rotate(-8deg);
}
.scene-no i { font-family: var(--play); font-weight: 600; font-style: normal; font-size: .56rem; letter-spacing: .24em; text-indent: .24em; }
.scene-no b { font-family: var(--wood); font-weight: 400; font-size: 1.7rem; line-height: 1; }
.scene-body { padding: 1.8rem 1.9rem 2rem; }
.scene-era {
  font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .24em;
  font-size: .68rem; color: var(--vermil);
}
.scene-title { font-family: var(--slab); font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--navy); margin: .35rem 0 .2rem; line-height: 1.05; }
.scene-kicker { font-family: var(--wood); color: var(--vermil); font-size: 1.05rem; margin-bottom: .6rem; }
.scene-copy { font-size: .92rem; margin-bottom: 1.1rem; }
.scene-svcs { display: grid; gap: .5rem; }
/* service ticket stub */
.svc {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .15rem .9rem;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-left: 0;
  padding: .6rem .9rem .6rem 1.1rem;
  text-decoration: none; color: var(--ink);
  position: relative;
  min-height: 48px;
  transition: transform .12s, box-shadow .12s, background .12s;
}
.svc::before {
  content: "";
  position: absolute; left: 0; top: -2px; bottom: -2px; width: 10px;
  background:
    radial-gradient(circle 4px at 5px 8px, var(--navy) 98%, transparent) 0 0 / 10px 16px repeat-y,
    var(--gold-bright);
  border: 2px solid var(--ink); border-right: 1px dashed var(--ink);
}
.svc strong { font-family: var(--play); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .86rem; color: var(--navy); grid-column: 1; }
.svc span.svc-d { font-size: .8rem; opacity: .85; grid-column: 1; }
.svc-go {
  grid-row: 1 / 3; grid-column: 2; align-self: center;
  font-family: var(--play); font-weight: 700; font-size: .64rem; letter-spacing: .16em;
  color: var(--vermil); white-space: nowrap;
}
.svc:hover { background: var(--gold-bright); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 rgba(0,0,0,.3); }
.svc:hover .svc-go { color: var(--navy); }
.svc:active { transform: translate(1px,1px); box-shadow: none; }

/* ── ACT II — MIDWAY BOOTH / CHECKER ─────────────────────────────── */
.booth { max-width: 860px; margin: 0 auto; padding: clamp(1.4rem, 4vw, 2.6rem); transform: rotate(.6deg); }
.booth-top {
  text-align: center;
  font-family: var(--play); font-weight: 700; letter-spacing: .26em; font-size: .74rem;
  color: var(--vermil); text-transform: uppercase;
  border-bottom: 2px solid var(--ink); padding-bottom: .9rem; margin-bottom: 1.2rem;
}
.checker-progress { display: flex; gap: .45rem; justify-content: center; margin-bottom: 1.4rem; }
.checker-progress i {
  width: 34px; height: 10px;
  background: transparent; border: 2px solid var(--ink);
}
.checker-progress i.done { background: var(--vermil); }
.ck-title { font-family: var(--slab); font-size: clamp(1.35rem, 3.4vw, 2rem); color: var(--navy); text-align: center; }
.ck-hint { text-align: center; font-size: .92rem; margin: .5rem auto 1.4rem; max-width: 46ch; }
.ck-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .7rem; max-width: 720px; margin: 0 auto; }
.ck-opt {
  text-align: left;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  padding: .85rem 1rem;
  min-height: 56px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.25);
  transition: transform .1s, box-shadow .1s, background .1s;
  display: grid; gap: .15rem;
}
.ck-o-label { font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .92rem; color: var(--navy); }
.ck-o-sub { font-size: .78rem; opacity: .8; }
.ck-opt:hover { transform: translate(-1px,-2px); box-shadow: 6px 7px 0 rgba(0,0,0,.28); }
.ck-opt:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(0,0,0,.25); }
.ck-opt.selected { background: var(--navy); }
.ck-opt.selected .ck-o-label { color: var(--gold-bright); }
.ck-opt.selected .ck-o-sub { color: var(--cream); opacity: .85; }
.ck-nav { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }
.ck-count { font-family: var(--play); font-weight: 500; text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; opacity: .7; }
.btn {
  font-family: var(--play); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem;
  padding: .8rem 1.6rem; min-height: 48px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0,0,0,.3);
  transition: transform .1s, box-shadow .1s;
}
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(0,0,0,.3); }
.btn-primary { background: var(--vermil); color: var(--cream); }
.btn-primary:hover { background: var(--vermil-deep); }
.btn-ghost { background: var(--cream); color: var(--navy); }
.btn-ghost:hover { background: var(--gold-bright); }
.ck-results-head h3 { font-family: var(--slab); font-size: clamp(1.4rem, 3.6vw, 2.1rem); color: var(--navy); text-align: center; }
.ck-results-note { text-align: center; font-size: .9rem; max-width: 56ch; margin: .6rem auto 1.4rem; }
.ck-results-note a { color: var(--vermil); font-weight: 600; }
.ck-result-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .8rem; }
.ck-result {
  display: grid; gap: .3rem; align-content: start;
  background: var(--gold-bright);
  border: 2px solid var(--ink);
  padding: .9rem 1rem 1rem;
  text-decoration: none; color: var(--ink);
  box-shadow: 5px 5px 0 rgba(0,0,0,.25);
  transition: transform .12s, box-shadow .12s;
  animation: prizePop .5s var(--press) backwards;
}
@keyframes prizePop {
  0% { opacity: 0; transform: translateY(24px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.ck-result:hover { transform: translate(-2px,-3px) rotate(-.6deg); box-shadow: 8px 9px 0 rgba(0,0,0,.3); }
.ck-agency { font-family: var(--play); font-weight: 600; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--vermil-deep); }
.ck-visit { justify-self: end; font-family: var(--play); font-weight: 700; font-size: .62rem; letter-spacing: .16em; color: var(--navy); margin-top: -1rem; }
.ck-result strong { font-family: var(--slab); font-weight: 400; font-size: 1.02rem; color: var(--navy); line-height: 1.15; }
.ck-result p { font-size: .8rem; }
.ck-why { font-size: .74rem; font-style: italic; border-top: 1px dashed var(--ink); padding-top: .4rem; }
.ck-none { text-align: center; margin-top: 1rem; }
.ck-none a { color: var(--vermil); font-weight: 600; }
.booth-note {
  text-align: center; margin-top: 1.6rem;
  font-family: var(--play); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem;
  color: rgba(242,231,206,.85);
}

/* ── ACT III — WALL OF BUREAUS ───────────────────────────────────── */
.bureaus-tools {
  background: var(--cream-2);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 5px var(--cream-2), 0 0 0 7px var(--ink), 10px 12px 0 rgba(0,0,0,.2);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.4rem;
}
.agency-searchbox { display: grid; gap: .45rem; max-width: 460px; }
.agency-searchbox label { font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--vermil); }
#agencySearch {
  font-size: 1rem; padding: .75rem 1rem; min-height: 50px;
  border: 2px solid var(--ink); background: var(--cream); color: var(--ink); border-radius: 0;
}
.agency-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.af-chip {
  font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem;
  background: var(--cream); color: var(--navy);
  border: 2px solid var(--ink); padding: .5rem .85rem; min-height: 40px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.22);
}
.af-chip:hover { background: var(--gold-bright); }
.af-chip.on { background: var(--navy); color: var(--gold-bright); }
.agency-count { font-family: var(--play); font-weight: 500; text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; margin-top: 1rem; opacity: .75; }
.agency-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.1rem; }
.agency-card {
  display: grid; gap: .45rem; align-content: start;
  background: var(--cream);
  border: 2px solid var(--ink);
  outline: 1px solid var(--ink); outline-offset: 3px;
  padding: 1rem 1.1rem 1.1rem;
  text-decoration: none; color: var(--ink);
  box-shadow: 5px 6px 0 rgba(0,0,0,.18);
  transition: transform .12s, box-shadow .12s;
}
.agency-card:hover { transform: translate(-2px,-3px) rotate(-.5deg); box-shadow: 8px 10px 0 rgba(0,0,0,.22); background: #fff; }
.agency-top { display: flex; align-items: baseline; gap: .6rem; }
.agency-abbr { font-family: var(--slab); font-size: 1.3rem; color: var(--vermil); }
.agency-name { font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; color: var(--navy); }
.agency-mission { font-size: .82rem; }
.agency-cats { display: flex; flex-wrap: wrap; gap: .3rem; }
.agency-cats i {
  font-style: normal; font-family: var(--play); font-weight: 500; font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--navy); color: var(--navy); padding: .1rem .4rem;
}
.agency-visit { font-family: var(--play); font-weight: 700; font-size: .66rem; letter-spacing: .14em; color: var(--vermil); }

/* ── ACT IV — BALLOT BOOTH ───────────────────────────────────────── */
.ballot-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }
.ballotbox { padding: clamp(1.4rem, 3.5vw, 2.2rem); transform: rotate(-.5deg); }
.ballotbox h3 { font-family: var(--slab); font-size: clamp(1.35rem, 3vw, 1.9rem); color: var(--navy); }
.ballot-copy { font-size: .92rem; margin: .5rem 0 1.2rem; }
.state-label { display: block; font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--vermil); margin-bottom: .45rem; }
#stateSelect {
  width: 100%; font-size: 1rem; padding: .85rem 1rem; min-height: 52px;
  border: 2px solid var(--ink); background: var(--cream); color: var(--ink); border-radius: 0;
  font-family: var(--body);
}
.state-result { margin-top: 1.3rem; }
.sr-empty {
  border: 2px dashed var(--ink); padding: 1.4rem; text-align: center;
  font-family: var(--play); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem;
  color: rgba(36,29,20,.75);
}
.state-result h4 { font-family: var(--slab); font-size: 1.5rem; color: var(--vermil); }
.sr-office { font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; color: var(--navy); margin: .25rem 0 .6rem; }
.sr-note { background: var(--gold-bright); border: 1.5px solid var(--ink); padding: .6rem .8rem; font-size: .85rem; margin-bottom: .7rem; }
.state-result ul { margin: 0 0 1rem 1.1rem; font-size: .88rem; display: grid; gap: .3rem; }
.sr-links { display: grid; gap: .5rem; }
.sr-links a {
  font-family: var(--play); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem;
  background: var(--vermil); color: var(--cream); text-decoration: none;
  border: 2px solid var(--ink); padding: .8rem 1rem; min-height: 48px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.28);
  display: flex; align-items: center;
}
.sr-links a:hover { background: var(--vermil-deep); }
.sr-links a.alt { background: var(--cream); color: var(--navy); }
.sr-links a.alt:hover { background: var(--gold-bright); }
.roster { background: var(--navy-deep); border: 3px solid var(--gold); box-shadow: 10px 12px 0 rgba(0,0,0,.35); padding: 1.8rem 1.9rem; }
.roster-title { font-family: var(--slab); font-size: clamp(1.3rem, 2.8vw, 1.8rem); color: var(--gold-bright); }
.roster-sub { font-family: var(--play); font-weight: 600; letter-spacing: .22em; font-size: .68rem; text-transform: uppercase; color: var(--cream); opacity: .8; margin: .4rem 0 1.2rem; }
.off-row {
  display: grid; grid-template-columns: 44px 1fr auto; gap: .9rem; align-items: center;
  padding: .85rem 0; min-height: 52px;
  border-top: 1px solid rgba(201,159,63,.4);
  text-decoration: none; color: var(--cream);
}
.off-row strong { font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .86rem; color: var(--gold-bright); display: block; }
.off-row span span { font-size: .8rem; opacity: .85; display: block; margin-top: .15rem; }
.off-ico {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 2px solid var(--gold); border-radius: 50%; color: var(--gold-bright);
}
.off-ico svg { width: 22px; height: 22px; }
.off-arrow { font-family: var(--slab); color: var(--vermil); font-size: 1.2rem; }
.off-row:hover { background: rgba(201,159,63,.12); }
.off-row:hover .off-arrow { transform: translateX(4px); }
.off-arrow { transition: transform .15s; }

/* ── ACT V — PAMPHLETS ───────────────────────────────────────────── */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.guide-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px var(--ink), 10px 12px 0 rgba(0,0,0,.22);
  transform: rotate(var(--tilt));
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  display: grid; grid-template-rows: auto 1fr;
}
.guide-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px var(--ink), 14px 18px 0 rgba(0,0,0,.28); }
.guide-thumb { display: block; aspect-ratio: 16 / 9; border-bottom: 3px solid var(--ink); }
.guide-thumb img { height: 100%; object-fit: cover; }
.guide-body { padding: 1.2rem 1.3rem 1.4rem; display: grid; gap: .5rem; align-content: start; }
.guide-meta { display: flex; justify-content: space-between; align-items: center; }
.g-tag {
  font-family: var(--play); font-weight: 700; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  background: var(--vermil); color: var(--cream); padding: .25rem .6rem;
}
.g-read { font-family: var(--play); font-weight: 500; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.guide-body h3 { font-family: var(--slab); font-weight: 400; font-size: 1.25rem; line-height: 1.15; color: var(--navy); }
.guide-lede { font-size: .86rem; }
.guide-open {
  justify-self: start; margin-top: .4rem;
  font-family: var(--play); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem;
  background: var(--navy); color: var(--gold-bright);
  border: 2px solid var(--ink); padding: .65rem 1.1rem; min-height: 44px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.25);
}
.guide-open:hover { background: var(--vermil); color: var(--cream); }

/* ── READER MODAL ────────────────────────────────────────────────── */
.reader { position: fixed; inset: 0; z-index: 2500; display: grid; place-items: center; padding: 1rem; }
.reader[hidden] { display: none; }
.reader-backdrop { position: absolute; inset: 0; background: rgba(22,31,56,.88); }
.reader-poster {
  position: relative; max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto;
  padding: 1.6rem clamp(1.2rem, 4vw, 2.4rem) 2.2rem;
  animation: pasteUp .5s var(--press) backwards;
}
.reader-close {
  position: sticky; top: 0; float: right;
  font-family: var(--play); font-weight: 700; letter-spacing: .14em; font-size: .72rem;
  background: var(--vermil); color: var(--cream); border: 2px solid var(--ink);
  padding: .55rem .9rem; min-height: 44px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.3);
  z-index: 2;
}
.reader-close:hover { background: var(--vermil-deep); }
.reader-plate { border: 2px solid var(--ink); margin-bottom: 1.1rem; }
.reader-plate img { max-height: 260px; object-fit: cover; }
.reader-tag { font-family: var(--play); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: .7rem; color: var(--vermil); }
.reader-poster h3 { font-family: var(--slab); font-weight: 400; font-size: clamp(1.5rem, 4vw, 2.1rem); color: var(--navy); margin: .3rem 0 .5rem; line-height: 1.1; }
.reader-lede { font-style: italic; margin-bottom: 1.3rem; }
.reader-steps { display: grid; gap: 1rem; margin-bottom: 1.4rem; }
.reader-step { display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: start; }
.reader-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: var(--gold-bright);
  font-family: var(--slab); font-size: 1.1rem;
  border: 2px solid var(--ink);
  box-shadow: 2px 3px 0 rgba(0,0,0,.25);
}
.reader-step strong { font-family: var(--play); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .92rem; color: var(--navy); }
.reader-step p { font-size: .9rem; margin-top: .15rem; }
.reader-links { display: flex; flex-wrap: wrap; gap: .5rem; border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.reader-links a {
  font-family: var(--play); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem;
  background: var(--gold-bright); color: var(--ink); text-decoration: none;
  border: 2px solid var(--ink); padding: .6rem 1rem; min-height: 44px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.25);
  display: inline-flex; align-items: center;
}
.reader-links a:hover { background: var(--vermil); color: var(--cream); }

/* ── COLOPHON ────────────────────────────────────────────────────── */
.colophon { background: var(--ink); color: var(--cream); padding: 3rem 0 2.4rem; }
.colo-rule { text-align: center; font-family: var(--play); font-weight: 600; letter-spacing: .3em; font-size: .74rem; color: var(--gold-bright); margin-bottom: 2.2rem; }
.colo-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.colo-word { font-family: var(--slab); font-size: 2rem; color: var(--cream); }
.colo-word em { font-style: normal; color: var(--gold-bright); }
.colo-brand p:last-child { font-size: .85rem; opacity: .85; margin-top: .6rem; max-width: 40ch; }
.colo-brand a { color: var(--gold-bright); }
.colo-col { display: grid; gap: .45rem; align-content: start; }
.colo-col h4 { font-family: var(--play); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; color: var(--gold-bright); margin-bottom: .4rem; }
.colo-col a { text-decoration: none; font-size: .88rem; opacity: .9; padding: .2rem 0; }
.colo-col a:hover { color: var(--gold-bright); opacity: 1; text-decoration: underline; }
.colo-fine { border-top: 1px solid rgba(242,231,206,.3); margin-top: 2.4rem; padding-top: 1.2rem; font-size: .74rem; opacity: .7; text-align: center; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .mainnav { display: none; }
  .burger { display: flex; }
  .scene, .scene:nth-child(even) { grid-template-columns: minmax(0, 1fr); --tilt: .3deg !important; }
  .scene:nth-child(even) .scene-photo { order: 0; }
  .scene-photo { min-height: 240px; }
  .ballot-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .colo-grid { grid-template-columns: 1fr 1fr; }
  .acts-grid { padding-inline: 4px; }
}
@media (max-width: 560px) {
  .brand-sub { display: none; }
  .ticket { grid-template-columns: 1fr; transform: none; }
  .ticket-stub {
    border-right: 0; border-bottom: 3px dashed var(--ink);
    grid-auto-flow: column; align-items: center; justify-content: center; padding: .6rem;
    font-size: .95rem;
  }
  .tw-key { display: none; }
  .finder-results { left: 0; right: 0; }
  .hero-stats { gap: .8rem 1.4rem; }
  .stat-num { font-size: 1.7rem; }
  .scene-no { width: 72px; height: 72px; top: -20px; left: -10px; }
  .scene-no b { font-size: 1.4rem; }
  .colo-grid { grid-template-columns: 1fr; }
  .ck-options { grid-template-columns: 1fr; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .curtain { display: none; }
  .paste { opacity: 1; }
  .paste.in { animation: none; }
  .ticker-track { animation: none; }
  .overture-stars i { animation: none; opacity: .5; }
  .ck-result { animation: none; }
  * { transition-duration: .01ms !important; }
}
