@font-face { font-family: Cormorant; src: url('assets/fonts/cormorant-regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: Cormorant; src: url('assets/fonts/cormorant-italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: Manrope; src: url('assets/fonts/manrope-regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
:root { color-scheme: light; --paper: #f5f3ee; --ink: #252522; --gutter: clamp(24px, 4vw, 64px); }
* { box-sizing: border-box; }
html { background: var(--paper); }
body { margin: 0; color: var(--ink); font-family: Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
::selection { color: var(--paper); background: var(--ink); }
.masthead { height: 88px; padding-inline: var(--gutter); display: flex; align-items: center; }
.wordmark { font-size: 27px; font-weight: 400; letter-spacing: .025em; line-height: 1; }
.film { position: relative; height: clamp(380px, 64svh, 760px); background: #968979; overflow: hidden; }
.film-poster, .film-video { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.film-video { opacity: 0; transition: opacity 500ms ease; }
.film.is-playing .film-video { opacity: 1; }
.film-video:focus-visible { outline: 2px solid var(--paper); outline-offset: -8px; }
.film-video::-webkit-media-controls { display: none !important; }
.statement { min-height: 242px; display: flex; align-items: center; justify-content: center; padding: 52px var(--gutter); }
h1 { margin: 0; max-width: 1120px; font-family: Cormorant, Georgia, serif; font-size: clamp(35px, 3.6vw, 56px); font-weight: 400; letter-spacing: -.025em; line-height: 1.12; text-align: center; text-wrap: balance; }
h1 span, h1 em { display: block; }
h1 em { font-weight: 400; color: #625d55; }
.portraits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; }
.portraits img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
footer { min-height: 150px; display: flex; align-items: center; justify-content: center; padding: 40px var(--gutter); }
footer a { color: inherit; font-size: 13px; letter-spacing: .035em; line-height: 1.5; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 5px; transition: text-decoration-color 180ms ease; }
footer a:hover, footer a:focus-visible { text-decoration-color: currentColor; }
a:focus-visible { outline: 1px solid currentColor; outline-offset: 8px; }
@media (max-width: 600px) {
  .masthead { height: 72px; }
  .wordmark { font-size: 23px; }
  .film { height: 60svh; min-height: 330px; max-height: 600px; }
  .film-poster, .film-video { object-position: 47% 50%; }
  .statement { min-height: 236px; padding-block: 40px; }
  h1 { font-size: clamp(30px, 8.3vw, 40px); line-height: 1.13; }
  h1 em { margin-top: 6px; }
  .portraits { gap: 3px; }
  footer { min-height: 130px; }
  footer a { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }
