/* ============================================================
   NOA NAAMAT — design system
   Concept: "On stage / In print"
   Photography-led pages sit on a warm near-black stage;
   text-led pages flip to warm paper, like a program booklet.
   Cormorant Garamond (display serif) × DM Sans (functional) with a
   single vermillion accent drawn from stage fire.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ---------- Tokens ---------- */
:root {
  --stage: #0c0a09;
  --paper: #ffffff;
  --accent: #f04a23;
  --pad: clamp(1.25rem, 4.5vw, 4.5rem);
  --header-h: 76px;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --text: "DM Sans", system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.65, 0.25, 1);
}

@view-transition { navigation: auto; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Theme scopes: dark stage is the default; .theme-paper / body.paper flip it */
body,
.theme-stage {
  --bg: var(--stage);
  --ink: #f3efe7;
  --ink-soft: rgba(243, 239, 231, 0.82);
  --muted: rgba(243, 239, 231, 0.55);
  --line: rgba(243, 239, 231, 0.16);
  background: var(--bg);
  color: var(--ink);
}
body.paper,
.theme-paper {
  --bg: #ffffff;
  --ink: #111111;
  --ink-soft: #2d2b28;
  --muted: #666666;
  --line: #e2e0dc;
  background: var(--bg);
  color: var(--ink);
}

body {
  margin: 0;
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #0c0a09; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #0c0a09;
  padding: 0.75em 1.25em;
  z-index: 300;
  font-size: 0.8rem;
}
.skip-link:focus { left: 0; }

/* ---------- Shared primitives ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: clamp(0.75rem, 1.1vw, 0.84rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin: 0 0 1.5rem;
}
.kicker::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--accent);
  flex: none;
}

.display {
  font-family: var(--display);
  font-weight: 460;
  font-size: clamp(3rem, 9vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
}

.page-intro {
  padding: calc(var(--header-h) + clamp(3rem, 9vh, 6.5rem)) var(--pad) clamp(2.5rem, 6vh, 4.5rem);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-logo {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  z-index: 102;
  position: relative;
}
body.home .site-header {
  display: none;
}

.site-nav { display: flex; gap: clamp(1.25rem, 2.6vw, 2.5rem); }
.site-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 0.4em 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 0;
  cursor: pointer;
  color: inherit;
  z-index: 102;
  position: relative;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 2.25rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.72rem;
}
.site-footer p { margin: 0; color: var(--muted); letter-spacing: 0.04em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { letter-spacing: 0.18em; font-size: 0.66rem; font-weight: 500; }
.footer-nav a:hover { color: var(--accent); }

/* ---------- Home ---------- */
body.home {
  height: 100svh;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
  touch-action: none;
}
.hero {
  position: relative;
  height: 100svh;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
@keyframes heroZoom {
  0% {
    transform: scale(1.00);
  }
  100% {
    transform: scale(1.07);
  }
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  z-index: 1;
  will-change: opacity, transform;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.prev {
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transition: opacity 1.2s ease-in-out;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 9, 0.65) 0%,
    rgba(12, 10, 9, 0.15) 30%,
    rgba(12, 10, 9, 0.15) 70%,
    rgba(12, 10, 9, 0.75) 100%
  );
  z-index: -1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2rem, 5vh, 4rem) var(--pad);
}
.hero-content .kicker {
  font-family: var(--text);
  font-style: normal;
  font-size: clamp(0.78rem, 1.2vw, 0.90rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(243, 239, 231, 0.72);
  margin-bottom: 0.4rem;
}
.hero-content .kicker::before {
  display: none;
}
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: none;
  margin: 0 0 clamp(1.25rem, 3.5vh, 2.25rem);
  color: var(--ink);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.6);
}
.hero-links {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  align-items: center;
}
.hero-links a {
  font-family: var(--text);
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.9);
  text-decoration: none;
  padding-bottom: 0.35em;
  border-bottom: 1px solid rgba(243, 239, 231, 0.3);
  transition: all 0.25s ease;
}
.hero-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  transform: translateY(-1px);
}

