/* 24 Cinema Street - Cinematic Redesign */
:root {
  --bg: #0a0908;
  --bg-2: #14110f;
  --bg-3: #1c1916;
  --ink: #f4ede4;
  --ink-dim: #a39b8e;
  --ink-muted: #6b6357;
  --gold: #c9a96a;
  --gold-bright: #e6c989;
  --crimson: #b3261e;
  --line: rgba(201, 169, 106, 0.18);
  --line-soft: rgba(244, 237, 228, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-feature-settings: "ss01", "ss02";
  background:
    radial-gradient(ellipse at 20% -10%, rgba(201,169,106,0.08), transparent 50%),
    radial-gradient(ellipse at 100% 30%, rgba(179,38,30,0.06), transparent 50%),
    var(--bg);
  min-height: 100vh;
}

.serif { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; }
.mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { display: block; max-width: 100%; }

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

/* ── Navigation ─────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.3) 100%);
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 14px 48px; background: rgba(10,9,8,0.95); }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  height: 44px; width: auto; display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.nav-brand:hover .nav-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 2px 18px rgba(201,169,106,0.45));
}
.nav.scrolled .nav-logo { height: 36px; }
.footer-logo {
  height: 56px; width: auto; display: block; margin-bottom: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.footer-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 18px rgba(201,169,106,0.45));
}
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: inline-flex !important; align-items: center; gap: 10px;
  margin-bottom: 0 !important; font-size: 13px;
}
.footer-contact-item .fc-icon {
  display: grid; place-items: center; width: 28px; height: 28px;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold);
  flex-shrink: 0; transition: all 0.3s;
}
.footer-contact-item:hover .fc-icon { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.contact-strip {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin: 0 0 32px;
}
.contact-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border: 1px solid var(--line);
  font-size: 14px; color: var(--ink); transition: all 0.3s;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em;
}
.contact-pill svg { color: var(--gold); flex-shrink: 0; }
.contact-pill:hover { border-color: var(--gold); background: rgba(201,169,106,0.06); transform: translateY(-2px); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim); position: relative; padding: 6px 0; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px; border: 1px solid var(--gold); color: var(--gold);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  position: relative; overflow: hidden; transition: color 0.4s;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateY(101%); transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-cta:hover { color: var(--bg); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }

.nav-burger { display: none; width: 32px; height: 22px; position: relative; z-index: 110; cursor: pointer; }
.nav-burger span {
  display: block; height: 1.5px; background: var(--ink); margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1), opacity 0.3s ease, background 0.3s;
  transform-origin: center;
}
.nav-burger span:last-child { margin-bottom: 0; }
.nav-burger.open span { background: var(--gold); }
.nav-burger.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Mobile drawer (slides in from the right) */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5,4,3,0.7); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
  z-index: 100; background: linear-gradient(180deg, #0c0a08 0%, #14110f 100%);
  border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.65,0,0.35,1);
  display: flex; flex-direction: column;
  box-shadow: -24px 0 60px rgba(0,0,0,0.6);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--line-soft);
}
.mobile-drawer-logo {
  height: 36px; width: auto;
}
.mobile-close {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line-soft); color: var(--ink-dim);
  border-radius: 50%; transition: all 0.3s;
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

.mobile-nav { padding: 24px 0; flex: 1; }
.mobile-link {
  width: 100%; padding: 18px 28px; display: flex; align-items: center; gap: 18px;
  text-align: left; color: var(--ink-dim); position: relative;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.5,0,0.1,1), color 0.3s, background 0.3s;
}
.mobile-drawer.open .mobile-link { opacity: 1; transform: translateX(0); }
.mobile-link:hover, .mobile-link.active { color: var(--gold); background: rgba(201,169,106,0.04); }
.mobile-link-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-muted); letter-spacing: 0.15em;
}
.mobile-link-label {
  flex: 1; font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; letter-spacing: 0.01em;
}
.mobile-link-arrow { color: var(--gold); opacity: 0; transform: translateX(-8px); transition: all 0.3s; font-size: 16px; }
.mobile-link:hover .mobile-link-arrow { opacity: 1; transform: translateX(0); }

