/* Core Layout Spacing */
        .project-details-final {
            background: #fff;
            font-family: 'Josefin Sans', sans-serif;
        }

        /* Header Spacing */
        .ultra-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            letter-spacing: 4px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .info-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            border-top: 1px solid #eee;
            padding-top: 25px;
        }

        .info-item strong {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 3px;
            color: #999;
            margin-bottom: 5px;
        }

        /* Image Spacing - The "Golden Gap" */
        .image-block {
            margin-bottom: 100px;
            position: relative;
        }

        .image-block:last-child {
            margin-bottom: 0;
        }

        /* Concept Typography */
        .concept-block h3,
        .description-block h3 {
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 3px;
            margin-bottom: 20px;
            border-left: 3px solid #000;
            padding-left: 15px;
        }

        .concept-block p,
        .description-block p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            font-weight: 300;
        }

        /* Mobile Fixes */
        @media (max-width: 768px) {
            .image-block {
                margin-bottom: 50px;
            }

            .info-grid {
                gap: 20px;
                flex-wrap: wrap;
            }

            .ultra-title {
                font-size: 2rem;
            }
        }
        .project-navigation {
    border-top: 1px solid #eee;
    padding: 60px 0;
    margin-top: 50px;
    background: #fff;
}

.nav-wrapper {
    position: relative;
}

.nav-item {
    text-decoration: none !important;
    display: block;
    max-width: 40%;
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
}

/* Hover Effect: Text turns black and moves slightly */
.nav-item:hover .nav-title {
    color: #c5a47e; /* Using your gold/tan brand accent if you have one */
}

.prev-project:hover {
    transform: translateX(-10px);
}

.next-project:hover {
    transform: translateX(10px);
}

/* Center Archive Icon */
.nav-archive {
    font-size: 1.5rem;
    color: #000;
    transition: transform 0.3s ease;
}

.nav-archive:hover {
    transform: rotate(90deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-title { font-size: 0.9rem; }
    .nav-label { font-size: 0.6rem; }
    .nav-archive { font-size: 1.2rem; }
}


.category-card {
    display: block;
    text-decoration: none !important;
    margin-bottom: 30px;
}

.category-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5; /* Architectural vertical crop */
    background: #111;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0.9;
}

.category-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.view-label {
    color: #fff;
    letter-spacing: 5px;
    font-size: 0.8rem;
    border: 1px solid #fff;
    padding: 10px 25px;
}

.category-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
    margin-top: 25px;
    text-transform: uppercase;
}

/* Hover Effects */
.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    opacity: 1;
}