:root {
  --bg: #0a0a0a;
  --bg-elevated: #111110;
  --text: #e8e3d8;
  --text-muted: #807a72;
  --text-faint: #4a4640;
  --accent: #a3433a;
  --hairline: rgba(232, 227, 216, 0.08);

  --font-serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.005em;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at top, #0e0e0d 0%, var(--bg) 60%) no-repeat;
}

img, svg, iframe { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- gate (access screen) ---------- */
body.is-locked {
  overflow: hidden;
  height: 100vh;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
  animation: gate-in 1.1s cubic-bezier(.2, .6, .2, 1);
  transition: opacity .8s cubic-bezier(.2, .6, .2, 1);
}

@keyframes gate-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gate.is-out {
  opacity: 0;
  pointer-events: none;
}

.gate-bg {
  position: absolute;
  inset: 0;
  background-image: url("xavmain.png");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  filter: blur(4px) saturate(0.65) brightness(0.7) contrast(1.05);
  transform: scale(1.04);
}

.gate-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(10, 10, 10, 0.55) 45%,
      var(--bg) 88%
    ),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, transparent 30%, rgba(10, 10, 10, 0.4) 100%);
}

.gate-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.gate-eyebrow {
  margin: 0 0 clamp(24px, 4vw, 40px);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 400;
}

.gate-name {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-size: clamp(64px, 11vw, 156px);
  color: var(--text);
}

.gate-name-line {
  display: block;
}

.gate-name-line:nth-child(2) {
  font-style: italic;
  padding-left: clamp(0px, 4vw, 56px);
}

.gate-role {
  margin: clamp(18px, 3vw, 28px) 0 clamp(56px, 9vw, 96px);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.gate-role .sep {
  margin: 0 12px;
  color: var(--text-faint);
}

.gate-form {
  max-width: 360px;
  margin: 0 auto;
}

.gate-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
  font-weight: 400;
}

.gate-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--hairline);
  transition: border-color .3s ease;
}

.gate-form:focus-within .gate-input-row {
  border-bottom-color: var(--text-muted);
}

.gate-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 12px 0;
  outline: none;
  text-align: center;
}

.gate-submit {
  color: var(--text-muted);
  font-size: 18px;
  padding: 8px 4px;
  transition: color .25s ease, transform .35s cubic-bezier(.2, .6, .2, 1);
}

.gate-submit:hover {
  color: var(--accent);
  transform: translateX(6px);
}

.gate-error {
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity .25s ease;
  min-height: 1.5em;
}

.gate.is-error .gate-error { opacity: 1; }
.gate.is-error .gate-input-row { border-bottom-color: var(--accent); }
.gate.is-error .gate-form {
  animation: gate-shake .42s cubic-bezier(.36, .07, .19, .97);
}

@keyframes gate-shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(3px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}

