  :root {
    --kodak-cream: #f5edd8;
    --kodak-warm: #ede0c4;
    --kodak-amber: #e8c97a;
    --kodak-orange: #d9834a;
    --film-red: #c94040;
    --fuji-cyan: #7abfb8;
    --fuji-green: #9dbf7a;
    --rgb-red: #e8a0a0;
    --rgb-green: #a0c8a0;
    --rgb-blue: #a0b8e0;
    --cym-cyan: #9ed4d0;
    --cym-yellow: #e8d8a0;
    --cym-magenta: #d8a0c0;
    --dark-base: #0f1318;
    --text-primary: #2a1f0f;
    --text-muted: #6b5a3a;
    --grain-opacity: 0.045;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--kodak-cream);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
  }

  /* ─── GRAIN OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
  }

  /* ─── ANIMATED GRAIN ─── */
  @keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -3%); }
    20% { transform: translate(3%, 2%); }
    30% { transform: translate(-1%, 4%); }
    40% { transform: translate(4%, -1%); }
    50% { transform: translate(-3%, 1%); }
    60% { transform: translate(2%, -4%); }
    70% { transform: translate(-4%, 2%); }
    80% { transform: translate(1%, 3%); }
    90% { transform: translate(3%, -2%); }
  }

  body::before { /* static grain — no animation */ }

  /* ─── HALATION LAYER ─── */
  .halation-hero {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
      radial-gradient(ellipse 60% 40% at 20% 30%, rgba(217, 131, 74, 0.18) 0%, transparent 70%),
      radial-gradient(ellipse 50% 35% at 80% 70%, rgba(122, 191, 184, 0.14) 0%, transparent 65%),
      radial-gradient(ellipse 40% 50% at 50% 0%, rgba(232, 201, 122, 0.22) 0%, transparent 60%);
    mix-blend-mode: screen;
  }

  /* ─── BLOOM / GLOW on headings ─── */
  .bloom {
    filter: blur(0px);
    text-shadow:
      0 0 40px rgba(232, 201, 122, 0.55),
      0 0 80px rgba(217, 131, 74, 0.25),
      0 0 2px rgba(255, 245, 220, 0.9);
    transition: text-shadow 0.6s ease;
  }

  /* ─── OUT-OF-FOCUS DECORATIVE ELEMENTS ─── */
  .bokeh-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }

  .bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.18;
  }

  .bokeh-1 { width: 260px; height: 260px; background: var(--rgb-red); top: -80px; left: -60px; }
  .bokeh-2 { width: 200px; height: 200px; background: var(--rgb-blue); top: 30%; right: -80px; }
  .bokeh-3 { width: 180px; height: 180px; background: var(--fuji-cyan); bottom: 10%; left: 20%; }
  .bokeh-4 { width: 300px; height: 300px; background: var(--cym-yellow); top: 10%; right: 20%; filter: blur(50px); opacity: 0.12; }

  /* ─── FILM SPROCKET HOLES ─── */
  .film-strip {
    position: relative;
    background: var(--dark-base);
    padding: 0 60px;
    display: flex;
    align-items: center;
    min-height: 60px;
  }
  .film-strip::before,
  .film-strip::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    height: 36px;
    background-image: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 8px,
      var(--kodak-cream) 8px,
      var(--kodak-cream) 18px,
      transparent 18px,
      transparent 28px
    );
    background-size: 28px 100%;
  }
  .film-strip::before { left: 0; width: 56px; }
  .film-strip::after { right: 0; width: 56px; }

  .film-text {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(245, 237, 216, 0.5);
    text-transform: uppercase;
  }

  /* ─── OPTICAL BLUEPRINT DIVIDER ─── */
  .film-optics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    width: 100%;
    flex-wrap: nowrap;
    color: rgba(232, 201, 122, 0.5);
  }

  .optic-icon {
    height: 34px;
    width: auto;
    flex-shrink: 0;
    overflow: visible;
  }

  .optic-icon line,
  .optic-icon rect,
  .optic-icon circle,
  .optic-icon path,
  .optic-icon polyline {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  /* color circles keep their hue */
  .optic-icon circle.oc-c { stroke: var(--cym-cyan); }
  .optic-icon circle.oc-m { stroke: var(--cym-magenta); }
  .optic-icon circle.oc-y { stroke: var(--cym-yellow); }

  /* faint reference / optical axis lines */
  .optic-icon .optic-faint { opacity: 0.4; stroke-dasharray: 2 2.5; }
  .optic-icon .optic-axis  { opacity: 0.5; stroke-dasharray: 2 3; }

  .optic-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.45;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .film-optics { gap: 1.3rem; }
    .optic-icon { height: 26px; }
    .optic-sep { display: none; }
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(15, 19, 24, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 201, 122, 0.2);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
  }

  .nav-logo {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--kodak-amber);
    text-transform: uppercase;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(245, 237, 216, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--kodak-amber); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 2rem 4rem;
    background:
      linear-gradient(180deg, rgba(15,19,24,0.97) 0%, rgba(15,19,24,0.85) 50%, rgba(245,237,216,0.0) 100%),
      linear-gradient(180deg, var(--dark-base) 0%, #17202a 50%, var(--kodak-warm) 100%);
  }

  /* ─── HERO FILM PERFORATIONS ─── */
  .hero-perf {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
  }

  .hero-perf-left  { left: 0;  background: rgba(8,11,15,0.92); border-right: 1px solid rgba(255,255,255,0.05); }
  .hero-perf-right { right: 0; background: rgba(8,11,15,0.92); border-left:  1px solid rgba(255,255,255,0.05); }

  .hero-perf-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4000px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px 0;
  }

  .hero-perf-hole {
    width: 20px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 3px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 0 4px rgba(0,0,0,0.7);
  }



  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1100px;
  }

  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--kodak-amber);
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.1rem, 3vw, 3rem);
    font-weight: 100;
    font-style: normal;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--kodak-cream);
    line-height: 1.0;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    display: block;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(245, 237, 216, 0.65);
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
  }

  /* ─── CMY CIRCLES ─── */
  .hero-cmy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3.5rem;
    width: fit-content;
    height: 28px;
    position: relative;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
  }

  .cmy-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    mix-blend-mode: screen;
    opacity: 0.85;
  }

  .cmy-c  { background: var(--cym-cyan);    margin-right: -6px; z-index: 1; }
  .cmy-m  { background: var(--cym-magenta); z-index: 2; }
  .cmy-y  { background: var(--cym-yellow);  margin-left: -6px;  z-index: 1; }

  .hero-cta {
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
  }

  .btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--kodak-amber);
    color: var(--kodak-amber);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--kodak-amber);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
  }

  .btn-primary:hover { color: var(--dark-base); }
  .btn-primary:hover::before { transform: translateX(0); }

  /* ─── FILM COUNTER DECORATION ─── */
  .film-counter {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(232, 201, 122, 0.4);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease 1.6s forwards;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.8s forwards;
  }

  .scroll-indicator span {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: rgba(245, 237, 216, 0.3);
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(232, 201, 122, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* ─── SECTIONS ─── */
  section {
    padding: 7rem 2rem;
    position: relative;
  }

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

  .section-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--kodak-orange);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .section-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 100;
    font-style: normal;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 2.5rem;
  }

  /* heading forced to exactly two lines, scales to fit the longer line */
  .heading-twoline {
    font-size: clamp(1.05rem, 4.6vw, 3.6rem);
    letter-spacing: 0.14em;
  }

  .heading-twoline span {
    display: block;
    white-space: nowrap;
  }

  /* ─── ABOUT SECTION ─── */
  .about {
    background: var(--kodak-cream);
    position: relative;
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }

  .about-sidebar {
    position: sticky;
    top: 100px;
  }

  .about-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .about-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 5rem;
    font-weight: 100;
    font-style: normal;
    letter-spacing: 0.1em;
    color: rgba(217, 131, 74, 0.15);
    line-height: 1;
    margin-bottom: 2rem;
  }

  /* Kodak color bar decoration */
  .kodak-bars {
    display: flex;
    gap: 3px;
    margin-top: 2rem;
  }

  .kodak-bar {
    height: 6px;
    flex: 1;
    opacity: 0.7;
  }

  .bar-r { background: var(--rgb-red); }
  .bar-g { background: var(--rgb-green); }
  .bar-b { background: var(--rgb-blue); }
  .bar-c { background: var(--cym-cyan); }
  .bar-y { background: var(--cym-yellow); }
  .bar-m { background: var(--cym-magenta); }
  .bar-w { background: rgba(245, 237, 216, 0.8); }
  .bar-k { background: var(--dark-base); }

  .about-body {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-primary);
  }

  .about-body p + p { margin-top: 1.5rem; }

  .about-body em {
    font-style: italic;
    color: var(--kodak-orange);
  }

  /* ─── REEL SECTION ─── */
  .reel-section {
    background: var(--dark-base);
    position: relative;
    overflow: hidden;
  }

  .reel-section .halation-hero {
    background:
      radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232, 201, 122, 0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 50%, rgba(217, 131, 74, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 90% 50%, rgba(122, 191, 184, 0.06) 0%, transparent 60%);
  }

  /* ─── FILM PERFORATION STRIPS ─── */
  .film-perf {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
  }

  .film-perf-left  { left: 0;  background: #0a0d10; border-right: 1px solid rgba(255,255,255,0.06); }
  .film-perf-right { right: 0; background: #0a0d10; border-left:  1px solid rgba(255,255,255,0.06); }

  .film-perf-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    /* tall enough to scroll: 2× section height worth of holes */
    height: 4000px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px 0;
  }

  .film-perf-hole {
    width: 20px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 3px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: inset 0 0 4px rgba(0,0,0,0.6);
  }


  .reel-section .section-heading { color: var(--kodak-cream); }

  /* keep reel content clear of the 44px film-perforation strips */
  .reel-section .container {
    padding-left: 64px;
    padding-right: 64px;
  }

  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(232, 201, 122, 0.15);
    background: #000;
  }

  /* Halation glow around video */
  .video-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(232, 201, 122, 0.08) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    z-index: 1;
  }

  .video-caption {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .video-caption-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 201, 122, 0.3), transparent);
  }

  .video-caption-text {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: rgba(245, 237, 216, 0.35);
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ─── CONTACT SECTION ─── */
  .contact-section {
    background: var(--kodak-warm);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .contact-section .bokeh-1 { opacity: 0.1; }
  .contact-section .bokeh-2 { opacity: 0.1; }

  .contact-email {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 200;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: lowercase;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--kodak-orange);
    padding-bottom: 4px;
    margin-bottom: 3rem;
    transition: color 0.3s, border-color 0.3s;
  }

  .contact-email:hover {
    color: var(--kodak-orange);
    text-decoration: none;
  }

  .contact-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    letter-spacing: 0.05em;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark-base);
    color: rgba(245, 237, 216, 0.3);
    text-align: center;
    padding: 2rem;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
  }

  .footer-line {
    flex: 1;
    height: 1px;
    background: rgba(245, 237, 216, 0.08);
  }

  /* ─── DECORATIVE FILM FRAME CORNERS ─── */
  .frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.25;
  }

  .frame-corner-tl { top: 2rem; left: 2rem; border-top: 1px solid var(--kodak-amber); border-left: 1px solid var(--kodak-amber); }
  .frame-corner-tr { top: 2rem; right: 2rem; border-top: 1px solid var(--kodak-amber); border-right: 1px solid var(--kodak-amber); }
  .frame-corner-bl { bottom: 2rem; left: 2rem; border-bottom: 1px solid var(--kodak-amber); border-left: 1px solid var(--kodak-amber); }
  .frame-corner-br { bottom: 2rem; right: 2rem; border-bottom: 1px solid var(--kodak-amber); border-right: 1px solid var(--kodak-amber); }

  /* ─── OUT-OF-FOCUS TEXT DECORATION ─── */
  .blurred-text-deco {
    position: absolute;
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(6rem, 14vw, 12rem);
    font-weight: 100;
    font-style: normal;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(217, 131, 74, 0.06);
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
  }

  .section-content { position: relative; z-index: 1; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── CHROMATIC ABERRATION EFFECT on hover ─── */
  .chroma-hover {
    position: relative;
    display: inline-block;
  }

  .chroma-hover::before,
  .chroma-hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .chroma-hover::before {
    color: var(--rgb-red);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, 0);
  }

  .chroma-hover::after {
    color: var(--rgb-blue);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(2px, 0);
  }

  .chroma-hover:hover::before,
  .chroma-hover:hover::after { opacity: 0.55; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 700px) {
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-sidebar { position: static; }
    .about-number { font-size: 3rem; }
    nav { padding: 0 1rem; }
    .nav-links { gap: 1.5rem; }
    section { padding: 5rem 1.5rem; }
    .reel-section .container { padding-left: 54px; padding-right: 54px; }
  }

  /* ─── FILMOGRAPHY PAGE ─── */
  .filmography-hero {
    min-height: 42vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 5rem;
    background:
      linear-gradient(180deg, rgba(15,19,24,0.98) 0%, rgba(15,19,24,0.85) 60%, rgba(245,237,216,0.0) 100%),
      linear-gradient(180deg, var(--dark-base) 0%, #17202a 100%);
    text-align: center;
  }

  .filmography-section {
    background: var(--kodak-cream);
    padding: 6rem 0 8rem;
    position: relative;
  }

  .filmography-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .filmography-category {
    margin-bottom: 5rem;
  }

  .filmography-category:last-child {
    margin-bottom: 0;
  }

  .filmography-category-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 200;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(42,31,15,0.15);
    padding-bottom: 1rem;
    margin-bottom: 0;
  }

  .filmography-table {
    width: 100%;
    border-collapse: collapse;
  }

  .filmography-table thead tr {
    border-bottom: 1px solid rgba(42,31,15,0.12);
  }

  .filmography-table th {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 1rem 1rem 1rem 0;
    text-align: left;
  }

  .filmography-table th:last-child { padding-right: 0; }

  .filmography-table tbody tr {
    border-bottom: 1px solid rgba(42,31,15,0.07);
    transition: background 0.25s ease;
  }

  .filmography-table tbody tr:hover {
    background: rgba(42,31,15,0.035);
  }

  .filmography-table td {
    padding: 1.05rem 1rem 1.05rem 0;
    vertical-align: top;
  }

  .film-year {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--kodak-amber);
    white-space: nowrap;
    width: 60px;
  }

  .film-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
  }

  .film-director {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
  }

  .film-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .film-role-tag {
    font-family: 'DM Mono', monospace;
    font-size: 8.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid rgba(42,31,15,0.15);
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
    transition: background 0.25s ease;
  }

  /* ─── ROLE COLORS (CMY + RGB, more vibrant) ─── */
  /* Director — red */
  .film-role-tag.role-director {
    color: #d85f5f;
    border-color: rgba(216,95,95,0.45);
    background: rgba(216,95,95,0.07);
  }
  /* Cinematographer / DP — cyan */
  .film-role-tag.role-dp {
    color: #3fb8af;
    border-color: rgba(63,184,175,0.5);
    background: rgba(63,184,175,0.08);
  }
  /* Additional Photography — magenta */
  .film-role-tag.role-addphoto {
    color: #cf5fa3;
    border-color: rgba(207,95,163,0.45);
    background: rgba(207,95,163,0.07);
  }
  /* Editor — blue */
  .film-role-tag.role-editor {
    color: #5f86d8;
    border-color: rgba(95,134,216,0.45);
    background: rgba(95,134,216,0.07);
  }
  /* Colorist — yellow/gold */
  .film-role-tag.role-colorist {
    color: #b8962b;
    border-color: rgba(199,164,57,0.5);
    background: rgba(199,164,57,0.09);
  }
  /* VFX — green */
  .film-role-tag.role-vfx {
    color: #4fa84c;
    border-color: rgba(79,168,76,0.45);
    background: rgba(79,168,76,0.07);
  }

  @media (max-width: 768px) {
    .filmography-inner { padding: 0 1.2rem; }
    .filmography-table th:nth-child(3),
    .filmography-table td:nth-child(3) { display: none; }
  }
