* { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --bg-color: #050505;
            --text-color: #e0e0e0;
            --border-style: 1px solid rgba(255, 255, 255, 0.15);
            --font-main: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-main);
            font-weight: 300;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;

            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* --- PROJECT HERO (VIMEO) --- */
        .project-hero {
            padding-top: 8rem;
            width: 80vw;
            max-width: 1400px;
            margin: 0 auto;
        }

        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* Cinematic Ratio */
            aspect-ratio: auto;
            height: 0;
            background: #000;
            border: none; /* Changed from var(--border-style) to none */
        }

        .video-container iframe {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
        }

        /* --- PROJECT INFO --- */
        .project-details {
            width: 80vw;
            max-width: 1400px;
            margin: 6rem auto 2rem auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .project-title {
            opacity: 1;
        }

        .project-description {
            opacity: 1;
        }

        /* --- CREDITS LIST --- */
        .credits-grid {
            border-top: var(--border-style);
            padding-top: 2rem;
        }

        .credit-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .credit-label { opacity: 0.4; }
        
        .credit-value {
            font-weight: 600;
            opacity: 0.4;
            color:#e0e0e0;
            font-style: normal;
         }

        .credit-value-link {
            font-weight: 600;
            opacity: 0.4;
            color:#e0e0e0;
            font-style: normal;
            transition-duration: 300ms;
         }

         .credit-value-link:hover {
            opacity: 1;
         }

         a { text-decoration: none; }

        /* --- STILLS MONOLITH --- */
        .stills-section {
            width: 100%;
            margin-top: 10rem;
        }

        .stills-label {
            width: 80vw;
            max-width: 1400px;
            margin: 0 auto 2rem auto;
            padding: 0,5rem 0;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            opacity: 0.4;
        }

        .stills-stack {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .still-item {
            width: 80vw;
            max-width: 1400px;
            margin: 0 auto;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            border-bottom: none;
        }

        .still-item:last-child { border-bottom: var(--border-style); }

        .still-item img {
            width: 100%; height: 100%; object-fit: cover;
            filter: grayscale(0%) brightness(1);
            transition: filter 0.8s ease;
        }


        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .project-hero, .project-details, .still-item, .stills-label { width: 100vw; }
            .project-details { grid-template-columns: 1fr; padding: 0 1.5rem; }
            .project-hero { padding-top: 6rem; }
            .video-container { padding-bottom: 56.25%; border-left: none; border-right: none; }
            .still-item { border-left: none; border-right: none; aspect-ratio: 16 / 9; }
        }









        * { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --bg-color: #050505;
            --text-color: #e0e0e0;
            --border-style: 1px solid rgba(255, 255, 255, 0.15);
            --font-main: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-main);
            font-weight: 300;
            line-height: 1.4;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- EFFECTS --- */
        .noise-overlay {
            position: fixed; top: -50%; left: -50%; width: 200vw; height: 200vh;
            pointer-events: none; z-index: 9999; opacity: 0.05;
            background-image: url('https://grainy-gradients.vercel.app/noise.svg');
            animation: grain 8s steps(10) infinite;
        }
        @keyframes grain {
            0%, 100% { transform: translate(0, 0); }
            10% { transform: translate(-5%, -10%); }
            50% { transform: translate(-15%, 10%); }
        }

        .mouse-glow {
            position: fixed; width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none; z-index: 9998;
            transform: translate(-50%, -50%); transition: transform 0.1s ease-out;
            mix-blend-mode: screen;
        }

        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .fade-in-section.visible { opacity: 1; transform: translateY(0); }

        /* --- NAVIGATION --- */
        nav {
            display: flex;
            justify-content: space-between; /* This pushes logo left and links right */
            align-items: center;
            padding: 20px 40px; /* Adjust padding to fit your design */
            position: fixed; /* Or absolute, depending on your scroll preference */
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .logo {
            font-family: 'Inter', sans-serif;
            font-weight: 600; /* Matching the hero text weight */
            font-size: 1.2rem;
            text-transform: uppercase; /* Optional: if you want that clean cinematic look */
            text-decoration: none;
            color: white; /* Or your preferred hero text color */
            letter-spacing: 1px;
        }
        
        .nav-right {
            display: flex;
            gap: 20px; /* Space between About and Contact */
            align-items: center;
        }
        .nav-about {
            text-decoration: none; color: var(--text-color); font-size: 0.85rem;
            text-transform: uppercase; letter-spacing: 0.1em;
            padding: 0.8rem 1.5rem; border-radius: 50px;
            backdrop-filter: blur(5px); transition: 0.4s ease;
        }
        
        .nav-about {
            text-decoration: none; color: var(--text-color); font-size: 0.85rem;
            text-transform: uppercase; letter-spacing: 0.1em;
            padding: 0.8rem 1.5rem; border-radius: 50px;
            backdrop-filter: blur(5px); transition: 0.4s ease;
        }

        .btn-contact {
            text-decoration: none; color: var(--text-color); font-size: 0.85rem;
            text-transform: uppercase; letter-spacing: 0.1em; border: var(--border-style);
            padding: 0.8rem 1.5rem; border-radius: 50px; background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px); transition: 0.4s ease;
        }
        .btn-contact:hover { background: var(--text-color); color: var(--bg-color); }

        .about-contact {
            max-width: 7.8rem;
            text-decoration: none; color: var(--text-color); font-size: 0.85rem;
            text-transform: uppercase; letter-spacing: 0.1em; border: var(--border-style);
            padding: 0.8rem 1.5rem; border-radius: 50px; background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px); transition: 0.4s ease;
        }
        .about-contact:hover { background: var(--text-color); color: var(--bg-color); }

        .about-contact-div {
            width: 80vw;
            max-width: 1400px;
            margin: 1rem auto 6rem auto;
            align-items: start;
        }

        /* --- HERO --- */
        .hero {
            height: 100vh; display: flex; align-items: flex-end; padding: 4rem 10%;
            position: relative; overflow: hidden;
        }
        .hero2 {
            height: 35vh; display: flex; align-items: flex-end; padding: 4rem 10%;
            position: relative; overflow: hidden;
        }
        .hero-video {
            position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
            object-fit: cover; transform: translate(-50%, -50%); z-index: -1;
            filter: grayscale(100%) brightness(0.5);
        }
        h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 600; line-height: 0.9; letter-spacing: -0.04em; }

        /* --- PORTFOLIO SECTION --- */
        .portfolio-label {
            width: 80vw;
            max-width: 1400px;
            margin: 0 auto;
            padding: 8rem 0 3rem 0;
            font-size: 1rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            opacity: 0.5;
            display: flex;
        }

        .portfolio-grid {
            display: flex;
            flex-direction: column;
            width: 100%;
            /* No gap between items for a direct stack */
        }

        .grid-item {
            position: relative;
            display: block;
            width: 80vw;
            max-width: 1400px;
            margin: 0 auto;
            aspect-ratio: 2.35 / 1;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
        }

        /* Add the border back to the very last item */
        .grid-item:last-child {
            border-bottom: var(--border-style);
        }

        .grid-item img {
            width: 100%; height: 100%; object-fit: cover;
            filter: grayscale(0%) brightness(1) contrast(1);
            transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* The Only Hover Effect: Slight Zoom */
        .grid-item:hover img {
            transform: scale(1.06);
        }

        /* Minimal Text Overlay */
        .grid-overlay {
            position: absolute; bottom: 2rem; left: 2rem;
            pointer-events: none;
        }
        .grid-overlay h2 { font-size: 1.5rem; font-weight: 400; letter-spacing: -0.02em; }
        .grid-overlay span { font-size: 0.65rem; text-transform: uppercase; opacity: 0.6; letter-spacing: 0.1em; }

        /* --- FOOTER --- */
        footer {
            margin-top: auto;
            padding: 6rem 10%; 
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.75rem; text-transform: uppercase; opacity: 1;
        }
        .footer-left { display: flex; gap: 2.5rem; }
        footer a { color: inherit; text-decoration: none; }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .grid-item {
                width: 100vw;
                aspect-ratio: 16 / 9;
                border-left: none;
                border-right: none;
            }
            .hero, .portfolio-label, footer { padding-left: 5%; padding-right: 5%; }
            .footer-left { flex-direction: column; gap: 0.5rem; }
        }

        .italic {
            font-style: italic;
        }

        .legal {
            opacity: 0.4;
            color:#e0e0e0;
        }
        
        .legal-link {
            opacity: 0.4;
            color:#e0e0e0;
            transition-duration: 300ms;
        }

        .legal-link:hover {
            opacity: 1;
        }

        /* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(5, 5, 5, 0.95); /* Matches your --bg-color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%; 
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block; 
    margin: auto;
}

.lightbox.active img {
    transform: scale(1);
}

/* Update your existing still-item to show it's clickable */
.still-item {
    cursor: zoom-in;
}