/* ---------- Work index (typographic playbill) ---------- */
.work-preview {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.02);
}
.work-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 9, 0.45) 0%, rgba(12, 10, 9, 0.1) 60%);
}
.work-preview.show { opacity: 1; }

.work-index { position: relative; z-index: 1; }
.work-list { padding: 0 var(--pad) clamp(3rem, 8vh, 6rem); }
.work-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.2rem, 2.8vh, 2rem) 0;
  border-top: 1px solid var(--line);
}
.work-list .work-row:last-child { border-bottom: 1px solid var(--line); }
.work-num {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.work-title {
  font-family: var(--display);
  font-weight: 480;
  font-size: clamp(1.35rem, 2.8vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  transition: transform 0.45s var(--ease-out), color 0.3s ease;
}
.work-row:hover .work-title,
.work-row:focus-visible .work-title {
  transform: translateX(0.75rem);
  color: var(--accent);
}
.work-meta {
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-align: right;
  max-width: 300px;
}
.work-arrow {
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.35s var(--ease-out), color 0.3s ease;
  justify-self: end;
}
.work-row:hover .work-arrow,
.work-row:focus-visible .work-arrow {
  transform: translateX(0.5rem);
  color: var(--accent);
}
.work-thumb { display: none; }

/* ---------- Production detail ---------- */
.prod-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.prod-hero picture,
.prod-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-hero picture img { width: 100%; height: 100%; object-fit: cover; }
.prod-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, rgba(12, 10, 9, 0) 30%, rgba(12, 10, 9, 0.1) 55%, rgba(12, 10, 9, 0.93) 100%);
}
.prod-head {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--header-h) + 4rem) var(--pad) clamp(2rem, 5vh, 3.5rem);
}
.prod-head .kicker { margin-bottom: 1rem; }
.prod-title {
  font-family: var(--display);
  font-weight: 480;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
}
.prod-subtitle {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: 0.02em;
}

.playbill {
  padding: clamp(3rem, 8vh, 5.5rem) var(--pad);
  max-width: 1150px;
}
.credits {
  columns: 2 340px;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 2.25rem;
}
.credit { break-inside: avoid; margin: 0 0 1.15rem; }
.credit .label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.credit .value { font-size: 0.98rem; color: var(--ink-soft); }
.photo-credit {
  margin: 2.5rem 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 430;
  color: var(--muted);
}

.prod-gallery {
  padding: 0 var(--pad) clamp(3rem, 7vh, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .prod-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .prod-gallery {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.prod-gallery button {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
  text-align: left;
}
.prod-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.35s ease, filter 0.3s ease;
  filter: brightness(0.96);
}
.prod-gallery button[data-full*="02.jpg"] img {
  object-position: center 65%;
}
.prod-gallery button[data-full*="08.jpg"] img {
  object-position: center 35%;
}
.prod-gallery button[data-full*="20.jpg"] img {
  object-position: center 40%;
}
.prod-gallery button:hover img {
  transform: scale(1.03);
  filter: brightness(1.02);
}

.prod-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.prod-pager a {
  padding: clamp(2rem, 5vh, 3rem) var(--pad);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.prod-pager a:last-child { text-align: right; border-left: 1px solid var(--line); align-items: flex-end; }
.pager-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.pager-title {
  font-family: var(--display);
  font-weight: 480;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  line-height: 1.05;
  transition: color 0.25s ease;
}
.prod-pager a:hover .pager-title { color: var(--accent); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: clamp(1rem, 4vw, 3.5rem);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: 0;
  color: #f3efe7;
  cursor: pointer;
  font-family: var(--text);
  transition: color 0.2s;
  z-index: 2;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--accent); }
.lightbox-close { top: 1.25rem; right: 1.5rem; font-size: 2rem; line-height: 1; }
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.9rem;
  padding: 1rem;
}
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(243, 239, 231, 0.6);
}