.mobile-drawer-foot {
  padding: 24px 28px 32px; border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 14px;
}
.mobile-foot-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-dim);
  transition: color 0.3s;
}
.mobile-foot-link:hover { color: var(--gold); }
.mobile-foot-link svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}

/* ── Hero ─────────────────────────── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  padding: 140px 48px 200px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,106,0.18), transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(179,38,30,0.12), transparent 50%);
}
.hero-bars {
  position: absolute; left: 0; right: 0; height: 80px; background: #000; z-index: 2;
}
.hero-bars.top { top: 0; }
.hero-bars.bot { bottom: 0; }

.hero-content { position: relative; z-index: 3; max-width: 1400px; margin: 0 auto; width: 100%; }

.hero-meta {
  display: flex; gap: 24px; align-items: center;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 36px;
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--crimson); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 124px);
  font-weight: 400; line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 32px; max-width: 18ch;
}
.hero h1 em {
  font-style: italic; color: var(--gold); position: relative;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero h1 .reveal { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .reveal > span { display: inline-block; animation: rise 1s cubic-bezier(0.5, 0, 0.1, 1) forwards; }
@keyframes rise { from { transform: translateY(110%); } to { transform: translateY(0); } }

.hero-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px); font-style: italic;
  color: var(--ink-dim); max-width: 50ch; line-height: 1.4;
  margin-bottom: 56px;
  opacity: 0; animation: fadeIn 1.2s 0.6s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-cta { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0; animation: fadeIn 1.2s 0.9s forwards; position: relative; z-index: 5; }

.btn {
  padding: 18px 36px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,106,0.3); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(6px); }

.hero-scroll {
  position: absolute; bottom: 110px; right: 32px; z-index: 4;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-muted);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 16px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.hero-frame {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 38vw; max-width: 540px; aspect-ratio: 3/4; z-index: 1;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(28,25,22,0.6), rgba(20,17,15,0.9));
  display: grid; place-items: center;
  opacity: 0; animation: fadeIn 1.5s 0.3s forwards;
}
.hero-frame::before, .hero-frame::after {
  content: ''; position: absolute; width: 24px; height: 24px;
}
.hero-frame::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hero-frame::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.hero-frame-inner {
  position: absolute; inset: 24px;
  background:
    repeating-linear-gradient(45deg, rgba(201,169,106,0.04) 0, rgba(201,169,106,0.04) 2px, transparent 2px, transparent 12px),
    radial-gradient(ellipse at center, rgba(201,169,106,0.15), transparent 70%);
  display: flex; flex-direction: column; justify-content: space-between; padding: 24px;
}
.hero-frame-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--ink-muted); letter-spacing: 0.15em;
}
.hero-frame-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 28px; color: var(--gold); line-height: 1.2;
}

/* Sprocket holes accent */
.sprockets {
  position: absolute; top: 0; bottom: 0; width: 32px;
  display: flex; flex-direction: column; justify-content: space-around; align-items: center;
  background: rgba(0,0,0,0.4); z-index: 2;
}
.sprockets.left { left: 0; }
.sprockets.right { right: 0; }
.sprockets div { width: 14px; height: 18px; background: var(--bg); border-radius: 2px; }

/* ── Sections ─────────────────────────── */
section { position: relative; padding: 140px 48px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.section-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}

h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.015em;
  max-width: 22ch; margin-bottom: 40px;
}
h2.display em { font-style: italic; color: var(--gold); }

.container { max-width: 1400px; margin: 0 auto; }

/* ── About ─────────────────────────── */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line-soft);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 1.8vw, 26px); line-height: 1.5;
  color: var(--ink-dim); margin-bottom: 32px;
}
.about-lede strong { color: var(--ink); font-weight: 400; }

