:root {
  color-scheme: dark;
  --ink: #050505;
  --paper: #f2efe9;
  --muted: #9a9995;
  --line: rgba(255, 255, 255, 0.16);
  --acid: #d8ff36;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header,
main,
footer {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.site-header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a {
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:last-child {
  color: var(--acid);
}

.hero {
  min-height: calc(100svh - 110px);
  padding: 86px 0 62px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 44px 0 0;
  max-width: 1320px;
  font-size: clamp(58px, 9.4vw, 144px);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.82;
  text-transform: uppercase;
}

em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

.hero-bottom {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(280px, 500px) 1fr;
  gap: 40px;
  align-items: end;
}

.intro {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.round-link {
  width: 126px;
  height: 126px;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.round-link b {
  font-size: 22px;
}

.round-link:hover {
  background: var(--acid);
  color: var(--ink);
  transform: rotate(-5deg);
}

.work {
  padding: 150px 0 120px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 84px;
}

.section-heading h2 {
  margin: -8px 0 0;
  font-size: clamp(44px, 6.3vw, 96px);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.film-card {
  min-width: 0;
}

.film-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #171717;
  color: white;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.film-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.8,.2,1), filter 400ms ease;
}

.film-card--dark .film-trigger img {
  object-position: center 28%;
}

.film-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.82));
}

.film-trigger:hover img,
.film-trigger:focus-visible img {
  transform: scale(1.035);
  filter: contrast(1.06);
}

.play,
.duration {
  position: absolute;
  bottom: 24px;
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.play {
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.play i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
}

.play i::after {
  content: "";
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--ink);
}

.duration {
  right: 24px;
}

.film-meta {
  padding: 22px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.film-meta h3,
.film-number,
.film-meta p {
  margin: 0;
}

.film-number {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.film-meta h3 {
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -0.055em;
}

.film-meta > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.disclaimer {
  margin: 20px 0 0;
  color: #666;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.manifesto {
  min-height: 86svh;
  padding: 130px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.manifesto blockquote {
  margin: 52px 0 90px;
  max-width: 1240px;
  font-size: clamp(48px, 7.2vw, 110px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

.capabilities span {
  flex: 1 1 180px;
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact {
  padding: 140px 0 160px;
  border-top: 1px solid var(--line);
}

.contact h2 {
  margin-bottom: 54px;
  font-size: clamp(54px, 8vw, 124px);
}

.contact > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-link {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, padding 180ms ease;
}

.contact-link:hover {
  padding-inline: 16px;
  color: var(--acid);
}

footer {
  min-height: 180px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 30px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

footer p:last-child {
  text-align: right;
}

.player-modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.96);
  color: var(--paper);
}

.player-modal::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.player-shell {
  width: 100%;
  height: 100%;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.player-bar {
  height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.player-bar p,
.close-player {
  margin: 0;
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.close-player {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.player-modal video {
  width: 100%;
  height: calc(100% - 54px);
  object-fit: contain;
  background: #000;
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1440px);
  }

  .site-header {
    height: 86px;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 86px);
    padding: 58px 0 34px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: clamp(50px, 16.2vw, 84px);
    line-height: 0.85;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .round-link {
    width: 96px;
    height: 96px;
    padding: 18px;
    justify-self: start;
  }

  .work,
  .contact {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .section-heading h2 {
    margin-top: 10px;
  }

  .film-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .film-trigger {
    aspect-ratio: 9 / 13;
  }

  .film-meta {
    padding-bottom: 12px;
  }

  .manifesto {
    min-height: auto;
    padding: 96px 0;
  }

  .manifesto blockquote {
    margin-bottom: 60px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer p:last-child {
    display: none;
  }

  .player-shell {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
