/* US Fest Guide — dusk fairground cinema. Original. Not FestivalNet. Not a template. Not BayouBTC marsh. */

:root {
  --dusk: #0a0c18;
  --dusk-2: #121428;
  --indigo: #1a1e48;
  --indigo-2: #262b62;
  --indigo-3: #3a4080;
  --brass: #c9a24d;
  --brass-2: #e8c76a;
  --brass-3: #f3e0a8;
  --brass-dim: #8a7036;
  --oxblood: #7c2433;
  --oxblood-2: #4e1420;
  --oxblood-hot: #a33344;
  --cream: #f4ead6;
  --cream-2: #e7d9be;
  --paper: #f6efe0;
  --paper-2: #fff8ea;
  --ink: #16131c;
  --ink-soft: #3c3646;
  --mist: #c4bed4;
  --mist-2: #918aa8;
  --hair: rgba(201, 162, 77, 0.42);
  --rule: rgba(243, 234, 216, 0.14);
  --focus: #e8d6a0;
  --max: 76rem;
  --gutter: clamp(1.15rem, 4.2vw, 2.7rem);
  --display: "Fraunces", "Cormorant Garamond", Palatino, serif;
  --program: "Cormorant Garamond", "Iowan Old Style", Palatino, serif;
  --cinema: "Cinzel", "Times New Roman", serif;
  --sans: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--dusk);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--mist);
  background:
    radial-gradient(900px 480px at 88% 8%, rgba(124, 36, 51, 0.18), transparent 55%),
    radial-gradient(700px 420px at 8% 92%, rgba(201, 162, 77, 0.08), transparent 50%),
    var(--dusk);
}

.grain,
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}
body::before { z-index: 59; opacity: 0.05; mix-blend-mode: multiply; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cream);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 80;
}
.skip:focus { left: var(--gutter); top: 0.6rem; }

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.2rem 0 0.6rem;
}
.site-header::after {
  content: "";
  display: block;
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0.85rem auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.wordmark .mark {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--brass-2);
  align-self: center;
  flex: none;
  filter: drop-shadow(0 0 8px rgba(232, 199, 106, 0.45));
}
.wm-us {
  font-family: var(--cinema);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-2);
}
.wm-fest {
  font-family: var(--display);
  font-weight: 560;
  font-style: italic;
  font-optical-sizing: auto;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.wm-guide {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mist);
}

.nav {
  display: flex;
  gap: 1.05rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a {
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.18rem;
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--cream);
  border-bottom-color: var(--brass);
  outline: none;
}
@media (max-width: 900px) { .nav { display: none; } }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 78% 18%, rgba(124, 36, 51, 0.32), transparent 55%),
    radial-gradient(700px 380px at 12% 80%, rgba(201, 162, 77, 0.1), transparent 50%),
    linear-gradient(180deg, #070814 0%, #141436 42%, #2e1630 68%, #4a1c28 84%, #1a1428 100%);
}

.hero-still {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("hero.jpg") center 42% / cover no-repeat;
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.08);
}
.hero-still::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 20, 0.78) 0%, rgba(8, 8, 20, 0.52) 26%, rgba(8, 8, 20, 0.16) 52%, rgba(8, 8, 20, 0.05) 72%, rgba(8, 8, 20, 0.38) 100%),
    linear-gradient(180deg, rgba(6, 6, 16, 0.5) 0%, transparent 26%, transparent 58%, rgba(10, 12, 24, 0.92) 100%),
    radial-gradient(60% 45% at 78% 58%, rgba(232, 199, 106, 0.14), transparent 55%);
}

.hero-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.62;
}
.hero-sky svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sky-fallback { opacity: 0; }
.sky-solid { opacity: 0.42; }

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 12, 24, 0.2) 0%, transparent 18%),
    linear-gradient(180deg, transparent 62%, var(--dusk) 100%);
}

