:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --surface: #0b0b0b;
  --ink: #efefef;
  --muted: #efefef;
  --dim: #efefef;
  --line: #242424;
  --focus: #9bc8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 0.9rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: inherit;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  max-width: 1480px;
  margin: 0 auto;
  padding: 1.15rem clamp(1rem, 2.4vw, 2rem);
}

.archive-header {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 1rem;
  align-items: start;
  min-height: 310px;
}

.archive-filter,
.site-nav {
  display: flex;
  gap: 0.25rem;
  text-transform: uppercase;
}

.archive-filter {
  flex-direction: column;
  align-items: flex-start;
}

.filter-title,
.archive-filter a,
.site-nav a,
.contact-link,
.eyebrow,
.work-label,
.work-summary {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.filter-title {
  margin-bottom: 1.7rem;
  color: var(--ink);
}

.archive-filter a,
.site-nav a,
.contact-link,
.brand {
  color: var(--muted);
  text-decoration: none;
}

.archive-filter a:hover,
.archive-filter a:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.brand:hover,
.brand:focus-visible {
  color: var(--ink);
}

.masthead {
  text-align: center;
}

.masthead h1,
.film-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
}

.masthead h1 {
  font-size: clamp(4rem, 10vw, 11rem);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
}

.tagline,
.logline {
  max-width: 680px;
  margin: 1rem auto 0;
  color: #d7d0c6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.contact-link {
  justify-self: end;
  text-transform: uppercase;
}

main {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.4vw, 2rem) 4rem;
}

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

.work-section {
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(1.75rem, 3.2vw, 3.4rem);
  row-gap: clamp(2rem, 4vw, 4rem);
}

.work-card a {
  display: grid;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
}

.work-label,
.work-summary {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
}

.work-card a:hover .work-label,
.work-card a:focus-visible .work-label,
.work-card a:hover .work-summary,
.work-card a:focus-visible .work-summary {
  color: var(--ink);
}

.poster {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  border: 1px solid #191919;
  background: var(--surface);
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.work-card a:hover .poster,
.work-card a:focus-visible .poster {
  filter: contrast(1.08) brightness(1.08);
  transform: translateY(-2px);
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.two-column,
.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 6vw, 5rem);
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section p {
  margin-top: 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: end;
}

.portrait {
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 1px solid var(--line);
  object-fit: cover;
}

.contact-panel {
  border-bottom: 1px solid var(--line);
}

.contact-panel a {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 5.6rem);
  letter-spacing: -0.08em;
  overflow-wrap: anywhere;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.13em;
}

.compact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.film-hero {
  position: relative;
  display: grid;
  min-height: 74vh;
  overflow: hidden;
  align-items: end;
  padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 4rem);
  isolation: isolate;
}

.media-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.media-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.88));
}

.film-hero h1 {
  font-size: clamp(5rem, 16vw, 16rem);
}

.film-hero .logline {
  margin-inline: 0;
  color: #f0ebe3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  background: transparent;
  color: var(--ink);
}

.watch-panel {
  position: relative;
  display: grid;
  min-height: 56vh;
  overflow: hidden;
  align-items: end;
  border: 1px solid #191919;
  color: var(--ink);
  padding: clamp(1.25rem, 5vw, 2rem);
  isolation: isolate;
}

.image-panel > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.8));
}

.watch-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.watch-panel p:not(.eyebrow) {
  max-width: 520px;
  color: #f2ede4;
}

.film-details {
  padding-bottom: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.details-grid div {
  min-height: 130px;
  background: var(--bg);
  padding: 1rem;
}

.details-grid dt {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.details-grid dd {
  margin: 1.4rem 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.stills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 1.5rem;
}

.stills-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid #191919;
  object-fit: cover;
}

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

  .poster {
    transition: none;
  }
}

@media (max-width: 980px) {
  .archive-header {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .masthead {
    text-align: left;
  }

  .tagline {
    margin-inline: 0;
  }

  .contact-link {
    justify-self: start;
  }

  .archive-filter {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
  }

  .filter-title {
    margin: 0 0.5rem 0 0;
  }

  .archive-grid,
  .stills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .about-panel,
  .details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header,
  main {
    padding-inline: 0.85rem;
  }

  .compact-header {
    display: block;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 0.8rem;
  }

  .archive-grid,
  .about-copy,
  .stills-grid {
    grid-template-columns: 1fr;
  }

  .film-hero {
    min-height: 68vh;
  }
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 24rem);
}

