            html, body {
                margin: 0;
                padding: 0;
                width: 100%;
                background-color: #ffffff !important;
                overflow-x: visible !important;
            }
            
            .page-wrapper {
                overflow: visible !important;
                overflow-x: visible !important;
            }

            /* Navigation hidden while hero image is visible */
            .main-navigation,
            .navigation-toggle.mobile-only {
                transform: translateY(-100%) !important;
                opacity: 0 !important;
                pointer-events: none !important;
                transition: transform 0.35s ease, opacity 0.35s ease !important;
            }

            .main-navigation.nav-visible,
            .navigation-toggle.mobile-only.nav-visible {
                transform: translateY(0) !important;
                opacity: 1 !important;
                pointer-events: auto !important;
            }

            .project-hero {
                width: 100%;
                margin-top: 0;
                overflow: hidden;
            }
            
            .project-hero img {
                width: 100%;
                height: auto;
                display: block;
                object-fit: cover;
            }

            /* Main layout below hero - left-aligned */
            .project-layout {
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;
                width: 100%;
                margin: 0;
                padding: 50px 40px 100px 40px;
                gap: 50px;
                position: relative;
                box-sizing: border-box;
                overflow: visible !important;
            }

            /* Left Sticky Metadata Sidebar */
            .project-info-sidebar {
                width: 230px;
                flex-shrink: 0;
                position: -webkit-sticky !important;
                position: sticky !important;
                top: 110px !important;
                align-self: flex-start !important;
                box-sizing: border-box;
                z-index: 10;
            }

            .project-title {
                font-family: "Lato", sans-serif;
                font-size: 11px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.8px;
                color: #111111;
                margin: 0 0 20px 0;
                line-height: 1.4;
            }

            .project-meta-list {
                font-family: "Lato", sans-serif;
                font-size: 11px;
                line-height: 1.6;
                color: #111111;
            }

            .project-meta-item {
                margin-bottom: 2px;
            }

            .project-meta-year {
                margin-top: 14px;
            }

            /* Gallery Column - Left Aligned, 600px max-width */
            .project-gallery-main {
                width: 600px;
                max-width: 600px;
                flex-shrink: 0;
                margin: 0; /* Left aligned, no auto margin */
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .project-gallery-item {
                width: 100%;
            }

            .project-gallery-item a {
                display: block;
                width: 100%;
                text-decoration: none;
            }

            .project-gallery-item img {
                width: 100%;
                height: auto;
                display: block;
                transition: opacity 0.25s ease;
            }

            .project-gallery-item img:hover {
                opacity: 0.92;
            }

            .project-description-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 25px;
                font-family: "Roboto", "Lato", sans-serif;
                font-size: 11px;
                line-height: 1.5;
                color: #222222;
                margin-top: -5px;
                margin-bottom: -5px;
            }

            .project-description-col {
                text-align: left;
            }

            /* Lightbox overlay styling - White background */
            .ma-lightbox-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: #ffffff !important;
                z-index: 999999;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.25s ease;
            }

            .ma-lightbox-overlay.open {
                opacity: 1;
                pointer-events: auto;
            }

            .ma-lightbox-content {
                position: relative;
                max-width: 85vw;
                max-height: 85vh;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .ma-lightbox-overlay img {
                max-width: 85vw;
                max-height: 78vh;
                object-fit: contain;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }

            /* Counter display: 01 / 09 */
            .ma-lightbox-counter {
                margin-top: 15px;
                font-family: "Lato", "Roboto", sans-serif;
                font-size: 12px;
                font-weight: 500;
                letter-spacing: 1px;
                color: #777777;
                text-transform: uppercase;
            }

            /* Close button - Gray */
            .ma-lightbox-close {
                position: absolute;
                top: 25px;
                right: 35px;
                color: #777777 !important;
                font-size: 38px;
                font-weight: 300;
                cursor: pointer;
                line-height: 1;
                z-index: 1000001;
                user-select: none;
                transition: color 0.2s ease, transform 0.2s ease;
            }

            .ma-lightbox-close:hover {
                color: #111111 !important;
                transform: scale(1.1);
            }

            /* Prev and Next navigation arrows - Gray */
            .ma-lightbox-nav {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: transparent;
                border: none;
                color: #777777;
                font-size: 50px;
                font-weight: 300;
                cursor: pointer;
                padding: 20px 30px;
                z-index: 1000001;
                user-select: none;
                transition: color 0.2s ease, transform 0.2s ease;
                outline: none;
                line-height: 1;
                font-family: Arial, sans-serif;
            }

            .ma-lightbox-nav:hover {
                color: #111111;
            }

            .ma-lightbox-prev {
                left: 15px;
            }

            .ma-lightbox-next {
                right: 15px;
            }

            /* Mobile Responsive */
            @media (max-width: 991px) {
                .project-layout {
                    flex-direction: column;
                    padding: 30px 20px 60px 20px;
                    gap: 30px;
                }

                .project-info-sidebar {
                    width: 100%;
                    position: static !important;
                }

                .project-gallery-main {
                    width: 100%;
                    max-width: 100%;
                }
            }

            @media (max-width: 600px) {
                .project-description-grid {
                    grid-template-columns: 1fr;
                    gap: 15px;
                }
                .ma-lightbox-nav {
                    padding: 10px;
                    font-size: 36px;
                }
            }
        
