
    .filter-section {
        background: #ffffffd4;
        padding: 4px 0 0;
        position: sticky;
        top: 140px;
        z-index: 100;
        border-bottom: 1px solid rgba(227, 126, 151, 0.12);
    }

    .filter-tabs {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        font-family: 'Jost', sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--burgundy);
        background: transparent;
        border: none;
        border-bottom: 2px solid transparent;
        padding: 14px 24px 16px;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.25s;
        position: relative;
    }

    .filter-btn:hover {
        color: var(--rose-primary);
    }

    .filter-btn.active {
        color: var(--rose-primary);
        border-bottom-color: var(--rose-primary);
    }

    .filter-btn .count {
        display: inline-block;
        font-size: 9px;
        font-weight: 600;
        background: rgba(227, 126, 151, 0.15);
        color: var(--rose-primary);
        border-radius: 20px;
        padding: 1px 6px;
        margin-left: 6px;
        vertical-align: middle;
    }

    .filter-btn.active .count {
        background: var(--rose-primary);
        color: #fff;
    }

    /* ── GALLERY GRID ── */
    .gallery-section {
        background: transparent;
        padding: 48px 0 80px;
    }

    .gallery-grid {
        columns: 4;
        column-gap: 12px;
    }

    .gallery-grid-1 {
        columns: 3 !important;
        column-gap: 12px;
    }

    @media (max-width: 1200px) {
        .gallery-grid {
            columns: 3 !important;
        }
    }

    @media (max-width: 768px) {
        .gallery-grid {
            columns: 2 !important;
        }
    }

    @media (max-width: 480px) {
        .gallery-grid {
            columns: 1 !important;
        }
    }

    .gallery-item {
        break-inside: avoid;
        margin-bottom: 12px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        display: block;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        filter: brightness(0.92);
    }

    .gallery-item:hover img {
        transform: scale(1.04);
        filter: brightness(1);
    }

    .gallery-item-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(110, 36, 47, 0.7) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.35s;
        display: flex;
        align-items: flex-end;
        padding: 16px;
    }

    .gallery-item:hover .gallery-item-overlay {
        opacity: 1;
    }

    .gallery-item-city {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--rose-primary);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .gallery-item-city i {
        font-size: 11px;
    }

    .gallery-item-zoom {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(4px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
        color: #fff;
        font-size: 13px;
    }

    .gallery-item:hover .gallery-item-zoom {
        opacity: 1;
    }

    /* Hidden filter state */
    .gallery-item.hidden {
        display: none;
    }

    .gallery-item.fade-in {
        animation: fadeInUp 0.4s ease both;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ── EMPTY STATE ── */
    .empty-state {
        display: none;
        text-align: center;
        padding: 80px 20px;
    }

    .empty-state.show {
        display: block;
    }

    .empty-state i {
        font-size: 48px;
        color: rgba(227, 126, 151, 0.3);
        margin-bottom: 16px;
    }

    .empty-state p {
        color: rgba(255, 255, 255, 0.3);
        font-size: 14px;
    }

    /* ── LIGHTBOX ── */
    .lightbox-overlay {
        position: fixed;
        inset: 0;
        background: rgba(5, 1, 2, 0.95);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .lightbox-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    .lightbox-inner {
        position: relative;
        max-width: 90vw;
        max-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-img {
        max-width: 90vw;
        max-height: 88vh;
        object-fit: contain;
        border: 1px solid rgba(227, 126, 151, 0.2);
        display: block;
        transition: opacity 0.2s;
    }

    .lightbox-close {
        position: fixed;
        top: 20px;
        right: 24px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s;
        z-index: 10000;
    }

    .lightbox-close:hover {
        background: rgba(227, 126, 151, 0.3);
    }

    .lightbox-nav {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s;
        z-index: 10000;
    }

    .lightbox-nav:hover {
        background: rgba(227, 126, 151, 0.25);
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-counter {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.4);
        z-index: 10000;
    }

    .lightbox-city-tag {
        position: fixed;
        bottom: 44px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--rose-primary);
        z-index: 10000;
    }

    /* ── CTA SECTION ── */
    .cta-section {
        background: var(--burgundy);
        padding: 72px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(227, 126, 151, 0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-section h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 300;
        font-style: italic;
        color: #fff;
        margin-bottom: 12px;
    }

    .cta-section h2 strong {
        font-weight: 500;
        font-style: normal;
        color: var(--rose-primary);
    }

    .cta-section p {
        font-size: 15px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.8;
        max-width: 440px;
        margin: 0 auto 32px;
    }

    .btn-rose {
        background: var(--rose-primary);
        color: #fff;
        font-family: 'Jost', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 14px 40px;
        border-radius: 0;
        border: none;
        text-decoration: none;
        display: inline-block;
        transition: background 0.25s, transform 0.2s;
    }

    .btn-rose:hover {
        background: var(--burgundy);
        color: #fff;
        transform: translateY(-1px);
    }

    .btn-outline-rose {
        background: transparent;
        color: var(--rose-primary);
        font-family: 'Jost', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 13px 36px;
        border-radius: 0;
        border: 1px solid rgba(227, 126, 151, 0.5);
        text-decoration: none;
        display: inline-block;
        transition: all 0.25s;
    }

    .btn-outline-rose:hover {
        background: rgba(227, 126, 151, 0.1);
        border-color: var(--rose-primary);
        color: var(--rose-primary);
    }

    /* ── LOAD ANIMATION ── */
    .page-load .gallery-item {
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }

    .gallery-item:nth-child(1) {
        animation-delay: 0.05s;
    }

    .gallery-item:nth-child(2) {
        animation-delay: 0.10s;
    }

    .gallery-item:nth-child(3) {
        animation-delay: 0.15s;
    }

    .gallery-item:nth-child(4) {
        animation-delay: 0.20s;
    }

    .gallery-item:nth-child(5) {
        animation-delay: 0.25s;
    }

    .gallery-item:nth-child(6) {
        animation-delay: 0.30s;
    }

    .gallery-item:nth-child(7) {
        animation-delay: 0.35s;
    }

    .gallery-item:nth-child(8) {
        animation-delay: 0.40s;
    }

    .gallery-item:nth-child(9) {
        animation-delay: 0.45s;
    }

    .gallery-item:nth-child(10) {
        animation-delay: 0.50s;
    }

    .gallery-item:nth-child(n+11) {
        animation-delay: 0.55s;
    }

    .gallery-item img {
        background: linear-gradient(90deg, #1a0508 25%, #2a0c12 50%, #1a0508 75%);
        background-size: 200% 100%;
        min-height: 120px;
    }