.atmosphere span {
  position: absolute;
  display: block;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.16;
  transform: translate3d(0, 0, 0);
  animation: drift 18s ease-in-out infinite alternate;
}

.atmosphere span:nth-child(1) {
  left: -10rem;
  top: 16rem;
  background: #183f3b;
}

.atmosphere span:nth-child(2) {
  right: -12rem;
  top: 28rem;
  background: #4a2f18;
  animation-duration: 23s;
}

.atmosphere span:nth-child(3) {
  left: 40%;
  bottom: -18rem;
  background: #182b45;
  animation-duration: 27s;
}

@keyframes drift {
  from {
    transform: translate3d(-1.5rem, -1rem, 0) scale(0.96);
  }

  to {
    transform: translate3d(1.5rem, 1rem, 0) scale(1.04);
  }
}

.voice-line {
  max-width: 42rem;
  margin: 1.1rem auto 0;
  color: #928b82;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.work-card {
  position: relative;
}

.work-card a {
  grid-template-columns: 1fr auto;
}

.work-label,
.poster,
.work-tease {
  grid-column: 1 / -1;
}

.work-summary {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.work-tease {
  min-height: 1.1rem;
  color: #787169;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(-0.3rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-card a:hover .work-tease,
.work-card a:focus-visible .work-tease {
  opacity: 1;
  transform: translateY(0);
}

.work-card a:hover .poster,
.work-card a:focus-visible .poster {
  filter: contrast(1.08) brightness(1.12) saturate(1.04);
  transform: translateY(-0.25rem) scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere span {
    animation: none;
  }

  .work-tease {
    transition: none;
  }
}

@media (max-width: 980px) {
  .voice-line {
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .voice-line {
    max-width: 28rem;
  }

  .work-tease {
    opacity: 1;
    transform: none;
  }
}

.cinema-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.28fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: end;
  margin: clamp(-3rem, -2vw, -1rem) 0 clamp(3rem, 7vw, 7rem);
}

.loop-frame {
  position: relative;
  min-height: clamp(24rem, 54vw, 42rem);
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.12);
  background: #050505;
  isolation: isolate;
}

.loop-frame::before,
.loop-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loop-frame::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 35%, transparent 68%, rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.9));
}

.loop-frame::after {
  z-index: 3;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 100% 7px;
  mix-blend-mode: screen;
}

.loop-video,
.loop-video-fallback,
.loop-video-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loop-video-fallback img {
  filter: saturate(0.82) contrast(1.12) brightness(0.72);
  transform: scale(1.02);
  animation: slow-breathe 12s ease-in-out infinite alternate;
}

.loop-copy {
  position: absolute;
  z-index: 4;
  left: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  max-width: 48rem;
}

.loop-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
}

.intro-note {
  max-width: 22rem;
  margin: 0;
  color: #9d968d;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.archive-grid {
  align-items: start;
}

.work-card:nth-child(2n) {
  margin-top: clamp(1.5rem, 4vw, 4rem);
}

.work-card:nth-child(4n) {
  margin-top: clamp(0.5rem, 2vw, 2rem);
}

.work-card:nth-child(5) {
  grid-column: span 2;
}

.work-card:nth-child(5) .poster {
  aspect-ratio: 2.2 / 1;
}

.work-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.work-card a::after {
  content: "OPEN";
  position: absolute;
  right: 0.75rem;
  top: 2.55rem;
  z-index: 2;
  border: 1px solid rgba(244, 241, 234, 0.42);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.55rem;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-card a:hover::after,
.work-card a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-breathe {
  from {
    transform: scale(1.02) translate3d(-0.4rem, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(0.4rem, -0.25rem, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loop-video-fallback img {
    animation: none;
  }

  .work-card a::after {
    transition: none;
  }
}

@media (max-width: 980px) {
  .cinema-intro {
    grid-template-columns: 1fr;
  }

  .intro-note {
    max-width: 34rem;
  }

  .work-card:nth-child(5) {
    grid-column: auto;
  }

  .work-card:nth-child(5) .poster {
    aspect-ratio: 1.55 / 1;
  }
}

@media (max-width: 640px) {
  .cinema-intro {
    margin-top: 1.5rem;
  }

  .loop-frame {
    min-height: 30rem;
  }

  .loop-copy h2 {
    font-size: clamp(2.6rem, 14vw, 5rem);
  }

  .work-card:nth-child(n) {
    margin-top: 0;
  }

  .work-card a::after {
    display: none;
  }
}

.text-work {
  position: relative;
  min-height: 100vh;
  margin-top: clamp(3rem, 8vw, 8rem);
  padding: clamp(3rem, 7vw, 6rem) 0;
  isolation: isolate;
}

.hover-backdrops {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: transparent;
}

.hover-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.82) contrast(1.08) brightness(0.58);
  transform: scale(1.04);
  transition: opacity 260ms ease, transform 800ms ease;
}

.hover-backdrops::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.5) 56%, rgba(2, 2, 2, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 36%, rgba(0, 0, 0, 0.68));
  transition: opacity 260ms ease;
}