.about-image {
  aspect-ratio: 4/5; position: relative; border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.55) 100%),
    url('images/behind-lens.svg') center/cover no-repeat,
    linear-gradient(135deg, var(--bg-3), var(--bg-2));
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.5,0,0.1,1);
}
.about-image:hover { transform: scale(1.02); }
.about-image::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(201,169,106,0.035) 0, rgba(201,169,106,0.035) 1px, transparent 1px, transparent 9px);
  mix-blend-mode: overlay;
}
.about-image::after {
  content: 'BEHIND THE LENS · 24fps'; position: absolute; bottom: 24px; left: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: var(--gold);
  background: rgba(10,8,7,0.55); padding: 6px 10px; border: 1px solid rgba(201,169,106,0.25);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.spotlight {
  position: absolute; top: 20%; left: 35%; width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(201,169,106,0.18), transparent 60%);
  filter: blur(24px); pointer-events: none;
  animation: lensFlicker 5s ease-in-out infinite;
}
@keyframes lensFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
  93% { opacity: 1; }
  94% { opacity: 0.6; }
  96% { opacity: 1; }
}
.about-image-overlay {
  position: absolute; top: 24px; left: 24px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px;
  color: var(--gold); letter-spacing: 0.01em; line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.about-image-overlay::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold); margin-bottom: 14px; opacity: 0.6;
}

/* ── Filmmaker (under About) ─────────────────────────── */
.filmmaker {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 80px 48px 120px;
  position: relative;
}
.filmmaker::before {
  content:''; position:absolute; inset: 0; pointer-events:none;
  background: radial-gradient(ellipse at 20% 30%, rgba(201,169,106,0.06), transparent 50%),
              radial-gradient(ellipse at 80% 70%, rgba(179,38,30,0.05), transparent 50%);
}
.filmmaker-grid {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px;
}
.fm-stack { display: flex; flex-direction: column; gap: 28px; }
.fm-card {
  position: relative; padding: 36px 36px;
  background: linear-gradient(180deg, rgba(28,25,22,0.7), rgba(20,17,15,0.85));
  border: 1px solid var(--line-soft); border-radius: 4px;
  transition: border-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}
.fm-card::before {
  content:''; position:absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.8s cubic-bezier(0.65,0,0.35,1);
}
.fm-card:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.fm-card:hover::before { transform: scaleX(1); }
.fm-bio { min-height: 100%; display: flex; flex-direction: column; }
.fm-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.fm-icon {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold); border-radius: 4px;
  background: rgba(201,169,106,0.06); flex-shrink: 0;
}
.fm-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500;
  color: var(--ink); flex: 1; line-height: 1.2;
}
.fm-card h3 em { font-style: italic; color: var(--gold); }
.fm-imdb {
  display: inline-flex; gap: 6px; font-size: 12px; color: var(--gold);
  letter-spacing: 0.05em; font-weight: 500;
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
  width: 100%; margin-top: -8px;
}
.fm-imdb:hover { border-bottom-color: var(--gold); }
.fm-bio p {
  color: var(--ink-dim); line-height: 1.8; font-size: 15px; margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.fm-bio p em { font-style: italic; color: var(--ink); }
.fm-readmore {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 13px; font-weight: 500;
  margin-top: auto; transition: gap 0.3s;
}
.fm-readmore:hover { gap: 14px; }
.fm-readmore .arrow { transition: transform 0.3s; }

.fm-list { list-style: none; }
.fm-list li {
  position: relative; padding: 12px 0 12px 0;
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--ink-dim); font-size: 14px; line-height: 1.5;
  border-bottom: 1px dashed var(--line-soft);
  opacity: 0; animation: fmRise 0.7s cubic-bezier(0.5,0,0.1,1) forwards;
}
.fm-list li:last-child { border-bottom: none; }
.fm-bullet {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 8px; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201,169,106,0.15);
}
@keyframes fmRise {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.fm-films { list-style: none; }
.fm-films li {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 16px;
  padding: 11px 0; align-items: center;
  border-bottom: 1px dashed var(--line-soft);
  opacity: 0; animation: fmRise 0.7s cubic-bezier(0.5,0,0.1,1) forwards;
  transition: padding-left 0.3s ease;
}
.fm-films li:last-child { border-bottom: none; }
.fm-films li:hover { padding-left: 8px; }
.fm-films .fy {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-muted); letter-spacing: 0.08em;
}
.fm-films .ft {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--ink);
  font-weight: 500;
}
.fbadge {
  font-size: 10px; letter-spacing: 0.12em; padding: 5px 10px;
  border-radius: 999px; background: rgba(201,169,106,0.12);
  color: var(--gold); border: 1px solid var(--line);
  white-space: nowrap; font-family: 'Inter', sans-serif;
}
.fbadge.win {
  background: linear-gradient(135deg, rgba(201,169,106,0.2), rgba(179,38,30,0.15));
  border-color: var(--gold); color: var(--gold-bright);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,106,0.3); }
  50% { box-shadow: 0 0 0 4px rgba(201,169,106,0); }
}

