:root {
  --ink: #14100f;
  --charcoal: #1d1a18;
  --paper: #f2ece1;
  --paper-soft: #ded4c4;
  --oxide: #a34836;
  --teal: #145c5b;
  --gold: #c39b5b;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 34px;
  color: var(--white);
  background: rgba(20, 16, 15, .82);
  border-bottom: 1px solid rgba(255, 250, 240, .14);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 188px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 250, 240, .08);
  border: 1px solid rgba(255, 250, 240, .24);
  border-radius: 2px;
  cursor: pointer;
}

.menu-toggle-icon {
  display: grid;
  gap: 5px;
  width: 18px;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.nav-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 128px 34px 72px;
  border-bottom: 1px solid rgba(242, 236, 225, .2);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 16, 15, .88) 0%, rgba(20, 16, 15, .52) 42%, rgba(20, 16, 15, .08) 74%),
    linear-gradient(0deg, rgba(20, 16, 15, .82) 0%, rgba(20, 16, 15, .06) 46%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  height: 1px;
  background: rgba(255, 250, 240, .34);
}

.hero-copy {
  width: min(980px, 100%);
}

.section-label,
.production-meta,
.hero-quote span,
.site-footer {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 760px;
  font-size: 96px;
  line-height: .86;
}

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

.hero-statement {
  width: min(920px, 100%);
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: .98;
}

.hero-statement span,
.hero-statement em,
.hero-lockup span,
.hero-lockup em {
  display: block;
}

.hero-statement span,
.hero-lockup span {
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-statement em,
.hero-lockup em {
  margin: 4px 0 6px;
  color: var(--gold);
  font-size: .58em;
  line-height: 1;
}

.hero-note {
  width: min(610px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 250, 240, .84);
  font-size: 19px;
}

.hero-quote {
  position: absolute;
  right: 34px;
  bottom: 72px;
  width: 270px;
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--oxide);
}

.hero-quote p {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.intro,
.productions,
.press {
  padding: 96px 34px;
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.section-label {
  margin-bottom: 24px;
  color: var(--oxide);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(280px, 520px);
  gap: 72px;
  align-items: start;
}

h2 {
  font-size: 52px;
  line-height: 1;
}

.intro-copy {
  color: rgba(20, 16, 15, .78);
  font-size: 19px;
}

.intro-copy p {
  margin: 0 0 22px;
}

.productions {
  background:
    linear-gradient(180deg, rgba(20, 16, 15, .92), rgba(20, 16, 15, 1)),
    var(--charcoal);
}

.productions-heading {
  display: grid;
  grid-template-columns: minmax(260px, 500px) minmax(260px, 430px);
  gap: 72px;
  align-items: end;
  margin-bottom: 36px;
}

.productions-heading p {
  margin: 0;
  color: rgba(242, 236, 225, .72);
  font-size: 17px;
}

.production-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(242, 236, 225, .22);
}

.production-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 34%);
  gap: 24px;
  align-items: baseline;
  min-height: 86px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(242, 236, 225, .18);
}

.production-number {
  color: var(--oxide);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.production-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
}

.production-meta {
  color: rgba(242, 236, 225, .62);
  text-align: right;
}

.production-row:hover {
  color: var(--white);
  background: rgba(195, 155, 91, .07);
}

.production-row:focus-visible,
.archive-card a:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.press {
  background: var(--teal);
  color: var(--white);
}

.press .section-label {
  color: var(--paper-soft);
}

.press h2 {
  max-width: 720px;
}

.press-home {
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid rgba(20, 16, 15, .12);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 250, 240, .24);
}

.press-grid figure {
  min-height: 230px;
  margin: 0;
  padding: 28px;
  display: grid;
  align-content: space-between;
  background: var(--teal);
}

blockquote {
  font-size: 34px;
  line-height: 1.05;
}

figcaption {
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(20, 16, 15, .12);
}

.review-logo-wall figure {
  min-height: 238px;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 24px 30px;
  background: var(--paper);
  text-align: center;
}

