:root {
  --ink: #11110f;
  --paper: #f3f0e8;
  --red: #bf3727;
  --line: #cfc8bb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; }
.site-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 4vw; border-bottom: 1px solid var(--line); }
.wordmark { font-weight: 800; letter-spacing: .06em; text-decoration: none; font-size: .9rem; }
nav { display: flex; gap: 25px; font-size: .86rem; }
nav a { text-decoration: none; }
nav a:hover, .text-link:hover { color: var(--red); }
.hero { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 76vh; }
.hero-copy { padding: clamp(65px, 11vw, 160px) 7vw; align-self: center; }
.eyebrow { margin: 0 0 18px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 750px; font-family: Georgia, serif; font-size: clamp(3.3rem, 6.3vw, 6.6rem); line-height: .92; letter-spacing: -.06em; margin-bottom: 32px; }
.intro { max-width: 570px; font-size: 1.05rem; line-height: 1.55; }
.button { display: inline-block; margin-top: 12px; padding: 14px 20px; background: var(--ink); color: var(--paper); text-decoration: none; font-weight: 700; }
.hero-image { width: 100%; height: 100%; min-height: 540px; object-fit: cover; filter: saturate(.93) contrast(1.05); }
.work-section { padding: 110px 7vw; background: #e5e0d5; }
.section-heading { max-width: 770px; margin-bottom: 58px; }
h2 { font-family: Georgia, serif; font-size: clamp(2.2rem, 4.4vw, 4.8rem); line-height: .98; letter-spacing: -.045em; margin-bottom: 20px; }
.feature-project { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--ink); color: #fffdf7; }
.feature-project img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.feature-copy { padding: clamp(35px, 5vw, 78px); }
.feature-copy h3 { font: clamp(2rem, 3.5vw, 4rem)/.98 Georgia, serif; letter-spacing: -.045em; margin-bottom: 24px; }
.feature-copy p { line-height: 1.55; }
.small-note { margin-top: 28px; color: #d7d0c2; font-size: .86rem; }
.text-link { display: inline-block; margin-top: 12px; color: #fffdf7; font-weight: 700; }

.film-credits { display: grid; grid-template-columns: .75fr 1.25fr; gap: 56px; padding: 72px 0 52px; border-bottom: 1px solid var(--line); }
.credits-intro h3 { font: 2.35rem/1 Georgia, serif; letter-spacing: -.04em; margin-bottom: 18px; }
.credits-intro p:last-child { max-width: 330px; font-size: .95rem; line-height: 1.5; }
.credits-list { border-top: 1px solid var(--ink); }
.credit { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 13px 0 14px; border-bottom: 1px solid var(--line); }
.credit-year { color: var(--red); font-size: .75rem; font-weight: 700; letter-spacing: .05em; padding-top: 3px; }
.credit strong { display: block; font: 1.12rem/1.1 Georgia, serif; }
.credit small { display: block; margin-top: 5px; color: #5f5a51; font-size: .76rem; line-height: 1.35; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.project-card { min-height: 260px; padding: 28px; background: var(--paper); border-top: 4px solid var(--red); }
.number { color: var(--red); font-weight: 700; margin-bottom: 60px; }
.project-card h3 { font: 1.65rem/1 Georgia, serif; margin-bottom: 14px; }
.project-card p { font-size: .92rem; line-height: 1.5; }
.about-section { display: grid; grid-template-columns: .55fr 1.45fr; gap: 50px; padding: 130px 7vw; }
.about-section p:last-child { max-width: 660px; font-size: 1.1rem; line-height: 1.6; }
footer { padding: 100px 7vw 35px; background: var(--red); color: #fff9ef; }
footer h2 { max-width: 830px; }
.email { font-size: clamp(1.25rem, 2.5vw, 2.4rem); font-weight: 700; text-underline-offset: 6px; }
.footer-note { margin: 90px 0 0; font-size: .75rem; letter-spacing: .08em; }
@media (max-width: 760px) {
  .hero, .feature-project, .about-section, .film-credits { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; }
  .project-grid { grid-template-columns: 1fr; }
  .about-section { gap: 10px; padding: 85px 7vw; }
  nav { gap: 13px; }
}