@media (max-width: 1024px) {
  .filmmaker-grid { grid-template-columns: 1fr; }
  .filmmaker { padding: 60px 24px 80px; }
}
@media (max-width: 640px) {
  .fm-card { padding: 28px 22px; }
  .fm-films li { grid-template-columns: 48px 1fr; }
  .fm-films .fbadge { grid-column: 1 / -1; justify-self: start; }
}

/* ── Hero attract animations ─────────────────────────── */
.hero-bg::after {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,106,0.18), transparent 35%);
  transition: background 0.4s ease;
  pointer-events: none;
}
.hero-projector {
  position: absolute; top: -10%; left: -10%; width: 80%; height: 120%;
  background:
    conic-gradient(from 200deg at 0% 30%,
      transparent 0deg, rgba(201,169,106,0.0) 10deg,
      rgba(201,169,106,0.08) 30deg, rgba(201,169,106,0.14) 45deg,
      rgba(201,169,106,0.08) 60deg, transparent 80deg, transparent 360deg);
  filter: blur(12px); opacity: 0; z-index: 1;
  animation: projectorIn 2s 0.4s cubic-bezier(0.5,0,0.1,1) forwards, projectorFlicker 6s 2.5s infinite;
  pointer-events: none;
}
@keyframes projectorIn { to { opacity: 1; } }
@keyframes projectorFlicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.6; }
  94% { opacity: 1; }
  96% { opacity: 0.7; }
  97% { opacity: 1; }
}
.hero-dust {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.hero-dust span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: rgba(201,169,106,0.6);
  box-shadow: 0 0 6px rgba(201,169,106,0.6);
  animation: dustFloat linear infinite;
}
@keyframes dustFloat {
  0% { transform: translate(0, 100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(40px, -10vh); opacity: 0; }
}
.hero-marquee {
  position: absolute; bottom: 28px; left: 0; right: 0;
  display: flex; gap: 48px; overflow: hidden; z-index: 2;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--ink-muted);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  pointer-events: none;
}
.hero-marquee-track {
  display: flex; gap: 48px; flex-shrink: 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.hero-marquee span { display: inline-flex; align-items: center; gap: 48px; }
.hero-marquee i { color: var(--gold); font-style: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.hero-frame { animation: frameFloat 6s ease-in-out infinite; }
@keyframes frameFloat {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 12px)); }
}

.attract-cta {
  position: absolute; left: 48px; top: 130px; z-index: 4;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  pointer-events: none;
}
.attract-cta::before {
  content: ''; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle, var(--gold) 30%, transparent 32%);
  animation: rec 1.4s ease-in-out infinite;
}
@keyframes rec {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,106,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(201,169,106,0); }
}

