/* Palette and type taken from the Atta Galatta festival poster —
   this is an existing identity, not an invented one. */
:root {
  --paper:      #ECE2D6;
  --paper-2:    #E3D8C9;
  --paper-3:    #D7CBB8;
  --forest:     #243A1C;
  --brick:      #D43B22;      /* display sizes only — 3.7:1, fails AA for small text */
  --brick-text: #AC2E10;      /* same hue, passes 4.5:1 on both papers */
  --ink:        #23281F;
  --ink-dim:    #575D4E;

  --bg:      var(--paper);
  --surface: var(--paper-2);
  --fg:      var(--ink);
  --fg-dim:  var(--ink-dim);
  --rule:    rgba(36, 58, 28, 0.22);
  --accent:  var(--brick);

  --display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Lato", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* One type scale. Body copy is ONE size and ONE colour everywhere;
     the only deliberate steps are a page lede, table text, and small print. */
  --text:       clamp(1.0625rem, .35vw + 1rem, 1.1875rem);
  --text-lede:  clamp(1.15rem, .55vw + 1.02rem, 1.35rem);
  --text-table: .95rem;
  --text-small: .85rem;

  --wrap: 1240px;
  --measure: 62ch;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

.lit { --bg: var(--paper-2); --rule: rgba(36,58,28,.28); }

/* ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: clip; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* A fine grain over everything. Carries most of the "material" feeling
   and, unlike photography, costs nothing and never needs consent. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--forest);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 .45em;
  text-wrap: balance;
}

p { margin: 0 0 1.15em; max-width: var(--measure); text-wrap: pretty; }

a { color: inherit; text-decoration-thickness: .06em; text-underline-offset: .22em; }
a:hover { text-decoration-color: var(--accent); }

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

:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .7rem 1.2rem;
}
.skip:focus { left: 0; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   sections
   ============================================================ */

section { background: var(--bg); color: var(--fg); position: relative; z-index: 2; }
.pad { padding-block: clamp(4rem, 11vw, 9rem); }

.label {
  font-family: var(--sans);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brick-text);
  margin: 0 0 1.6rem;
}

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

/* ============================================================
   header
   ============================================================ */

.site-header {
  position: relative; z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 1.1rem;
}

.mark { display: inline-block; text-decoration: none; line-height: 0; }
.mark__logo { height: 62px; width: auto; display: block; }
@media (max-width: 620px) { .mark__logo { height: 50px; } }

.nav__toggle {
  display: none; font: inherit; font-size: .9rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
  background: none; border: 1px solid var(--rule);
  padding: .45rem .9rem; cursor: pointer;
}
.nav__list {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem);
  list-style: none; margin: 0; padding: 0;
  font-size: .8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
}
.nav__list a { text-decoration: none; padding-block: .3rem; border-bottom: 1px solid transparent; }
.nav__list a:hover { border-bottom-color: var(--brick); }
.nav__list a[aria-current="page"] { border-bottom-color: var(--ink); }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__list {
    display: none; position: absolute; inset: 100% var(--gutter) auto auto;
    flex-direction: column; align-items: flex-end; gap: 0;
    background: var(--paper); border: 1px solid var(--rule);
    padding: .6rem 1.2rem; min-width: 15rem;
  }
  .nav[data-open="true"] .nav__list { display: flex; }
  .nav__list li { width: 100%; text-align: right; }
  .nav__list a { display: block; padding: .75rem 0; }
}

/* ============================================================
   opening statement — the argument, before anything else
   ============================================================ */

/* The bottom value matches .pad's, so hero-to-next reads the same as
   every other join down the page. */
.opening { padding-block: clamp(3.5rem, 10vw, 7rem) clamp(4rem, 11vw, 9rem); }

.opening__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .opening__grid { grid-template-columns: 1fr; } }

/* The cut-outs stand on the ground and cross-dissolve into one another.
   Each has a different silhouette, so the change reads as a slow morph
   from one play into the next rather than as a slideshow. */
.morph { position: relative; aspect-ratio: 4 / 5; }
.morph img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
  opacity: 0; transform: scale(.965);
  transition: opacity 1.8s ease, transform 2.4s ease;
  filter: drop-shadow(0 20px 26px rgba(36, 58, 28, .16));
}
.morph img.is-on { opacity: 1; transform: scale(1); }
@media (max-width: 900px) { .morph { aspect-ratio: 3 / 3.2; max-width: 420px; margin-inline: auto; } }

