/* ===========================================================
   SOOT vs CINDER — shared styles
   Space Case Camp · Burning Man 2026
   =========================================================== */

:root {
  --bg: #0a0908;
  --bg-2: #141110;
  --ink: #ece4d3;
  --ink-dim: #a89d87;
  --muted: #6b6155;
  --amber: #d4a155;
  --amber-bright: #e8b867;
  --amber-dim: #8a6a38;
  --water: #4da6d9;
  --water-bright: #7cc7f0;
  --ember: #e85a2c;
  --border: rgba(212, 161, 85, 0.35);
  --border-strong: rgba(212, 161, 85, 0.7);

  --glass: rgba(10, 12, 14, 0.42);
  --glass-2: rgba(10, 12, 14, 0.58);
  --glass-border: rgba(124, 199, 240, 0.22);
  --glass-highlight: rgba(232, 184, 103, 0.18);
}

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

html, body { min-height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 40% 20%, rgba(77,166,217,0.18) 0%, rgba(10,9,8,0) 55%),
    radial-gradient(ellipse at 70% 60%, rgba(232,90,44,0.12) 0%, rgba(10,9,8,0) 50%),
    #0a0908 url('./INSIDE.jpg') center center / cover no-repeat;
  filter: saturate(0.95) contrast(1.05);
}

/* Darkening / vignette overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    /* readability ramp: transparent → full black */
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 60%, rgba(0,0,0,1) 100%),
    /* subtle vignette */
    radial-gradient(ellipse at center, rgba(10,9,8,0.05) 0%, rgba(10,9,8,0.55) 70%, rgba(10,9,8,0.85) 100%);
  pointer-events: none;
}

/* Subtle sigil bloom */
.wrap::before {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(124,199,240,0.16) 0%, rgba(124,199,240,0.02) 28%, rgba(0,0,0,0) 55%);
  mix-blend-mode: screen;
}

/* ---------- Blue cinder particles ---------- */
.cinders { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.cinders span {
  position: absolute;
  bottom: -20px;
  width: 3px;
  height: 3px;
  background: var(--water-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--water), 0 0 16px rgba(77,166,217,0.6);
  opacity: 0;
  animation: rise linear infinite;
}
.cinders span:nth-child(1)  { left: 4%;  animation-duration: 14s; animation-delay: 0s;  }
.cinders span:nth-child(2)  { left: 12%; animation-duration: 18s; animation-delay: 2s;  }
.cinders span:nth-child(3)  { left: 19%; animation-duration: 11s; animation-delay: 5s;  }
.cinders span:nth-child(4)  { left: 27%; animation-duration: 16s; animation-delay: 1s;  }
.cinders span:nth-child(5)  { left: 34%; animation-duration: 13s; animation-delay: 7s;  }
.cinders span:nth-child(6)  { left: 42%; animation-duration: 19s; animation-delay: 3s;  }
.cinders span:nth-child(7)  { left: 49%; animation-duration: 15s; animation-delay: 9s;  }
.cinders span:nth-child(8)  { left: 57%; animation-duration: 12s; animation-delay: 4s;  }
.cinders span:nth-child(9)  { left: 64%; animation-duration: 17s; animation-delay: 6s;  }
.cinders span:nth-child(10) { left: 72%; animation-duration: 14s; animation-delay: 0.5s;}
.cinders span:nth-child(11) { left: 79%; animation-duration: 20s; animation-delay: 8s;  }
.cinders span:nth-child(12) { left: 86%; animation-duration: 13s; animation-delay: 2.5s;}
.cinders span:nth-child(13) { left: 93%; animation-duration: 16s; animation-delay: 10s; }

@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-50vh) translateX(15px) scale(1.2); }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(-20px) scale(0.6); opacity: 0; }
}

/* ---------- Layout container ---------- */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
.site-header {
  text-align: center;
  padding: 1.0rem 2rem 0.1rem;
  position: relative;
  z-index: 2;
}

.sigil-seal {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.15rem;
  border-radius: 999px;
  position: relative;
  display: grid;
  place-items: center;
}

.sigil-seal::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(79,195,247,0.25) 0%, rgba(79,195,247,0.08) 35%, rgba(0,0,0,0) 70%);
  filter: blur(0.2px);
  opacity: 0.9;
}

.sigil-seal::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(79,195,247,0.35);
  box-shadow:
    inset 0 0 0 1px rgba(232,184,103,0.06),
    0 0 18px rgba(79,195,247,0.14);
}

