:root {
  --bg: #050505;
  --text: #f2f2f2;
  --soft: #cdcdcd;
  --muted: #929292;
  --line: #262626;
  --accent: #ff7a00;
  --max-width: 1480px;
  --outer: 30px;
  --font-display: "Urbanist", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
body { font-family: var(--font-display); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--text); outline-offset: 7px; }

.site-header, .film-list, .section, .site-footer {
  width: min(calc(100% - (var(--outer) * 2)), var(--max-width));
  margin-inline: auto;
}

.site-header { padding-block: clamp(30px, 5vw, 68px) clamp(78px, 12vw, 180px); }
.brand { display: inline-block; }
.brand h1 { margin: 0; line-height: 0.77; }
.brand-name, .brand-film { display: block; letter-spacing: normal; font-size: clamp(3.4rem, 8vw, 8rem); }
.brand-name { font-weight: 200; }
.brand-film { font-weight: 900; }

.film-list { padding-bottom: clamp(80px, 10vw, 160px); }
.film-entry { width: min(100%, 480px); }
.film-entry + .film-entry { margin-top: clamp(58px, 6vw, 88px); }
.film-link { display: block; }
.film-title { margin: 0 0 17px; font-size: clamp(1rem, 1.45vw, 1.35rem); font-weight: 400; line-height: 1.2; }
.film-title span { color: var(--muted); font-weight: 300; }
.film-image { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #111; }
.film-image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 350ms ease; }

.section { padding-block: clamp(62px, 8vw, 116px); border-top: 1px solid var(--line); }
.section-label { margin: 0 0 34px; font-size: .78rem; font-weight: 400; text-transform: uppercase; color: var(--muted); }
.client-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 24px; max-width: 660px; margin: 0; padding: 0; list-style: none; font-size: 1rem; font-weight: 400; line-height: 1.45; color: var(--soft); }

.contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; color: var(--soft); }
.contact-links a { padding-bottom: 2px; border-bottom: 1px solid transparent; }
.contact-links a:hover { border-color: var(--text); color: var(--text); }
.footer-site-link { display: inline-block; margin-top: 8px; padding-bottom: 1px; border-bottom: 1px solid transparent; color: var(--accent); font-weight: 300; }
.footer-site-link:hover { border-color: var(--accent); }

.footer-wrapper { border-top: 1px solid var(--line); }
.site-footer { display: flex; justify-content: space-between; gap: 28px; padding-block: 30px 28px; font-size: .82rem; line-height: 1.65; color: var(--muted); }
.footer-right { text-align: right; }

@media (hover: hover) {
  .film-link:hover .film-image img { transform: scale(1.012); filter: saturate(1); }
}

@media (max-width: 600px) {
  :root { --outer: 18px; }
  .site-header { padding-top: 24px; }
  .brand-film { font-size: clamp(2.25rem, 10vw, 2.75rem); letter-spacing: normal; }
  .brand h1 { line-height: .9; }
  .film-title { margin-bottom: 12px; }
  .client-list { grid-template-columns: 1fr 1fr; gap-inline: 18px; }
  .site-footer { flex-direction: column; }
  .footer-right { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .film-image img { transition: none; }
}