/* ── Services ─────────────────────────── */
.services { background: var(--bg); }
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid; grid-template-columns: 80px 1fr 2fr 80px;
  gap: 40px; padding: 48px 0; align-items: start;
  border-top: 1px solid var(--line-soft); position: relative; cursor: pointer;
  transition: padding 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-row:last-child { border-bottom: 1px solid var(--line-soft); }
.service-row::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-row:hover::before { transform: scaleX(1); }
.service-row:hover { padding-left: 24px; }

.service-num {
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  color: var(--gold); letter-spacing: 0.1em;
}
.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px);
  font-weight: 400; line-height: 1.1;
}
.service-tag {
  font-style: italic; color: var(--ink-muted); font-size: 14px;
  margin-top: 8px; letter-spacing: 0.02em;
}
.service-body { color: var(--ink-dim); line-height: 1.7; font-size: 15px; }
.service-body p { margin-bottom: 20px; }
.service-body ul { list-style: none; }
.service-body li {
  position: relative; padding-left: 20px; margin-bottom: 8px;
  font-size: 13px; color: var(--ink-muted);
}
.service-body li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}
.service-arrow {
  font-size: 24px; color: var(--ink-muted); justify-self: end; align-self: center;
  transition: all 0.4s; transform: rotate(-45deg);
}
.service-row:hover .service-arrow { color: var(--gold); transform: rotate(0deg); }

/* ── Philosophy ─────────────────────────── */
.philosophy {
  background:
    radial-gradient(ellipse at center, rgba(179,38,30,0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.philosophy h2 { margin-left: auto; margin-right: auto; }
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-top: 80px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.phil-card {
  padding: 40px 24px; border: 1px solid var(--line-soft); position: relative;
  transition: all 0.5s; text-align: left;
}
.phil-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.phil-card-num {
  font-family: 'JetBrains Mono', monospace; color: var(--gold);
  font-size: 11px; letter-spacing: 0.2em; margin-bottom: 24px;
}
.phil-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 400; margin-bottom: 16px;
}
.phil-card p { color: var(--ink-dim); line-height: 1.6; font-size: 15px; }

.phil-quote {
  margin-top: 80px; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 32px); font-style: italic; color: var(--gold);
  letter-spacing: -0.01em;
}

/* ── Process ─────────────────────────── */
.process { background: var(--bg); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 80px; border-top: 1px solid var(--line);
}
.process-step {
  padding: 56px 32px; border-right: 1px solid var(--line-soft);
  position: relative; transition: background 0.5s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-2); }
.process-num {
  font-family: 'Cormorant Garamond', serif; font-size: 80px;
  color: var(--gold); line-height: 1; margin-bottom: 32px; opacity: 0.8;
}
.process-step h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 400; margin-bottom: 16px;
}
.process-step p { color: var(--ink-dim); line-height: 1.6; font-size: 14px; }

/* ── Work / Posters ─────────────────────────── */
.work { background: var(--bg-2); border-top: 1px solid var(--line-soft); }

.work-tabs {
  display: flex; gap: 32px; margin-bottom: 48px; border-bottom: 1px solid var(--line-soft);
  padding-bottom: 0;
}
.work-tab {
  padding: 16px 0; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-muted); position: relative; transition: color 0.3s;
}
.work-tab.active { color: var(--gold); }
.work-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.work-tab.active::after { transform: scaleX(1); }

.posters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.poster {
  position: relative; aspect-ratio: 2/3; overflow: hidden; cursor: pointer;
  background: var(--bg-3); border: 1px solid var(--line-soft);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.poster:hover { transform: translateY(-8px); border-color: var(--gold); }
.poster-art {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s cubic-bezier(0.5, 0, 0.1, 1);
}
.poster:hover .poster-art { transform: scale(1.08); }
.poster-art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,0.95) 100%);
}
.poster-meta {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
}
.poster-meta .cat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 8px;
}
.poster-meta h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 400; line-height: 1.1;
}
.poster-meta .award {
  display: inline-block; margin-top: 10px; font-size: 10px;
  letter-spacing: 0.2em; padding: 4px 10px;
  border: 1px solid var(--gold); color: var(--gold);
  text-transform: uppercase;
}

