:root {
  --ink: #0a0a09;
  --paper: #f1eee7;
  --paper-2: #e7e1d7;
  --muted: #8e8a82;
  --line: rgba(10, 10, 9, 0.18);
  --white: #f8f6f1;
  --accent: #a96a44;
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  mix-blend-mode: difference;
  color: #fff;
}
.brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.menu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}
.menu-toggle::before { content: "Menu"; }
body.menu-open .menu-toggle::before { content: "Close"; }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
body.menu-open .menu-panel { opacity: 1; visibility: visible; }
.menu-image { background: url('assets/home-hero.webp') center/cover no-repeat; }
.menu-content {
  padding: 110px 7vw 58px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-nav { display: flex; flex-direction: column; }
.menu-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 82px);
  line-height: 1;
  letter-spacing: -.04em;
}
.menu-meta { display: flex; justify-content: space-between; color: #47433d; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #141414;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.13) 0%, rgba(0,0,0,.05) 50%, rgba(0,0,0,.72) 100%);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 3vw 42px;
}
.hero-title {
  margin: 0;
  font-size: clamp(50px, 10.3vw, 170px);
  line-height: .82;
  letter-spacing: -.06em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-tagline {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; }
.scroll-cue::after { content: "↓"; font-size: 18px; }

.section { padding: 120px 3vw; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--white); }
.section-kicker {
  margin: 0 0 54px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 75px;
}
.section-head h2 {
  grid-column: 2;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 110px);
  line-height: .93;
  font-weight: 400;
  letter-spacing: -.055em;
}

.works-list { border-top: 1px solid var(--line); }
.work-row {
  position: relative;
  min-height: 174px;
  display: grid;
  grid-template-columns: 1.2fr .75fr 1.35fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.work-row > * { position: relative; z-index: 2; }
.work-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.5vw, 56px);
  font-weight: 400;
  letter-spacing: -.035em;
}
.work-meta { font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.work-logline { max-width: 560px; font-size: 15px; color: #4a4741; }
.work-preview {
  position: absolute;
  z-index: 1;
  width: 340px;
  height: 210px;
  top: 50%;
  left: 48%;
  object-fit: cover;
  opacity: 0;
  transform: translate(-50%, -44%) rotate(-2deg) scale(.94);
  transition: opacity .28s ease, transform .35s ease;
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.work-row:hover .work-preview { opacity: 1; transform: translate(-50%, -50%) rotate(-1deg) scale(1); }
.work-row:hover .work-logline { opacity: .28; }
.text-link {
  display: inline-flex;
  margin-top: 42px;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}

.about-home {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) 1.25fr;
  min-height: 850px;
}
.about-home-image { min-height: 720px; object-fit: cover; }
.about-home-copy {
  background: #11110f;
  padding: 84px 7vw 74px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-eyebrow { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.about-home-copy blockquote {
  margin: 50px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.1vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
}
.about-home-copy p { max-width: 660px; color: #bcb8af; font-size: 17px; line-height: 1.65; }
.person-line { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.25); padding-top: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }

.marquee {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 34s linear infinite;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.marquee-track span { margin-right: 38px; }
.marquee-track span::after { content: "●"; margin-left: 38px; font-size: 7px; vertical-align: 2px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.cta {
  min-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.cta::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.54); }
.cta img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.cta-content { position: relative; z-index: 2; max-width: 1050px; padding: 40px; }
.cta-label { font-size: 12px; text-transform: uppercase; letter-spacing: .17em; }
.cta h2 {
  margin: 35px 0 50px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(52px, 8vw, 122px);
  line-height: .92;
  letter-spacing: -.055em;
}
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: background .25s ease, color .25s ease;
}
.button-link:hover { background: var(--white); color: var(--ink); }

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 88px 3vw 28px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 40px; padding-bottom: 92px; }
.footer-statement { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4.5vw, 70px); line-height: 1.02; letter-spacing: -.04em; max-width: 680px; }
.footer-column h4 { margin: 0 0 24px; color: #77736c; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.footer-column a { display: block; margin: 11px 0; font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.22); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: #77736c; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-legal { display: flex; gap: 24px; }

/* Interior pages */
.page-shell { background: var(--paper); color: var(--ink); min-height: 100vh; }
.page-hero {
  min-height: 74svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72)); }
.page-hero img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 3vw 50px; }
.page-hero h1 { margin: 0; font-size: clamp(66px, 13vw, 190px); line-height: .78; letter-spacing: -.065em; text-transform: uppercase; }
.page-hero p { margin: 36px 0 0 auto; max-width: 520px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(23px, 2.4vw, 36px); line-height: 1.16; }
.simple-hero {
  padding: 180px 3vw 85px;
  background: var(--paper);
  color: var(--ink);
}
.simple-hero h1 { margin: 0; font-size: clamp(72px, 13vw, 190px); line-height: .8; letter-spacing: -.065em; text-transform: uppercase; }
.simple-hero p { max-width: 670px; margin: 60px 0 0 auto; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 58px); line-height: 1.06; letter-spacing: -.035em; }