.hero-spark {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 16% 74%, rgba(232, 199, 106, 0.28) 0 2px, transparent 22px),
    radial-gradient(circle at 28% 70%, rgba(243, 234, 216, 0.22) 0 2px, transparent 16px),
    radial-gradient(circle at 41% 76%, rgba(232, 199, 106, 0.2) 0 1px, transparent 18px),
    radial-gradient(circle at 58% 68%, rgba(243, 234, 216, 0.18) 0 2px, transparent 20px),
    radial-gradient(circle at 72% 64%, rgba(232, 199, 106, 0.32) 0 3px, transparent 28px),
    radial-gradient(circle at 84% 58%, rgba(243, 234, 216, 0.24) 0 2px, transparent 24px);
  animation: spark 5.5s ease-in-out infinite;
}
@keyframes spark {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.lamp {
  animation: twinkle 3.6s ease-in-out infinite;
  transform-origin: center;
}
.lamp:nth-child(3n) { animation-duration: 4.4s; animation-delay: 0.4s; }
.lamp:nth-child(4n) { animation-duration: 2.8s; animation-delay: 1.1s; }
.lamp:nth-child(5n) { animation-duration: 5s; animation-delay: 0.2s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.star { animation: star 5.5s ease-in-out infinite; }
.star:nth-child(odd) { animation-duration: 7s; animation-delay: 1s; }
@keyframes star {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.9; }
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 6.6rem 0 11.6rem;
}

.kicker {
  margin: 0 0 1.05rem;
  font-family: var(--cinema);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-2);
  text-shadow: 0 0 18px rgba(232, 199, 106, 0.35);
}

.hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 620;
  font-size: clamp(3.25rem, 8.8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--cream);
  max-width: 11ch;
  text-shadow:
    0 2px 0 rgba(8, 8, 18, 0.45),
    0 22px 50px rgba(8, 8, 18, 0.55);
}
.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--brass-2);
  text-shadow:
    0 0 32px rgba(232, 199, 106, 0.38),
    0 18px 40px rgba(8, 8, 18, 0.5);
}

.stand {
  margin: 0 0 1.15rem;
  font-family: var(--program);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: var(--cream-2);
  letter-spacing: 0.01em;
}

.lede {
  margin: 0 0 1.55rem;
  max-width: 38rem;
  font-size: 1.08rem;
  color: var(--mist);
  text-shadow: 0 8px 24px rgba(8, 8, 18, 0.65);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}
.facts li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(201, 162, 77, 0.38);
  background: rgba(10, 12, 24, 0.48);
  padding: 0.42rem 0.72rem 0.42rem 0.58rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 8px 20px rgba(8, 8, 18, 0.25);
}
.facts li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  background: var(--oxblood-hot);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(124, 36, 51, 0.28), 0 0 10px rgba(163, 51, 68, 0.7);
}

/* —— Search program (paper on dusk) —— */
.search-dock {
  position: relative;
  z-index: 3;
  margin-top: 1.6rem;
  padding-bottom: 0.35rem;
}

.program {
  background-color: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(201, 162, 77, 0.5);
  box-shadow:
    0 40px 80px rgba(4, 4, 14, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 1px 0 rgba(201, 162, 77, 0.35);
  padding: clamp(1.35rem, 3vw, 2.15rem) clamp(1.25rem, 3vw, 2.15rem) clamp(1.2rem, 3vw, 1.9rem);
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(124, 36, 51, 0.07), transparent 14%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(22, 20, 28, 0.035) 31px 32px),
    radial-gradient(ellipse at 0% 0%, rgba(201, 162, 77, 0.08), transparent 42%);
}
.program::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 0.55rem;
  height: 4px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--oxblood) 0 14px,
      transparent 14px 20px,
      var(--brass) 20px 34px,
      transparent 34px 40px,
      var(--indigo) 40px 48px,
      transparent 48px 54px
    );
  opacity: 0.9;
}
.program::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 16px;
  background:
    radial-gradient(circle at 0 9px, var(--dusk) 5px, transparent 5.6px);
  background-size: 100% 18px;
  pointer-events: none;
}

.admit {
  position: absolute;
  right: 1.5rem;
  top: 1.25rem;
  width: 3.7rem;
  height: 3.7rem;
  border: 2px solid var(--oxblood);
  border-radius: 50%;
  color: var(--oxblood);
  font-family: var(--cinema);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.15;
  transform: rotate(11deg);
  box-shadow: 0 0 0 3px rgba(124, 36, 51, 0.08);
  opacity: 0.88;
  pointer-events: none;
}