.work-list {
  display: grid;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(244, 241, 234, 0.16);
}

.work-line {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) minmax(8rem, 0.28fr);
  gap: clamp(0.75rem, 2vw, 2rem);
  align-items: baseline;
  min-height: clamp(5.6rem, 9vw, 8.5rem);
  border-bottom: 1px solid rgba(244, 241, 234, 0.16);
  color: var(--ink);
  text-decoration: none;
}

.work-line span,
.work-line em {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 11rem);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.82;
  text-transform: uppercase;
  transition: transform 180ms ease, letter-spacing 180ms ease, color 180ms ease;
}

.work-line:hover strong,
.work-line:focus-visible strong {
  color: #ffffff;
  letter-spacing: -0.095em;
  transform: translateX(0.6rem);
}

body:has(.work-line-1:hover) .hover-backdrop-1,
body:has(.work-line-1:focus-visible) .hover-backdrop-1,
body:has(.work-line-2:hover) .hover-backdrop-2,
body:has(.work-line-2:focus-visible) .hover-backdrop-2,
body:has(.work-line-3:hover) .hover-backdrop-3,
body:has(.work-line-3:focus-visible) .hover-backdrop-3,
body:has(.work-line-4:hover) .hover-backdrop-4,
body:has(.work-line-4:focus-visible) .hover-backdrop-4,
body:has(.work-line-5:hover) .hover-backdrop-5,
body:has(.work-line-5:focus-visible) .hover-backdrop-5,
body:has(.work-line-6:hover) .hover-backdrop-6,
body:has(.work-line-6:focus-visible) .hover-backdrop-6,
body:has(.work-line-7:hover) .hover-backdrop-7,
body:has(.work-line-7:focus-visible) .hover-backdrop-7,
body:has(.work-line-8:hover) .hover-backdrop-8,
body:has(.work-line-8:focus-visible) .hover-backdrop-8 {
  opacity: 1;
  transform: scale(1);
}

body:has(.work-line:hover) .hover-backdrops::after,
body:has(.work-line:focus-visible) .hover-backdrops::after {
  opacity: 1;
}

body:has(.work-line:hover) .atmosphere,
body:has(.work-line:focus-visible) .atmosphere {
  opacity: 0.04;
}

@supports not selector(body:has(*)) {
  .hover-backdrops {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hover-backdrop,
  .hover-backdrops::after,
  .work-line strong {
    transition: none;
  }
}

@media (max-width: 760px) {
  .text-work {
    min-height: auto;
  }

  .work-line {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    min-height: 6.5rem;
  }

  .work-line em {
    grid-column: 2;
  }

  .work-line strong {
    font-size: clamp(2.7rem, 14vw, 6rem);
  }
}

.video-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  margin: clamp(-2rem, -1vw, -1rem) 0 clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  place-items: end start;
  border: 1px solid rgba(244, 241, 234, 0.1);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.72);
}

.video-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 42%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.56) 55%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 42%, rgba(0, 0, 0, 0.4));
}

.video-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 100% 6px;
  mix-blend-mode: screen;
}

.hero-title-card {
  max-width: min(58rem, 88vw);
  padding: clamp(1rem, 3vw, 2.25rem);
}

.hero-title-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-title-card p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: #d7d0c6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
}

.scroll-cue {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: " ↓";
}

@media (max-width: 760px) {
  .video-hero {
    min-height: 92svh;
  }

  .hero-title-card h2 {
    font-size: clamp(3rem, 16vw, 6rem);
  }
}

