/* ============================================================
   VERSION 2 · STAGELIGHT
   The darkened theatre. Warm off-black ground; content fades
   up into amber pools of light, one lit moment at a time.
   Vignettes unify the archive; one cool teal accent from the
   ocean projection. High-contrast light-grey body text.
   ============================================================ */

html[data-skin="stagelight"] {
  --wrap: 1000px;
  --bg: #16120e;
  --bg-deep: #0e0b08;
  --text: #ddd5c8;
  --soft: #a2988a;
  --amber: #e3a95a;
  --amber-soft: #c99a58;
  --teal: #6aa7b5;
  --line: #322a21;
  --focus: #e3a95a;
  background: var(--bg);
}

html[data-skin="stagelight"] body {
  background:
    radial-gradient(1100px 520px at 50% -80px, #241c12 0%, transparent 70%),
    var(--bg);
  color: var(--text);
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.8;
}

html[data-skin="stagelight"] h1,
html[data-skin="stagelight"] h2,
html[data-skin="stagelight"] h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.16;
}

html[data-skin="stagelight"] a { color: var(--teal); text-decoration-color: rgba(106, 167, 181, .5); text-underline-offset: 3px; }
html[data-skin="stagelight"] a:hover { color: var(--amber); }
html[data-skin="stagelight"] .ph { border-color: #55483a; color: var(--soft); }

/* Header: house lights low */
html[data-skin="stagelight"] .site-head { padding: 30px 0 0; }
html[data-skin="stagelight"] .head-in {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
html[data-skin="stagelight"] .brand { text-decoration: none; }
html[data-skin="stagelight"] .brand-name {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(21px, 2.6vw, 26px);
  color: var(--amber);
}
html[data-skin="stagelight"] .brand-name em { font-style: italic; }
html[data-skin="stagelight"] .brand-line {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--soft);
}
html[data-skin="stagelight"] .site-nav { gap: 4px 20px; }
html[data-skin="stagelight"] .site-nav a {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 4px 0;
}
html[data-skin="stagelight"] .site-nav a:hover { color: var(--amber); }
html[data-skin="stagelight"] .site-nav a[aria-current="page"] { color: var(--amber); border-bottom: 1px solid var(--amber); }

/* Hero: a figure caught in a pool of light */
html[data-skin="stagelight"] .hero {
  position: relative;
  padding: clamp(56px, 9vh, 110px) clamp(18px, 4.5vw, 36px) 0;
  text-align: center;
}
html[data-skin="stagelight"] .hero::before {
  content: "";
  position: absolute;
  left: 50%; top: 8%;
  width: min(92vw, 980px); height: 72%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(227, 169, 90, .16), transparent 72%);
  pointer-events: none;
}
html[data-skin="stagelight"] .hero-fig { position: relative; }
html[data-skin="stagelight"] .hero-fig img {
  margin-inline: auto;
  width: min(100%, 880px);
  max-height: 76vh;
  object-fit: cover;
  border-radius: 3px;
}
html[data-skin="stagelight"] .hero-fig { --vignette: inset 0 0 90px 44px rgba(10, 8, 5, .82); }
html[data-skin="stagelight"] .hero-fig .credit { margin-top: 16px; }
html[data-skin="stagelight"] .hero-copy { position: relative; max-width: 680px; margin: clamp(48px, 8vh, 84px) auto 0; }
html[data-skin="stagelight"] .hero-kicker {
  font-size: 11.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--teal);
}
html[data-skin="stagelight"] .hero h1 {
  margin-top: 16px;
  font-size: clamp(34px, 5.6vw, 58px);
  color: var(--amber);
  text-shadow: 0 0 46px rgba(227, 169, 90, .28);
}
html[data-skin="stagelight"] .hero h1 em { font-style: italic; }
html[data-skin="stagelight"] .hero-line { margin: 24px auto 0; max-width: 36em; font-size: 17.5px; color: var(--text); }

/* Every image sits in darkness: vignette into black */
html[data-skin="stagelight"] figure { position: relative; }
html[data-skin="stagelight"] figure .imgbox { position: relative; overflow: hidden; border-radius: 3px; }
html[data-skin="stagelight"] figure .imgbox::after,
html[data-skin="stagelight"] .hero-fig > .imgbox::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: var(--vignette, inset 0 0 64px 26px rgba(10, 8, 5, .8));
  pointer-events: none;
}
html[data-skin="stagelight"] .yt-lite::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 64px 26px rgba(10, 8, 5, .78);
  pointer-events: none;
}

