    /* ========== PORTFOLIO HERO ========== */
    .page-hero {
        --hero-bg: url('/assets/images/portfolio/cap-and-trim-wood-fence-subdivision-opt.jpg');
    }

    /* ========== FILTER BAR ========== */
    .portfolio-filters {
        padding: 1.5rem 2rem;
        background: white;
        border-bottom: 1px solid var(--green-100);
        position: sticky;
        top: var(--nav-height);
        z-index: 90;
    }

    .portfolio-filters-container {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 0.5rem 1.25rem;
        border-radius: 100px;
        border: 1.5px solid var(--green-200);
        background: white;
        color: var(--green-700);
        font-family: var(--font-body);
        font-size: 0.875rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .filter-btn:hover {
        border-color: var(--green-400);
        background: var(--cream-100);
    }

    .filter-btn.active {
        background: var(--green-700);
        border-color: var(--green-700);
        color: white;
    }

    .filter-btn svg {
        width: 16px;
        height: 16px;
    }

    .filter-count {
        font-size: 0.75rem;
        background: var(--green-100);
        color: var(--green-700);
        padding: 0.125rem 0.5rem;
        border-radius: 100px;
        margin-left: 0.25rem;
    }

    .filter-btn.active .filter-count {
        background: rgba(255,255,255,0.2);
        color: white;
    }

    /* ========== PORTFOLIO GRID ========== */
    .portfolio-section {
        padding: 3rem 2rem 5rem;
        background: var(--cream-50);
    }

    .portfolio-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .portfolio-item {
        position: relative;
        border-radius: var(--radius-sm);
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: 4 / 3;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    @media (hover: hover) and (pointer: fine) {
        .portfolio-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        }
    }

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    @media (hover: hover) and (pointer: fine) {
        .portfolio-item:hover img {
            transform: scale(1.05);
        }
    }

    .portfolio-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(10, 46, 26, 0.85) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.25rem;
    }

    .portfolio-overlay h3 {
        font-family: var(--font-heading);
        font-size: 1.125rem;
        color: white;
        margin-bottom: 0.25rem;
    }

    .portfolio-overlay .portfolio-location {
        font-size: 0.8125rem;
        color: white;
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .portfolio-overlay .portfolio-location svg {
        width: 14px;
        height: 14px;
    }

    .portfolio-overlay .portfolio-type {
        font-size: 0.75rem;
        color: var(--green-200);
        margin-top: 0.375rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .portfolio-item.hidden {
        display: none;
    }

    .portfolio-empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 4rem 2rem;
        color: var(--green-600);
    }

    .portfolio-empty svg {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
        opacity: 0.4;
    }

    /* ========== STATS BAR ========== */
    .portfolio-stats {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .portfolio-stats .result-count {
        font-size: 0.9375rem;
        color: var(--green-600);
    }

    .portfolio-stats .result-count strong {
        color: var(--green-900);
    }

    /* ========== QUOTE SECTION ========== */
    .quote-section {
        padding: 5rem 2rem;
        background: var(--cream-100);
    }

    .quote-section .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .quote-section .section-title {
        color: var(--green-900);
    }

    .quote-section .section-subtitle {
        color: var(--green-700);
    }

    .quote-section .section-label {
        color: var(--green-600);
        border-color: var(--green-200);
    }

    /* ========== GLIGHTBOX CAPTION ========== */
    .glightbox-clean .gslide-description {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: 900px;
        width: 100%;
        background: linear-gradient(180deg, transparent 0%, #0a2e1a 100%);
        padding: 0;
    }

    .glightbox-clean .gslide-title {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.25rem;
    }

    .glightbox-clean .gslide-desc {
        font-size: 0.875rem;
        color: var(--green-200);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
        .portfolio-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .portfolio-filters-container {
            gap: 0.5rem;
        }

        .filter-btn {
            padding: 0.375rem 0.875rem;
            font-size: 0.8125rem;
        }

        .page-hero {
            padding: 6rem 1.5rem 3rem;
        }

        .page-hero h1 {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .portfolio-grid {
            grid-template-columns: 1fr;
        }
    }