.video-hero {
  margin-top: 0;
  place-items: center;
}

.hero-video {
  filter: saturate(0.92) contrast(1.03) brightness(0.88);
}

.video-shade {
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 22%, rgba(0, 0, 0, 0.38));
}

.video-shade::after {
  opacity: 0.045;
}

.video-nameplate {
  width: min(78rem, 90vw);
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
  mix-blend-mode: screen;
}

.video-nameplate h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 13vw, 15rem);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.8;
  text-transform: uppercase;
}

.video-nameplate p:not(.eyebrow) {
  margin: 1.15rem 0 0;
  color: #f4f1ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-style: italic;
}

.hero-title-card,
.scroll-cue {
  display: none;
}

@media (max-width: 760px) {
  .video-nameplate h2 {
    font-size: clamp(4rem, 19vw, 7rem);
  }
}

.compact-masthead {
  display: grid;
  justify-items: center;
}

.compact-masthead span {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.video-shade {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 30%, rgba(0, 0, 0, 0.2));
}

.hero-video {
  filter: saturate(0.95) contrast(1.02) brightness(0.98);
}

.video-nameplate {
  mix-blend-mode: normal;
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.62), 0 0 0.35rem rgba(0, 0, 0, 0.7);
}

.video-nameplate h1 {
  margin: 0;
  color: rgba(244, 241, 234, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 13vw, 15rem);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.8;
  text-transform: uppercase;
}

.video-nameplate h2 {
  display: none;
}

.video-nameplate p:not(.eyebrow) {
  color: rgba(244, 241, 234, 0.82);
}

@media (max-width: 760px) {
  .video-nameplate h1 {
    font-size: clamp(4rem, 19vw, 7rem);
  }
}

.archive-header {
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  min-height: 0;
  padding-bottom: 0;
}

.archive-header .contact-link {
  grid-column: 3;
}

.video-hero {
  margin-top: 0;
  border: 0;
}

.video-shade,
.video-shade::after {
  display: none;
  background: none;
}

.hero-video {
  filter: none;
}

.video-nameplate {
  text-shadow: none;
}

.video-nameplate h1 {
  color: rgba(244, 241, 234, 0.72);
}

.video-nameplate p:not(.eyebrow) {
  color: rgba(244, 241, 234, 0.82);
}

.video-hero::before,
.video-hero::after,
.video-nameplate::before,
.video-nameplate::after,
.hero-video::before,
.hero-video::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.video-shade,
.video-shade::before,
.video-shade::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.video-hero {
  background: transparent !important;
  box-shadow: none !important;
}

.hero-video {
  opacity: 1 !important;
  filter: saturate(0.86) contrast(1.08) brightness(0.72) !important;
}

body {
  background: #0b0b0b;
}

.site-header.archive-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  max-width: none;
  width: 100%;
  padding: 1rem clamp(1rem, 3vw, 2rem) 0;
  pointer-events: none;
}

.site-header.archive-header a,
.site-header.archive-header .filter-title {
  pointer-events: auto;
}

main {
  max-width: none;
  padding: 0;
}

.video-hero {
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 0 clamp(4rem, 8vw, 8rem);
  border: 0;
  background: transparent !important;
  overflow: hidden;
}

.hero-video {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  object-fit: cover;
  object-position: center center;
}

.video-nameplate {
  z-index: 2;
}

.text-work,
.section {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 2.4vw, 2rem);
  padding-right: clamp(1rem, 2.4vw, 2rem);
}

.video-hero,
.hero-video {
  inset: auto;
  box-shadow: none !important;
  clip-path: none !important;
  border-radius: 0 !important;
}

.hero-video {
  display: block;
  opacity: 1 !important;
  filter: saturate(0.86) contrast(1.08) brightness(0.72) !important;
}

.video-nameplate h1 {
  color: rgba(244, 241, 234, 0.6);
}

.video-nameplate p:not(.eyebrow) {
  color: rgba(244, 241, 234, 0.72);
}

.video-player-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.28fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #191919;
  background: #0b0b0b;
}

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

.player-caption h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.player-caption p:not(.eyebrow) {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.crew-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 6vw, 5rem);
}

.crew-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.crew-list div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  background: var(--bg);
  padding: 1rem;
}