.opening h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 500;
  max-width: 15ch;
  margin-bottom: .5em;
}
.opening h1 em { font-style: normal; color: var(--brick); }

.opening__sub {
  font-size: var(--text-lede);
  color: var(--ink);
  max-width: 46ch;
  margin: 0;
}

/* .lede was used on About and Reviews with no rule at all — same treatment. */
.lede {
  font-size: var(--text-lede);
  color: var(--ink);
  max-width: 46ch;
}

/* ============================================================
   figures
   ============================================================ */

figure { margin: 0; }

.bleed {
  width: 100vw; margin-left: 50%; transform: translateX(-50%);
  position: relative; z-index: 2;
}
/* A fixed ratio: a viewport-height crop meant these bands were nearly
   2.3:1 on a laptop and nearly square on a phone — a different photograph
   at every size. 16:9 costs little against our 3:2 originals. */
.bleed img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }

figcaption {
  font-size: var(--text-small); letter-spacing: .04em; color: var(--fg-dim);
  padding-top: .85rem;
}
.bleed figcaption { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }

/* ============================================================
   two-column prose
   ============================================================ */

.cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 820px) { .cols { grid-template-columns: 1fr; } }

.cols h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }

.pull {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.3;
  color: var(--forest);
  max-width: 24ch;
  margin: 0 0 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--brick);
  display: inline-block;
}

/* ============================================================
   the work — one entry per production
   ============================================================ */

.work { display: grid; gap: 1px; background: var(--rule); }

.piece {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  background: var(--bg);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
@media (max-width: 820px) { .piece { grid-template-columns: 1fr; } }

.piece__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-3); }
.piece__media img { width: 100%; height: 100%; object-fit: cover; }

/* a production with no photograph yet still has its material */
.piece__media--empty {
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  background: var(--paper-3);
}
.piece__media--empty span {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-dim);
}

.piece h3 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); margin-bottom: .3em; }
.piece h3 a { text-decoration: none; }
.piece h3 a:hover { text-decoration: underline; text-decoration-color: var(--brass); }

.material {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 1.1rem;
}
.material::before {
  content: ""; width: .7rem; height: .7rem; border-radius: 50%;
  background: var(--m, var(--forest));
  box-shadow: 0 0 0 1px rgba(28,24,21,.25);
}

.facts {
  display: flex; flex-wrap: wrap; gap: .3rem 1.6rem;
  list-style: none; margin: 1.4rem 0 0; padding: 0;
  font-size: var(--text-small); color: var(--fg-dim);
}
.facts strong { color: var(--fg); font-weight: 600; }

/* ============================================================
   buttons
   ============================================================ */

