/*
Theme Name: Plays2place Editorial
Description: Custom editorial theme for plays2place productions.
Version: 0.1.1
Requires at least: 6.5
Requires PHP: 8.3
Text Domain: plays2place-editorial
*/

/* Locally hosted fonts. */

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("fonts/noto-serif-display-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("fonts/noto-serif-display-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f7f6f2;
  --ink: #20211f;
  --muted: #666760;
  --line: #d8d7cf;
  --accent: #913d38;
  --serif: "Noto Serif Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --gutter: clamp(22px, 5vw, 85px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; }
figure { margin: 0; }
[hidden] { display: none !important; }

::selection { background: #dfc8be; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.wrap {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.muted { color: var(--muted); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 35px;
  padding-bottom: 6px;
  border: 0;
  border-bottom: 1px solid #a6a59b;
  background: none;
  font-size: 12px;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-200%);
}

.skip-link:focus { transform: none; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, .98);
  border-bottom: 1px solid var(--line);
}

.admin-bar .site-header { top: 32px; }

.header-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #a6a79e;
  font-size: 8px;
  letter-spacing: .07em;
}

.brand-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.045em;
}

.brand-name small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.custom-logo-link { display: block; line-height: 0; }

.custom-logo {
  width: auto;
  max-width: 200px;
  max-height: 53px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 4vw, 60px);
}

.nav-link,
.project-menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0;
  background: none;
  font-size: 14px;
  cursor: pointer;
}

.nav-link:hover,
.project-menu > summary:hover {
  color: var(--accent);
}

.project-menu > summary { list-style: none; }
.project-menu > summary::-webkit-details-marker { display: none; }

.menu-plus {
  font-size: 22px;
  transition: transform .25s;
}

.project-menu[open] .menu-plus { transform: rotate(45deg); }

.menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100dvh - 135px);
  overflow: auto;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 25px 35px #20211f12;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 8vw;
  padding-block: 30px 40px;
}

.menu-intro { margin: 0 0 18px; }

.menu-category {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(30px, 3.3vw, 49px);
  line-height: 1.3;
  letter-spacing: -.045em;
}

.menu-category:hover { color: var(--accent); }

.menu-category small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .04em;
}

.menu-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 25px;
}

.menu-feature { display: block; }

.menu-feature .media {
  aspect-ratio: 1.7;
  margin-bottom: 16px;
}

.menu-feature-title {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: -.04em;
}

/* Images */

.media {
  position: relative;
  overflow: hidden;
  background: #dedfd6;
}

.media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  display: grid;
  place-content: center;
  gap: 7px;
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 25px;
  text-align: center;
  color: #e9eee3;
  font-size: 12px;
  background:
    linear-gradient(110deg, transparent 38%, #d7c79d30 49%, transparent 67%),
    linear-gradient(115deg, #1e2c27, #52634e 63%, #293e34);
}

.media-placeholder small {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-wrap {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(12px, 2vw, 32px);
}

.hero-media { height: clamp(310px, 40vw, 620px); }

.hero-link {
  position: relative;
  display: block;
}

.hero-link .media > img {
  transition: transform .8s ease;
}

.hero-link:hover .media > img { transform: scale(1.015); }

.image-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid #f7f6f2bf;
  border-radius: 50%;
  background: #1b25224d;
  color: white;
  font-size: 11px;
  transition: background .25s, color .25s;
}

.hero-link:hover .image-cta {
  background: var(--paper);
  color: var(--ink);
}

/* Homepage */

.home-intro { padding-block: 43px 38px; }
.home-kicker { margin: 0 0 30px; }

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 35px;
  align-items: end;
}

.home-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(63px, 8.4vw, 131px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.07em;
}

.home-title span,
.home-title em {
  display: block;
  font-weight: 400;
}

.home-title em { letter-spacing: -.075em; }

.home-intro-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.feature-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 23px 50px;
}

.feature-title {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4.2vw, 63px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.06em;
}

.feature-title:hover { color: var(--accent); }
.feature-meta { text-align: right; }

.work-section {
  padding-block: 55px 70px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 32px;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.7vw, 70px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.065em;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 28px;
}

.project-card { min-width: 0; }
.project-card > a { display: block; }
.project-card .media { aspect-ratio: 1.65; }

.project-card .media > img {
  transition: transform .65s ease;
}

.project-card:hover .media > img { transform: scale(1.025); }

.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-top: 14px;
}

.card-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 41px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.045em;
}

.project-card:hover .card-title { color: var(--accent); }
.card-arrow { font-size: 23px; }