.crew-list dt {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.crew-list dd {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

@media (max-width: 980px) {
  .video-player-section,
  .crew-section,
  .crew-list div {
    grid-template-columns: 1fr;
  }
}

.title-link {
  display: inline-block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 16rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-decoration: none;
  text-transform: uppercase;
}

.title-link:hover,
.title-link:focus-visible {
  color: #ffffff;
}

.simple-watch {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.watch-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0b0b0b;
  color: var(--ink);
  text-decoration: none;
}

.watch-poster img {
  width: 100%;
  max-height: 82vh;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.04);
  transition: filter 180ms ease, transform 260ms ease;
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 241, 234, 0.72);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.1rem;
  text-transform: uppercase;
}

.watch-poster:hover img,
.watch-poster:focus-visible img {
  filter: brightness(1) contrast(1.04);
  transform: scale(1.01);
}

.video-player-section,
.player-frame,
.player-caption {
  display: none;
}

/* Stability pass for the current full-bleed layout. */
.video-nameplate h1 {
  color: rgba(244, 241, 234, 0.84);
  font-size: clamp(4rem, 11.5vw, 12rem);
  line-height: 0.86;
  text-shadow: 0 0.08em 0.7em rgba(0, 0, 0, 0.82);
}

.video-nameplate p:not(.eyebrow) {
  color: rgba(244, 241, 234, 0.9);
  text-shadow: 0 0.08em 0.7em rgba(0, 0, 0, 0.82);
}

.work-line {
  min-height: clamp(4.8rem, 7.8vw, 7.4rem);
}

.work-line strong {
  font-size: clamp(2.8rem, 7.7vw, 8.8rem);
  line-height: 0.9;
}

.film-hero {
  min-height: min(74vh, 46rem);
}

.film-hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 11rem);
  overflow-wrap: anywhere;
}

.title-link {
  font-size: inherit;
}

.watch-panel {
  text-decoration: none;
  transition: filter 180ms ease;
}

.watch-panel:hover,
.watch-panel:focus-visible {
  filter: brightness(1.08);
}

.watch-panel::before {
  content: "▶ Play film";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 241, 234, 0.72);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .video-nameplate {
    width: min(34rem, 92vw);
  }

  .video-nameplate h1 {
    font-size: clamp(3.5rem, 17vw, 6.6rem);
  }

  .work-line {
    align-items: start;
    min-height: 0;
    padding: 1rem 0;
  }

  .work-line strong {
    font-size: clamp(2.35rem, 12.5vw, 4.8rem);
    letter-spacing: -0.07em;
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .work-line:hover strong,
  .work-line:focus-visible strong {
    letter-spacing: -0.07em;
    transform: none;
  }

  .film-hero {
    min-height: 66vh;
  }

  .film-hero h1 {
    font-size: clamp(3.4rem, 16vw, 6.4rem);
    letter-spacing: -0.07em;
  }

  .details-grid div {
    min-height: 8rem;
  }
}

.project-page {
  min-height: 100svh;
  overflow-x: hidden;
}

.project-page .compact-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  max-width: none;
  width: 100%;
  padding: 1rem clamp(1rem, 3vw, 2rem);
}

.project-page .brand {
  color: #efefef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
}

.project-page main {
  max-width: none;
  padding: 0;
}

.project-page .film-hero {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: clamp(5.5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem) clamp(1.2rem, 4vw, 3rem);
  align-items: end;
}

.project-page .media-hero > img {
  opacity: 0.84;
  filter: saturate(0.92) contrast(1.06) brightness(0.78);
}

.project-page .media-hero::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 32%, rgba(0, 0, 0, 0.9)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 60%);
}

.project-page .film-hero-content {
  display: grid;
  gap: clamp(0.75rem, 1.8vw, 1.2rem);
  width: min(64rem, 100%);
}

.project-page .film-hero h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 13vw, 13rem);
  letter-spacing: -0.085em;
  line-height: 0.8;
}

.project-page .title-link {
  color: inherit;
  text-decoration: none;
}

.project-page .logline {
  max-width: 34rem;
  margin: 0;
  color: rgba(244, 241, 234, 0.92);
}

.project-meta {
  max-width: 42rem;
  margin: 0;
  color: rgba(244, 241, 234, 0.66);
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-page .button {
  min-height: clamp(4.4rem, 8vw, 6.5rem);
  margin-top: clamp(0.6rem, 1.5vw, 1rem);
  border-radius: 999px;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  letter-spacing: 0.06em;
  padding: 1rem clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.34);
}

