html,
body.film-room {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body.film-room {
  background: #070605;
  color: var(--color-text);
  font-family: var(--font-sans);

}

.film-back {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 20;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,243,238,.58);
}

.film-work-page {
  min-height: 100svh;
  padding: 12vh 6vw 14vh;
}

.film-work-layout {
  width: min(88vw, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.film-work-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(.72) contrast(.96) saturate(.86);
}

.film-label,
.film-work-meta {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245,243,238,.46);
}

.film-work-info h1 {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.film-work-meta {
  margin-top: 1.25rem;
}

.film-work-description {
  margin-top: 2.4rem;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,243,238,.68);
}

.film-details {
  width: min(82vw, 760px);
  margin: 7vh auto 0;
}

.film-statement {
    width: min(82vw, 750px);
    margin: 6vh auto 0;
    text-align: center;
}

.film-work-description p {
    max-width: 34rem;
    margin: 0 auto;

    font-family: var(--font-sans);

    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 300;

    line-height: 1.85;
    letter-spacing: .025em;

    color: rgba(245,243,238,.76);
}

.film-footer-bar {
    width: min(90vw, 1200px);

    margin: 8vh auto 0;
    padding: 2.5rem 0;

    border-top: 1px solid rgba(245,243,238,.14);

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 2rem;

    align-items: start;
}

@media (max-width: 780px) {
  .film-work-layout,
  .film-credits {
    grid-template-columns: 1fr;
  }

  .film-work-page {
    padding: 12vh 6vw;
  }
}
.film-credits {
  text-align: center !important;
}

.film-credits div {
  display: block !important;
  text-align: center !important;
}

.film-credits span,
.film-credits p {
  display: block;
  text-align: center !important;
}
.film-production-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,243,238,.45);
}
.film-curator-note {
    max-width: 34rem;
    margin: 0 auto;

    font-family: var(--font-sans);

    font-size: clamp(1.5rem, 1.5vw, 3.5rem);

    font-weight: 500;

    line-height: 1.9;

    letter-spacing: .025em;

    color: rgba(245,243,238,.76);
}
.film-player {
    margin: 0 auto;
    padding-top: 0;

    width: min(90vw, 1200px);
    aspect-ratio: 16 / 9;

    opacity: 0;
    max-height: 0;

    overflow: hidden;

    transform: translateY(-24px);

    transition:
        max-height 900ms var(--ease-gallery),
        opacity 700ms var(--ease-gallery),
        transform 900ms var(--ease-gallery),
        padding-top 900ms var(--ease-gallery);
}

.film-player.is-visible {
    opacity: 1;
    max-height: 760px;
    padding-top: 2rem;
    transform: translateY(0);
}

.film-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}