.poster-tape {
  position: absolute; top: 14px; right: -30px;
  background: var(--crimson); color: var(--ink); padding: 4px 36px;
  transform: rotate(35deg); font-size: 10px; letter-spacing: 0.2em;
  font-family: 'JetBrains Mono', monospace; z-index: 3;
}

/* ── Director Filmography Timeline ─────────────────────────── */
.filmography { background: var(--bg); }
.timeline {
  position: relative; margin-top: 80px; padding-left: 40px;
  border-left: 1px solid var(--line);
}
.timeline-item {
  position: relative; padding: 0 0 56px 40px;
  display: grid; grid-template-columns: 100px 1fr 200px; gap: 32px; align-items: start;
}
.timeline-item::before {
  content: ''; position: absolute; left: -47px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--ink-muted);
}
.timeline-item.award::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,169,106,0.2); }
.timeline-year {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--gold);
}
.timeline-content h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 32px;
  font-weight: 400; margin-bottom: 12px;
}
.timeline-content p { color: var(--ink-dim); line-height: 1.6; font-size: 14px; margin-bottom: 12px; }
.timeline-content .meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--ink-muted); margin-bottom: 8px; }
.timeline-content .imdb { color: var(--gold); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.timeline-poster {
  aspect-ratio: 2/3; border: 1px solid var(--line-soft);
  background-size: cover; background-position: center; position: relative;
}

/* ── Team Page ─────────────────────────── */
.team-hero {
  min-height: 70vh; display: flex; align-items: center; padding: 160px 48px 80px;
  position: relative; overflow: hidden;
}
.team-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,169,106,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(179,38,30,0.1), transparent 40%);
}
.team-hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }
.team-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 400; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 24px;
}
.team-hero h1 em { font-style: italic; color: var(--gold); }
.team-hero p {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 1.6vw, 24px);
  font-style: italic; color: var(--ink-dim); max-width: 60ch; line-height: 1.5;
}