.project-page .button:hover,
.project-page .button:focus-visible {
  background: rgba(244, 241, 234, 0.08);
  color: var(--ink);
}

/* Homepage: restrained director portfolio index. */
.portfolio-index {
  background: #0b0b0b;
  color: #efefef;
  font-family: Georgia, "Times New Roman", serif;
}

.portfolio-index main {
  max-width: none;
  padding: 0;
}

.portfolio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 7.5rem;
  padding: 1.5rem clamp(1rem, 1.5vw, 1.5rem);
}

.portfolio-brand,
.portfolio-nav a {
  color: #efefef;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1;
  text-decoration: none;
}

.portfolio-nav {
  display: flex;
  gap: clamp(1.25rem, 2vw, 2.2rem);
  align-items: center;
}

.portfolio-nav a {
  position: relative;
  padding-bottom: 0.35rem;
}

.portfolio-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #efefef;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.portfolio-nav a:hover::after,
.portfolio-nav a:focus-visible::after,
.portfolio-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.portfolio-nav a:hover,
.portfolio-nav a:focus-visible,
.portfolio-nav a.is-active {
  color: #efefef;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 1.5vw, 1.5rem) clamp(2.5rem, 5vw, 4rem);
}

.portfolio-intro-copy {
  display: grid;
  align-content: start;
  min-width: 0;
}

.portfolio-intro h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #efefef;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.4rem, 4.25vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.portfolio-intro h1 span {
  color: #efefef;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.portfolio-intro-callout {
  grid-column: 1 / -1;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  margin-top: clamp(1rem, 2vw, 2rem);
  text-align: center;
}

.portfolio-intro-callout p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.portfolio-intro-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14.5rem;
  min-height: 3.35rem;
  border: 1px solid #efefef;
  color: #efefef;
  font-size: 1rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.portfolio-intro-callout a:hover,
.portfolio-intro-callout a:focus-visible {
  background: #efefef;
  color: #0b0b0b;
}

.portfolio-reel {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: #0b0b0b;
  object-fit: cover;
  position: static;
  float: none;
}

.portfolio-reel-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.portfolio-reel-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.portfolio-reel-link:hover .portfolio-reel,
.portfolio-reel-link:focus-visible .portfolio-reel {
  filter: brightness(1.08);
}

.portfolio-work {
  scroll-margin-top: 1rem;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 1.5vw, 1.5rem) clamp(6rem, 10vw, 10rem);
}

.portfolio-work-page .portfolio-work {
  padding-top: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(0.5rem, 0.8vw, 0.85rem);
  row-gap: clamp(2.66rem, 4.9vw, 5.25rem);
}

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

.portfolio-card a {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0b0b;
  color: #efefef;
  text-decoration: none;
}

.portfolio-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.9);
  transition: filter 300ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portfolio-card-copy {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 1rem;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}

.portfolio-card-copy strong,
.portfolio-card-copy em {
  display: block;
  font-size: clamp(0.83rem, 1.035vw, 0.99rem);
  font-weight: 300;
  line-height: 1.15;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.portfolio-card-copy em {
  margin-top: 0.12rem;
  font-style: normal;
}

.portfolio-card a:hover video,
.portfolio-card a:focus-visible video {
  filter: brightness(1) saturate(1);
  transform: scale(1.025);
}

.portfolio-info {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 8vw, 10rem);
  max-width: 92rem;
  margin: 0 auto;
  border-top: 1px solid #efefef;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 2.5vw, 2.5rem);
}

.portfolio-info h2,
.portfolio-info p {
  margin: 0;
  font: inherit;
}

.portfolio-info h2 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
}

.portfolio-info p {
  max-width: 38rem;
  color: #efefef;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.35;
}

.portfolio-info p + p {
  margin-top: 1.5rem;
}