/* Sigil → nav bridge (two thin pinstripes) */
.site-header::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% - 2px);
  transform: translateX(-50%);
  width: 14px;
  height: 22px;
  pointer-events: none;
  opacity: 0.4;
  background:
    linear-gradient(#4fc3f7, #4fc3f7) left 0 top 0 / 1px 100% no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) left 12px top 0 / 1px 100% no-repeat;
}

.water-mark {
  width: 58px;
  height: 58px;
  margin: 0;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08) drop-shadow(0 0 14px rgba(79,195,247,0.45));
  opacity: 0.96;
}

.brand {
  font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.brand-sub {
  font-family: 'IBM Plex Mono', 'Menlo', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ---------- Nav ---------- */
.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.25rem 0 1.1rem;
  font-family: 'IBM Plex Mono', 'Menlo', monospace;
  position: relative;
  z-index: 2;
}

.site-nav a {
  color: var(--amber);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 0.62rem 1.15rem;
  border: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s, text-shadow 0.25s, border-bottom-color 0.25s;
}

.site-nav a:hover {
  color: var(--amber-bright);
  text-shadow: 0 0 8px rgba(255,165,0,0.4);
  border-bottom-color: rgba(232, 184, 103, 0.35);
}

.site-nav a[aria-current="page"] {
  color: var(--amber-bright);
  border-bottom-color: #c9a84c;
  text-shadow: 0 0 10px rgba(79,195,247,0.18);
}

/* Nav inset feel (poster rail behind it) */
.site-nav::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.3rem;
  width: min(860px, calc(100% - 3rem));
  height: 1px;
  background: linear-gradient(90deg, rgba(79,195,247,0) 0%, rgba(79,195,247,0.18) 22%, rgba(79,195,247,0.10) 78%, rgba(79,195,247,0) 100%);
  opacity: 0.9;
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 2.35rem 1.25rem 2.15rem;
  margin: 0 auto;
  max-width: 980px;
  display: grid;
  place-items: center;
}

.hero > * { max-width: 100%; }

.hero h1 {
  font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber-bright);
  text-shadow: 0 0 30px rgba(232,90,44,0.35), 0 0 60px rgba(10,9,8,0.9);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero h1 .vs {
  color: var(--water);
  font-style: italic;
  font-size: 0.7em;
  margin: 0 0.15em;
  text-shadow: 0 0 20px rgba(77,166,217,0.5);
}

.hero .tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ---------- Sections ---------- */
section {
  padding: 3rem 0;
  position: relative;
}

.section-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 161, 85, 0.72);
  margin-bottom: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(124, 199, 240, 0.12);
}

.section-title .num {
  color: var(--water);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85em;
  margin-right: 0.75em;
  opacity: 0.75;
}

/* Center + flourishes (poster chapter break) */
.section-title--centered {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.8rem;
}

.section-title--centered > span {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}

.section-title--centered > span::before,
.section-title--centered > span::after {
  content: '◆';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82em;
  color: rgba(79,195,247,0.35);
  letter-spacing: 0;
  transform: translateY(-0.05em);
}

/* Replace long rules with small art-deco flourishes */
.section-title--centered > span::before {
  margin-right: 0.15rem;
}

.section-title--centered > span::after {
  margin-left: 0.15rem;
}

.section-title--centered > span {
  padding: 0 0.35rem;
}

.section-title--centered > span {
  background:
    linear-gradient(90deg, rgba(79,195,247,0) 0%, rgba(79,195,247,0.22) 18%, rgba(79,195,247,0) 36%) left center / 28px 1px no-repeat,
    linear-gradient(90deg, rgba(79,195,247,0) 64%, rgba(79,195,247,0.22) 82%, rgba(79,195,247,0) 100%) right center / 28px 1px no-repeat;
}

.prose p { margin-bottom: 1.55rem; color: var(--ink); max-width: 70ch; line-height: 1.9; }
.prose p.lead { font-size: 1.15rem; color: var(--ink); font-style: italic; }

.prose h3 {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--water-bright);
  margin: 1.35rem 0 0.75rem;
}

/* ---------- Shared logline ---------- */
.logline {
  max-width: 980px;
  margin: 0.35rem auto 1.35rem;
  padding: 0;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 1.02rem;
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-style: italic;
  color: rgba(236, 228, 211, 0.92);
}

.logline::before { content: none; }
.logline > * { position: static; }

/* When logline lives inside the hero card */
.hero .logline {
  margin: 0.75rem auto 0;
  max-width: 74ch;
  text-align: center;
  font-size: 1.0rem;
  letter-spacing: 0.11em;
  color: rgba(236, 228, 211, 0.9);
}