/* ---------- Press ---------- */
.press-quotes-act {
  padding: clamp(2rem, 6vh, 4rem) var(--pad) clamp(5rem, 12vh, 8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 11vh, 7rem);
}
.press-quotes-act blockquote { margin: 0; }
.press-quotes-act blockquote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.5rem, 3.6vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 24ch;
}
.press-quotes-act blockquote:nth-child(even) p { margin-left: auto; }
.press-quotes-act blockquote cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--text);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}
.press-quotes-act blockquote cite::before { content: "— "; }
.press-quotes-act blockquote:nth-child(even) {
  margin-left: auto;
  text-align: right;
}

.press-print { padding: clamp(4rem, 9vh, 6rem) 0 clamp(3rem, 7vh, 5rem); }
.press-print .kicker { padding: 0 var(--pad); }
.clip-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 1.5rem var(--pad) 0.75rem;
  scrollbar-width: thin;
}
.clip-strip img {
  height: clamp(160px, 24vh, 240px);
  width: auto;
  flex: none;
  filter: grayscale(1) contrast(1.02);
  transition: filter 0.35s ease;
}
.clip-strip img:hover { filter: grayscale(0); }

.press-coverage { padding: clamp(2rem, 5vh, 3.5rem) var(--pad) clamp(4rem, 9vh, 6rem); }
.article-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.press-coverage .article-row:last-child { border-bottom: 1px solid var(--line); }
.article-row img {
  width: 140px;
  height: auto;
  filter: grayscale(1);
  transition: filter 0.35s ease;
}
.article-row:hover img { filter: grayscale(0); }
.article-row h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.15;
  margin: 0 0 0.45rem;
}
.article-row p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
}
.article-link {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  white-space: nowrap;
}
.article-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Schedule ---------- */
.season-list { padding: 0 var(--pad) clamp(3.5rem, 8vh, 6rem); }
.season-item {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: baseline;
  padding: clamp(1.75rem, 4vh, 2.5rem) 0;
  border-top: 1px solid var(--line);
}
.season-list .season-item:last-of-type { border-bottom: 1px solid var(--line); }
.season-dates {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.season-item h2 {
  font-family: var(--display);
  font-weight: 480;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  margin: 0;
}
.season-venue {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.season-more {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  white-space: nowrap;
}
.season-more:hover { text-decoration: underline; text-underline-offset: 4px; }
.season-note {
  padding: 2.5rem 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 440px);
  gap: clamp(2rem, 3.5vw, 3.25rem);
  padding: 0 var(--pad) clamp(3rem, 7vh, 5rem);
  align-items: start;
}
.about-lede {
  font-family: var(--display);
  font-weight: 430;
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  line-height: 1.42;
  letter-spacing: -0.005em;
  margin: 0 0 1.75rem;
}
.about-body p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.5em;
}
.about-portrait {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  margin: 0;
}
.about-portrait img {
  width: 100%;
  height: auto;
}
.about-portrait figcaption {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.7rem;
}
.rehearsals { padding: clamp(1.5rem, 4vh, 3rem) var(--pad) clamp(3.5rem, 8vh, 6rem); }
.rehearsals .kicker { margin-bottom: 2rem; }
.rehearsal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .rehearsal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .rehearsal-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.rehearsal-grid .gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
  text-align: left;
}
.rehearsal-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.rehearsal-grid .gallery-item[data-full*="05.jpg"] img,
.rehearsal-grid .gallery-item:nth-child(5) img {
  object-position: center 8%;
}
.rehearsal-grid .gallery-item:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}