.review-logo-wall blockquote {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
  color: rgba(20, 16, 15, .74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.14;
}

.review-logo-wall img {
  width: min(174px, 100%);
  max-height: 48px;
  justify-self: center;
  object-fit: contain;
  filter: saturate(.82) contrast(.95);
}

.review-logo-wall figure:nth-child(2) img {
  width: min(200px, 100%);
}

.review-logo-wall figure:nth-child(3) img {
  width: min(218px, 100%);
}

.review-logo-wall figure:nth-child(4) img {
  width: min(156px, 100%);
}

.press-page-logos {
  padding: 76px 34px;
  background: var(--paper);
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  color: rgba(242, 236, 225, .7);
  background: var(--ink);
}

.footer-brand {
  display: block;
  flex: 0 0 auto;
  width: 172px;
  border: 0;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:not(.footer-brand) {
  border-bottom: 1px solid rgba(242, 236, 225, .35);
}

.page-hero {
  padding: 180px 34px 96px;
  background: var(--paper);
  color: var(--ink);
}

.page-hero.compact {
  padding-bottom: 72px;
}

.page-hero h1 {
  width: min(1040px, 100%);
  font-size: 76px;
  line-height: .95;
}

.about-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 152px 34px 84px;
  color: var(--white);
  background: var(--ink);
}

.about-hero-image,
.about-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.about-hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 16, 15, .9) 0%, rgba(20, 16, 15, .78) 34%, rgba(20, 16, 15, .34) 62%, rgba(20, 16, 15, .08) 100%),
    linear-gradient(0deg, rgba(20, 16, 15, .82) 0%, rgba(20, 16, 15, .16) 58%);
}

.about-hero-copy {
  width: min(1120px, 100%);
  text-align: center;
}

.about-hero .section-label {
  margin-bottom: 20px;
  color: var(--gold);
}

.about-hero h1 {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  font-size: 58px;
  line-height: .98;
}

.page-intro {
  width: min(720px, 100%);
  margin: 26px 0 0;
  color: rgba(20, 16, 15, .72);
  font-size: 22px;
}

.split-section,
.production-body,
.credits,
.legal-copy {
  padding: 96px 34px;
}

.split-section,
.production-body,
.credits {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(280px, 1fr);
  gap: 72px;
}

.split-section {
  background: var(--ink);
  color: var(--paper);
}

.about-copy-section {
  display: grid;
  justify-items: center;
  padding: 96px 34px;
  background: var(--ink);
  color: var(--paper);
}

.rich-copy.about-copy {
  width: min(900px, 100%);
  color: rgba(242, 236, 225, .78);
  font-size: 22px;
  line-height: 1.55;
}

.rich-copy.about-copy p {
  margin: 0 0 26px;
}

.rich-copy.about-copy p:first-child {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.18;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(20, 16, 15, .14);
  color: var(--ink);
}

.team-strip > div {
  min-height: 250px;
  padding: 34px;
  display: grid;
  align-content: end;
  background: var(--paper);
}

.team-strip h2 {
  font-size: 42px;
}

.rich-copy,
.detail-main,
.legal-copy {
  font-size: 19px;
  color: rgba(242, 236, 225, .78);
}

.rich-copy p,
.detail-main p,
.legal-copy p {
  margin: 0 0 22px;
}

.milestones {
  padding: 96px 34px;
  background: var(--teal);
  color: var(--white);
}

.milestones ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 240, .24);
}

.milestones li {
  min-height: 260px;
  padding: 26px;
  background: var(--teal);
}

.milestones span,
.archive-year,
.facts dt {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.milestones strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.milestones p {
  margin: 22px 0 0;
  color: rgba(255, 250, 240, .78);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(242, 236, 225, .2);
}

.archive-card {
  background: var(--ink);
}

.archive-card a {
  display: grid;
  grid-template-rows: 280px 1fr;
  min-height: 520px;
}

.archive-card img,
.archive-image-placeholder {
  width: 100%;
  height: 280px;
}

.archive-card img {
  display: block;
  object-fit: contain;
  padding: 12px;
  background: var(--charcoal);
}

.archive-image-placeholder {
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
}

.archive-card-copy {
  padding: 28px;
}

.archive-card h2 {
  margin: 0;
  font-size: 42px;
}

.archive-card p {
  margin: 0;
  color: rgba(242, 236, 225, .68);
}

.archive-card:hover {
  background: #241f1c;
}

.production-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 46%);
  gap: 34px;
  align-items: start;
  padding: 164px 34px 76px;
  background: var(--paper);
  color: var(--ink);
}