.program-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin: 0.85rem 3.6rem 1.2rem 0;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(22, 20, 28, 0.12);
}
.program-kicker {
  margin: 0 0 0.2rem;
  font-family: var(--cinema);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.program-head h2 {
  margin: 0;
  font-family: var(--program);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.95;
}
.program-note {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 18rem;
  text-align: right;
  padding-bottom: 0.2rem;
}

.field-label {
  display: block;
  margin: 0 0 0.5rem;
  font-family: var(--cinema);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--oxblood);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin: 0 0 1.1rem;
}

.chip {
  appearance: none;
  border: 1px solid rgba(22, 20, 28, 0.14);
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.58rem;
  cursor: pointer;
  border-radius: 1px;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.chip:hover {
  border-color: var(--brass-dim);
  color: var(--indigo);
  box-shadow: 0 0 0 1px rgba(201, 162, 77, 0.25);
}
.chip:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}
.chip[aria-pressed="true"] {
  background: var(--indigo);
  color: var(--brass-2);
  border-color: var(--brass);
  box-shadow:
    0 0 0 1px var(--brass),
    0 6px 14px rgba(26, 30, 72, 0.28),
    0 0 18px rgba(201, 162, 77, 0.18);
}

.chip-row-months .chip {
  min-width: 3.55rem;
  font-family: var(--cinema);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  padding: 0.48rem 0.5rem;
}

.result-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin: 0.35rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(22, 20, 28, 0.2);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.result-line strong {
  font-family: var(--program);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  padding-right: 0.2rem;
}
.clear-btn {
  appearance: none;
  border: 0;
  background: none;
  font-family: var(--cinema);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  cursor: pointer;
  padding: 0.2rem 0;
}
.clear-btn:hover { color: var(--ink); }
.clear-btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* —— Catalog —— */
.search-dock .catalog { padding: 1rem 0 0.4rem; }
.catalog { padding: 0.15rem 0 2.8rem; }
.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.catalog-kicker { margin-bottom: 0.35rem; }
.catalog-head h2 {
  margin: 0;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 580;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.catalog-rule {
  margin: 0;
  font-size: 0.84rem;
  color: var(--mist-2);
  max-width: 28rem;
}

.empty {
  border: 1px solid var(--rule);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background:
    linear-gradient(180deg, rgba(30, 33, 68, 0.45), rgba(14, 16, 34, 0.2));
  position: relative;
}
.empty::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  top: 0.7rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brass) 0 10px, transparent 10px 16px);
  opacity: 0.5;
}
.empty h3 {
  margin: 0 0 0.5rem;
  font-family: var(--program);
  font-size: 1.9rem;
  color: var(--cream);
}
.empty p { margin: 0.35rem 0; color: var(--mist); max-width: 40rem; }

.cards { display: grid; gap: 1.55rem; }