.team-section { padding: 60px 48px 160px; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1400px; margin: 0 auto;
}
.team-card {
  position: relative; background: var(--bg-2);
  border: 1px solid var(--line-soft); overflow: hidden;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.team-card:hover .team-portrait::after { opacity: 0.4; }
.team-card:hover .team-spotlight { opacity: 1; }

.team-portrait {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3) 0%, #2a2520 100%);
}
.team-portrait::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 4px);
}
.team-portrait::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.9) 100%);
  opacity: 0.7; transition: opacity 0.5s;
}
.team-spotlight {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at top, rgba(201,169,106,0.3), transparent 50%);
  opacity: 0.6; transition: opacity 0.6s; pointer-events: none;
}
.team-portrait-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; z-index: 2;
}
.team-portrait-monogram {
  font-family: 'Cormorant Garamond', serif; font-size: 96px;
  color: var(--gold); font-style: italic; line-height: 1;
  text-shadow: 0 4px 32px rgba(201,169,106,0.3);
}
.team-portrait-glyph {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.3em; color: var(--ink-muted); text-transform: uppercase;
}
.team-frame-corners::before, .team-frame-corners::after,
.team-frame-corners > span::before, .team-frame-corners > span::after {
  content: ''; position: absolute; width: 18px; height: 18px; z-index: 3;
  border-color: var(--gold);
}
.team-frame-corners::before { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.team-frame-corners::after { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.team-frame-corners > span::before { bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.team-frame-corners > span::after { bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }

.team-info { padding: 32px 28px; }
.team-info .role {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.team-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 30px;
  font-weight: 400; line-height: 1.1; margin-bottom: 8px;
}
.team-info .title-line {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--ink-dim); font-size: 16px; margin-bottom: 20px;
}
.team-bio { color: var(--ink-dim); line-height: 1.7; font-size: 14px; margin-bottom: 24px; }
.team-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 4px;
  transition: gap 0.3s;
}
.team-link:hover { gap: 16px; }

.team-card .ribbon {
  position: absolute; top: 20px; left: 0;
  background: var(--crimson); color: var(--ink);
  padding: 6px 14px; font-size: 10px; letter-spacing: 0.2em;
  font-family: 'JetBrains Mono', monospace; z-index: 4;
}

/* ── CTA / Contact ─────────────────────────── */
.cta {
  background:
    radial-gradient(ellipse at center, rgba(201,169,106,0.12), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line-soft); text-align: center;
  padding: 160px 48px;
}
.cta h2 { margin: 0 auto 32px; }
.cta p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px); color: var(--ink-dim);
  max-width: 60ch; margin: 0 auto 56px; line-height: 1.5;
}
.cta-buttons { display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.contact-form {
  margin-top: 80px; max-width: 720px; margin-left: auto; margin-right: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left;
}
.contact-form .full { grid-column: 1 / -1; }
.input-group { position: relative; }
.input-group label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted);
  display: block; margin-bottom: 10px;
}
.input-group input, .input-group textarea, .input-group select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--line); padding: 14px 0;
  color: var(--ink); font-size: 16px; font-family: inherit;
  transition: border-color 0.3s;
}
.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
  outline: none; border-color: var(--gold);
}
.input-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ─────────────────────────── */
.footer {
  background: #050403; border-top: 1px solid var(--line-soft);
  padding: 80px 48px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1400px; margin: 0 auto;
}
.footer-brand p { color: var(--ink-dim); line-height: 1.7; max-width: 30ch; margin-top: 16px; font-size: 14px; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: var(--ink-dim); margin-bottom: 10px;
  font-size: 14px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line-soft); margin-top: 56px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-muted); letter-spacing: 0.1em; max-width: 1400px;
  margin-left: auto; margin-right: auto; flex-wrap: wrap; gap: 12px;
}

/* ── Affiliation ─────────────────────────── */
.affiliation {
  padding: 100px 48px; background: var(--bg-2);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.affil-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.affil-image {
  aspect-ratio: 4/3; position: relative;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,169,106,0.2), transparent 60%),
    linear-gradient(135deg, var(--bg-3), var(--bg));
  border: 1px solid var(--line); display: grid; place-items: center;
}
.affil-image-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 48px; color: var(--gold);
}
.affil-list { list-style: none; margin-top: 32px; }
.affil-list li {
  padding: 18px 0; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 16px;
  color: var(--ink-dim); font-size: 15px;
}
.affil-list li::before {
  content: '◆'; color: var(--gold); font-size: 10px;
}
.affil-list li:last-child { border-bottom: 1px solid var(--line-soft); }

/* ── Reveal animation ─────────────────────────── */
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.5, 0, 0.1, 1); }
.reveal-on-scroll.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 18px 24px; }
  section, .team-hero, .team-section, .cta, .footer, .affiliation { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 120px 24px 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .posters-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .timeline-poster { display: none; }
  .hero-frame { display: none; }
  .hero-scroll { display: none; }
  .service-row { grid-template-columns: 50px 1fr; gap: 16px; }
  .service-row > .service-body, .service-row > .service-arrow { grid-column: 1 / -1; padding-left: 50px; }
  .service-arrow { justify-self: start; }
  .contact-form { grid-template-columns: 1fr; }
  .affil-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero h1 { font-size: 44px; }
  section { padding: 80px 20px; }
  .nav { padding: 14px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .posters-grid { grid-template-columns: 1fr; }
  .work-tabs { gap: 16px; overflow-x: auto; }
}
