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

  :root {
    --black: #0a0806;
    --near-black: #111009;
    --rust: #b8006e;
    --rust-dark: #7a0049;
    --rust-light: #ed008c;
    --gold: #f066b8;
    --cream: #f0e8d8;
    --warm-gray: #8a8278;
    --mid: #2a2520;
    --section-bg: #131109;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(10,8,6,0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(237,0,140,0.2);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: var(--cream);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  nav.scrolled .nav-logo { opacity: 1; pointer-events: all; }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: rgba(240,232,216,0.7);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rust-light); }
  section:not(#hero){
    position: relative;
    z-index: 2;
  }
  /* HERO */
  .hero {
    position: relative;
    height: calc(100dvh - 230px);
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .hero { height: calc(100dvh - 350px); }
  }
  
  .hero .hero-video{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    opacity: 0.3;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(10,8,6,0.3) 0%, rgba(10,8,6,0) 30%, rgba(10,8,6,0.7) 70%, rgba(10,8,6,1) 100%),
      linear-gradient(to right, rgba(10,8,6,0.6) 0%, rgba(10,8,6,0) 60%),
      url('assets/0.jpg') center/cover no-repeat;
    transform: scale(1.08);
    will-change: transform;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 5rem;
    max-width: 860px;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rust-light);
    margin-bottom: 1.25rem;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 11vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
  }
  .hero-title em {
    display: block;
    color: var(--rust);
    font-style: normal;
  }
  .hero-tagline {
    font-size: 1rem;
    color: rgba(240,232,216,0.75);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--rust);
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
  }
  .hero-cta:hover { background: var(--rust-light); transform: translateY(-1px); }
  .hero-cta svg { width: 16px; height: 16px; }

  /* LAURELS STRIP */
  .laurels-strip {
    background: var(--near-black);
    border-top: 1px solid rgba(237,0,140,0.15);
    border-bottom: 1px solid rgba(237,0,140,0.15);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow-x: auto;
  }
  .laurels-strip::-webkit-scrollbar { display: none; }
  .laurel-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .laurel-icon {
    color: var(--gold);
    font-size: 1.1rem;
  }
  .laurel-text {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,232,216,0.55);
  }
  .laurel-sep {
    width: 1px;
    height: 28px;
    background: rgba(240,232,216,0.12);
    flex-shrink: 0;
  }

  /* ABOUT */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--section-bg);
  }
  .about-visual {
    position: relative;
    overflow: hidden;
    min-height: 600px;
  }
  .about-img {
    position: absolute;
    inset: 0;
    background: url('../assets/IMG_3212.webp') center/cover no-repeat;
    transform: scale(1.05);
    will-change: transform;
  }
  .about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,8,6,0) 60%, rgba(10,8,6,0.9) 100%);
  }
  .about-body {
    background: var(--section-bg);
    padding: 8rem 5rem 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--rust);
  }
  .section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 2rem;
  }
  .section-heading em { font-style: italic; color: var(--rust-light); }
  .about-body p {
    font-size: 0.97rem;
    color: rgba(240,232,216,0.7);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    max-width: 500px;
  }
  .about-body p strong { color: var(--cream); font-weight: 500; }
  .directors-byline {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(240,232,216,0.1);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
    text-transform: uppercase;
  }
  .directors-byline strong { color: var(--cream); font-weight: 500; }

  /* SCREENINGS */
  .screenings {
    background: var(--black);
    padding: 8rem 4rem;
  }
  .section-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
  }
  .screening-list { display: flex; flex-direction: column; gap: 0; }
  .screening-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(240,232,216,0.08);
    align-items: center;
    transition: background 0.2s;
    cursor: default;
  }
  .screening-item:first-child { border-top: 1px solid rgba(240,232,216,0.08); }
  .screening-item:hover { background: rgba(237,0,140,0.04); }
  .screening-item:hover .screening-arrow { opacity: 1; transform: translateX(0); }
  .screening-meta { display: flex; flex-direction: column; gap: 0.4rem; }
  .screening-festival {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream);
  }
  .screening-info {
    font-size: 0.78rem;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
  }
  .screening-info .date { color: var(--gold); margin-right: 1.5rem; }
  .screening-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(237,0,140,0.5);
    color: var(--rust-light);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .screening-ticket:hover { background: var(--rust); border-color: var(--rust); color: #fff; }
  .screening-tba {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,232,216,0.25);
    padding: 0.6rem 1.25rem;
  }

  /* PRESS */
  .press {
    background: var(--near-black);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .press::before {
    content: '"';
    position: absolute;
    top: -2rem;
    right: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    color: rgba(237,0,140,0.04);
    line-height: 1;
    pointer-events: none;
  }
  .press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(240,232,216,0.06);
  }
  .press-card {
    background: var(--near-black);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: background 0.2s;
  }
  .press-card:hover { background: rgba(237,0,140,0.06); }
  .press-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.0rem;
    font-style: italic;
    color: rgba(240,232,216,0.85);
    line-height: 1.65;
    flex: 1;
  }
  .press-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .press-outlet {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rust-light);
    text-decoration: none;
  }
  .press-outlet:hover { color: var(--rust); }
  .press-arrow {
    color: rgba(240,232,216,0.2);
    font-size: 0.8rem;
    transition: color 0.2s;
  }
  .press-card:hover .press-arrow { color: var(--rust-light); }

  /* CREW */
  .crew {
    background: var(--section-bg);
    padding: 8rem 4rem;
  }
  .crew-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
  }
  .crew-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  .crew-img-wrap {
    position: relative;
    aspect-ratio: 4/4;
    overflow: hidden;
  }
  .crew-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(40%) contrast(1.1);
    transition: filter 0.4s;
  }
  .crew-card:hover .crew-img-wrap img { filter: grayscale(0%) contrast(1); }
  .crew-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(237,0,140,0.3);
    pointer-events: none;
  }
  .crew-role {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.5rem;
  }
  .crew-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
  }
  .crew-bio {
    font-size: 0.88rem;
    color: rgba(240,232,216,0.6);
    line-height: 1.8;
  }

  /* VIDEO */
  .video-section {
    background: var(--black);
    padding: 8rem 4rem;
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(240,232,216,0.04);
  }
  .video-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--mid);
    cursor: pointer;
  }
  .video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s, transform 0.5s;
  }
  .video-item:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.04);
  }
  .video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10,8,6,0.55);
    border: 1px solid rgba(240,232,216,0.4);
    color: var(--cream);
    font-size: 1.4rem;
    transition: background 0.3s, transform 0.3s;
    pointer-events: none;
  }
  .video-item:hover .video-play {
    background: rgba(237,0,140,0.85);
    transform: translate(-50%, -50%) scale(1.08);
  }
  .video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .video-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(10,8,6,0.9));
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,232,216,0.6);
  }

  /* VIDEO LIGHTBOX */
  .video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10,8,6,0.92);
    padding: 2rem;
  }
  .video-lightbox.open {
    display: flex;
  }
  .video-lightbox-inner {
    position: relative;
    width: min(960px, 100%);
  }
  .video-lightbox-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--mid);
  }
  .video-lightbox-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  .video-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
  }
  .video-lightbox-close:hover {
    color: var(--rust-light);
  }

  /* IMAGE LIGHTBOX */
  .image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10,8,6,0.92);
    padding: 2rem;
  }
  .image-lightbox.open {
    display: flex;
  }
  .image-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
  }
  .image-lightbox-img {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(237,0,140,0.25);
  }
  .image-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
  }
  .image-lightbox-close:hover {
    color: var(--rust-light);
  }

  /* FOOTER */
  footer {
    background: var(--near-black);
    border-top: 1px solid rgba(237,0,140,0.15);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    line-height: 1;
  }
  .footer-logo span { display: block; color: var(--rust); }
  .footer-meta {
    font-size: 0.75rem;
    color: var(--warm-gray);
    text-align: right;
    line-height: 1.6;
  }

  /* GALLERY */
  .gallery-section {
    background: var(--black);
    padding: 8rem 4rem;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 2px;
    margin-top: 4rem;
    background: rgba(240,232,216,0.04);
  }
  .gallery-grid-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--mid);
    cursor: pointer;
  }
  .gallery-grid-item.wide {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s, transform 0.5s;
  }
  .gallery-grid-item:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.04);
  }
  .gallery-grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(237,0,140,0.15);
    pointer-events: none;
    transition: border-color 0.3s;
  }
  .gallery-grid-item:hover::after {
    border-color: rgba(237,0,140,0.45);
  }
  @media (max-width: 900px) {
    .gallery-section { padding: 5rem 1.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-item.wide { grid-column: span 1; }
  }
  @media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
  }

  /* PARALLAX SCRIPT TARGET */
  [data-parallax] { will-change: transform; }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* QUEERCORE BANNER */
  .queercore-band {
    background: var(--rust);
    padding: 0.65rem 4rem;
    display: flex;
    gap: 4rem;
    overflow: hidden;
    white-space: nowrap;
  }
  .qc-ticker {
    display: flex;
    gap: 4rem;
    animation: ticker 20s linear infinite;
  }
  .qc-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
  }
  .qc-dot { color: rgba(255,255,255,0.4); margin-right: 4rem; }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* TRAILER */
  .trailer-section {
    background: var(--near-black);
    padding: 5rem 4rem;
  }
  .trailer-inner {
    max-width: 960px;
    margin: 0 auto;
  }
  .trailer-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    margin-top: 1.5rem;
    background: #000;
  }
  .trailer-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* RESPONSIVE */
  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 110;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 0.85rem 1.5rem; }
    .nav-hamburger { display: flex; }
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 0;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(10,8,6,0.97);
      backdrop-filter: blur(10px);
      justify-content: center;
      align-items: center;
      z-index: 105;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a {
      display: block;
      padding: 1.25rem 2rem;
      font-size: 1rem;
      letter-spacing: 0.2em;
      border-bottom: 1px solid rgba(240,232,216,0.06);
    }
    .nav-links li:first-child a { border-top: 1px solid rgba(240,232,216,0.06); }
    .hero-content { padding: 0 1.5rem 4rem; }
    .about { grid-template-columns: 1fr; }
    .about-visual { min-height: 50vw; }
    .about-body { padding: 4rem 1.5rem; }
    .screenings, .press, .crew, .video-section, .trailer-section { padding: 5rem 1.5rem; }
    .section-intro { grid-template-columns: 1fr; gap: 1.5rem; }
    .press-grid { grid-template-columns: 1fr; }
    .crew-grid { grid-template-columns: 1fr; gap: 3rem; }
    .video-grid { grid-template-columns: 1fr; }
    footer { padding: 3rem 1.5rem; flex-direction: column; }
    .footer-meta { text-align: left; }
    .laurels-strip { padding: 1.5rem; gap: 1.5rem; }
    .queercore-band { padding: 0.65rem 1.5rem; }
  }
   .laurels-strip {
            width: min(1100px, 92%);
            margin-inline: auto;
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            grid-auto-rows: 1fr;
            gap: 16px;
            width: 100%;
            position: relative;
            top: 0;
            margin-top: 25px;
            background-color: transparent;
        }

        .laurels-strip .laurel-item {
            max-width: 100%;
            margin-inline: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .laurels-strip .laurel-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        @media (max-width: 767px) {
            .laurels-strip {
                grid-template-columns: repeat(4, 1fr);
                max-width: 600px;
            }
        }
        @media (min-width: 768px) {
            .laurel2{
                max-width: 194px;
            }
        }
        .crewimg img{
            max-width: 100%;
        }