.event {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(201, 162, 77, 0.48);
  box-shadow:
    0 22px 48px rgba(8, 8, 20, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  overflow: hidden;
}
.event-stub {
  background:
    radial-gradient(circle at 0 10px, var(--dusk) 5px, transparent 5.5px),
    linear-gradient(180deg, #22265a, var(--indigo));
  background-size: 100% 20px, 100% 100%;
  color: var(--brass-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 0.4rem;
  text-align: center;
  border-right: 1px dashed rgba(232, 199, 106, 0.35);
}
.stub-state {
  font-family: var(--cinema);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  writing-mode: horizontal-tb;
}
.stub-year {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cream);
  opacity: 0.8;
}
.event-main { min-width: 0; }

.event-banner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.25rem;
  background:
    linear-gradient(180deg, #2a2f68, var(--indigo));
  color: var(--cream);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.event-banner a {
  color: var(--brass-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 195, 110, 0.4);
}
.event-banner a:hover { color: var(--cream); }

.event-body {
  padding: 1.2rem 1.3rem 1.35rem;
  background-image:
    linear-gradient(180deg, rgba(124, 36, 51, 0.04), transparent 18%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(22, 20, 28, 0.03) 31px 32px);
}

.event-kicker {
  margin: 0 0 0.2rem;
  font-family: var(--cinema);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.event h3 {
  margin: 0 0 0.15rem;
  font-family: var(--program);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
}
.event-when {
  margin: 0 0 1.05rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-family: var(--program);
  font-style: italic;
  font-size: 1.05rem;
}

.blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
@media (max-width: 820px) { .blocks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .event { grid-template-columns: 1fr; }
  .event-stub {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.55rem 1rem;
    background-size: 20px 100%, 100% 100%;
    background-image:
      radial-gradient(circle at 10px 0, var(--dusk) 5px, transparent 5.5px),
      linear-gradient(180deg, #22265a, var(--indigo));
    border-right: 0;
    border-bottom: 1px dashed rgba(232, 199, 106, 0.35);
  }
  .blocks { grid-template-columns: 1fr; }
  .program-head { flex-direction: column; align-items: start; margin-right: 0; padding-top: 1.6rem; }
  .program-note { text-align: left; }
  .admit { top: 0.85rem; right: 0.9rem; }
}

.block {
  background: var(--paper-2);
  border: 1px solid rgba(22, 20, 28, 0.1);
  padding: 0.85rem 0.9rem 1rem;
  min-height: 7.2rem;
  position: relative;
}
.block::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  top: 0;
  height: 2px;
  background: var(--brass);
  opacity: 0.45;
}
.block h4 {
  margin: 0.15rem 0 0.4rem;
  font-family: var(--cinema);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.block p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.block a {
  color: var(--indigo);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
}
.block a:hover { color: var(--oxblood); }
.block.is-coming {
  background:
    repeating-linear-gradient(-45deg, #fffaf0 0 8px, #f3ead8 8px 9px);
}
.lock {
  display: inline-block;
  margin-top: 0.45rem;
  font-family: var(--cinema);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dim);
}

/* —— Coming: photos / reviews —— */
.coming { padding: 0 0 4.5rem; }
.coming h2 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 560;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.coming > .wrap > p.lead {
  margin: 0 0 1.4rem;
  max-width: 38rem;
  color: var(--mist);
}
.shells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 720px) { .shells { grid-template-columns: 1fr; } }
.shell {
  border: 1px dashed rgba(201, 162, 77, 0.4);
  padding: 1.25rem 1.3rem 1.4rem;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(124, 36, 51, 0.16), transparent 50%),
    rgba(26, 30, 72, 0.38);
  position: relative;
}
.shell h3 {
  margin: 0 0 0.35rem;
  font-family: var(--program);
  font-size: 1.6rem;
  color: var(--cream);
}
.shell p { margin: 0 0 0.9rem; color: var(--mist-2); font-size: 0.92rem; }
.fake-ui {
  display: grid;
  gap: 0.45rem;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.fake-bar,
.fake-area {
  background: rgba(243, 234, 216, 0.08);
  border: 1px solid rgba(243, 234, 216, 0.12);
  height: 2.1rem;
}
.fake-area { height: 4.6rem; }
.badge-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--cinema);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-2);
  border: 1px solid var(--hair);
  padding: 0.28rem 0.5rem;
}

/* —— Live ticket forms (photo + contact) —— */
.ticket-form {
  background-color: var(--paper);
  color: var(--ink);
  padding: clamp(1.45rem, 3vw, 2.1rem) clamp(1.2rem, 3vw, 1.9rem) 1.5rem;
  border: 1px solid rgba(201, 162, 77, 0.5);
  box-shadow:
    0 24px 50px rgba(8, 8, 20, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  position: relative;
  max-width: 42rem;
  background-image:
    linear-gradient(180deg, rgba(124, 36, 51, 0.06), transparent 16%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(22, 20, 28, 0.03) 31px 32px);
}
.ticket-form::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.5rem;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--oxblood) 0 12px, transparent 12px 18px, var(--brass) 18px 30px, transparent 30px 36px);
}
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin: 0.35rem 0 0.85rem;
}
@media (max-width: 640px) { .ticket-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; min-width: 0; }
.field-span { grid-column: 1 / -1; }
.ticket-form .field-label { color: var(--oxblood); }
.ticket-form input[type="text"],
.ticket-form input[type="email"],
.ticket-form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(22, 20, 28, 0.2);
  background: var(--paper-2);
  color: var(--ink);
  width: 100%;
}
.ticket-form textarea { resize: vertical; min-height: 6.5rem; }
.ticket-form input[type="file"] {
  font-family: var(--sans);
  font-size: 0.85rem;
  padding: 0.55rem 0.6rem;
  border: 1px dashed rgba(22, 20, 28, 0.22);
  background: var(--paper-2);
  color: var(--ink);
}
.check-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.15rem 0 1rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
}
.check-line input { accent-color: var(--oxblood); width: 1.05rem; height: 1.05rem; }
.ticket-form .go { display: inline-flex; align-items: center; justify-content: center; }
.ticket-form .form-note { color: var(--ink-soft); }

