@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/Figtree-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/Figtree-Italic-Variable.ttf") format("truetype-variations");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ivory: #f7f4f3;
  --blush: #ead4c7;
  --paper: #ead9d0;
  --sand: #b8937a;
  --sand-light: #c9aa97;
  --ink: #2a1c1b;
  --wine: #744e40;
  --wine-dark: #2a1c1b;
  --green: #20343c;
  --green-light: #2a88a0;
  --coral: #a63f5d;
  --gold: #b8937a;
  --line: rgba(42, 28, 27, 0.2);
  --font-primary: "Figtree", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-primary);
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--coral); color: var(--ivory); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 28px clamp(24px, 5vw, 80px);
  color: var(--ivory);
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  position: fixed;
  padding-block: 17px;
  color: var(--ivory);
  background: rgba(42, 28, 27, .94);
  box-shadow: 0 10px 35px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 0.95;
  letter-spacing: 0.08em;
}
.site-header nav { display: flex; gap: clamp(16px, 2vw, 36px); }
.site-header nav a {
  position: relative;
  padding: 4px 0 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0.78;
  transition: opacity 180ms ease;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 200ms ease;
}
.site-header nav a:hover, .site-header nav a:focus-visible { opacity: 1; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { right: 0; }
.site-header nav a.is-active { opacity: 1; }
.site-header nav a.is-active::after { right: 0; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247,244,243,.38);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 67% 49%, rgba(201, 170, 151, 0.46), transparent 26%),
    linear-gradient(122deg, var(--wine-dark) 0 42%, #744e40 42% 58%, var(--green) 58% 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 5.8vw, rgba(255,255,255,.07) 5.85vw, transparent 5.9vw);
  mix-blend-mode: overlay;
}
.hero-rings {
  position: absolute;
  z-index: -1;
  width: min(80vw, 980px);
  aspect-ratio: 1;
  right: -11vw;
  top: 50%;
  translate: 0 -50%;
  border: 1px solid rgba(247,244,243,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(247,244,243,.05), 0 0 0 12vw rgba(247,244,243,.04), 0 0 0 18vw rgba(247,244,243,.025);
  animation: breathe 9s ease-in-out infinite;
}
.hero-frame {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(247,244,243,.2);
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(1px);
}
.hero-frame-a { width: 34vw; height: 58vh; right: 8vw; top: 18vh; rotate: 8deg; }
.hero-frame-b { width: 26vw; height: 44vh; right: -5vw; bottom: -2vh; rotate: -12deg; }
.hero-meta {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .64;
}
.hero-content { padding: 13vh clamp(24px, 10vw, 160px) 10vh; }
.eyebrow, .section-index {
  margin: 0 0 24px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(4.1rem, 10.8vw, 10rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .75;
  text-transform: uppercase;
}
.hero h1 span { display: block; animation: rise 900ms cubic-bezier(.22,.8,.24,1) both; }
.hero h1 span:nth-child(2) { margin-left: 9vw; color: transparent; -webkit-text-stroke: 1.5px var(--ivory); animation-delay: 120ms; }
.hero-subtitle {
  margin: 40px 0 34px 9vw;
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  font-style: italic;
  line-height: 1.35;
  opacity: .84;
}
.trailer-button {
  margin-left: 9vw;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 22px 14px 15px;
  border: 1px solid rgba(247,244,243,.55);
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
  transition: background 180ms ease, color 180ms ease;
}
.trailer-button:hover, .trailer-button:focus-visible { background: var(--ivory); color: var(--wine-dark); }
.play-icon {
  display: inline-block;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  position: relative;
}
.play-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--wine-dark);
}
.hero-placeholder {
  position: absolute;
  z-index: -1;
  inset: 10vh 5vw 8vh auto;
  width: 38vw;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  border: 1px solid rgba(247,244,243,.12);
}
.hero-placeholder span { padding: 12px; font-size: .5rem; letter-spacing: .18em; opacity: .35; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
}
.scroll-cue i { width: 1px; height: 34px; background: currentColor; animation: scroll-line 2s ease-in-out infinite; }