.btn {
  display: inline-block;
  font: inherit; font-size: .82rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  padding: .95rem 1.9rem;
  border: 1px solid currentColor;
  color: var(--fg); background: transparent;
  transition: background .18s ease, color .18s ease;
  cursor: pointer;
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { background: transparent; color: var(--fg); }

.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* ============================================================
   cards (practical / lit sections)
   ============================================================ */

.grid3 { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card { border-top: 2px solid var(--forest); padding-top: 1.25rem; }
.card h3 { font-size: 1.35rem; }
.card p { color: var(--ink); }
.card p:last-child { margin-bottom: 0; }

/* ============================================================
   spec table
   ============================================================ */

.spec { width: 100%; border-collapse: collapse; font-size: var(--text-table); }
.spec th, .spec td { text-align: left; padding: .8rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.spec th { width: 42%; font-weight: 600; padding-right: 1.5rem; }
.spec td { color: var(--fg); }

/* ============================================================
   footer
   ============================================================ */

.site-footer {
  position: relative; z-index: 2;
  background: var(--paper-2); color: var(--ink);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
  font-size: .95rem;
}
.site-footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding-bottom: 3rem;
}
.site-footer h3 {
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer__base {
  border-top: 1px solid var(--rule); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem;
  font-size: .8rem; color: var(--ink-dim);
}

/* ============================================================
   placeholder tokens — delete this rule once all are filled
   ============================================================ */

.tok {
  background: rgba(212, 59, 34, .12);
  border-bottom: 1px dashed var(--brick);
  color: #9C2B15;
  padding: 0 .2em; font-weight: 600;
}

/* ============================================================
   gallery — masonry columns
   Column count is driven by available width, not breakpoints:
   4-ish on a desktop, 3 on a tablet, 2 on a phone.
   ============================================================ */

.gallery { columns: 250px; column-gap: 10px; margin-top: 2rem; }
@media (max-width: 620px) { .gallery { columns: 2; column-gap: 6px; } }

.gallery__item {
  break-inside: avoid;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: var(--paper-3);
  width: 100%;
  display: block;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
@media (max-width: 620px) { .gallery__item { margin-bottom: 6px; } }

.gallery__item img,
.gallery__item video { display: block; width: 100%; height: auto; }

.gallery__item:hover img,
.gallery__item:hover video { opacity: .88; }

/* a moving tile announces itself, so it is not mistaken for a still */
.gallery__item[data-video]::after {
  content: "▶";
  position: absolute;
  left: .6rem; bottom: .5rem;
  font-size: .7rem;
  color: var(--paper);
  background: rgba(28,24,21,.7);
  padding: .15rem .5rem;
  letter-spacing: .1em;
}

.gallery-more {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
}

/* ============================================================
   lightbox
   ============================================================ */

.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(16, 13, 11, .95);
  display: none; align-items: center; justify-content: center;
}
.lb.is-open { display: flex; }
.lb__media { max-width: 92vw; max-height: 82vh; }
.lb__media img, .lb__media video { max-width: 92vw; max-height: 82vh; display: block; margin: 0 auto; }

.lb__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  color: #EDE6DA; font-size: .82rem;
  display: flex; justify-content: space-between; gap: 1rem;
}
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #EDE6DA;
  font-size: 2.6rem; line-height: 1; padding: 1rem; cursor: pointer; opacity: .65;
}
.lb__nav:hover { opacity: 1; }
.lb__prev { left: 0; } .lb__next { right: 0; }
.lb__close {
  position: absolute; top: .25rem; right: 1rem;
  background: none; border: 0; color: #EDE6DA;
  font-size: 2.2rem; cursor: pointer; opacity: .65;
}
.lb__close:hover { opacity: 1; }

/* On a phone the arrows sit under the thumb, not beside the image. */
@media (max-width: 620px) {
  .lb__nav { top: auto; bottom: 3.2rem; transform: none; font-size: 2rem; }
  .lb__media img, .lb__media video { max-height: 68vh; }
}

/* ============================================================
   phone refinements
   ============================================================ */

@media (max-width: 620px) {
  /* Tap targets: 44px minimum, per WCAG 2.5.8. */
  .lb__nav, .lb__close { min-width: 48px; min-height: 48px; }

  /* A two-column spec table squeezes values into ~190px on a phone.
     Stack label above value instead — programmers read these on trains. */
  .spec, .spec tbody, .spec tr, .spec th, .spec td { display: block; width: auto; }
  .spec tr { border-bottom: 1px solid var(--rule); padding-block: .85rem; }
  .spec tr:last-child { border-bottom: 0; }
  .spec th {
    padding: 0 0 .2rem; border: 0; background: none;
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-dim);
  }
  .spec td { padding: 0; border: 0; color: var(--ink); }
}

/* ============================================================
   parent reviews — masonry of video + quote
   Talking heads, so no silent autoplay: a poster and native
   controls, and the clip loads only when someone asks for it.
   ============================================================ */

.reviews { columns: 300px; column-gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 620px) { .reviews { columns: 1; } }

.review {
  break-inside: avoid;
  margin: 0 0 1.25rem;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}
.review video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper-3);
}
.review__text { padding: 1.15rem 1.25rem 1.35rem; }
.review blockquote {
  margin: 0 0 .8rem;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--ink);
}
.review cite {
  font-style: normal;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.review__play {
  font-size: .78rem;
  color: var(--ink-dim);
  margin: .5rem 0 0;
}

/* ============================================================
   performance history + people
   ============================================================ */

.perf { list-style: none; margin: 0 0 1rem; padding: 0; max-width: 46rem; }
.perf li {
  padding: .7rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: .98rem;
}
.perf li:first-child { border-top: 1px solid var(--rule); }

.people { display: grid; gap: clamp(2rem, 4vw, 3.5rem); margin-top: 3rem; }
@media (min-width: 800px) { .people { grid-template-columns: repeat(2, 1fr); } }

.person { border-top: 2px solid var(--forest); padding-top: 1.1rem; }
.person h3 { font-size: 1.5rem; margin: 0 0 .15em; }
.person .role {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-dim);
  display: block; margin-bottom: .9rem;
}
.person p { margin-bottom: .8em; }
.person p:last-child { margin-bottom: 0; }
.person .in {
  font-size: .8rem; color: var(--ink-dim);
  border-top: 1px solid var(--rule); padding-top: .7rem; margin-top: 1rem;
}