/* ---------- Glass panels ---------- */
.hero,
.prose,
.choreo-strip,
.card,
.act,
.director-note,
.contact-card,
.video-list li {
  background: linear-gradient(180deg, var(--glass) 0%, var(--glass-2) 100%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
}

.hero {
  border: 1px solid rgba(79, 195, 247, 0.5);
  position: relative;
}

/* faint corner brackets (poster frame feel) */
.hero::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(#4fc3f7, #4fc3f7) left top / 6px 1px no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) left top / 1px 6px no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) right top / 6px 1px no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) right top / 1px 6px no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) left bottom / 6px 1px no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) left bottom / 1px 6px no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) right bottom / 6px 1px no-repeat,
    linear-gradient(#4fc3f7, #4fc3f7) right bottom / 1px 6px no-repeat;
}

.hero > * { position: relative; z-index: 1; }

.prose {
  padding: 1.6rem 1.7rem 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Pull synopsis closer to heading (poster layout) */
section > .prose { margin-top: 0.35rem; }

/* Tighten first section after logline */
#overview { padding-top: 2.1rem; }

/* Match Synopsis container width to hero */
#overview .prose {
  max-width: 882px; /* ~10% smaller than hero (980px) */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
}

.prose p:last-child { margin-bottom: 0; }

/* Synopsis speaker button */
/* Divider row layout (centered title + right-aligned Listen) */
.synopsis-divider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 24px;
}

.synopsis-divider-spacer,
.synopsis-divider-actions {
  flex: 1;
}

.synopsis-divider-actions {
  display: flex;
  justify-content: flex-end;
}

/* Ensure the centered title doesn’t add extra spacing in the row */
.synopsis-divider-row .section-title--centered {
  margin: 0;
}

/* Fixed bottom-center Listen dock */
.listen-dock {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
}

.listen-dock .listen-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #4fc3f7;
  background: rgba(8, 16, 28, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #4fc3f7;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(79,195,247,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.listen-dock .listen-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.listen-dock .listen-btn.is-slow-fade {
  transition: opacity 1.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.listen-dock .listen-btn:hover {
  box-shadow: 0 0 32px rgba(79,195,247,0.35);
  transform: scale(1.03);
}

.listen-dock .listen-icon {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
}

.listen-dock .listen-btn.is-playing {
  animation: listenBorderPulse 2s ease-in-out infinite;
}

.listen-dock .listen-btn.is-playing .listen-icon {
  animation: listenIconPulse 1.1s ease-in-out infinite;
}

@keyframes listenBorderPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(79,195,247,0.15); border-color: rgba(79,195,247,0.55); }
  50% { box-shadow: 0 0 28px rgba(79,195,247,0.30); border-color: rgba(79,195,247,1); }
}

@keyframes listenIconPulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* Prose readability tuning: readable measure + softer color + subtle pop (site-wide) */
.prose p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(203, 213, 225, 0.92); /* slate-300-ish */
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

/* Tribe color system (subtle, cinematic) */
.cinder-accent {
  color: rgba(79, 195, 247, 0.92);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(79, 195, 247, 0.18);
}

.soot-accent {
  color: rgba(201, 168, 76, 0.92);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(201, 168, 76, 0.16);
}

/* ---------- Cards / Roles ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: rgba(232, 184, 103, 0.35); transform: translateY(-2px); }

.card .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border: 1px solid currentColor;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.tag.open   { color: var(--amber); }
.tag.filled { color: var(--water); }

.card h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.card .abbr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--amber-dim);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.card p { font-size: 0.96rem; color: var(--ink-dim); margin-bottom: 0.7rem; }

.card .looking {
  font-size: 0.88rem;
  color: var(--ink);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.card .looking strong {
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

.card .cast-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  color: var(--water-bright);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ---------- Buttons / Links ---------- */
.btn {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--amber);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  margin-top: 1rem;
}

.btn:hover { background: var(--amber); color: var(--bg); }

.btn-water {
  color: var(--water);
  border-color: var(--water);
}
.btn-water:hover { background: var(--water); color: var(--bg); }