.contact-sec { padding: 0 0 3.4rem; }
.contact-sec h2 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 560;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.contact-sec .lead {
  margin: 0 0 1.4rem;
  max-width: 40rem;
  color: var(--mist);
}
.contact-sec .lead a { color: var(--brass-2); text-decoration: none; }
.contact-sec .lead a:hover { border-bottom: 1px solid var(--brass); }

.thanks-note {
  margin: 0 auto 2.6rem;
  padding: 0.95rem 1.15rem;
  border: 1px dashed rgba(201, 162, 77, 0.45);
  color: var(--cream);
  font-size: 0.95rem;
  background: rgba(26, 30, 72, 0.42);
}


/* —— Newsletter letter —— */
.letter-sec { padding: 0 0 5rem; }
.letter {
  background-color: var(--paper);
  color: var(--ink);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.8rem);
  border: 1px solid rgba(201, 162, 77, 0.5);
  box-shadow:
    0 30px 70px rgba(8, 8, 20, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.1rem;
  background-image:
    linear-gradient(180deg, rgba(124, 36, 51, 0.06), transparent 16%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(22, 20, 28, 0.03) 31px 32px);
}
.letter::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0.6rem;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--oxblood) 0 12px, transparent 12px 18px, var(--brass) 18px 30px, transparent 30px 36px);
}
@media (max-width: 860px) { .letter { grid-template-columns: 1fr; } }

.seal {
  position: absolute;
  top: -1.35rem;
  right: 1.7rem;
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #c45, var(--oxblood-hot) 42%, var(--oxblood) 62%, var(--oxblood-2));
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--program);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 22px rgba(80, 16, 24, 0.45),
    0 0 0 6px rgba(124, 36, 51, 0.18),
    0 0 0 7px rgba(201, 162, 77, 0.35);
  transform: rotate(8deg);
}
.letter-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--cinema);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.letter h2 {
  margin: 0 0 0.8rem;
  font-family: var(--program);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
  line-height: 1.02;
}
.price-line {
  margin: 0 0 0.55rem;
  font-family: var(--program);
  font-size: 1.4rem;
  line-height: 1.35;
}
.under-line {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 1rem;
}
.letter-aside p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.npick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin: 0 0 1rem;
  max-height: 11.5rem;
  overflow: auto;
  padding: 0.25rem;
  border: 1px dashed rgba(22, 20, 28, 0.12);
  background: rgba(255, 248, 234, 0.5);
}
.npick label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(22, 20, 28, 0.14);
  padding: 0.34rem 0.48rem;
  background: var(--paper-2);
  cursor: pointer;
}
.npick label:has(input:checked) {
  background: var(--indigo);
  color: var(--brass-2);
  border-color: var(--brass);
}
.npick input { accent-color: var(--oxblood); }