/* ============================================================
   homepage
   ============================================================ */

/* --- the rationale, set as two movements of one argument --- */
.argument { max-width: 68ch; }
.argument p { max-width: none; }
.argument .movement { margin-top: clamp(2.5rem, 5vw, 4rem); }
.argument h3 {
  font-family: var(--sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brick);
  margin-bottom: 1.2rem;
}
.argument .lead::first-letter {
  float: left; font-family: var(--display); font-size: 3.6em;
  line-height: .82; padding: .06em .1em 0 0; color: var(--forest);
}

/* --- a play, as a full-width band with a cut-out --- */
.band-play {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-top: 1px solid var(--rule);
}
.band-play:nth-of-type(even) .band-play__fig { order: 2; }
@media (max-width: 820px) {
  .band-play { grid-template-columns: 1fr; }
  .band-play:nth-of-type(even) .band-play__fig { order: 0; }
}

/* The cut-out stands on the ground rather than sitting in a box. */
.band-play__fig { margin: 0; display: flex; justify-content: center; align-items: flex-end; }
.band-play__fig img {
  width: 100%; max-width: 460px; height: auto;
  filter: drop-shadow(0 18px 24px rgba(36, 58, 28, .18));
}

.band-play h3 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin-bottom: .2em; }
.band-play h3 a { text-decoration: none; }
.band-play .material {
  color: var(--brick-text); font-weight: 700;
  font-size: .78rem; letter-spacing: .2em;
}
.band-play .material::before { display: none; }

/* --- auto-switching audience photographs --- */
.slides { position: relative; width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.slides__stage { position: relative; height: clamp(340px, 66vh, 760px); overflow: hidden; background: var(--paper-3); }
.slides__stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s ease;
}
.slides__stage img.is-on { opacity: 1; }
/* Dots sit on the photograph itself, bottom centre. The tap target is
   24px (WCAG 2.5.8) even though the visible dot is 10px. */
.slides__dots {
  position: absolute; z-index: 3;
  left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  display: flex; gap: .25rem;
}
.slides__dots button {
  width: 24px; height: 24px; padding: 0;
  background: none; border: 0; cursor: pointer;
  display: grid; place-items: center;
}
.slides__dots button::before {
  content: ""; display: block;
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .9);
  background: transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .55);
  transition: background .2s ease;
}
.slides__dots button[aria-current="true"]::before { background: #fff; }
.slides__dots button:hover::before { background: rgba(255, 255, 255, .6); }

/* --- the green band, as the poster has it --- */
.festivals { background: var(--forest); color: var(--paper); }
.festivals .label { color: var(--paper); opacity: .8; }
.festivals h2 { color: var(--paper); }
.fest-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 2.5rem;
}
.fest-grid h3 {
  font-family: var(--sans); color: var(--paper);
  font-size: 1.05rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .35rem;
}
.fest-grid p { font-size: .9rem; color: rgba(236,226,214,.78); margin: 0; }

/* --- parent quotes --- */
.says {
  display: grid;
  /* the horizontal gap is twice the vertical one, so the columns read as
     separate voices rather than one block of text */
  row-gap: clamp(1.5rem, 3vw, 2.5rem);
  column-gap: clamp(3rem, 6vw, 5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.5rem;
}
.says blockquote {
  margin: 0; font-family: var(--display); font-size: 1.2rem;
  line-height: 1.35; color: var(--forest);
  border-top: 1px solid var(--rule); padding-top: 1.1rem;
}
.says cite {
  display: block; margin-top: .9rem; font-style: normal;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-dim);
}

/* ============================================================
   the rationale, set as numbered propositions
   ============================================================ */

/* A row-wise grid, NOT CSS columns: columns fill downward first, which
   put propositions 1 and 3 side by side — numbered arguments must read
   in visual order. */
.props {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4.5rem);
  margin-top: 2.5rem;
}
@media (max-width: 760px) { .props { grid-template-columns: 1fr; } }