/* ---------- Contact ---------- */
.contact-wrap { padding: 0 var(--pad) clamp(4rem, 9vh, 6.5rem); max-width: 760px; }
.contact-intro {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 3rem;
}
.contact-intro a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.form-field { margin-bottom: 2rem; }
.form-field label {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.55em 0;
  font-family: var(--text);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.contact-wrap button[type="submit"] {
  border: 1px solid var(--ink);
  background: none;
  color: var(--ink);
  padding: 0.9em 2.4em;
  font-family: var(--text);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.contact-wrap button[type="submit"]:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .article-row { grid-template-columns: 110px 1fr; }
  .article-row .article-link { grid-column: 2; justify-self: start; }
  .article-row img { width: 110px; }
  .season-item { grid-template-columns: 1fr auto; }
  .season-dates { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 420px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: var(--stage);
    flex-direction: column;
    justify-content: center;
    padding: var(--pad);
    gap: 0.4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
  }
  .site-nav a {
    color: #f3efe7;
    font-family: var(--display);
    font-weight: 460;
    font-size: 2.4rem;
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.3;
    border-bottom: 0;
    counter-increment: navnum;
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { color: var(--accent); }
  body.nav-open .site-nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle { color: #f3efe7; }
  body.nav-open .nav-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open .site-header { background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  body.nav-open .site-logo { color: #f3efe7; }

  .work-preview { display: none; }
  .work-row {
    display: block;
    padding: 1.5rem 0;
  }
  .work-thumb { display: block; margin: 0 0 1rem; }
  .work-thumb img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
  .work-num { display: inline-block; margin-bottom: 0.4rem; }
  .work-meta { text-align: left; margin-top: 0.5rem; max-width: none; }
  .work-row:hover .work-title { transform: none; }

  .prod-pager { grid-template-columns: 1fr; }
  .prod-pager a:last-child { border-left: 0; border-top: 1px solid var(--line); }
  .credits { columns: 1; }
  .press-quotes-act blockquote { max-width: none; }
  .press-quotes-act blockquote:nth-child(even) { margin-left: 0; text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .work-title, .work-preview, .prod-gallery img, .article-row img, .clip-strip img { transition: none; }
}

/* ---------- Press 3-Section System ---------- */
.interview-gallery-sec {
  padding: 0 var(--pad) 5rem;
}
.interview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .interview-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .interview-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .interview-grid { grid-template-columns: 1fr; }
}
.interview-box {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #e2e0dc;
  background: #f8f6f2;
  cursor: pointer;
  text-decoration: none;
}
.interview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.97);
}
.interview-box:hover img {
  transform: scale(1.04);
  filter: brightness(1.02);
}
.interview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}
.interview-overlay .source-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.interview-overlay .img-name {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.2;
}
.type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0c0a09;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.quotes-sec-dark {
  background: #0c0a09;
  color: #f3efe7;
  padding: 4.5rem var(--pad);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.quotes-intro {
  margin-bottom: 3.5rem;
}
.quotes-intro .kicker {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.quotes-intro h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0;
  color: #ffffff;
}
.quotes-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
@media (max-width: 900px) {
  .quotes-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .quotes-grid-3 { grid-template-columns: 1fr; }
}
.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  padding: 2rem 1.85rem;
  border-radius: 0 4px 4px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.quote-card p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.22rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  margin: 0 0 1.6rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.quote-card cite {
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-style: normal;
  display: block;
}

.news-sec {
  padding: 4.5rem var(--pad) 6rem;
}
.news-list-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news-row-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2.25rem;
  height: 215px;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.news-row-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.news-row-img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  object-position: center center;
  background: #f8f6f2;
  border-right: 1px solid #e2e0dc;
  display: block;
}
.news-row-body {
  padding: 1.25rem 2.25rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #78716c;
  margin-bottom: 0.25rem;
  display: block;
}
.news-title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 0.3rem;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-text {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
@media (max-width: 900px) {
  .news-row-card {
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
  }
  .news-row-body {
    padding: 2rem;
  }
  .news-row-img {
    height: 260px;
    border-right: 0;
    border-bottom: 1px solid #e2e0dc;
  }
}
.news-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
@media (max-width: 820px) {
  .news-row-card {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 4px;
  }
  .news-row-body {
    padding: 1.5rem;
  }
  .news-row-img {
    height: 250px;
    border-right: 0;
    border-bottom: 1px solid #e2e0dc;
}
}

/* ---------- Production Video Embed Section ---------- */
.prod-video-sec {
  padding: 0 var(--pad) clamp(2.5rem, 5vh, 4rem);
  width: 100%;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
