:root { --ink: #111; --paper: #ece4da; --muted: #666; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 17px/1.7 Almarai, sans-serif; }
a { color: inherit; }
img { display: block; width: 100%; height: auto; }

header { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 32px; padding: 28px 4vw; }
header .brand { font: 400 22px/1.2 "Libre Baskerville", serif; text-decoration: none; }
nav { display: flex; gap: 24px; }
nav a { text-decoration: none; }
nav a[aria-current], nav a:hover { text-decoration: underline; text-underline-offset: 5px; }

main { padding: 24px 4vw 80px; max-width: 1400px; margin: 0 auto; }
h1, h2, h3, h4 { font-family: "Libre Baskerville", serif; font-weight: 400; line-height: 1.25; margin: 0 0 16px; }
h1 { font-size: clamp(30px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: 24px; }
p { margin: 0 0 18px; }
.kind { color: var(--muted); }
.label { letter-spacing: .12em; font-weight: 700; margin-top: 40px; }
.credits { white-space: pre-line; }
.narrow { max-width: 760px; }

.carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; height: min(78vh, 1100px); }
.carousel::-webkit-scrollbar { display: none; }
.carousel > * { flex: none; height: 100%; aspect-ratio: 27 / 40; scroll-snap-align: center; }
.carousel img { width: 100%; height: 100%; object-fit: cover; }
.arrows { display: flex; gap: 10px; padding: 16px 18px 40px; }
.arrows button { width: 44px; height: 44px; border: 0; background: #faf8f6; color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; }
.arrows button:hover { background: #fff; }

.film { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 48px; align-items: start; margin-bottom: 56px; }
.stills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 40px 0; }
.video { position: relative; aspect-ratio: 16 / 9; margin: 0 0 40px; background: #000; }
.video.scope { aspect-ratio: 2.35 / 1; }
.video iframe, .video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 48px; align-items: start; }

footer { padding: 32px 4vw; color: var(--muted); font-size: 14px; }

@media (max-width: 720px) {
  .film, .about { grid-template-columns: 1fr; gap: 24px; }
  .stills { grid-template-columns: 1fr; }
}