.production-hero-copy {
  padding-top: 8px;
}

.production-hero h1 {
  margin-top: 28px;
  font-size: 84px;
  line-height: .9;
}

.production-media {
  display: grid;
  align-items: start;
  background: transparent;
  color: var(--ink);
}

.production-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(620px, calc(100vh - 220px));
  object-fit: contain;
  background: transparent;
}

.image-placeholder {
  min-height: 520px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid rgba(242, 236, 225, .26);
}

.image-placeholder span,
.image-placeholder em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.image-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: .96;
}

.text-link {
  display: inline-block;
  color: var(--oxide);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.production-body {
  background: var(--ink);
  color: var(--paper);
}

.detail-panel {
  border-top: 1px solid rgba(242, 236, 225, .24);
  padding-top: 24px;
}

.facts {
  margin: 0;
}

.facts div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(242, 236, 225, .14);
}

.facts dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.detail-main p {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.28;
}

.detail-press {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(20, 16, 15, .12);
}

.detail-press .section-label {
  color: var(--oxide);
}

.detail-press h2 {
  color: var(--ink);
}

.detail-press .press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 34px;
  background: transparent;
  border-top: 1px solid rgba(20, 16, 15, .18);
}

.detail-press .press-grid figure {
  min-height: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 32px;
  align-items: baseline;
  background: transparent;
  border-bottom: 1px solid rgba(20, 16, 15, .14);
}

.detail-press blockquote {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
}

.detail-press figcaption {
  color: var(--oxide);
  text-align: right;
}

.credits {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(20, 16, 15, .16);
}

.programme-column {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}

.programme-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(20, 16, 15, .18);
}

.programme-list li {
  break-inside: avoid;
  display: grid;
  grid-template-columns: minmax(120px, 34%) minmax(0, 1fr);
  gap: 22px;
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(20, 16, 15, .18);
}

.cast-list li {
  grid-template-columns: 1fr;
}