/* Center CTA buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

/* ---------- Choreo breakdown (legacy numbered beats) ---------- */
.beats {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.beats li {
  padding: 1rem 0 1rem 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 0.98rem;
  color: var(--ink);
}

.beats li:last-child { border-bottom: none; }

.beats li .beat-num {
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--water);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.beats li .beat-title {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.25rem;
}

/* ---------- Choreography log (timed acts) ---------- */
.choreo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.25rem;
  margin: 0 auto 2rem;
  max-width: 900px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.choreo-strip span {
  color: var(--amber);
  letter-spacing: 0.18em;
}

.choreo-strip .sep {
  color: var(--muted);
  letter-spacing: 0.35em;
}

.act-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.25rem;
}

.act {
  border-left: 3px solid rgba(77, 166, 217, 0.45);
  padding: 1.35rem 1.5rem 1.5rem;
  transition: border-color 0.2s, border-left-color 0.2s;
}

.act:hover {
  border-color: rgba(232, 184, 103, 0.35);
  border-left-color: rgba(232, 184, 103, 0.4);
}

.act-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.act-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--water-bright);
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(77, 166, 217, 0.35);
  background: rgba(77, 166, 217, 0.06);
}

.act-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin: 0;
  line-height: 1.3;
}

.act-beats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.act-beats li {
  position: relative;
  padding: 0.85rem 0 0.85rem 0;
  border-bottom: 1px dashed rgba(212, 161, 85, 0.2);
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
}

.act-beats li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.act-beats li:first-child { padding-top: 0; }

.beat-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 0.35rem;
}

.beat-tag.soot { color: #a8aeb8; }
.beat-tag.cinder { color: var(--ember); }
.beat-tag.key {
  color: var(--amber-bright);
  letter-spacing: 0.12em;
}

.prop-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85em;
  letter-spacing: 0.06em;
  color: var(--ember);
}

/* Blue anchor inside synopsis copy */
.core-name {
  color: #4fc3f7;
  text-shadow: 0 0 14px rgba(79,195,247,0.22);
  letter-spacing: 0.06em;
}

.director-note {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  border-style: dashed;
  font-size: 0.95rem;
  color: var(--ink-dim);
  font-style: italic;
  line-height: 1.65;
}

.director-note strong {
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.65rem;
}

.choreo-intro {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-dim);
}

@media (max-width: 640px) {
  .choreo-strip { letter-spacing: 0.14em; font-size: 0.65rem; padding: 0.85rem 1rem; }
  .act-title { font-size: 1.05rem; letter-spacing: 0.08em; }
}

/* ---------- Video list ---------- */
.video-list {
  list-style: none;
  padding: 0;
  max-width: 70ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.video-list li {
  border-bottom: none;
  margin: 0;
  padding: 1.15rem 1.35rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.75rem;
}
.video-list a {
  color: var(--amber);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
  flex: 1 1 12rem;
  min-width: 0;
  line-height: 1.45;
}
.video-list a:hover { color: var(--amber-bright); text-decoration: underline; text-underline-offset: 4px; }
.video-list .video-list-pending {
  color: var(--ink-dim);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  flex: 1 1 12rem;
  min-width: 0;
  line-height: 1.45;
  cursor: default;
}
.video-list .meta {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--ink-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  flex: 0 1 auto;
  text-align: right;
  max-width: min(44ch, 100%);
}
@media (max-width: 700px) {
  .video-list .meta { text-align: left; max-width: none; width: 100%; }
}

/* ---------- Contact ---------- */
.contact-card {
  max-width: 520px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
}

.contact-card h3 {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--amber-bright);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.contact-card .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--water);
  margin-bottom: 1.5rem;
}

.contact-card dl { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 1.2rem; text-align: left; }
.contact-card dt {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-top: 0.1rem;
}
.contact-card dd { color: var(--ink); font-family: 'IBM Plex Mono', monospace; font-size: 0.9rem; }
.contact-card dd a { color: var(--amber); text-decoration: none; border-bottom: 1px dotted var(--amber-dim); }
.contact-card dd a:hover { color: var(--amber-bright); border-color: var(--amber-bright); }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.site-footer a:hover {
  color: rgba(236, 228, 211, 0.92);
  border-color: rgba(232, 184, 103, 0.25);
  text-shadow: 0 0 10px rgba(232, 184, 103, 0.12);
}

.site-footer a.mark { color: var(--amber); }

/* ---------- Small screens ---------- */
@media (max-width: 640px) {
  .wrap { padding: 0 1.2rem; }
  .site-header { padding: 2rem 1rem 1rem; }
  .water-mark { width: 90px; height: 90px; }
  .site-nav { gap: 0.25rem; }
  .site-nav a { padding: 0.5rem 0.7rem; font-size: 0.7rem; letter-spacing: 0.2em; }
}
