

    .gallery-banner {
        min-height: 65vh;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #1a0e06;
    }

    /* Multi-layered parallax background */
    .gallery-banner-bg {
        position: absolute;
        inset: 0;
        background: url('../img/gallery-1.jpg') center / cover no-repeat;
        animation: kenBurnsGal 16s ease-in-out infinite alternate;
        z-index: 0;
    }

    @keyframes kenBurnsGal {
        from {
            transform: scale(1) translateX(0);
        }

        to {
            transform: scale(1.1) translateX(-2%);
        }
    }

    .gallery-banner-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(to bottom, #45370f 0%, transparent 50%, rgba(20, 10, 5, .7) 100%),
            linear-gradient(158deg, var(--bs-warning-text-emphasis), rgba(43, 28, 22, .5), rgba(43, 28, 22, .25));
    }

    /* Decorative floating orb */
    .gallery-banner-orb {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200, 155, 82, .18), transparent 70%);
        top: -100px;
        right: -100px;
        z-index: 2;
        animation: orbFloat 10s ease-in-out infinite alternate;
    }

    @keyframes orbFloat {
        from {
            transform: translate(0, 0) scale(1);
        }

        to {
            transform: translate(-30px, 40px) scale(1.08);
        }
    }

    .gallery-banner-content {
        position: relative;
        z-index: 3;
        color: #fff;
        padding-top: 110px;
    }

    .gallery-banner-content .page-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #e8c98a;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 18px;
        animation: fadeUpGal .8s ease both;
    }

    .gallery-banner-content .page-eyebrow::before {
        content: '';
        display: inline-block;
        width: 28px;
        height: 2px;
        background: #e8c98a;
    }

    .gallery-banner-content h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(3rem, 7vw, 5.5rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.05;
        margin-bottom: 20px;
        animation: fadeUpGal .9s .1s ease both;
    }

    .gallery-banner-content h1 em {
        font-style: italic;
        color: #e8c98a;
    }

    .gallery-banner-content p {
        font-size: 15px;
        color: rgba(255, 255, 255, .7);
        animation: fadeUpGal .9s .2s ease both;
    }

    .gallery-banner-content p span {
        color: #e8c98a;
    }

    .gallery-banner-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        z-index: 3;
        line-height: 0;
    }

    .gallery-banner-wave path {
        fill: #fff;
    }

    /* Photo count badge */
    .gallery-count-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(200, 155, 82, .4);
        backdrop-filter: blur(8px);
        border-radius: 50px;
        padding: 1px 15px;
        font-size: 13px;
        font-weight: 600;
        color: #e8c98a;
        margin-top: 24px;
        animation: fadeUpGal 1s .35s ease both;
    }

    .gallery-count-badge i {
        color: #e8c98a;
    }

    @keyframes fadeUpGal {
        from {
            opacity: 0;
            transform: translateY(32px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ── Filter Section ───────────────────────────────────────── */
    .gallery-filter-wrap {
        background: #fff;
        padding: 36px 0;
        border-bottom: 1px solid rgba(75, 49, 40, .08);
        position: sticky;
        top: 78px;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(75, 49, 40, .07);
    }

    .gallery-filter-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .gallery-filter-tabs {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .gal-filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        border-radius: 50px;
        border: 1.5px solid rgba(75, 49, 40, .18);
        background: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: .8px;
        color: #4b3128;
        cursor: pointer;
        transition: all .35s cubic-bezier(.23, 1, .32, 1);
        text-transform: uppercase;
    }

    .gal-filter-btn i {
        font-size: 11px;
    }

    .gal-filter-btn:hover,
    .gal-filter-btn.active {
        background: #4b3128;
        border-color: #4b3128;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(75, 49, 40, .22);
    }

    .gal-filter-btn.active {
        background: linear-gradient(135deg, #4b3128, #c89b52);
        border-color: transparent;
    }

    /* View toggle */
    .gallery-view-toggle {
        display: flex;
        gap: 8px;
    }

    .view-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        border: 1.5px solid rgba(75, 49, 40, .18);
        background: transparent;
        color: #4b3128;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        transition: all .3s;
    }

    .view-btn.active,
    .view-btn:hover {
        background: #4b3128;
        border-color: #4b3128;
        color: #fff;
    }

    /* ── Gallery Section ──────────────────────────────────────── */
    .gallery-section {
        padding: 80px 0 110px;
        background: #faf8f4;
    }

    /* ── Masonry Grid ─────────────────────────────────────────── */
    .gallery-masonry {
        columns: 3;
        column-gap: 18px;
    }

    .gallery-masonry.two-col {
        columns: 2;
    }

    .gallery-masonry.four-col {
        columns: 4;
    }

    .gal-item {
        break-inside: avoid;
        margin-bottom: 18px;
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        cursor: pointer;
        display: block;
    }

    /* Image */
    .gal-item img {
        width: 100%;
        display: block;
        transition: transform .65s cubic-bezier(.23, 1, .32, 1);
        border-radius: 18px;
        vertical-align: bottom;
    }

    .gal-item:hover img {
        transform: scale(1.06);
    }

    /* Hover overlay */
    .gal-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgba(20, 10, 5, .82) 0%,
                rgba(20, 10, 5, .35) 50%,
                transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 24px 22px;
        opacity: 0;
        transition: opacity .45s ease;
        border-radius: 18px;
    }

    .gal-item:hover .gal-overlay {
        opacity: 1;
    }

    /* Caption */
    .gal-caption {
        transform: translateY(14px);
        transition: transform .4s cubic-bezier(.23, 1, .32, 1);
    }

    .gal-item:hover .gal-caption {
        transform: translateY(0);
    }

    .gal-caption-tag {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #e8c98a;
        margin-bottom: 6px;
    }

    .gal-caption h5 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1.2;
    }

    /* Zoom icon */
    .gal-zoom {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .92);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #4b3128;
        opacity: 0;
        transform: scale(.7) rotate(-15deg);
        transition: all .4s cubic-bezier(.23, 1, .32, 1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
    }

    .gal-item:hover .gal-zoom {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    .gal-zoom:hover {
        background: #c89b52;
        color: #fff;
    }

    /* Category tag (top-left) */
    .gal-tag {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(255, 255, 255, .92);
        color: #4b3128;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 50px;
        opacity: 0;
        transform: translateX(-10px);
        transition: all .4s cubic-bezier(.23, 1, .32, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    }

    .gal-item:hover .gal-tag {
        opacity: 1;
        transform: translateX(0);
    }

    /* Featured (tall) items in masonry */
    .gal-item--tall img {
        height: auto;
    }

    /* ── Grid View (alternate layout) ────────────────────────── */
    .gallery-grid {
        display: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .gallery-grid.active {
        display: grid;
    }

    .gallery-masonry.hidden {
        display: none;
    }

    .gallery-grid .gal-item {
        height: 280px;
    }

    .gallery-grid .gal-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ── Load More ────────────────────────────────────────────── */
    .gallery-load-more {
        text-align: center;
        margin-top: 56px;
    }

    .load-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: transparent;
        border: 2px solid #4b3128;
        color: #4b3128;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 16px 40px;
        border-radius: 50px;
        cursor: pointer;
        transition: all .4s cubic-bezier(.23, 1, .32, 1);
        position: relative;
        overflow: hidden;
    }

    .load-more-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #4b3128, #c89b52);
        transform: translateX(-100%);
        transition: transform .45s cubic-bezier(.23, 1, .32, 1);
        z-index: 0;
    }

    .load-more-btn span,
    .load-more-btn i {
        position: relative;
        z-index: 1;
    }

    .load-more-btn:hover {
        color: #fff;
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(75, 49, 40, .25);
    }

    .load-more-btn:hover::before {
        transform: translateX(0);
    }

    /* ── Video Reel Strip ─────────────────────────────────────── */
    .video-strip {
        background: linear-gradient(160deg, #2e1a10, #4b3128 50%, #1a0e06);
        padding: 90px 0;
        position: relative;
        overflow: hidden;
    }

    .video-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 155, 82, .1), transparent);
        z-index: 0;
    }

    .video-strip .container {
        position: relative;
        z-index: 2;
    }

    .video-card {
        border-radius: 22px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
        transition: transform .45s cubic-bezier(.23, 1, .32, 1), box-shadow .45s;
    }

    .video-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 40px 90px rgba(0, 0, 0, .55);
    }

    .video-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform .65s cubic-bezier(.23, 1, .32, 1);
        display: block;
    }

    .video-card:hover img {
        transform: scale(1.05);
    }

    .video-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: linear-gradient(135deg, #c89b52, #e8c98a);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #2e1a10;
        box-shadow: 0 8px 28px rgba(200, 155, 82, .55), 0 0 0 12px rgba(200, 155, 82, .15);
        transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s;
    }

    .video-card:hover .video-play-btn {
        transform: translate(-50%, -50%) scale(1.12);
        box-shadow: 0 14px 40px rgba(200, 155, 82, .65), 0 0 0 18px rgba(200, 155, 82, .12);
    }

    .video-card-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(20, 10, 5, .88), transparent);
    }

    .video-card-label span {
        display: block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #e8c98a;
        margin-bottom: 4px;
    }

    .video-card-label h5 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    /* ── Lightbox ─────────────────────────────────────────────── */
    .lightbox-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 5, 2, .97);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s ease;
        padding: 20px;
    }

    .lightbox-overlay.is-open {
        opacity: 1;
        pointer-events: all;
    }

    .lightbox-inner {
        position: relative;
        max-width: 1100px;
        width: 100%;
        transform: scale(.9);
        transition: transform .45s cubic-bezier(.23, 1, .32, 1);
    }

    .lightbox-overlay.is-open .lightbox-inner {
        transform: scale(1);
    }

    .lightbox-img {
        width: 100%;
        max-height: 82vh;
        object-fit: contain;
        border-radius: 16px;
        display: block;
        box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
    }

    .lightbox-close {
        position: fixed;
        top: 24px;
        right: 28px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .3s;
        z-index: 10001;
    }

    .lightbox-close:hover {
        background: #c89b52;
        border-color: #c89b52;
        transform: rotate(90deg);
    }

    .lightbox-nav {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .3s;
        z-index: 10001;
    }

    .lightbox-nav:hover {
        background: #c89b52;
        border-color: #c89b52;
    }

    .lightbox-prev {
        left: 24px;
    }

    .lightbox-next {
        right: 24px;
    }

    .lightbox-caption {
        text-align: center;
        margin-top: 18px;
    }

    .lightbox-caption h5 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 4px;
    }

    .lightbox-caption span {
        font-size: 12px;
        color: rgba(255, 255, 255, .5);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .lightbox-counter {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, .5);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        z-index: 10001;
    }

    /* ── Stats Bar ────────────────────────────────────────────── */
    .gallery-stats {
        background: linear-gradient(135deg, #faf3e8, #f4ede3);
        padding: 60px 0;
    }

    .gstat-item {
        text-align: center;
        padding: 20px;
    }

    .gstat-item strong {
        display: block;
        font-family: 'Cormorant Garamond', serif;
        font-size: 3rem;
        font-weight: 700;
        color: #4b3128;
        line-height: 1;
        margin-bottom: 8px;
    }

    .gstat-item span {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #c89b52;
    }

    /* ── Responsive ───────────────────────────────────────────── */
    @media (max-width: 1199px) {
        .gallery-masonry {
            columns: 3;
        }

        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 991px) {
        .gallery-banner {
            min-height: 60vh;
        }

        .gallery-banner-content h1 {
            font-size: 3rem;
        }

        .gallery-masonry {
            columns: 2;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gallery-filter-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .lightbox-nav {
            display: none;
        }
    }

    @media (max-width: 767px) {
        .gallery-masonry {
            columns: 2;
            column-gap: 12px;
        }

        .gal-item {
            margin-bottom: 12px;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .video-card img {
            height: 240px;
        }

        .gallery-filter-wrap {
            position: static;
        }
    }

    @media (max-width: 575px) {
        .gallery-masonry {
            columns: 1;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .gallery-banner-content h1 {
            font-size: 2.4rem;
        }

        .gallery-filter-tabs {
            gap: 8px;
        }

        .gal-filter-btn {
            padding: 8px 16px;
            font-size: 11px;
        }

        .gstat-item strong {
            font-size: 2.2rem;
        }
    }