.film-entry {
  padding: 95px 3vw 115px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 7vw;
}
.film-entry:nth-child(even) .film-image { order: 2; }
.film-image { min-height: 620px; object-fit: cover; }
.film-info { display: flex; flex-direction: column; justify-content: center; }
.status { display: inline-flex; align-self: flex-start; border: 1px solid var(--ink); border-radius: 999px; padding: 8px 12px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.film-info h2 { margin: 35px 0 13px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(50px, 6.1vw, 92px); font-weight: 400; line-height: .93; letter-spacing: -.05em; }
.film-meta { margin-bottom: 32px; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.film-logline { font-family: Georgia, "Times New Roman", serif; font-size: clamp(23px, 2.3vw, 36px); line-height: 1.18; letter-spacing: -.025em; }
.film-description { color: #504d47; line-height: 1.72; max-width: 650px; }
.credits { margin: 35px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.credit small { display: block; color: #7a766f; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 6px; }
.festivals { list-style: none; padding: 0; margin: 0 0 35px; }
.festivals li { padding: 7px 0; border-bottom: 1px solid var(--line); }

.bio-section { padding: 120px 3vw; display: grid; grid-template-columns: .85fr 1.2fr; gap: 8vw; }
.bio-image { min-height: 760px; object-fit: cover; }
.bio-content { align-self: center; }
.bio-content h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(62px, 8vw, 120px); line-height: .9; letter-spacing: -.055em; }
.bio-role { margin: 15px 0 48px; font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }
.awards { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; padding: 0; list-style: none; margin: 0 0 58px; }
.awards li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.bio-quote { font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 3.8vw, 56px); line-height: 1.04; letter-spacing: -.035em; margin: 0 0 38px; }
.bio-content p { color: #4c4943; line-height: 1.75; }

.manifesto { background: var(--ink); color: var(--white); padding: 120px 3vw; }
.manifesto h2 { margin: 0 0 80px; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.manifesto-lines { font-family: Georgia, "Times New Roman", serif; font-size: clamp(43px, 6.7vw, 102px); line-height: .98; letter-spacing: -.05em; max-width: 1200px; }
.manifesto-lines p { margin: 0 0 35px; }
.manifesto-body { margin: 90px 0 0 auto; max-width: 680px; color: #aaa69e; line-height: 1.75; }

.collaborators { padding: 120px 3vw; }
.collaborators h2, .press-title { margin: 0 0 72px; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.collab-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.collab-card img { aspect-ratio: 2/3; object-fit: cover; }
.collab-card h3 { margin: 22px 0 5px; font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 400; }
.collab-role { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: #77736c; }
.collab-card p { margin-top: 26px; color: #514e48; line-height: 1.65; }

.press-section { padding: 120px 3vw; }
.quote-list { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.press-quote { min-height: 340px; padding: 50px 4vw 45px 0; border-bottom: 1px solid var(--line); }
.press-quote:nth-child(odd) { border-right: 1px solid var(--line); }
.press-quote:nth-child(even) { padding-left: 4vw; }
.press-quote blockquote { margin: 0 0 40px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 2.6vw, 40px); line-height: 1.13; letter-spacing: -.025em; }
.press-source { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: #6c6861; }

.festival-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.festival-card { border-top: 1px solid var(--ink); padding-top: 20px; }
.festival-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 46px; font-weight: 400; }
.festival-year { margin: 8px 0 36px; color: #77736c; }
.festival-event { margin-bottom: 28px; }
.festival-event strong { display: block; margin-bottom: 5px; }
.award-mark { color: var(--accent); }
.press-kit { margin-top: 120px; padding: 80px 6vw; background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.press-kit h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 6.5vw, 96px); font-weight: 400; letter-spacing: -.045em; }
.press-kit p { color: #aaa69e; line-height: 1.7; }

.contact-grid { padding: 80px 3vw 125px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; }
.contact-left p { max-width: 560px; color: #4e4b45; line-height: 1.75; }
.contact-list { list-style: none; padding: 0; margin: 42px 0; }
.contact-list li { border-bottom: 1px solid var(--line); padding: 13px 0; }
.direct { margin-top: 65px; }
.direct h2, .contact-form h2 { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; margin: 0 0 26px; }
.direct a { font-family: Georgia, "Times New Roman", serif; font-size: 34px; border-bottom: 1px solid var(--ink); }
.direct .location { margin-top: 12px; color: #77736c; }
.form-row { margin-bottom: 24px; }
.form-row label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 9px; }
.form-row input, .form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 13px 0;
  outline: none;
  border-radius: 0;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.inquiry-options { display: flex; flex-wrap: wrap; gap: 9px; }
.inquiry-options button { border: 1px solid var(--ink); border-radius: 999px; background: transparent; padding: 9px 13px; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; cursor: pointer; }
.inquiry-options button.active { background: var(--ink); color: var(--white); }
.submit-button { border: 1px solid var(--ink); background: var(--ink); color: var(--white); padding: 18px 28px; min-width: 190px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; cursor: pointer; }
.form-note { margin-top: 16px; font-size: 10px; color: #77736c; text-transform: uppercase; letter-spacing: .12em; }
.form-success { margin-top: 20px; padding: 18px; border: 1px solid var(--line); display: none; }
.form-success.show { display: block; }

.legal-page { padding: 170px 3vw 120px; background: var(--paper); color: var(--ink); min-height: 80vh; }
.legal-page h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 8vw, 115px); font-weight: 400; letter-spacing: -.05em; margin: 0 0 60px; }
.legal-page article { max-width: 760px; margin-left: auto; color: #4e4b45; line-height: 1.75; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .site-header { padding: 0 20px; }
  .menu-panel { grid-template-columns: 1fr; }
  .menu-image { display: none; }
  .menu-content { padding: 100px 24px 35px; }
  .hero-content { padding: 0 20px 28px; }
  .hero-title { white-space: normal; font-size: clamp(58px, 17vw, 105px); line-height: .82; }
  .hero-tagline { align-items: flex-end; gap: 20px; }
  .section { padding: 80px 20px; }
  .section-head { grid-template-columns: 1fr; margin-bottom: 50px; }
  .section-head h2 { grid-column: 1; }
  .work-row { grid-template-columns: 1fr; gap: 8px; padding: 27px 0; min-height: 0; }
  .work-preview { display: none; }
  .about-home { grid-template-columns: 1fr; }
  .about-home-image { min-height: 570px; }
  .about-home-copy { padding: 70px 20px; }
  .cta { min-height: 720px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-statement { grid-column: 1/-1; margin-bottom: 30px; }
  .page-hero-inner { padding: 0 20px 35px; }
  .page-hero { min-height: 68svh; }
  .simple-hero { padding: 140px 20px 70px; }
  .film-entry, .bio-section, .contact-grid { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .film-entry:nth-child(even) .film-image { order: 0; }
  .film-image { min-height: 430px; }
  .bio-image { min-height: 580px; }
  .manifesto, .collaborators, .press-section { padding: 85px 20px; }
  .collab-grid, .festival-grid { grid-template-columns: 1fr; }
  .collab-card { margin-bottom: 35px; }
  .quote-list { grid-template-columns: 1fr; }
  .press-quote, .press-quote:nth-child(even) { padding: 38px 0; border-right: 0; min-height: 0; }
  .press-kit { grid-template-columns: 1fr; padding: 65px 25px; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-statement { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .hero-tagline { font-size: 10px; }
  .page-hero h1, .simple-hero h1 { font-size: clamp(62px, 21vw, 105px); }
  .credits, .awards { grid-template-columns: 1fr; }
  .menu-meta { flex-direction: column; gap: 12px; }
}