.gate-hint {
  margin: clamp(40px, 6vw, 64px) 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.gate-lang {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  right: clamp(20px, 4vw, 56px);
  z-index: 3;
}

@media (max-width: 540px) {
  .gate-name { font-size: clamp(56px, 16vw, 120px); }
  .gate-name-line:nth-child(2) { padding-left: 16px; }
  .gate-lang {
    top: 16px;
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gate { animation: none; }
  .gate.is-error .gate-form { animation: none; }
}

/* film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 8px 12px;
  z-index: 300;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- header ---------- */
.site-header {
  padding: 0;
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  gap: 24px;
  border-bottom: 1px solid var(--hairline);
}

.wordmark {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--text);
}

.nav-primary {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-primary a {
  position: relative;
  color: var(--text);
  padding: 4px 0;
  transition: color .25s ease;
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
}

.nav-primary a:hover { color: var(--accent); }
.nav-primary a:hover::after { transform: scaleX(1); background: var(--accent); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lang-toggle button {
  color: var(--text-muted);
  transition: color .2s ease;
  padding: 4px 2px;
  letter-spacing: 0.22em;
}
.lang-toggle button.is-active { color: var(--text); }
.lang-toggle button:hover { color: var(--accent); }
.lang-toggle span { opacity: 0.4; }

/* ---------- hero / name ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 45vw);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: 0 0 clamp(60px, 10vw, 140px);
}

.hero-text {
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-right: 0;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 88vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.04) brightness(0.82);
  opacity: 0.94;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(10, 10, 10, 0.88) 8%,
    rgba(10, 10, 10, 0.5) 22%,
    rgba(10, 10, 10, 0.15) 42%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(10, 10, 10, 0.75) 5%,
      rgba(10, 10, 10, 0.3) 14%,
      transparent 26%
    ),
    linear-gradient(
      to top,
      var(--bg) 0%,
      rgba(10, 10, 10, 0.55) 7%,
      rgba(10, 10, 10, 0.18) 18%,
      transparent 32%
    );
  pointer-events: none;
  z-index: 2;
}

.name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: normal;
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(64px, 13vw, 220px);
}

@media (max-width: 768px) {
  .name { font-size: clamp(64px, 17vw, 180px); }
}

.name-line {
  display: block;
}

.name-line:nth-child(2) {
  padding-left: clamp(0px, 6vw, 92px);
  font-style: italic;
  color: var(--text);
}

.role {
  margin: clamp(28px, 4vw, 44px) 0 0;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.role .sep { margin: 0 12px; color: var(--text-faint); }

/* ---------- intro / bio ---------- */
.intro {
  padding: clamp(40px, 8vw, 100px) var(--gutter) clamp(80px, 12vw, 160px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
}

.bio {
  max-width: 640px;
  margin-left: clamp(0px, 8vw, 120px);
}

.bio p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 22px;
}

.bio p:first-child::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.4em;
  line-height: 0.9;
  float: left;
  padding-right: 0.12em;
  padding-top: 0.04em;
  color: var(--accent);
}

.bio p + p {
  color: var(--text-muted);
  font-size: clamp(17px, 1.6vw, 21px);
  font-style: italic;
}

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  margin-left: clamp(0px, 8vw, 120px);
  max-width: 640px;
}

.stats li {
  position: relative;
  padding-right: 18px;
}
.stats li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--text-faint);
}

/* ---------- section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: baseline;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto clamp(40px, 6vw, 80px);
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

/* ---------- films ---------- */
.films {
  padding: clamp(60px, 10vw, 140px) 0;
}

.film-list {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 160px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.film {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.film-num {
  position: absolute;
  top: -8px;
  left: -8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

.film:nth-child(odd) {
  margin-right: clamp(0px, 6vw, 100px);
}

.film:nth-child(even) {
  margin-left: clamp(0px, 6vw, 100px);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050505;
  overflow: hidden;
  border: 1px solid var(--hairline);
  transition: border-color .4s ease, transform .6s cubic-bezier(.2,.6,.2,1);
}

.video-wrap::before {
  content: attr(data-empty-label);
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  text-align: center;
  padding: 24px;
  pointer-events: none;
}

.video-wrap.is-empty::before { display: flex; }

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.film-image .video-wrap {
  aspect-ratio: auto;
  max-width: clamp(320px, 52vw, 680px);
  background: transparent;
  border: 0;
}

.film-image .video-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.film-image:nth-child(odd) .video-wrap { margin-right: auto; }
.film-image:nth-child(even) .video-wrap { margin-left: auto; }

.film:hover .video-wrap { border-color: rgba(232, 227, 216, 0.2); }

.caption {
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 720px;
}

.film:nth-child(even) .caption {
  justify-self: end;
  text-align: right;
}

.film-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.film-meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

.note {
  margin: clamp(80px, 12vw, 140px) auto 0;
  padding: 0 var(--gutter);
  max-width: var(--container);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  text-align: center;
}

/* ---------- stills ---------- */
.stills {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--hairline);
}

.stills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.still { margin: 0; }

.still-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(
      45deg,
      #0e0e0d 0px,
      #0e0e0d 2px,
      #0a0a0a 2px,
      #0a0a0a 6px
    );
  border: 1px solid var(--hairline);
  overflow: hidden;
}

.still-frame::before {
  content: attr(data-index);
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  z-index: 2;
}

.still-frame::after {
  content: "";
  position: absolute;
  inset: 50% 50%;
  width: 1px;
  height: 18px;
  background: var(--text-faint);
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

.still-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03);
  transition: filter .6s ease, transform 1.2s cubic-bezier(.2,.6,.2,1);
}