.prop {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0 1.25rem; align-items: start;
}
.prop__n {
  font-family: var(--display);
  font-size: 2.6rem; line-height: .8;
  color: var(--brick);
  grid-row: span 2;
}
.prop h3 {
  font-family: var(--sans);
  font-size: .8rem; font-weight: 900;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--forest);
  margin: .35rem 0 .7rem;
}
.prop p { margin: 0 0 .9em; max-width: 46ch; }
.prop p:last-child { margin-bottom: 0; }

/* the condensed version, on the homepage */
.why-short .pull { color: var(--forest); max-width: 18ch; }

/* ============================================================
   excerpt video
   ============================================================ */

.excerpt { width: 100vw; margin-left: 50%; transform: translateX(-50%); position: relative; z-index: 2; }
.excerpt video { width: 100%; height: clamp(320px, 64vh, 740px); object-fit: cover; display: block; background: var(--paper-3); }
.excerpt figcaption {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin: .85rem auto 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* ============================================================
   what a performance is like
   ============================================================ */

.plainly { display: grid; gap: 0; margin-top: 2rem; max-width: 54rem; }
.plainly div {
  display: grid; grid-template-columns: 9rem 1fr; gap: 1.5rem;
  padding: 1rem 0; border-top: 1px solid var(--rule);
}
.plainly div:last-child { border-bottom: 1px solid var(--rule); }
.plainly dt, .plainly .k {
  font-size: .74rem; font-weight: 900; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brick-text); padding-top: .25rem;
}
.plainly .v { margin: 0; max-width: 52ch; }
@media (max-width: 620px) {
  .plainly div { grid-template-columns: 1fr; gap: .35rem; }
}

/* ============================================================
   collaborators
   ============================================================ */

.collab {
  display: flex; flex-wrap: wrap; gap: .6rem 2.2rem;
  list-style: none; margin: 1.25rem 0 0; padding: 0;
  font-size: .95rem; font-weight: 700; color: var(--forest);
}
.collab li { position: relative; }
.collab li + li::before {
  content: "·"; position: absolute; left: -1.2rem; color: var(--brick); font-weight: 400;
}

/* ============================================================
   comparison table (booking page)
   ============================================================ */

.compare { width: 100%; border-collapse: collapse; font-size: var(--text-table); margin-top: 2rem; }
.compare th, .compare td {
  text-align: left; padding: .9rem 1rem .9rem 0;
  border-bottom: 1px solid var(--rule); vertical-align: top;
}
.compare thead th {
  font-family: var(--display); font-size: 1.15rem; font-weight: 500;
  color: var(--forest); border-bottom: 2px solid var(--forest);
}
.compare tbody th {
  font-family: var(--sans); font-size: .72rem; font-weight: 900;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brick-text);
  width: 9rem; padding-right: 1.5rem;
}
.compare td { color: var(--ink); }

/* ============================================================
   P1/P2 refinements
   ============================================================ */

/* Even band heights: cap the cut-out so the tall Bends figure
   doesn't make its band half again taller than the others. */
.band-play__fig img {
  width: auto;
  max-width: min(460px, 100%);
  max-height: 540px;
}

/* In the hero morph, the tall narrow cut-out reads oversized at
   full height; ground it a little smaller. */
.morph img.m-tall { top: auto; height: 88%; }
.morph { cursor: pointer; }
.morph.is-paused img { transition-duration: .3s; }


/* Booking table: show that it scrolls on narrow screens. */
.table-scroll { position: relative; }
@media (max-width: 860px) {
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-scroll::after {
    content: ""; position: sticky; left: 100%; top: 0;
    display: block; width: 2.5rem; margin-top: -100%;
    height: 100%; pointer-events: none;
    background: linear-gradient(to right, transparent, var(--paper));
    float: right;
  }
  .compare { min-width: 640px; }
}

/* Cross-links between plays */
.more-plays {
  display: grid; gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.more-play {
  display: block; text-decoration: none;
  border-top: 2px solid var(--forest); padding-top: 1rem;
}
.more-play .material { display: block; margin-bottom: .5rem; }
.more-play h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; }
.more-play:hover h3 { text-decoration: underline; text-decoration-color: var(--brick); }


/* ============================================================
   why block — a photograph carries the left column so the
   argument can run as one continuous measure on the right
   ============================================================ */

.why-fig { margin: 0; }
.why-fig img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.why-fig figcaption { padding-top: .7rem; }

/* the argument column: one measure, nothing stranded */
.why-body > *:last-child { margin-bottom: 0; }
.why-body h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); max-width: 18ch; }

@media (max-width: 820px) {
  .why-fig { max-width: 420px; }
}
