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

  :root {
    --cream: #e8e0d4;
    --dark: #0a0a0a;
    --mid: #1a1a1a;
    --gray: #888;
    --light-gray: #ccc;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    cursor: none;
    overflow-x: hidden;
  }

  /* Custom cursor */
  .cursor {
    width: 8px; height: 8px;
    background: var(--cream);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(232,224,212,0.4);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
    mix-blend-mode: normal;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,224,212,0.7);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,224,212,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
  }
  .nav-links a:hover { color: var(--cream); }

  /* Lang toggle */
  .lang-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .lang-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    background: none;
    border: none;
    color: rgba(232,224,212,0.4);
    cursor: none;
    transition: color 0.3s;
    padding: 0;
  }
  .lang-btn.active { color: var(--cream); }
  .lang-divider { color: rgba(232,224,212,0.2); font-size: 10px; }

  /* HERO */
  #hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.45);
  }

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.2) 0%,
      rgba(10,10,10,0.0) 40%,
      rgba(10,10,10,0.6) 80%,
      rgba(10,10,10,1) 100%
    );
  }

  .hero-content {
    position: absolute;
    bottom: 80px;
    left: 48px;
    right: 48px;
  }

  .hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(232,224,212,0.55);
    margin-bottom: 18px;
  }

  .hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 11vw, 130px);
    font-weight: 400;
    line-height: 0.95;
    color: var(--cream);
    letter-spacing: -0.01em;
  }

  .scroll-indicator {
    position: absolute;
    right: 48px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .scroll-text {
    font-size: 9px;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
    color: rgba(232,224,212,0.4);
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(232,224,212,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

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

  /* SECTIONS */
  section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 48px;
  }

  .section-label {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
    max-width: 80px;
  }

  /* ABOUT */
  #about {
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
  }

  .about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream);
  }

  .about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(232,224,212,0.7);
  }

  .about-text p + p { margin-top: 24px; }

  /* FILM */
  #film {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: none;
  }

  .film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
  }

  .film-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--mid);
    cursor: none;
  }

  .film-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
    filter: grayscale(20%) brightness(0.7);
  }
  .film-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(0.85);
  }

  .film-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(transparent, rgba(10,10,10,0.95));
    transform: translateY(8px);
    transition: transform 0.4s ease;
  }
  .film-item:hover .film-info { transform: translateY(0); }

  .film-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 6px;
  }

  .film-role {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
  }

  .film-year {
    font-size: 10px;
    color: rgba(232,224,212,0.35);
    margin-top: 4px;
  }

  /* Placeholder film cards */
  .film-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.2);
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .film-placeholder .plus { font-size: 24px; opacity: 0.3; }

  /* GALLERY */
  #gallery {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 120px 0;
    max-width: 100%;
  }

  .gallery-header {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 48px;
  }

  .gallery-strip {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding: 0 48px;
    scrollbar-width: none;
  }
  .gallery-strip::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 420px;
    overflow: hidden;
    cursor: none;
  }

  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter 0.5s ease, transform 0.7s ease;
  }
  .gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
  }

  .gallery-placeholder {
    width: 320px; height: 420px;
    flex-shrink: 0;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.2);
    font-size: 11px;
    letter-spacing: 0.2em;
    flex-direction: column;
    gap: 10px;
  }

  /* PRESS */
  #press {
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .press-list { display: flex; flex-direction: column; }

  .press-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: baseline;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
    cursor: none;
  }
  .press-item:hover .press-title { color: var(--cream); }

  .press-year {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.1em;
  }

  .press-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: rgba(232,224,212,0.75);
    transition: color 0.3s;
  }

  .press-publication {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
  }

  .press-placeholder {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    padding: 24px 0;
    text-align: center;
  }

  /* CONTACT */
  #contact {
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .contact-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.1;
  }

  .contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: rgba(232,224,212,0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,224,212,0.2);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
    cursor: none;
  }
  .contact-email:hover {
    color: var(--cream);
    border-color: var(--cream);
  }

  .contact-social {
    display: flex;
    gap: 32px;
  }
  .contact-social a {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    cursor: none;
  }
  .contact-social a:hover { color: var(--cream); }

  /* FOOTER */
  footer {
    padding: 32px 48px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.2);
  }
  .footer-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.1em;
  }

  /* Mobile nav toggle */
  .nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
  }
  .nav-burger span {
    display: block;
    width: 24px; height: 1px;
    background: rgba(232,224,212,0.6);
    transition: all 0.3s;
  }



  .press-photos {
    display: flex;
    gap: 3px;
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .press-photos::-webkit-scrollbar { display: none; }
  .press-photo-item {
    flex-shrink: 0;
    height: 380px;
    overflow: hidden;
  }
  .press-photo-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.4s, transform 0.6s;
  }
  .press-photo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
  }

  .film-upcoming {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1410 50%, #0a0a0a 100%);
    border: 1px solid rgba(232,224,212,0.07);
  }
  .film-upcoming-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(180,150,80,0.06) 0%, transparent 60%);
  }
  .film-badge {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(180,150,80,0.8);
    border: 1px solid rgba(180,150,80,0.3);
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 14px;
  }
  .film-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(232,224,212,0.5);
    margin-top: 10px;
  }


  .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 48px;
  }
  .video-item {}
  .video-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }
  .video-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--cream);
  }
  .video-sub {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }
  .video-placeholder-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
  }
  @media (max-width: 768px) {
    .videos-grid { grid-template-columns: 1fr; }
  }

  /* Animate in */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .hero-content { left: 24px; right: 80px; bottom: 60px; }
    .scroll-indicator { right: 24px; bottom: 60px; }
    section { padding: 80px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .press-item { grid-template-columns: 60px 1fr; }
    .press-publication { display: none; }
    footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
    .gallery-strip { padding: 0 24px; }
    .gallery-header { padding: 0 24px; }
  }