@font-face {
  font-family: "RAS Sans";
  src: url("assets/fonts/ras-sans.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "RAS Mono";
  src: url("assets/fonts/ras-mono.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "RAS Display";
  src: url("assets/fonts/ras-condensed.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --red: #c21417;
  --cream: #f5efe4;
  --ink: #170707;
  --cream-rule: rgba(245, 239, 228, 0.38);
  --ink-rule: rgba(23, 7, 7, 0.34);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--red);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--red);
  color: var(--cream);
  font-family: "RAS Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.11;
  background-image: radial-gradient(rgba(245, 239, 228, 0.32) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 18px 24px;
  background: var(--red);
}

.mini-name,
.topbar nav,
.role,
.meta,
.awards,
.archive,
footer,
.contact-copy {
  font-family: "RAS Mono", monospace;
}

.mini-name,
.topbar nav {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

.topbar a:hover { text-decoration: underline; text-underline-offset: 0.4em; }

.single-column {
  width: min(calc(100% - 44px), 1040px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 120px 42px 80px;
  border-right: 2px solid var(--cream);
  border-left: 2px solid var(--cream);
}

.hero-intro { padding: 14px 0 68px; }

.role {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-block {
  padding-top: 42px;
  border-top: 1px solid var(--cream-rule);
}

.section-block + .section-block { margin-top: 96px; }

#showreel { padding-top: 0; border-top: 0; }

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--cream-rule);
  background: #000;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-heading { margin-bottom: 38px; }

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  max-width: 100%;
  font-family: "RAS Display", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  overflow-wrap: normal;
}

h1 { font-size: clamp(2.7rem, 6vw, 5rem); line-height: 0.78; }
h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 0.8; }
h3 { font-size: clamp(1.6rem, 3.1vw, 2.85rem); line-height: 0.82; }

#work .section-heading h2 {
  color: var(--cream);
  font-size: clamp(3.25rem, 6vw, 5.5rem);
}

.film-entry + .film-entry { margin-top: 68px; }
.film-subheading { display: flex; justify-content: space-between; margin-bottom: 14px; }

.meta {
  margin-top: 7px;
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.awards {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--ink-rule);
  color: var(--ink);
  font-size: 9px;
  line-height: 1.65;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.archive { color: var(--ink); }

.row.rich {
  display: grid;
  grid-template-columns: 0.9fr 1.7fr auto;
  gap: 0.7rem 1.5rem;
  padding: 13px 0;
  border-top: 1px solid var(--ink-rule);
  font-size: 10px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.row.rich:last-child { border-bottom: 1px solid var(--ink-rule); }
.row.rich small { grid-column: 2 / -1; font-size: 9px; line-height: 1.5; text-transform: none; }

.bio,
.agent-copy {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.45;
}

.bio p:first-child,
.agent-copy p:first-child { margin-top: 0; }

.agent-copy a { text-decoration: underline; text-underline-offset: 0.2em; }

footer {
  margin-top: 120px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-rule);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .single-column { display: flex; flex-direction: column; }
.contact-main { flex: 1; padding-top: 40px; }
.contact-main .section-heading { margin-top: 72px; }
.contact-copy { margin-top: 72px; color: var(--ink); font-size: 13px; line-height: 1.8; }
.contact-copy a { text-decoration: underline; text-underline-offset: 0.25em; }

@media (max-width: 760px) {
  .topbar { align-items: flex-start; padding: 16px; }
  .topbar nav { max-width: 14rem; }
  .single-column { width: calc(100% - 28px); padding: 92px 18px 56px; }
  .hero-intro { padding-bottom: 48px; }
  .section-block { padding-top: 26px; }
  .section-block + .section-block { margin-top: 68px; }
  h1 { font-size: clamp(2.35rem, 11.3vw, 3.75rem); }
  h2 { font-size: clamp(1.6rem, 8vw, 3.3rem); }
  h3 { font-size: clamp(1.6rem, 8vw, 2.7rem); }
  #work .section-heading h2 { font-size: clamp(2.4rem, 12vw, 4.9rem); }
  .row.rich { grid-template-columns: 0.8fr 1.5fr auto; gap: 0.55rem 0.8rem; }
  .row.rich small { grid-column: 1 / -1; }
  footer { margin-top: 80px; }
}

@media (max-width: 480px) {
  .mini-name { max-width: 7.5rem; line-height: 1.3; }
  .topbar nav { max-width: 11rem; gap: 0.6rem 0.8rem; }
  .row.rich { grid-template-columns: 1fr auto; }
  .row.rich span:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .row.rich span:nth-child(3) { grid-column: 2; grid-row: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