.portfolio-contact {
  align-items: baseline;
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.portfolio-contact a {
  color: #efefef;
  font-size: clamp(0.875rem, calc(4vw - 10px), 3.875rem);
  line-height: 1;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-nav a::after,
  .portfolio-intro-callout a,
  .portfolio-card video {
    transition: none;
  }
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .portfolio-header {
    align-items: flex-start;
    min-height: 6.5rem;
  }

  .portfolio-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1.5rem;
  }

  .portfolio-intro h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.2rem);
    line-height: 1.04;
  }

  .portfolio-intro-copy {
    gap: 0;
  }

  .portfolio-intro-callout {
    grid-column: 1;
    margin-top: 0;
  }

  .portfolio-intro-callout a {
    width: 100%;
  }

  .portfolio-reel {
    width: 100%;
  }

  .portfolio-nav {
    gap: 0.9rem;
  }

  .portfolio-nav a,
  .portfolio-brand {
    font-size: 0.95rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    row-gap: 0.7rem;
  }

  .portfolio-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.project-gallery {
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid rgba(244, 241, 234, 0.14);
  padding: clamp(2.25rem, 6vw, 5rem) clamp(1rem, 2.4vw, 2rem) clamp(3rem, 7vw, 6rem);
}

.project-gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
}

.project-gallery h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
}

.project-gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(244, 241, 234, 0.1);
  background: var(--surface);
  object-fit: cover;
}

.project-gallery-grid-three img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 760px) {
  .project-page .compact-header {
    display: flex;
    align-items: flex-start;
    padding: 0.85rem;
  }

  .project-page .site-nav {
    margin-top: 0;
  }

  .project-page .film-hero {
    padding: 5.75rem 0.85rem 1.2rem;
  }

  .project-page .film-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.8rem, 19vw, 6.8rem);
    letter-spacing: -0.075em;
  }

  .project-page .logline {
    font-size: clamp(1rem, 4.8vw, 1.25rem);
  }

  .project-page .button {
    width: 100%;
  }

  .project-gallery-heading {
    display: block;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.hero-availability {
  max-width: 42rem;
  margin-inline: auto;
  font-size: clamp(0.9rem, 1.25vw, 1.08rem) !important;
  line-height: 1.4 !important;
}

.hero-contact {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 0.35rem;
  border: 1px solid rgba(244, 241, 234, 0.64);
  border-radius: 999px;
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-contact:hover,
.hero-contact:focus-visible {
  background: var(--ink);
  color: var(--bg);
}

.credibility-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 6vw, 5rem);
}

.credibility-copy p {
  margin-bottom: 1.4rem;
}

.credibility-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credibility-copy li,
.project-facts dt,
.project-facts dd,
.project-external {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.credibility-copy li {
  color: var(--muted);
}

.credibility-copy a {
  color: var(--ink);
}

.about-text {
  display: grid;
  gap: 1rem;
}

.about-text p {
  margin-bottom: 0;
}

.contact-panel p {
  max-width: 42rem;
  margin: 1rem 0 0;
}

.project-watch {
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid rgba(244, 241, 234, 0.14);
  padding: clamp(2.25rem, 6vw, 5rem) clamp(1rem, 2.4vw, 2rem) clamp(3rem, 7vw, 6rem);
}

.project-watch-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
}

.project-watch h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.12);
  background: #0b0b0b;
}

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

.project-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin: 0;
}

.project-facts div {
  display: flex;
  gap: 0.45rem;
}

.project-facts dt {
  color: var(--dim);
}

.project-facts dd {
  margin: 0;
  color: var(--muted);
}

.project-external {
  color: var(--ink);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .credibility-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-availability {
    max-width: 22rem;
  }

  .project-watch-heading {
    display: block;
  }

  .project-info {
    display: grid;
  }

  .project-facts {
    display: grid;
  }
}

/* Keep the homepage identity and supporting copy centered as one unit. */
.video-nameplate {
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(78rem, 92vw);
  text-align: center;
}

.video-nameplate h1,
.video-nameplate .hero-role,
.video-nameplate .hero-availability {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-nameplate .hero-role {
  width: 100%;
}

.video-nameplate .hero-availability {
  width: min(42rem, 100%);
}

/* Custom cinematic play surface; Vimeo remains the playback destination. */
.project-watch {
  background: var(--bg);
}

.project-watch-heading {
  display: grid;
  grid-template-columns: minmax(5rem, 0.18fr) minmax(0, 1fr);
  align-items: end;
}

.project-watch h2 {
  justify-self: start;
  font-size: clamp(2.6rem, 6vw, 6.5rem);
}

.project-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.14);
  background: #0b0b0b;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.project-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
  transition: background 180ms ease;
}

.project-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.05);
  transition: filter 180ms ease, transform 360ms ease;
}

