:root {
  --black: #151311;
  --black-soft: #1d1917;
  --black-muted: #27211e;
  --paper: #ead8c8;
  --paper-muted: #d8c2b1;
  --rose: #9c4a55;
  --rose-soft: #c07b7f;
  --line-dark: rgba(234, 216, 200, .18);
  --line-light: rgba(21, 19, 17, .16);
  --max: 1440px;
  --pad: clamp(24px, 5vw, 82px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; }
::selection { background: var(--rose); color: white; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -5rem;
  left: 1rem;
  background: var(--paper);
  color: var(--black);
  padding: .75rem 1rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  color: white;
  transition: background .3s ease, height .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  height: 64px;
  background: rgba(21, 19, 17, .92);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.wordmark,
.footer-wordmark {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
}

.site-header nav a,
.header-contact,
.footer-links a,
.text-link,
.button {
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}

.header-contact {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.02);
  animation: hero-drift 17s ease-out both;
}

@keyframes hero-drift {
  to { transform: scale(1.075); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, .34), rgba(10, 8, 7, .08) 42%, rgba(10, 8, 7, .84)),
    linear-gradient(90deg, rgba(10, 8, 7, .24), rgba(10, 8, 7, .06) 50%, rgba(10, 8, 7, .24));
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - (2 * var(--pad))));
  margin: 0 auto clamp(102px, 14vh, 156px);
  text-align: center;
}

.hero-logo {
  width: min(850px, 80vw);
  margin: 0 auto 24px;
}

.hero-meta,
.section-label,
.press-source,
.action-kicker {
  margin: 0;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-meta {
  color: rgba(245, 224, 207, .82);
}

.hero-actions,
.screener-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.hero-actions,
.screener-actions {
  justify-content: center;
}

.hero-credit {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(760px, calc(100% - (2 * var(--pad))));
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  font-size: .67rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245, 224, 207, .8);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-2px); }

.button-light {
  background: var(--paper);
  color: var(--black);
}

.button-light:hover { background: white; }

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.text-link-light { color: white; }

.section-pad {
  padding: clamp(72px, 9vw, 132px) var(--pad);
}

.section-label {
  margin-bottom: 22px;
  color: var(--rose-soft);
}

h2 {
  max-width: 1100px;
  margin: 0 0 36px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.film-section {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
}

.poster-frame {
  width: 100%;
  margin: 0;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .4);
}

.synopsis {
  max-width: 760px;
}

.synopsis h2 {
  font-size: clamp(2.2rem, 4.1vw, 4.5rem);
  max-width: 720px;
}

.synopsis .lead {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(1.2rem, 1.85vw, 1.75rem);
  line-height: 1.5;
  color: #f2ded0;
}

.synopsis p:not(.section-label):not(.lead) {
  max-width: 720px;
  margin: 0 0 21px;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--paper-muted);
}

.centered-section {
  text-align: center;
}

.centered-heading {
  width: min(1080px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.centered-heading h2 {
  max-width: none;
}

.centered-heading > p:not(.section-label) {
  max-width: 900px;
  margin: 0 auto;
  color: var(--paper-muted);
}

.screener {
  background: var(--black-soft);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.video-shell {
  width: min(var(--max), 100%);
  margin: auto;
  aspect-ratio: 16 / 9;
  background: black;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .4);
}

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

.screener-actions {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
}

.statement {
  background: var(--paper);
  color: var(--black);
  text-align: center;
}

.statement-inner {
  max-width: 1080px;
  margin: auto;
}

.statement-title {
  max-width: 900px;
  margin: 0 auto 54px;
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.statement blockquote {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -.012em;
  color: #3d342f;
}

.quote-credit {
  margin: 38px 0 0;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.press {
  background: var(--black-soft);
}

.press-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 135px);
  align-items: center;
}

.press-art img {
  max-width: 520px;
  margin: auto;
  box-shadow: 0 28px 85px rgba(0, 0, 0, .35);
}

.press-heading h2 {
  max-width: 680px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.press-list {
  border-top: 1px solid var(--line-dark);
}

.press-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 31px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  transition: padding .25s ease, color .25s ease;
}

.press-item:hover {
  padding-left: 14px;
  color: white;
}

.press-source {
  margin: 0 0 11px;
  color: var(--rose-soft);
}

.press-item h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.press-item > span {
  font-size: 1.4rem;
}

.stills {
  background: var(--black);
}

.stills-heading {
  margin-bottom: 42px;
}

.stills-stack {
  max-width: var(--max);
  margin: auto;
  display: grid;
  gap: clamp(26px, 4vw, 58px);
}

.stills-stack figure {
  margin: 0;
  overflow: hidden;
  background: var(--black-muted);
}

.stills-stack img {
  width: 100%;
  height: auto;
  transition: transform .7s ease;
}

.stills-stack figure:hover img {
  transform: scale(1.012);
}

.action {
  background: var(--paper);
  color: var(--black);
}

.action-copy {
  margin-bottom: 65px;
}

.action-copy .section-label {
  color: var(--rose);
}

.action-copy h2 {
  max-width: none;
  white-space: nowrap;
}

.action-copy > p:not(.section-label) {
  max-width: 980px;
  margin: 0 auto;
  color: #554b45;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.action-links {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.action-card {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line-light);
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.action-card:hover {
  background: var(--black);
  color: var(--paper);
  transform: translateY(-4px);
}

.action-kicker {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--rose);
}

.action-card strong {
  align-self: end;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -.035em;
}

.action-card > span:last-child {
  align-self: end;
  font-size: 1.4rem;
}

.contact {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.contact > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 10, 9, .2), rgba(13, 10, 9, .58)),
    rgba(13, 10, 9, .28);
}

.contact-copy {
  position: relative;
  width: min(1180px, calc(100% - (2 * var(--pad))));
  margin: auto;
}

.contact-copy h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

footer {
  padding: 70px var(--pad) 42px;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
  border-top: 1px solid var(--line-dark);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: currentColor;
}

footer > p {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #a89588;
  font-size: .7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .82s ease, transform .82s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-credit {
    display: none;
  }

  .film-section,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .synopsis,
  .poster-frame {
    max-width: 720px;
    margin: auto;
  }

  .press-art {
    max-width: 560px;
  }

  .press-copy {
    text-align: center;
  }

  .press-heading h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .action-links {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 62px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-content {
    width: calc(100% - (2 * var(--pad)));
    margin: 0 auto 72px;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-meta {
    line-height: 1.7;
  }

  .hero-actions,
  .screener-actions {
    align-items: center;
    flex-direction: column;
  }

  .section-pad {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .statement-title {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .statement blockquote {
    font-size: 1.22rem;
  }

  .press-item {
    padding: 25px 0;
  }

  .action-copy h2,
  .contact-copy h2 {
    white-space: normal;
  }

  .contact {
    min-height: 68svh;
  }
}

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

  .hero-bg { animation: none; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * { transition-duration: .01ms !important; }
}


/* Version 6 refinements */
.screener .centered-heading {
  margin-bottom: 28px;
}

.screener .centered-heading h2 {
  margin-bottom: 22px;
}

.statement-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  letter-spacing: -.04em;
}

.statement-title em {
  font-style: normal;
}

.statement blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.25vw, 2.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.statement .quote-credit {
  margin-top: 30px;
}

.press,
.stills,
.action {
  scroll-margin-top: 64px;
}

.stills-heading {
  margin-bottom: 28px;
}

@media (max-width: 920px) {
  .statement-title {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .screener .centered-heading {
    margin-bottom: 22px;
  }

  .statement-title {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .statement blockquote {
    font-size: 1.42rem;
  }
}