.card-meta {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-end { margin-top: 33px; }

.about-section {
  padding-block: 65px 80px;
  border-top: 1px solid var(--line);
}

.section-layout {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 50px;
}

.section-label {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-statement {
  margin: 0 0 27px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.4vw, 51px);
  line-height: 1.35;
  letter-spacing: -.045em;
}

.prose {
  color: #52564f;
  font-size: 14px;
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.prose p { margin: 0 0 20px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose img { height: auto; }
.prose iframe { max-width: 100%; }

.about-more { margin-top: 20px; }

.about-more > summary {
  display: inline-block;
  padding: 8px 0;
  border-bottom: 1px solid #a6a59b;
  font-size: 12px;
  cursor: pointer;
  list-style: none;
}

.about-more > summary::-webkit-details-marker { display: none; }
.about-more .when-open { display: none; }
.about-more[open] .when-open { display: inline; }
.about-more[open] .when-closed { display: none; }
.about-more .prose { margin-top: 23px; }

/* Catalogue */

.catalogue { padding-block: 45px 75px; }
.catalogue-intro { margin-bottom: 35px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 26px;
  padding-bottom: 15px;
  margin: 30px 0;
  border-bottom: 1px solid var(--line);
}

.filter-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.filter-link:hover { color: var(--ink); }

.filter-link[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.empty-state {
  padding: 35px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.pagination { margin-top: 45px; }

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: block;
  padding: 10px 13px;
  border: 1px solid var(--line);
  font-size: 12px;
}

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

/* Project */

.project-intro { padding-block: 38px 33px; }
.breadcrumb { font-size: 11px; color: var(--muted); }

.project-title {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: clamp(53px, 7.5vw, 112px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.065em;
  overflow-wrap: anywhere;
}

.project-top-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.standfirst {
  max-width: 830px;
  margin: 27px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: #52564f;
}

.project-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 25px;
}

.project-jumps a {
  padding-bottom: 5px;
  border-bottom: 1px solid #b7b6aa;
  font-size: 10px;
}

.photo-credit {
  padding-block: 13px 34px;
  font-size: 10px;
  color: var(--muted);
}

.availability {
  padding-block: 35px 43px;
  border-top: 1px solid var(--line);
}

.event {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.event:first-child { padding-top: 0; }

.event-date {
  margin: 7px 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.045em;
}

.event-location,
.event-note {
  margin: 5px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.event-venue { margin: 5px 0; font-size: 15px; line-height: 1.6; }
.event-tag { color: var(--accent); }

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 19px;
  border: 1px solid #a8a99f;
  font-size: 11px;
}

.outline-link:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.past-events { margin-top: 23px; }
.past-events > summary { cursor: pointer; font-size: 12px; padding: 10px 0; }
.past-events .event:first-child { padding-top: 20px; }

.reviews-section {
  background: #eeece4;
  padding-block: 55px 60px;
}

.review-lead {
  padding: 8px 0 36px;
  border-bottom: 1px solid #cbc9bf;
}

.review-lead blockquote {
  margin: 0;
  max-width: 1150px;
  font-family: var(--serif);
  color: var(--accent);
  font-size: clamp(31px, 4.3vw, 63px);
  line-height: 1.3;
  letter-spacing: -.04em;
}

.review-lead blockquote p,
.review blockquote p { margin: 0; }

.review-source {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 23px;
  margin-top: 22px;
}

.review-source cite {
  font-style: normal;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-source span,
.review-source time { color: var(--muted); font-size: 11px; }

.review-source a {
  font-size: 10px;
  border-bottom: 1px solid #aaa69a;
  padding-bottom: 4px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  margin-top: 10px;
}

.review { padding: 28px 0; border-bottom: 1px solid #d0cec4; }

.review blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.4;
  letter-spacing: -.035em;
}

.story-section { padding-block: 60px; }

.story-heading {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -.045em;
}

.facts { margin: 0; }

.facts dt {
  margin: 22px 0 6px;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.facts dt:first-child { margin-top: 0; }
.facts dd { margin: 0; font-size: 12px; line-height: 1.7; }
.poster { margin-top: 28px; max-width: 260px; }
.poster img { display: block; width: 100%; height: auto; }

.gallery-section,
.trailer-section { padding-bottom: 60px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
}

.gallery-item img { display: block; width: 100%; height: auto; }

.gallery-item figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.gallery-item figcaption a { text-decoration: underline; }

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 25px;
  background: #252f29;
  color: var(--paper);
  text-align: center;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-load {
  padding: 17px 24px;
  border: 1px solid #cbd2c4;
  background: transparent;
  color: var(--paper);
  font-size: 13px;
}

.video-help {
  max-width: 410px;
  font-size: 11px;
  line-height: 1.8;
  color: #d3d8cd;
}

.video-links { margin-top: 15px; font-size: 11px; }
.video-links a { text-decoration: underline; }

.people-section {
  padding-top: 45px;
  border-top: 1px solid var(--line);
}

.people-block {
  padding-bottom: 37px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.people-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.3;
}

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

.cast-list li {
  padding: 0 0 13px;
  font-size: 16px;
  line-height: 1.7;
}

.cast-list small { display: block; color: var(--muted); font-size: 11px; }
.credit-list { margin: 0; }

.credit-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 25px;
  padding: 10px 0;
  border-bottom: 1px solid #e7e6df;
}

.credit-row:first-child { padding-top: 0; }
.credit-row dt { font-size: 12px; color: var(--muted); line-height: 1.7; }
.credit-row dd { margin: 0; font-size: 14px; line-height: 1.7; }

.project-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-block: 15px 55px;
}

.related {
  padding-block: 45px 60px;
  border-top: 1px solid var(--line);
}

.related .project-grid { grid-template-columns: repeat(3, 1fr); }
.related .card-title { font-size: 27px; }

/* Footer */

.site-footer { padding-block: 42px 24px; background: #eae9e1; }

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  padding-bottom: 40px;
}

.footer-heading {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5.5vw, 81px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.065em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid #cacbc0;
  padding-top: 22px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.fallback-page { min-height: 55vh; padding-block: 50px 70px; }
.fallback-page .prose { margin-top: 30px; }

/* Responsive */

@media (max-width: 1050px) {
  .home-intro-grid { grid-template-columns: 1fr; gap: 27px; }
  .home-intro-copy { max-width: 480px; }
  .home-title { font-size: clamp(65px, 10vw, 112px); }
  .section-layout { grid-template-columns: .65fr 1.35fr; gap: 30px; }
  .event { grid-template-columns: 1fr; gap: 16px; }
  .event .outline-link { justify-self: start; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 28px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 125px; }
  .header-row { min-height: 76px; gap: 15px; }
  .brand-name { font-size: 13px; }
  .brand-name small { font-size: 7px; }
  .logo-box { width: 31px; height: 31px; font-size: 7px; }
  .brand-placeholder { gap: 8px; }
  .main-nav { gap: 17px; }
  .nav-link, .project-menu > summary { font-size: 11px; gap: 5px; }
  .menu-layout { grid-template-columns: 1fr; gap: 0; padding-block: 23px 30px; }
  .menu-feature { display: none; }
  .menu-category { font-size: 35px; }
  .custom-logo { max-width: 120px; max-height: 40px; }
  .home-intro { padding-block: 28px; }
  .home-kicker { font-size: 8px; margin-bottom: 25px; }
  .home-title { font-size: clamp(43px, 11.8vw, 76px); }
  .home-intro-copy p { font-size: 12px; }
  .hero-media { height: 370px; }
  .image-cta { width: 105px; height: 105px; font-size: 10px; }
  .feature-caption { padding-block: 18px 33px; }
  .feature-title { font-size: 35px; }
  .feature-meta { font-size: 8px; }
  .work-section { padding-block: 35px 43px; }
  .section-head { margin-bottom: 24px; align-items: flex-start; }
  .section-head > .eyebrow { display: none; }
  .section-title { font-size: 43px; }
  .project-grid, .related .project-grid { grid-template-columns: 1fr; gap: 29px; }
  .card-title { font-size: 32px; }
  .section-layout { grid-template-columns: 1fr; gap: 24px; }
  .about-section { padding-block: 35px 45px; }
  .about-statement { font-size: 32px; }
  .prose { font-size: 13px; }
  .filters { gap: 4px 20px; }
  .filter-link { font-size: 11px; }
  .catalogue { padding-block: 30px 45px; }
  .project-intro { padding-block: 26px; }
  .project-title { margin-top: 25px; font-size: clamp(44px, 11vw, 72px); }
  .standfirst { font-size: 13px; margin-top: 22px; }
  .project-jumps { gap: 12px 18px; }
  .availability { padding-block: 28px 33px; }
  .event-date { font-size: 34px; }
  .reviews-section { padding-block: 35px 40px; }
  .review-lead blockquote { font-size: 35px; }
  .review-grid { grid-template-columns: 1fr; }
  .review blockquote { font-size: 27px; }
  .story-section { padding-block: 38px; }
  .story-heading { font-size: 35px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-section, .trailer-section { padding-bottom: 40px; }
  .people-section { padding-top: 33px; }
  .people-heading { font-size: 30px; }
  .cast-list li { font-size: 15px; }
  .credit-row { gap: 18px; }
  .credit-row dt { font-size: 11px; }
  .credit-row dd { font-size: 13px; }
  .project-bottom { padding-bottom: 40px; }
  .footer-heading { font-size: 48px; }
}

@media (max-width: 600px) {
  .admin-bar .site-header { top: 0; }
}

@media (max-width: 380px) {
  .main-nav { gap: 11px; }
  .logo-box { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* Match cast names to the other credited names. */
.cast-list li {
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .cast-list li {
    font-size: 13px;
  }
}
/* Highlight the final word of the contact heading. */
.footer-together {
  color: var(--accent);
  font-style: italic;
  font-weight: inherit;
}