        /* ========== NAVIGATION ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--noir);
            transition: var(--transition);
        }

        .navbar.scrolled {
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--blanc);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-logo span {
            color: var(--accent-light);
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            position: relative;
            padding: 4px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-light);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--blanc);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-only {
            display: none;
        }
        .nav-instagram {
            display: flex;
            align-items: center;
            gap: 6px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .nav-instagram svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            transition: var(--transition);
        }

        .nav-instagram:hover {
            color: var(--accent-light);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 1.5px;
            background-color: var(--blanc);
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 4px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -4px);
        }
    @media (max-width: 900px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: var(--noir);
                flex-direction: column;
                justify-content: center;
                gap: 32px;
                transition: right 0.4s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1rem;
                letter-spacing: 3px;
            }

            .hamburger {
                display: flex;
            }

            .mobile-only {
                display: block;
            }

            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (max-width: 600px) {
             .nav-container {
                height: 65px;
            }

            .nav-logo {
                font-size: 1.3rem;
            }
        }