.trailer-panel {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(30px, 6vw, 100px);
  padding: clamp(70px, 9vw, 140px) clamp(24px, 7vw, 110px);
  color: var(--ivory);
  background: var(--ink);
}
.trailer-copy { align-self: end; }
.trailer-copy h2, .section-heading h2, .makers-copy h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.trailer-copy > p:last-child { max-width: 34ch; color: rgba(247,244,243,.58); line-height: 1.6; }
.trailer-placeholder {
  min-height: min(55vw, 580px);
  border: 1px solid rgba(247,244,243,.28);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(116,78,64,.82), rgba(32,52,60,.88)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,.06) 16px 17px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}
.trailer-placeholder:hover .large-play,
.trailer-placeholder:focus-visible .large-play { transform: scale(1.08); }
.large-play { transition: transform 180ms ease; }
.large-play .play-icon { width: 68px; color: var(--ivory); }
.large-play .play-icon::after { left: 27px; top: 22px; border-top-width: 12px; border-bottom-width: 12px; border-left-width: 17px; }
.trailer-placeholder strong { font-size: .72rem; letter-spacing: .2em; }
.trailer-placeholder small { font-size: .54rem; letter-spacing: .18em; opacity: .45; }

.section { padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px); }
.section-heading { display: grid; grid-template-columns: .42fr 1.25fr; align-items: start; margin-bottom: clamp(60px, 8vw, 120px); }
.section-heading .section-index { padding-top: 13px; }
.film-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 11vw; align-items: start; }
.body-copy { font-size: clamp(1.05rem, 1.35vw, 1.35rem); line-height: 1.62; }
.body-copy-large { font-size: clamp(1.18rem, 1.55vw, 1.55rem); }
.body-copy p { margin: 0 0 1.35em; }
.body-copy strong { font-weight: 700; }
.body-copy em { font-family: var(--font-primary); font-size: 1.08em; font-style: italic; }
.quote { position: relative; margin: 0; padding: 52px 0 0; }
.quote-mark { position: absolute; top: -24px; left: -9px; color: var(--coral); font-family: var(--font-primary); font-size: 7rem; font-weight: 300; line-height: 1; }
.quote blockquote { margin: 0 0 24px; font-family: var(--font-primary); font-size: clamp(1.6rem, 2.8vw, 3rem); font-style: italic; font-weight: 450; line-height: 1.12; letter-spacing: -.03em; }
.quote figcaption { max-width: 30ch; padding-top: 16px; border-top: 1px solid currentColor; font-size: .58rem; font-weight: 800; letter-spacing: .16em; line-height: 1.5; }
.media-placeholder {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 55vw, 760px);
  margin-top: clamp(80px, 11vw, 170px);
  color: var(--ivory);
  background: radial-gradient(circle at 67% 43%, rgba(201,170,151,.5), transparent 20%), linear-gradient(135deg, var(--wine-dark), var(--wine) 48%, #2a1c1b);
}
.media-green { background: radial-gradient(circle at 35% 60%, rgba(184,147,122,.35), transparent 22%), linear-gradient(145deg, #182b32, var(--green-light)); }
.media-gold { background: radial-gradient(circle at 53% 45%, rgba(234,212,199,.32), transparent 15%), linear-gradient(135deg, #815f4b, var(--gold), var(--wine)); }
.media-grain {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: repeating-linear-gradient(107deg, transparent 0 3px, rgba(255,255,255,.12) 3px 4px, transparent 4px 9px);
  animation: drift 16s linear infinite alternate;
}
.media-placeholder::before, .media-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(247,244,243,.3);
  border-radius: 50%;
}
.media-placeholder::before { width: 55%; aspect-ratio: 1; right: 4%; top: -10%; box-shadow: 0 0 0 80px rgba(247,244,243,.03), 0 0 0 160px rgba(247,244,243,.025); }
.media-placeholder::after { inset: 32px; border-radius: 0; }
.media-number { position: absolute; top: 48px; left: 52px; font-size: 9rem; font-weight: 800; letter-spacing: -.08em; opacity: .12; }
.media-caption { position: absolute; z-index: 1; left: 52px; bottom: 48px; display: flex; flex-direction: column; gap: 8px; }
.media-caption span, .media-time { font-size: .56rem; font-weight: 800; letter-spacing: .2em; }
.media-caption strong { font-family: var(--font-primary); font-size: clamp(1.7rem, 3vw, 3.3rem); font-weight: 500; }
.media-time { position: absolute; right: 52px; bottom: 52px; }

.section-watch { position: relative; overflow: hidden; color: var(--ivory); background: var(--green); }
.light-heading { position: relative; z-index: 1; }
.watch-orbit { position: absolute; width: 60vw; aspect-ratio: 1; border: 1px solid rgba(247,244,243,.1); border-radius: 50%; right: -26vw; top: 4vw; box-shadow: 0 0 0 9vw rgba(247,244,243,.025), 0 0 0 18vw rgba(247,244,243,.018); }
.watch-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 11vw; }
.watch-date { display: flex; flex-direction: column; }
.watch-date span { margin-bottom: 22px; font-size: .62rem; font-weight: 800; letter-spacing: .24em; }
.watch-date strong { font-size: clamp(4rem, 8vw, 8.6rem); line-height: .74; letter-spacing: -.07em; }
.light-copy { color: rgba(247,244,243,.76); }
.light-copy strong { color: var(--ivory); }
.outline-link, .dark-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 60px; margin-top: 18px; padding: 15px 0; border-bottom: 1px solid currentColor; text-decoration: none; text-transform: uppercase; font-size: .66rem; font-weight: 800; letter-spacing: .16em; }
.section-watch > .quote { width: min(700px, 68%); margin: 110px 0 0 auto; }

.heading-intro { grid-column: 2; max-width: 45ch; margin: 35px 0 0; font-size: 1.08rem; line-height: 1.6; color: rgba(42,28,27,.64); }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.person-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.portrait-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: .78;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--sand-light), var(--paper) 48%, var(--sand));
}
.portrait-placeholder:empty::before { content: ""; width: 54%; aspect-ratio: .74; border-radius: 50% 50% 5% 5%; background: rgba(42,28,27,.15); filter: blur(1px); }
.portrait-placeholder img { display: block; width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder span { position: absolute; left: 15px; top: 11px; font-size: .62rem; font-weight: 800; }
.portrait-placeholder small { position: absolute; right: 14px; bottom: 12px; font-size: .48rem; letter-spacing: .16em; opacity: .5; }
.person-card > div:last-child { min-height: 120px; padding: 22px 20px 24px; }
.person-card h3 { margin: 0 0 8px; font-family: var(--font-primary); font-size: clamp(1.05rem, 1.55vw, 1.45rem); font-weight: 600; }
.person-card p { margin: 0; font-size: .68rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; opacity: .55; }
.section-people > .quote { width: min(700px, 70%); margin: clamp(80px, 10vw, 150px) 0 0 auto; }

.section-makers { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding: 0; color: var(--ivory); background: var(--wine-dark); }
.makers-visual { position: relative; overflow: hidden; min-height: 760px; background: radial-gradient(circle at 60% 35%, rgba(234,212,199,.38), transparent 18%), linear-gradient(155deg, var(--sand), var(--wine) 58%, var(--wine-dark)); }
.makers-visual::before, .makers-visual::after { content: ""; position: absolute; border: 1px solid rgba(247,244,243,.2); }
.makers-visual::before { width: 55%; height: 62%; left: 12%; top: 16%; rotate: -8deg; }
.makers-visual::after { width: 42%; height: 58%; right: 10%; bottom: 8%; rotate: 11deg; }
.makers-photo {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: clamp(6px, .65vw, 10px) solid var(--ivory);
  background: var(--ivory);
  box-shadow: 0 24px 55px rgba(42, 28, 27, .42);
}
.makers-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.makers-photo-brothers {
  left: 7%;
  top: 10%;
  width: 80%;
  aspect-ratio: 1.58;
  transform: rotate(-3.5deg);
}
.makers-photo-molly {
  z-index: 3;
  right: 7%;
  bottom: 8%;
  width: 46%;
  aspect-ratio: .92;
  transform: rotate(4deg);
}
.makers-photo-molly img { object-position: 50% 48%; }
.makers-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 130px); }
.makers-copy .body-copy { margin-top: 55px; }
.makers-copy a { text-underline-offset: 4px; }
.makers-copy .quote { margin-top: 45px; }
.makers-copy .quote blockquote { font-size: clamp(1.4rem, 2vw, 2.2rem); }

