    /* ============================================
   ✨ MODERN ELEGANT COLLECTION
   Clean, Sophisticated, Genteel Design
   ============================================ */

    :root {
        --gc-black: #0a0a0a;
        --gc-dark: #1a1a1a;
        --gc-charcoal: #2d2d2d;
        --gc-gray: #6b6b6b;
        --gc-silver: #a0a0a0;
        --gc-light: #f5f5f5;
        --gc-white: #ffffff;
        --gc-gold: #c9a87c;
        --gc-gold-light: rgba(201, 168, 124, 0.15);

        --font-display: 'Cormorant', Georgia, serif;
        --font-sans: 'Montserrat', system-ui, sans-serif;
    }

    * {
        box-sizing: border-box;
    }

    .gallery-page {
        font-family: var(--font-sans);
        background: var(--gc-white);
        color: var(--gc-dark);
    }

    /* ============================================
   HERO - Full Screen Immersive
   ============================================ */
    .gal-hero {
        position: relative;
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gc-black);
        overflow: hidden;
    }

    .gal-hero-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .gal-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
        filter: grayscale(30%);
        animation: slowZoom 30s ease-in-out infinite alternate;
    }

    @keyframes slowZoom {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.1);
        }
    }

    .gal-hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.6) 100%),
            linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
    }

    /* Elegant Lines */
    .gal-hero-lines {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
    }

    .gal-hero-lines::before,
    .gal-hero-lines::after {
        content: '';
        position: absolute;
        background: rgba(201, 168, 124, 0.3);
    }

    .gal-hero-lines::before {
        top: 50%;
        left: 5%;
        width: 100px;
        height: 1px;
        transform: translateY(-50%);
    }

    .gal-hero-lines::after {
        top: 50%;
        right: 5%;
        width: 100px;
        height: 1px;
        transform: translateY(-50%);
    }

    .gal-hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 900px;
        padding: 2rem;
    }

    .gal-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        color: var(--gc-gold) !important;
        -webkit-text-fill-color: var(--gc-gold) !important;
        margin-bottom: 2rem;
    }

    .gal-hero-badge::before,
    .gal-hero-badge::after {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--gc-gold);
    }

    .gal-hero-title {
        font-family: var(--font-display);
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 400;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: 0.02em;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .gal-hero-title em {
        font-style: italic;
        color: var(--gc-gold) !important;
        -webkit-text-fill-color: var(--gc-gold) !important;
    }

    .gal-hero-desc {
        font-size: 1.1rem;
        font-weight: 300;
        color: #a0a0a0 !important;
        -webkit-text-fill-color: #a0a0a0 !important;
        max-width: 600px;
        margin: 0 auto 3rem;
        line-height: 1.8;
    }

    .gal-hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2.5rem;
        background: transparent;
        border: 1px solid var(--gc-gold);
        color: var(--gc-gold) !important;
        -webkit-text-fill-color: var(--gc-gold) !important;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        text-decoration: none;
        transition: all 0.4s ease;
    }

    .gal-hero-btn:hover {
        background: var(--gc-gold);
        color: #0a0a0a !important;
        -webkit-text-fill-color: #0a0a0a !important;
    }

    /* Scroll Indicator */
    .gal-scroll {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        color: #a0a0a0 !important;
        -webkit-text-fill-color: #a0a0a0 !important;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }

    .gal-scroll-line {
        width: 1px;
        height: 50px;
        background: linear-gradient(180deg, var(--gc-gold), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

        0%,
        100% {
            transform: scaleY(1);
            opacity: 0.5;
        }

        50% {
            transform: scaleY(1.2);
            opacity: 1;
        }
    }

    /* ============================================
   GALLERY SECTIONS
   ============================================ */
    .gal-section {
        padding: 7rem 2rem;
    }

    .gal-section--dark {
        background: var(--gc-light);
    }

    .gal-section--white {
        background: var(--gc-white);
    }

    /* Section Header - Elegant */
    .gal-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .gal-header-line {
        width: 60px;
        height: 1px;
        background: var(--gc-gold);
        margin: 0 auto 1.5rem;
    }

    .gal-header-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        color: #1a1a1a !important;
        -webkit-text-fill-color: #1a1a1a !important;
        margin-bottom: 0.75rem;
        letter-spacing: 0.02em;
    }

    .gal-header-title em {
        font-style: italic;
        color: #c9a87c !important;
        -webkit-text-fill-color: #c9a87c !important;
    }

    .gal-header-sub {
        font-size: 0.9rem;
        color: #6b6b6b !important;
        -webkit-text-fill-color: #6b6b6b !important;
        letter-spacing: 0.05em;
    }

    /* Masonry Grid */
    .gal-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    @media (max-width: 1024px) {
        .gal-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

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

    /* Featured Grid - 2 Columns */
    .gal-grid--featured {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gal-grid--featured .gal-card-img {
        aspect-ratio: 4/5;
    }

    @media (max-width: 768px) {
        .gal-grid--featured {
            grid-template-columns: 1fr;
        }
    }

    /* Gallery Card - Modern Elegant */
    .gal-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background: var(--gc-white);
    }

    .gal-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid transparent;
        transition: border-color 0.4s;
        z-index: 5;
        pointer-events: none;
    }

    .gal-card:hover::before {
        border-color: var(--gc-gold);
    }

    .gal-card--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    @media (max-width: 640px) {
        .gal-card--large {
            grid-column: span 1;
            grid-row: span 1;
        }
    }

    .gal-card-img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .gal-card--large .gal-card-img {
        aspect-ratio: 1/1;
    }

    .gal-card:hover .gal-card-img {
        transform: scale(1.05);
    }

    /* Card Overlay */
    .gal-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 2rem;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .gal-card:hover .gal-card-overlay {
        opacity: 1;
    }

    .gal-card-cat {
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: #c9a87c !important;
        -webkit-text-fill-color: #c9a87c !important;
        margin-bottom: 0.5rem;
    }

    .gal-card-title {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 400;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        margin-bottom: 0.5rem;
    }

    .gal-card-desc {
        font-size: 0.85rem;
        color: #a0a0a0 !important;
        -webkit-text-fill-color: #a0a0a0 !important;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Featured Badge */
    .gal-badge {
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.5rem 1rem;
        background: var(--gc-gold);
        color: #0a0a0a !important;
        -webkit-text-fill-color: #0a0a0a !important;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        z-index: 10;
    }

    /* View Button */
    .gal-view {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 10;
    }

    .gal-card:hover .gal-view {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .gal-view i {
        font-size: 1.25rem;
        color: var(--gc-dark);
    }

    /* ============================================
   LIGHTBOX - Premium Enhanced
   ============================================ */
    .gal-lightbox {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gal-lightbox.active {
        opacity: 1;
        visibility: visible;
    }

    .gal-lightbox-inner {
        max-width: 95vw;
        max-height: 95vh;
        position: relative;
        text-align: center;
        transform: scale(0.9) translateY(20px);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    }

    .gal-lightbox.active .gal-lightbox-inner {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    /* Image Container */
    .gal-lightbox-img-wrap {
        position: relative;
        display: inline-block;
        border: 1px solid rgba(201, 168, 124, 0.2);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
        background: #0a0a0a;
        padding: 8px;
    }

    .gal-lightbox-inner img {
        max-width: 85vw;
        max-height: 70vh;
        object-fit: contain;
        display: block;
    }

    /* Close Button */
    .gal-lightbox-close {
        position: fixed;
        top: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--gc-white);
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .gal-lightbox-close:hover {
        background: var(--gc-gold);
        border-color: var(--gc-gold);
        color: var(--gc-black);
        transform: rotate(90deg);
    }

    /* Navigation Arrows */
    .gal-lightbox-nav {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 55px;
        height: 55px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        color: var(--gc-white);
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.7;
        z-index: 10;
    }

    .gal-lightbox-nav:hover {
        background: rgba(201, 168, 124, 0.15);
        border-color: var(--gc-gold);
        color: var(--gc-gold);
        opacity: 1;
    }

    .gal-lightbox-prev {
        left: 2rem;
    }

    .gal-lightbox-next {
        right: 2rem;
    }

    /* Info Panel */
    .gal-lightbox-info {
        margin-top: 2.5rem;
        position: relative;
    }

    .gal-lightbox-info::before {
        content: '';
        display: block;
        width: 50px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
        margin: 0 auto 1.5rem;
    }

    .gal-lightbox-info h3 {
        font-family: var(--font-display);
        font-size: clamp(1.5rem, 3vw, 2.25rem);
        font-weight: 400;
        color: var(--gc-white);
        margin-bottom: 0.75rem;
        letter-spacing: 0.02em;
    }

    .gal-lightbox-info p {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: var(--gc-gold);
        font-weight: 500;
    }

    /* Counter */
    .gal-lightbox-counter {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.4);
        z-index: 10;
    }

    .gal-lightbox-counter span {
        color: var(--gc-gold);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .gal-lightbox-nav {
            width: 44px;
            height: 44px;
            font-size: 1rem;
        }

        .gal-lightbox-prev {
            left: 1rem;
        }

        .gal-lightbox-next {
            right: 1rem;
        }

        .gal-lightbox-close {
            top: 1rem;
            right: 1rem;
            width: 44px;
            height: 44px;
        }

        .gal-lightbox-inner img {
            max-width: 95vw;
            max-height: 60vh;
        }
    }

    /* ============================================
   EMPTY STATE
   ============================================ */
    .gal-empty {
        text-align: center;
        padding: 5rem 2rem;
    }

    .gal-empty i {
        font-size: 3rem;
        color: var(--gc-silver);
        margin-bottom: 1.5rem;
    }

    .gal-empty h3 {
        font-family: var(--font-display);
        font-size: 1.75rem;
        color: var(--gc-dark);
        margin-bottom: 0.5rem;
    }

    .gal-empty p {
        color: var(--gc-gray);
    }

    /* ============================================
   ANIMATIONS
   ============================================ */
    .gal-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gal-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered cards */
    .gal-card {
        transition-delay: 0s;
    }

    .gal-card:nth-child(2) {
        transition-delay: 0.1s;
    }

    .gal-card:nth-child(3) {
        transition-delay: 0.2s;
    }

    .gal-card:nth-child(4) {
        transition-delay: 0.3s;
    }

    .gal-card:nth-child(5) {
        transition-delay: 0.4s;
    }

    .gal-card:nth-child(6) {
        transition-delay: 0.5s;
    }