.project-poster span {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(4.4rem, 8vw, 6.5rem);
  border: 1px solid rgba(244, 241, 234, 0.82);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1rem clamp(1.5rem, 4vw, 2.6rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.project-poster:hover img,
.project-poster:focus-visible img {
  filter: brightness(1) contrast(1.04);
  transform: scale(1.012);
}

.project-poster:hover::after,
.project-poster:focus-visible::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
}

.project-poster:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .project-watch-heading {
    display: block;
  }

  .project-poster span {
    min-height: 3.6rem;
    font-size: 0.92rem;
  }
}

/* Single-screen project posters with fullscreen Vimeo playback. */
.project-page {
  height: 100svh;
  overflow: hidden;
}

.project-page main,
.project-page .film-hero {
  height: 100svh;
  min-height: 100svh;
}

.project-page .film-hero[data-vimeo-id] {
  cursor: none;
}

.project-page .film-hero[data-vimeo-id]:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -0.75rem;
}

.play-cursor {
  position: fixed;
  top: -2rem;
  left: -2rem;
  z-index: 30;
  color: #efefef;
  font: 400 0.9rem/1 Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  text-shadow: 0 1px 0.8rem rgba(0, 0, 0, 0.9);
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 120ms ease;
}

.play-cursor.is-visible {
  opacity: 1;
}

.player-open {
  overflow: hidden;
}

.vimeo-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  background: #0b0b0b;
  place-items: center;
}

.vimeo-overlay iframe {
  width: min(100vw, 177.778vh);
  height: min(100vh, 56.25vw);
  border: 0;
  background: #0b0b0b;
}

.vimeo-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 1.8rem;
  height: 1.8rem;
  border: 0;
  background: transparent;
  color: #efefef;
  padding: 0;
  cursor: pointer;
}

.vimeo-close::before,
.vimeo-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.45rem;
  height: 1px;
  background: currentColor;
}

.vimeo-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vimeo-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vimeo-close:focus-visible {
  outline: none;
}

@media (hover: none) {
  .project-page .film-hero[data-vimeo-id] {
    cursor: pointer;
  }

  .play-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play-cursor {
    transition: none;
  }
}

/* Editorial project detail pages. */
.project-page {
  height: auto;
  min-height: 100svh;
  overflow: visible;
  background: #0b0b0b;
  color: #efefef;
  font-family: Georgia, "Times New Roman", serif;
}

.project-page main {
  height: auto;
  max-width: none;
  padding: 0 clamp(1rem, 1.5vw, 1.5rem) clamp(3rem, 6vw, 6rem);
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  max-width: 88rem;
  margin: 0 auto;
}

.project-detail-info {
  text-align: center;
}

.project-detail-info h1 {
  margin: 0;
  font-size: clamp(0.7rem, 0.7vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.project-detail-format {
  font-weight: 400;
}

.project-detail-role {
  margin: 0.4rem 0 0;
  font-size: clamp(0.6rem, 0.55vw, 0.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem clamp(1rem, 2vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2.75rem) 0 0;
  text-align: left;
}

.project-credits p {
  margin: 0;
  font-size: clamp(0.58rem, 0.55vw, 0.66rem);
  line-height: 1.45;
}

.project-detail-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  background: #0b0b0b;
}

.project-player-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0b0b0b;
  color: #efefef;
  cursor: pointer;
  padding: 0;
}

.project-player-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.project-player-poster:hover img,
.project-player-poster:focus-visible img {
  filter: brightness(0.86);
  transform: scale(1.01);
}

.project-player-poster:focus-visible {
  outline: 1px solid #efefef;
  outline-offset: -1px;
}

.project-player-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 0.65rem solid transparent;
  border-bottom: 0.65rem solid transparent;
  border-left: 1rem solid #efefef;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.55));
  transform: translate(-42%, -50%);
}

.project-detail-player iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0b0b;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  .project-player-poster img {
    transition: none;
  }
}

.project-detail-stills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.5rem, 1vw, 1rem);
  max-width: 88rem;
  margin: clamp(3rem, 6vw, 6rem) auto 0;
}

.project-detail-stills img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
}

@media (max-width: 760px) {
  .project-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-detail-info {
    order: 1;
  }

  .project-detail-player {
    order: 2;
  }

  .project-credits {
    margin-top: 1.5rem;
  }

  .project-detail-stills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }
}