.section-talk { background: var(--paper); }
.talk-topline { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); }
.talk-topline > span { font-size: .56rem; font-weight: 800; letter-spacing: .2em; }
.talk-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; align-items: end; padding: 55px 0 100px; }
.talk-grid h2 { margin: 0; font-family: var(--font-primary); text-transform: uppercase; }
.talk-title-main {
  display: block;
  color: var(--coral);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: .76;
  letter-spacing: -.075em;
}
.talk-title-film {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.45vw, 2.65rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
}
.question-strip { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 30px; padding: 40px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.question-strip > span { font-family: var(--font-primary); color: var(--coral); font-size: 7rem; font-weight: 300; line-height: .45; }
.question-strip p { margin: 0; font-family: var(--font-primary); font-size: clamp(2rem, 4.5vw, 5rem); font-weight: 500; line-height: .93; letter-spacing: -.045em; }
.question-strip small { width: 22ch; font-size: .55rem; line-height: 1.5; font-weight: 800; letter-spacing: .13em; }

.contact { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 24px; text-align: center; color: var(--ivory); background: var(--coral); }
.contact-kicker { margin-bottom: 35px; font-size: .62rem; font-weight: 800; letter-spacing: .2em; }
.contact > p { margin: 0 0 50px; font-family: var(--font-primary); font-size: clamp(3.3rem, 8vw, 8rem); font-weight: 500; line-height: .85; letter-spacing: -.06em; }
.contact > a { display: flex; gap: 45px; padding-bottom: 13px; border-bottom: 1px solid currentColor; text-decoration: none; font-size: clamp(.8rem, 1.2vw, 1.1rem); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.credits-section { padding: 0; background: #0b0505; }
.credits-art { display: block; width: 100%; height: auto; }
.presenter, .production-line { font-size: .6rem; font-weight: 800; letter-spacing: .22em; }
.credits-section h2 { margin: 36px 0 22px; font-size: clamp(3.5rem, 8.7vw, 9rem); line-height: .78; letter-spacing: -.07em; }
.production-line { color: rgba(247,244,243,.58); }
.credits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px 24px; margin: 90px auto; max-width: 1100px; }
.credit { display: flex; flex-direction: column; gap: 8px; }
.credit span { color: rgba(247,244,243,.44); font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; }
.credit strong { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 500; }
.site-url { font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-underline-offset: 8px; }
.supporters { padding: 30px clamp(24px, 7vw, 110px); background: var(--blush); }
.support-row { display: grid; grid-template-columns: .32fr 1fr; gap: 30px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.support-row span { font-size: .57rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.support-row strong { font-family: var(--font-primary); font-weight: 500; line-height: 1.45; }
footer { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 35px; padding: 28px clamp(24px, 5vw, 80px); color: var(--ivory); background: var(--wine-dark); }
.footer-brand { text-decoration: none; font-size: 1rem; font-weight: 900; letter-spacing: -.04em; }
footer p { margin: 0; font-size: .52rem; letter-spacing: .1em; opacity: .55; }
footer p:last-child { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms cubic-bezier(.22,.8,.24,1), transform 720ms cubic-bezier(.22,.8,.24,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.trailer-dialog {
  width: min(720px, calc(100vw - 36px));
  padding: 0;
  border: 0;
  color: var(--ivory);
  background: var(--wine-dark);
  box-shadow: 0 35px 100px rgba(0,0,0,.5);
}
.trailer-dialog::backdrop { background: rgba(10,10,10,.78); backdrop-filter: blur(6px); }
.dialog-inner { position: relative; padding: clamp(55px, 8vw, 95px); text-align: center; }
.dialog-inner .section-index { color: var(--coral); }
.dialog-inner h2 { margin: 0 0 22px; font-family: var(--font-primary); font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 500; letter-spacing: -.05em; }
.dialog-inner p { margin: 0 auto; max-width: 46ch; color: rgba(247,244,243,.68); line-height: 1.65; }
.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247,244,243,.35);
  border-radius: 50%;
  color: var(--ivory);
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
}

@keyframes rise { from { opacity: 0; transform: translateY(42px); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 50% { scale: 1.035; opacity: .72; } }
@keyframes scroll-line { 0%,100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@keyframes drift { from { transform: translateX(-2%); } to { transform: translateX(2%); } }

@media (max-width: 980px) {
  .site-header { align-items: center; }
  .site-header nav { max-width: 70vw; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .site-header nav::-webkit-scrollbar { display: none; }
  .hero-meta { display: none; }
  .hero-content { padding-inline: 7vw; }
  .hero h1 span:nth-child(2), .hero-subtitle, .trailer-button { margin-left: 0; }
  .trailer-panel, .film-grid, .watch-layout, .talk-grid { grid-template-columns: 1fr; }
  .trailer-placeholder { min-height: 52vw; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .heading-intro { grid-column: 1; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .section-makers { grid-template-columns: 1fr; }
  .makers-visual { min-height: 65vw; }
  .question-strip { grid-template-columns: auto 1fr; }
  .question-strip small { grid-column: 2; }
}

@media (max-width: 650px) {
  .site-header { padding: 20px; }
  .site-header.is-scrolled { padding-block: 14px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-header nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    max-width: none;
    padding: 115px 28px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow: auto;
    color: var(--ivory);
    background: rgba(42,28,27,.98);
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(.22,.8,.24,1);
  }
  .site-header nav.is-open { transform: translateX(0); }
  .site-header nav a { white-space: normal; font-family: var(--font-primary); font-size: 1.8rem; font-weight: 500; letter-spacing: -.02em; text-transform: none; }
  .hero { min-height: 820px; }
  .hero-content { padding: 120px 22px 120px; }
  .hero h1 { font-size: clamp(3.5rem, 19vw, 5.3rem); line-height: .79; }
  .hero-subtitle { margin-top: 30px; font-size: 1.05rem; }
  .hero-rings { width: 120vw; right: -54vw; }
  .hero-frame-a { width: 65vw; right: 4vw; }
  .hero-frame-b { width: 60vw; }
  .trailer-panel, .section { padding: 80px 22px; }
  .trailer-placeholder { min-height: 62vw; }
  .section-heading { margin-bottom: 55px; }
  .section-heading h2, .trailer-copy h2, .makers-copy h2 { font-size: 2.8rem; }
  .film-grid { gap: 50px; }
  .section-watch > .quote, .section-people > .quote { width: 100%; margin-top: 75px; }
  .watch-date strong { font-size: 4.4rem; }
  .media-placeholder { min-height: 470px; margin-top: 75px; }
  .media-placeholder::after { inset: 18px; }
  .media-number { left: 30px; top: 30px; font-size: 6rem; }
  .media-caption { left: 30px; right: 30px; bottom: 34px; }
  .media-time { right: 30px; top: 32px; bottom: auto; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .person-card > div:last-child { min-height: 135px; padding: 17px 14px; }
  .person-card h3 { font-size: 1rem; }
  .makers-visual { min-height: 100vw; }
  .makers-copy { padding: 80px 22px; }
  .talk-grid { padding-bottom: 65px; }
  .talk-title-main { font-size: clamp(3.8rem, 18vw, 5.4rem); }
  .talk-title-film { margin-top: 20px; font-size: clamp(1rem, 5vw, 1.3rem); }
  .question-strip { gap: 18px; }
  .question-strip > span { font-size: 5rem; }
  .question-strip p { font-size: 2rem; }
  .credits-grid { grid-template-columns: 1fr 1fr; margin: 65px auto; }
  .support-row { grid-template-columns: 1fr; gap: 10px; }
  footer { grid-template-columns: auto 1fr; }
  footer p:last-child { grid-column: 2; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Home — direção minimalista inspirada no site Eu Maior */
.site-header {
  align-items: center;
  justify-content: center;
  padding: 25px clamp(24px, 5vw, 80px);
}
.site-header.is-scrolled { justify-content: center; }
.site-header nav {
  max-width: none;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 58px);
}
.site-header nav a {
  font-size: clamp(.82rem, 1.05vw, 1.05rem);
  font-weight: 700;
  letter-spacing: .055em;
  opacity: .96;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--wine-dark);
}
.hero::after { display: none; }
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media { z-index: -2; overflow: hidden; }
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(42,28,27,.3) 0%, rgba(42,28,27,.1) 42%, rgba(42,28,27,.46) 100%);
}
.hero-video-placeholder {
  position: absolute;
  inset: -5%;
  background:
    radial-gradient(circle at 64% 41%, rgba(234,212,199,.54), transparent 15%),
    radial-gradient(ellipse at 50% 115%, rgba(116,78,64,.74), transparent 48%),
    linear-gradient(155deg, #20343c 0%, #2a88a0 34%, #b8937a 63%, #2a1c1b 100%);
  transform: scale(1.04);
  animation: hero-placeholder-loop 16s ease-in-out infinite alternate;
}
.hero-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background: repeating-linear-gradient(108deg, transparent 0 5px, rgba(255,255,255,.07) 5px 6px, transparent 6px 14px);
  mix-blend-mode: soft-light;
}
.hero-content {
  width: min(94vw, 1480px);
  padding: 130px 24px 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  max-width: none;
  margin: 0;
  color: var(--blush);
  font-family: var(--font-primary);
  font-size: clamp(4rem, 8.4vw, 9rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
  white-space: nowrap;
  animation: rise 800ms cubic-bezier(.22,.8,.24,1) both;
}
.hero-subtitle {
  margin: 28px 0 35px;
  color: rgba(247,244,243,.92);
  font-size: clamp(1.2rem, 1.65vw, 1.65rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.hero-button {
  min-width: 220px;
  min-height: 56px;
  padding: 16px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(247,244,243,.9);
  border-radius: 0;
  color: var(--ivory);
  background: rgba(42,28,27,.12);
  font-family: var(--font-primary);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.hero-button:hover,
.hero-button:focus-visible {
  color: var(--ink);
  background: var(--blush);
  transform: translateY(-2px);
}
.hero-button span { font-size: 1.25em; line-height: 0; }

.section-watch .watch-copy {
  width: min(100%, 830px);
  margin: 0 0 72px auto;
}
.section-watch .section-heading h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.trailer-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  overflow: visible;
  color: #fff;
  background: #000;
}
.trailer-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(8px); }
.trailer-dialog .dialog-inner { padding: 0; }
.trailer-embed { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.trailer-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.trailer-dialog .dialog-close {
  z-index: 2;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  border-color: rgba(255,255,255,.65);
  background: rgba(0,0,0,.4);
}

@keyframes hero-placeholder-loop {
  from { transform: scale(1.04) translate3d(-1.2%, -.5%, 0); }
  to { transform: scale(1.1) translate3d(1.2%, .5%, 0); }
}

.opening-film-loop {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1920 / 804;
  overflow: hidden;
  background: var(--wine-dark);
}
.opening-film-loop-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opening-film-loop-placeholder {
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(ellipse at 52% 38%, rgba(42,136,160,.3) 0 12%, transparent 34%),
    radial-gradient(ellipse at 55% 100%, rgba(184,147,122,.48) 0 24%, transparent 57%),
    linear-gradient(180deg, #c9aa97 0 52%, #a9826c 52% 68%, #2a1c1b 100%);
  transform: scale(1.04);
  animation: opening-film-loop 14s ease-in-out infinite alternate;
}
.opening-film-loop-placeholder::before {
  content: "";
  position: absolute;
  left: 47%;
  bottom: 25%;
  width: 11%;
  height: 57%;
  border-radius: 52% 48% 14% 12%;
  background: #20343c;
  box-shadow:
    -6vw -8vw 0 2vw rgba(32, 52, 60, .93),
    5vw -9vw 0 2.4vw rgba(32, 52, 60, .88),
    -1vw -12vw 0 3vw rgba(32, 52, 60, .85);
  filter: blur(.4px);
}
.opening-film-loop-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 12, 10, .2));
}

@keyframes opening-film-loop {
  from { transform: scale(1.04) translate3d(-.8%, 0, 0); }
  to { transform: scale(1.1) translate3d(.8%, -.4%, 0); }
}

/* Em monitores muito largos e baixos, mantém os retratos separados. */
@media (min-width: 981px) and (min-aspect-ratio: 19 / 10) {
  .makers-visual { min-height: 100svh; }
  .makers-photo-brothers {
    left: 4%;
    top: 46%;
    width: 55%;
    transform: translateY(-50%) rotate(-2.5deg);
  }
  .makers-photo-molly {
    right: 4%;
    bottom: auto;
    top: 55%;
    width: 29%;
    transform: translateY(-50%) rotate(3deg);
  }
}

@media (min-width: 981px) and (min-aspect-ratio: 5 / 2) {
  .makers-photo-brothers { width: 51%; }
  .makers-photo-molly { width: 27%; }
}

@media (max-width: 650px) {
  .site-header { justify-content: flex-end; padding: 18px 20px; }
  .site-header.is-scrolled { justify-content: flex-end; }
  .site-header nav { justify-content: flex-start; }
  .site-header nav a {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -.02em;
    text-transform: none;
  }
  .hero { min-height: 100svh; }
  .hero-content { padding: 110px 20px 70px; }
  .hero h1 {
    max-width: 8.5ch;
    font-size: clamp(3.25rem, 16vw, 5.3rem);
    line-height: .86;
    white-space: normal;
  }
  .hero-subtitle {
    margin: 25px 0 32px;
    font-size: clamp(1.06rem, 4.9vw, 1.2rem);
    line-height: 1.4;
    white-space: normal;
  }
  .hero-subtitle span { display: block; }
  .hero-actions { width: min(100%, 360px); flex-direction: column; gap: 11px; }
  .hero-button { width: 100%; min-width: 0; }
  .trailer-dialog .dialog-close { top: -44px; }
  .opening-film-loop {
    height: auto;
    min-height: 0;
    aspect-ratio: 1920 / 804;
  }
  .section-makers { padding: 0; }
  .makers-visual {
    min-height: 0;
    padding: 44px 24px 50px;
    display: flex;
    flex-direction: column;
  }
  .makers-photo {
    position: relative;
    inset: auto;
  }
  .makers-photo-brothers {
    width: 100%;
    aspect-ratio: 1600 / 953;
    transform: rotate(-2.5deg);
  }
  .makers-photo-molly {
    width: 72%;
    margin: -18px 0 0 auto;
    aspect-ratio: 3 / 2;
    transform: rotate(3deg);
  }
}