.credit-role {
  color: var(--oxide);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.credit-name {
  color: rgba(20, 16, 15, .88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.12;
}

.legal-copy {
  max-width: 860px;
  background: var(--ink);
}

.legal-copy h2 {
  margin: 46px 0 16px;
  font-size: 32px;
}

.press-archive {
  background: var(--ink);
  color: var(--paper);
}

.press-production {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(280px, 1fr);
  gap: 72px;
  padding: 72px 34px;
  border-top: 1px solid rgba(242, 236, 225, .18);
}

.press-production h2 {
  font-size: 40px;
}

.press-production p {
  margin: 18px 0 0;
  color: rgba(242, 236, 225, .62);
}

.press-quote-list {
  display: grid;
  gap: 0;
  background: transparent;
}

.press-quote-list figure {
  min-height: 0;
  margin: 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 32px;
  align-items: baseline;
  border-top: 1px solid rgba(242, 236, 225, .16);
  background: transparent;
}

.press-quote-list blockquote {
  color: var(--paper);
  font-size: 26px;
  line-height: 1.08;
}

.press-quote-list figcaption {
  color: var(--gold);
  text-align: right;
}

@media (max-width: 920px) {
  .site-header {
    padding: 11px 22px;
  }

  .site-nav {
    gap: 13px;
    font-size: 11px;
  }

  .hero {
    min-height: 94vh;
    padding: 104px 22px 66px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(20, 16, 15, .9) 0%, rgba(20, 16, 15, .5) 70%),
      linear-gradient(0deg, rgba(20, 16, 15, .86) 0%, rgba(20, 16, 15, .08) 52%);
  }

  .hero::after {
    left: 22px;
    right: 22px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-statement {
    font-size: 34px;
  }

  .hero-statement span,
  .hero-lockup span {
    white-space: normal;
  }

  .hero-note {
    font-size: 17px;
  }

  .hero-quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 100%);
    margin-top: 36px;
  }

  .intro,
  .productions,
  .press,
  .about-copy-section,
  .split-section,
  .production-body,
  .credits,
  .legal-copy,
  .milestones {
    padding: 72px 22px;
  }

  .intro-grid,
  .productions-heading,
  .split-section,
  .team-strip,
  .production-body,
  .credits,
  .press-production,
  .production-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero {
    padding: 150px 22px 72px;
  }

  .page-hero h1,
  .production-hero h1 {
    font-size: 52px;
  }

  .about-hero {
    min-height: 76vh;
    padding: 132px 22px 68px;
  }

  .about-hero-image {
    object-position: 58% center;
  }

  .about-hero-scrim {
    background:
      linear-gradient(90deg, rgba(20, 16, 15, .92) 0%, rgba(20, 16, 15, .78) 48%, rgba(20, 16, 15, .24) 100%),
      linear-gradient(0deg, rgba(20, 16, 15, .86) 0%, rgba(20, 16, 15, .16) 60%);
  }

  .about-hero h1 {
    max-width: 680px;
    font-size: 40px;
    line-height: 1.03;
  }

  .rich-copy.about-copy {
    font-size: 20px;
  }

  .rich-copy.about-copy p:first-child {
    font-size: 29px;
  }

  .page-intro {
    font-size: 19px;
  }

  .milestones ol,
  .archive-grid,
  .review-logo-wall {
    grid-template-columns: 1fr 1fr;
  }

  .production-hero {
    min-height: auto;
    padding: 150px 22px 72px;
  }

  .image-placeholder {
    min-height: 420px;
  }

  .production-media img {
    max-height: none;
  }

  .detail-main p {
    font-size: 26px;
  }

  .production-row {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 94px;
  }

  .production-meta {
    grid-column: 2;
    text-align: left;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }

  .detail-press .press-grid figure {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 200px);
  }

  .programme-list li {
    grid-template-columns: minmax(110px, 30%) minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: center;
    gap: 16px;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    position: relative;
    z-index: 12;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6px 18px 14px;
    color: var(--white);
    background: rgba(20, 16, 15, .94);
    border-bottom: 1px solid rgba(255, 250, 240, .16);
    box-shadow: 0 22px 42px rgba(20, 16, 15, .34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 250, 240, .14);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: fixed;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;
  }

  .site-nav {
    justify-content: stretch;
    max-width: none;
    gap: 0;
    line-height: 1.2;
  }

  .brand {
    width: 126px;
  }

  .hero-image {
    object-position: 52% 36%;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-statement {
    font-size: 32px;
  }

  .production-title,
  blockquote {
    font-size: 28px;
  }

  .site-footer {
    display: grid;
    gap: 20px;
    padding: 24px 22px;
  }

  .footer-meta {
    justify-content: flex-start;
  }

  .page-hero h1,
  .production-hero h1 {
    font-size: 42px;
  }

  .about-hero {
    min-height: 72vh;
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .about-hero-image {
    object-position: 63% center;
  }

  .about-hero-scrim {
    background:
      linear-gradient(90deg, rgba(20, 16, 15, .94) 0%, rgba(20, 16, 15, .84) 62%, rgba(20, 16, 15, .38) 100%),
      linear-gradient(0deg, rgba(20, 16, 15, .88) 0%, rgba(20, 16, 15, .22) 62%);
  }

  .about-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .rich-copy.about-copy {
    font-size: 18px;
    line-height: 1.55;
  }

  .rich-copy.about-copy p:first-child {
    font-size: 24px;
    line-height: 1.22;
  }

  .archive-grid,
  .milestones ol,
  .team-strip,
  .review-logo-wall {
    grid-template-columns: 1fr;
  }

  .archive-card {
    min-height: 260px;
  }

  .archive-card h2,
  .image-placeholder strong {
    font-size: 30px;
  }

  .detail-main p {
    font-size: 22px;
  }

  .image-placeholder {
    min-height: 320px;
  }

  .review-logo-wall figure {
    min-height: 190px;
  }

  .review-logo-wall blockquote,
  .press-quote-list blockquote {
    font-size: 26px;
  }

  .press-quote-list figure {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .press-quote-list figcaption {
    text-align: left;
  }

  .detail-press .press-grid figure,
  .programme-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-press figcaption {
    text-align: left;
  }

  .credit-name {
    font-size: 21px;
  }
}