.mail-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}
.mail-row input[type="email"] {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(22, 20, 28, 0.2);
  background: var(--paper-2);
  color: var(--ink);
}
.mail-row input:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}
.go {
  font-family: var(--cinema);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--indigo);
  color: var(--cream);
  border: 0;
  padding: 0.85rem 1.15rem;
  min-height: 2.85rem;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(201, 162, 77, 0.25) inset;
}
.go:hover { background: var(--oxblood); }
.go:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.letter textarea {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(22, 20, 28, 0.2);
  background: var(--paper-2);
  color: var(--ink);
  resize: vertical;
  min-height: 4.4rem;
  margin: 0 0 0.15rem;
}
.letter textarea:focus-visible,
.ticket-form input:focus-visible,
.ticket-form textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}
.field-label em {
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.form-note {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  min-height: 1.2em;
}
.form-note.is-on { color: var(--oxblood); font-weight: 600; }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 0 0 2.6rem;
  font-size: 0.85rem;
  color: var(--mist-2);
  position: relative;
}
.lights {
  height: 18px;
  margin: 0 0 1.4rem;
  background-image:
    radial-gradient(circle, var(--brass-2) 1.6px, transparent 2.2px);
  background-size: 28px 18px;
  background-position: center 6px;
  background-repeat: repeat-x;
  filter: drop-shadow(0 0 5px rgba(232, 199, 106, 0.65));
  opacity: 0.7;
  animation: twinkle 4s ease-in-out infinite;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer strong { color: var(--cream); font-weight: 650; }
.site-footer a { color: var(--brass-2); text-decoration: none; }
.site-footer a:hover { border-bottom: 1px solid var(--brass); }

/* motion */
.rise { animation: rise 0.9s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.hero-copy { animation: rise 1.05s ease both; }
.search-dock { animation: rise 1.15s ease 0.12s both; }

::selection { background: var(--oxblood); color: var(--cream); }

@media (min-width: 960px) {
  .hero-copy { max-width: 52rem; }
}

/* Local preview crops (?shot=). Harmless on the live page. */
html[data-shot] .contact-sec,
html[data-shot] .thanks-note { display: none; }

html[data-shot="search"] .hero { min-height: 0; }
html[data-shot="search"] .hero-still,
html[data-shot="search"] .hero-sky,
html[data-shot="search"] .hero-veil,
html[data-shot="search"] .hero-spark,
html[data-shot="search"] .hero-copy { display: none; }
html[data-shot="search"] .featured,
html[data-shot="search"] .rail-sec,
html[data-shot="search"] .coming,
html[data-shot="search"] .letter-sec,
html[data-shot="search"] .site-footer { display: none; }
html[data-shot="search"] .search-dock { margin-top: 0; padding: 2.2rem 0 2.2rem; }
html[data-shot="search"] .site-header { position: static; padding-bottom: 0.6rem; }
html[data-shot="search"] .cards .event:nth-child(n+2) { display: none; }
html[data-shot="search"] .catalog { padding-bottom: 2rem; }

html[data-shot="event"] .hero,
html[data-shot="event"] .search-dock,
html[data-shot="event"] .featured,
html[data-shot="event"] .rail-sec,
html[data-shot="event"] .coming,
html[data-shot="event"] .letter-sec,
html[data-shot="event"] .site-footer { display: none; }
html[data-shot="event"] .catalog { padding: 4.2rem 0 3rem; }
html[data-shot="event"] .site-header { position: static; }
html[data-shot="event"] .event:not(#event-mn-state-fair-2026) { display: none; }

html[data-shot="letter"] .hero,
html[data-shot="letter"] .search-dock,
html[data-shot="letter"] .featured,
html[data-shot="letter"] .catalog,
html[data-shot="letter"] .rail-sec,
html[data-shot="letter"] .coming,
html[data-shot="letter"] .site-footer { display: none; }
html[data-shot="letter"] .letter-sec { padding: 4.5rem 0 3rem; }
html[data-shot="letter"] .site-header { position: static; }

html[data-shot="hero"] .search-dock .chips,
html[data-shot="hero"] .featured,
html[data-shot="hero"] .catalog,
html[data-shot="hero"] .rail-sec,
html[data-shot="hero"] .coming,
html[data-shot="hero"] .letter-sec,
html[data-shot="hero"] .site-footer { display: none; }


/* —— Featured this month (ticket on dusk) —— */
.featured {
  position: relative;
  isolation: isolate;
  padding: 0.4rem 0 4.6rem;
}
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--dusk) 0%, rgba(10, 12, 24, 0.58) 42%, var(--dusk) 100%),
    url("media/msf-aerial.jpg") center 40% / cover no-repeat;
  opacity: 0.62;
  filter: saturate(1.08) contrast(1.06);
}
.featured > .wrap { position: relative; z-index: 1; }

.featured-card {
  background-color: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(201, 162, 77, 0.5);
  box-shadow:
    0 40px 80px rgba(4, 4, 14, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 1px 0 rgba(201, 162, 77, 0.35);
  padding: clamp(1.45rem, 3vw, 2.2rem) clamp(1.25rem, 3vw, 2.15rem) clamp(1.3rem, 3vw, 1.95rem);
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(124, 36, 51, 0.07), transparent 12%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(22, 20, 28, 0.03) 31px 32px),
    radial-gradient(ellipse at 0% 0%, rgba(201, 162, 77, 0.08), transparent 42%);
}
.featured-card::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 0.55rem;
  height: 4px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--oxblood) 0 14px,
      transparent 14px 20px,
      var(--brass) 20px 34px,
      transparent 34px 40px,
      var(--indigo) 40px 48px,
      transparent 48px 54px
    );
  opacity: 0.9;
}
.featured-card::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 16px;
  background:
    radial-gradient(circle at 0 9px, var(--dusk) 5px, transparent 5.6px);
  background-size: 100% 18px;
  pointer-events: none;
}