/* Captions: programme notes in the dark */
html[data-skin="stagelight"] .credit,
html[data-skin="stagelight"] .yt-caption {
  font-size: 12px;
  letter-spacing: .1em;
  font-variant-caps: all-small-caps;
  color: var(--soft);
}
html[data-skin="stagelight"] figure .credit { margin-top: 12px; }

/* Sections: scenes */
html[data-skin="stagelight"] .section { padding: clamp(88px, 13vh, 150px) 0 0; }
html[data-skin="stagelight"] .sec-title {
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--amber);
}
html[data-skin="stagelight"] .sec-title::after {
  content: "";
  display: block;
  width: 130px; height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--amber-soft), transparent);
}
html[data-skin="stagelight"] .sec-lede { max-width: 38em; margin: 28px auto 0; text-align: center; color: var(--soft); }

/* Featured: one lit moment at a time */
html[data-skin="stagelight"] .feat-grid { display: grid; gap: clamp(64px, 10vh, 120px); margin-top: clamp(48px, 8vh, 84px); }
html[data-skin="stagelight"] .feat { position: relative; text-align: center; }
html[data-skin="stagelight"] .feat::before {
  content: "";
  position: absolute;
  left: 50%; top: -6%;
  width: min(90vw, 760px); height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(227, 169, 90, .10), transparent 74%);
  pointer-events: none;
}
html[data-skin="stagelight"] .feat a { text-decoration: none; color: var(--text); }
html[data-skin="stagelight"] .feat figure { max-width: 620px; margin-inline: auto; }
html[data-skin="stagelight"] .feat figure img { width: 100%; max-height: 64vh; object-fit: cover; }
html[data-skin="stagelight"] .feat h3 { margin-top: 26px; font-size: clamp(24px, 3.2vw, 32px); color: var(--amber); }
html[data-skin="stagelight"] .feat .meta {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .2em;
  font-variant-caps: all-small-caps;
  color: var(--teal);
}
html[data-skin="stagelight"] .feat .blurb { max-width: 32em; margin: 12px auto 0; color: var(--soft); }

/* Entries */
html[data-skin="stagelight"] .strand { margin-top: clamp(88px, 13vh, 150px); }
html[data-skin="stagelight"] .strand:first-of-type { margin-top: 0; }
html[data-skin="stagelight"] .entry {
  position: relative;
  padding: clamp(64px, 10vh, 110px) 0 0;
  text-align: center;
}
html[data-skin="stagelight"] .entry::before {
  content: "";
  position: absolute;
  left: 50%; top: 10%;
  width: min(90vw, 820px); height: 84%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(227, 169, 90, .08), transparent 76%);
  pointer-events: none;
}
html[data-skin="stagelight"] .entry h3 { font-size: clamp(26px, 3.4vw, 34px); color: var(--amber); }
html[data-skin="stagelight"] .entry .meta {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: .2em;
  font-variant-caps: all-small-caps;
  color: var(--teal);
}
html[data-skin="stagelight"] .entry .body { position: relative; max-width: 36em; margin: 20px auto 0; }
html[data-skin="stagelight"] .entry .body p + p { margin-top: 14px; }
html[data-skin="stagelight"] .entry .figs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  margin-top: clamp(34px, 6vh, 56px);
}
html[data-skin="stagelight"] .entry .figs figure { flex: 0 1 auto; max-width: min(100%, 600px); }
html[data-skin="stagelight"] .entry .figs figure.small { max-width: min(100%, 360px); }
html[data-skin="stagelight"] .entry .figs img { margin-inline: auto; width: auto; max-width: 100%; max-height: 64vh; object-fit: contain; }

/* Video: muted screens native to the dark */
html[data-skin="stagelight"] .yt { max-width: 760px; margin-inline: auto; }
html[data-skin="stagelight"] .yt-play { background: rgba(14, 11, 8, .68); border: 1px solid rgba(227, 169, 90, .55); }
html[data-skin="stagelight"] .yt-play::after { border-color: transparent transparent transparent var(--amber); }
html[data-skin="stagelight"] .yt-cta { font-size: 12px; letter-spacing: .16em; font-variant-caps: all-small-caps; color: var(--text); background: linear-gradient(transparent, rgba(10, 8, 5, .82)); }
html[data-skin="stagelight"] .yt-caption { margin-top: 12px; text-align: center; }
html[data-skin="stagelight"] .vids { display: grid; gap: 48px; margin-top: clamp(34px, 6vh, 56px); }

