:root {
  color-scheme: dark;
  --background: #111;
  --text: #f7f7f7;
  --muted: #cfcfcf;
  --rule: rgba(255,255,255,.13);
  --max: 960px;
  --video: 416px;
  --gap: 78px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--background); }
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, #171717 0, var(--background) 46rem);
  color: var(--text);
  font-family: Futura, "Futura LT", "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
  text-rendering: geometricPrecision;
  animation: page-in 220ms ease-out both;
}
@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: .045em;
  text-underline-offset: .18em;
  opacity: .78;
  transition: opacity 160ms ease, text-decoration-thickness 160ms ease;
}
a:hover { opacity: 1; color: #fff; text-decoration-thickness: .07em; }
a:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }
.site {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 28px);
}
.home { padding-top: clamp(52px, 9vw, 94px); padding-bottom: 54px; }
.hero-reel {
  max-width: 960px;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.10);
  background: #000;
}
.hero-reel iframe,
.scene iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}
.primary-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 6vw, 54px);
  margin-top: clamp(48px, 8vw, 78px);
  font-size: clamp(27px, 4vw, 34px);
  line-height: 1.15;
  letter-spacing: .015em;
}
.representation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: clamp(50px, 7vw, 68px);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.35;
  color: #f1f1f1;
}
.representation p { margin: 0; }
.representation div:last-child { text-align: right; }
.imdb-link {
  margin: clamp(30px, 5vw, 44px) 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.imdb-link a { text-decoration-thickness: .04em; }
.more { padding-top: 28px; padding-bottom: 64px; }
.more-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 68px);
}
.more-header h1 {
  margin: 0 0 28px;
  font-weight: 400;
  font-size: clamp(31px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: .045em;
}
.more-header nav {
  display: inline-flex;
  align-items: baseline;
  gap: 34px;
  font-size: 19px;
}
.more-header nav a:last-child {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--video)));
  gap: 54px var(--gap);
  justify-content: center;
}
.scene {
  position: relative;
  padding-bottom: 24px;
}
.scene::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 0;
  border-bottom: 1px solid var(--rule);
}
.scene-video {
  background: #000;
  border: 1px solid rgba(255,255,255,.09);
}
.scene h2 {
  margin: 15px 0 0;
  font-weight: 400;
  line-height: 1.18;
  text-align: center;
}
.scene h2 span {
  display: block;
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}
.scene h2 small {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  letter-spacing: .018em;
  color: var(--muted);
}
.scene-note {
  margin: 9px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}
.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;
}
@media (max-width: 959px) {
  .representation { grid-template-columns: 1fr; text-align: left; }
  .representation div:last-child { text-align: left; }
  .scene-grid { grid-template-columns: minmax(0, 416px); row-gap: 44px; }
  .scene { padding-bottom: 22px; }
}
@media (max-width: 520px) {
  .primary-links { flex-direction: column; gap: 18px; margin-top: 50px; }
  .more-header nav { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  a { transition: none; }
}