.still-frame:has(img) {
  background: #050505;
}

.still-frame:has(img)::before,
.still-frame:has(img)::after {
  display: none;
}

.still:hover .still-frame img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.02);
}

.still figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* every other still slightly offset for editorial rhythm */
.stills-grid .still:nth-child(2) { transform: translateY(clamp(20px, 4vw, 60px)); }
.stills-grid .still:nth-child(5) { transform: translateY(clamp(20px, 4vw, 60px)); }

/* ---------- contact ---------- */
.contact {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--hairline);
}

#contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px);
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.field {
  display: flex;
  flex-direction: column;
}

.field:nth-child(4),
.field:last-of-type,
#contact-form > button {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 400;
}

.field input,
.field textarea {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
  outline: none;
  transition: border-color .25s ease;
  resize: vertical;
  width: 100%;
}

.field textarea {
  min-height: 140px;
  line-height: 1.6;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--text);
  transition: color .25s ease, border-color .25s ease, padding .25s ease;
  font-weight: 400;
}

.submit .arrow {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.6,.2,1);
}

.submit:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.submit:hover .arrow { transform: translateX(8px); }

.contact-info {
  max-width: 980px;
  margin: clamp(60px, 8vw, 120px) auto 0;
  padding: clamp(40px, 5vw, 64px) var(--gutter) 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px clamp(28px, 4vw, 56px);
}

.contact-info p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info .label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-info .value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text);
}

.contact-info a.value {
  transition: color .2s ease;
}
.contact-info a.value:hover { color: var(--accent); }

/* ---------- footer ---------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  gap: 20px;
}

.copy { margin: 0; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .bar { padding: 18px 20px; gap: 14px; }
  .nav-primary { gap: 14px; font-size: 11px; letter-spacing: 0.18em; }

  .bio { margin-left: 0; }
  .stats { margin-left: 0; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .film:nth-child(odd),
  .film:nth-child(even) { margin: 0; }

  .film:nth-child(even) .caption {
    justify-self: start;
    text-align: left;
  }

  .stills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stills-grid .still:nth-child(2),
  .stills-grid .still:nth-child(5) { transform: none; }

  #contact-form { grid-template-columns: 1fr; }

  .contact-info { grid-template-columns: 1fr; }

  .site-footer { flex-direction: column; gap: 14px; padding: 22px 20px; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
    padding-bottom: clamp(48px, 10vw, 96px);
    min-height: 0;
  }

  .hero-text {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    order: 2;
  }

  .hero-image {
    order: 1;
    aspect-ratio: auto;
    width: 100%;
    height: 50vw;
    max-height: 50vh;
  }

  .hero-image::before {
    display: none;
  }

  .hero-image::after {
    background:
      linear-gradient(
        to bottom,
        var(--bg) 0%,
        rgba(10, 10, 10, 0.55) 6%,
        transparent 18%
      ),
      linear-gradient(
        to top,
        var(--bg) 0%,
        rgba(10, 10, 10, 0.6) 12%,
        rgba(10, 10, 10, 0.2) 26%,
        transparent 45%
      );
  }

  .name-line:nth-child(2) { padding-left: 24px; }
}

@media (max-width: 540px) {
  .wordmark { display: none; }
  .stills-grid { grid-template-columns: 1fr; gap: 28px; }
  .bio p:first-child::first-letter { font-size: 2em; }

  .film-image .video-wrap {
    max-width: 100%;
  }
}