.featured-stamp {
  position: absolute;
  right: 1.45rem;
  top: 1.15rem;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #c45, var(--oxblood-hot) 42%, var(--oxblood) 62%, var(--oxblood-2));
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--cinema);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.15;
  box-shadow:
    0 10px 22px rgba(80, 16, 24, 0.45),
    0 0 0 6px rgba(124, 36, 51, 0.18),
    0 0 0 7px rgba(201, 162, 77, 0.35);
  transform: rotate(8deg);
  z-index: 2;
}

.featured-head {
  margin: 0.85rem 5.2rem 1.15rem 0;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(22, 20, 28, 0.12);
}
.featured-kicker {
  margin: 0 0 0.28rem;
  font-family: var(--cinema);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.featured-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--program);
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.95;
}
.featured-when {
  margin: 0;
  font-family: var(--program);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.featured-photos {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0.55rem;
  margin: 0 0 0.45rem;
}
.featured-photos figure { margin: 0; }
.featured-photos img {
  display: block;
  width: 100%;
  height: 11.2rem;
  object-fit: cover;
  border: 1px solid rgba(22, 20, 28, 0.12);
  filter: saturate(1.06) contrast(1.04);
}
.featured-photos figure:first-child img { height: 11.2rem; }
.featured-credit {
  margin: 0 0 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.featured-credit a {
  color: var(--indigo);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
}
.featured-credit a:hover { color: var(--oxblood); }

.featured-copy {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
}
.featured-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58rem;
}

.featured-bill,
.featured-gate {
  background: var(--paper-2);
  border: 1px solid rgba(22, 20, 28, 0.1);
  padding: 0.95rem 1rem 1.05rem;
  margin: 0 0 0.85rem;
  position: relative;
}
.featured-bill::before,
.featured-gate::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  top: 0;
  height: 2px;
  background: var(--brass);
  opacity: 0.45;
}
.featured-bill h3,
.featured-gate h3 {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--cinema);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.featured-bill-note {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.featured-bill ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(22, 20, 28, 0.1);
}
.featured-bill li {
  display: grid;
  grid-template-columns: 5.6rem 1fr auto;
  gap: 0.55rem;
  align-items: baseline;
  padding: 0.42rem 0;
  border-bottom: 1px dashed rgba(22, 20, 28, 0.14);
  font-size: 0.95rem;
  color: var(--ink);
}
.featured-bill time {
  font-family: var(--cinema);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.featured-bill li span { min-width: 0; }
.free-tag {
  font-family: var(--cinema);
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1px solid var(--oxblood);
  padding: 0.12rem 0.38rem;
  align-self: center;
}
.featured-bill-src,
.featured-gate p {
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.featured-gate p { margin: 0; }
.featured-gate-link { margin-top: 0.45rem !important; }
.featured-bill-src a,
.featured-gate a,
.featured-meta a {
  color: var(--indigo);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
}
.featured-bill-src a:hover,
.featured-gate a:hover,
.featured-meta a:hover { color: var(--oxblood); }

.featured-cta-wrap { margin: 1.2rem 0 0.7rem; }
.featured-go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.55rem;
  padding: 0.85rem 1.2rem;
  font-family: var(--cinema);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--indigo);
  color: var(--cream);
  border: 0;
  box-shadow:
    0 0 0 1px rgba(201, 162, 77, 0.4) inset,
    0 14px 28px rgba(8, 8, 20, 0.22);
}
.featured-go:hover { background: var(--oxblood); color: var(--cream); }
.featured-go:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.featured-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