/* Recognition */
html[data-skin="stagelight"] .recog-line {
  max-width: 42em;
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: .14em;
  line-height: 2.4;
  font-variant-caps: all-small-caps;
  color: var(--soft);
}
html[data-skin="stagelight"] .recog-more { margin-top: 24px; text-align: center; font-size: 14px; }

/* Prose pages */
html[data-skin="stagelight"] .page-head { padding: clamp(56px, 9vh, 100px) 0 clamp(36px, 5vh, 56px); text-align: center; }
html[data-skin="stagelight"] .page-head h1 { font-size: clamp(32px, 5vw, 48px); color: var(--amber); text-shadow: 0 0 40px rgba(227, 169, 90, .24); }
html[data-skin="stagelight"] .page-head .lede { max-width: 36em; margin: 20px auto 0; color: var(--soft); }
html[data-skin="stagelight"] .prose { max-width: 640px; margin-inline: auto; }
html[data-skin="stagelight"] .prose p + p { margin-top: 17px; }
html[data-skin="stagelight"] .prose h2 { margin: clamp(52px, 8vh, 80px) 0 16px; font-size: clamp(23px, 3vw, 29px); color: var(--amber); }
html[data-skin="stagelight"] .prose figure { margin: clamp(40px, 6vh, 64px) auto; }

/* CV */
html[data-skin="stagelight"] .cv-block { max-width: 720px; margin: 0 auto; }
html[data-skin="stagelight"] .cv-year { display: grid; grid-template-columns: 86px 1fr; gap: 8px 26px; padding: 22px 0; border-top: 1px solid var(--line); }
html[data-skin="stagelight"] .cv-year > dt { font-family: "Fraunces", serif; font-size: 21px; color: var(--amber); }
html[data-skin="stagelight"] .cv-year > dd { margin: 0; grid-column: 2; }
html[data-skin="stagelight"] .cv-item { margin: 0 0 10px; }
html[data-skin="stagelight"] .cv-item .t { font-weight: 500; font-size: 15.5px; color: var(--text); }
html[data-skin="stagelight"] .cv-item .d { display: block; font-size: 13.5px; color: var(--soft); }
@media (max-width: 560px) {
  html[data-skin="stagelight"] .cv-year { grid-template-columns: 1fr; }
  html[data-skin="stagelight"] .cv-year > dd { grid-column: 1; }
}

/* Press */
html[data-skin="stagelight"] .press-list { max-width: 660px; margin: 0 auto; padding: 0; list-style: none; }
html[data-skin="stagelight"] .press-list li { padding: 26px 0; border-top: 1px solid var(--line); }
html[data-skin="stagelight"] .press-list .src { font-family: "Fraunces", serif; font-size: 22px; color: var(--amber); }
html[data-skin="stagelight"] .press-list .what { display: block; margin-top: 6px; font-size: 14.5px; color: var(--soft); }

/* Footer: house lights up, gently */
html[data-skin="stagelight"] .site-foot {
  margin-top: clamp(96px, 15vh, 170px);
  padding: clamp(44px, 7vh, 66px) 0 40px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--soft);
}
html[data-skin="stagelight"] .foot-in { display: grid; gap: 18px; text-align: center; }
html[data-skin="stagelight"] .foot-name { font-family: "Fraunces", serif; font-size: 20px; color: var(--amber); }
html[data-skin="stagelight"] .foot-note { font-size: 12.5px; }
html[data-skin="stagelight"] .foot-base { margin-top: 26px; text-align: center; font-size: 12.5px; letter-spacing: .1em; }

/* Motion: lighting cues — rise out of darkness */
html[data-skin="stagelight"] .reveal {
  transform: translateY(26px);
  filter: brightness(.3);
  transition: opacity 1.1s cubic-bezier(.22, .61, .36, 1),
              transform 1.1s cubic-bezier(.22, .61, .36, 1),
              filter 1.4s ease;
}
html[data-skin="stagelight"] .reveal.in { transform: none; filter: brightness(1); }