@media (max-width: 820px) {
  .featured-photos { grid-template-columns: 1fr 1fr; }
  .featured-photos figure:first-child { grid-column: 1 / -1; }
  .featured-photos img,
  .featured-photos figure:first-child img { height: 10.4rem; }
}
@media (max-width: 640px) {
  .featured-head { margin-right: 0; padding-top: 1.7rem; }
  .featured-stamp { top: 0.85rem; right: 0.85rem; width: 3.6rem; height: 3.6rem; font-size: 0.55rem; }
  .featured-photos { grid-template-columns: 1fr; }
  .featured-photos figure:first-child { grid-column: auto; }
  .featured-bill li { grid-template-columns: 4.8rem 1fr; }
  .free-tag { grid-column: 2; justify-self: start; }
}

html[data-shot="featured"] .hero,
html[data-shot="featured"] .search-dock,
html[data-shot="featured"] .catalog,
html[data-shot="featured"] .rail-sec,
html[data-shot="featured"] .coming,
html[data-shot="featured"] .letter-sec,
html[data-shot="featured"] .site-footer { display: none; }
html[data-shot="featured"] .featured { padding: 4.2rem 0 3rem; }
html[data-shot="featured"] .site-header { position: static; }

/* —— Empty attendee rail (live-safe: no fake visitors) —— */
.rail-sec { padding: 4.6rem 0 3.4rem; }
.rail-copy { margin-bottom: 1.15rem; }
.rail-kicker { margin-bottom: 0.4rem; }
.rail-sec h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 560;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.rail-msg {
  margin: 0;
  max-width: 36rem;
  font-family: var(--program);
  font-style: italic;
  font-size: 1.32rem;
  color: var(--brass-2);
}
.rail {
  overflow: hidden;
  padding: 1.2rem 0 0.45rem;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent);
  border-block: 1px solid var(--rule);
  background:
    radial-gradient(70% 80% at 50% 120%, rgba(124, 36, 51, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(30, 33, 68, 0.28), transparent);
}
.rail-track {
  display: flex;
  gap: 1.05rem;
  width: max-content;
  padding: 0.4rem var(--gutter) 1.1rem;
  animation: rail-drift 96s linear infinite;
}
.rail:hover .rail-track,
.rail:focus-within .rail-track { animation-play-state: paused; }
@keyframes rail-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.slide { flex: none; width: 15.6rem; margin: 0; }
.slide.s1 { width: 13.4rem; }
.slide.s2 { width: 18.2rem; }
.slide.s3 { width: 14.2rem; }
.slide.s4 { width: 16.8rem; }
.slide-mat {
  background: var(--paper);
  padding: 0.5rem 0.5rem 0.35rem;
  border: 1px solid rgba(201, 162, 77, 0.48);
  box-shadow: 0 14px 30px rgba(8, 8, 20, 0.36);
}
.slide-void {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 234, 216, 0.04), transparent 40%),
    radial-gradient(120% 80% at 50% 120%, rgba(124, 36, 51, 0.32), transparent 50%),
    linear-gradient(180deg, #1a1c38, #0e1022);
  border: 1px dashed rgba(201, 162, 77, 0.28);
}
.slide.s1 .slide-void {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(227, 195, 110, 0.14), transparent 50%),
    linear-gradient(180deg, #16182e, #12101c);
}
.slide.s2 .slide-void {
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(60% 40% at 80% 20%, rgba(227, 195, 110, 0.18), transparent 45%),
    linear-gradient(165deg, #1e2144, #0e1022);
}
.slide.s3 .slide-void { background: linear-gradient(180deg, #241828, #0e1022); }
.slide.s4 .slide-void {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(50% 40% at 30% 80%, rgba(124, 36, 51, 0.38), transparent 50%),
    linear-gradient(180deg, #1c1e3a, #14122a);
}
.slide-void::before,
.slide-void::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--brass);
  opacity: 0.75;
}
.slide-void::before { top: 0.4rem; left: 0.4rem; border-right: 0; border-bottom: 0; }
.slide-void::after { bottom: 0.4rem; right: 0.4rem; border-left: 0; border-top: 0; }
.slide-mark {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2.4rem;
  height: 1.8rem;
  border: 1.5px solid rgba(201, 162, 77, 0.5);
  border-radius: 2px;
}
.slide-mark::after {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 0.55rem;
  width: 0.7rem;
  height: 0.35rem;
  border: 1.5px solid rgba(201, 162, 77, 0.5);
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}
.slide figcaption {
  margin: 0.5rem 0 0;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist-2);
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .rail-track { animation: none; }
  .hero-spark { animation: none; }
}
