
        /* Hero Section */
        .gallery-hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        }

        .gallery-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80') center/cover;
            opacity: 0.4;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--pure-white);
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            letter-spacing: 3px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.1rem;
            letter-spacing: 2px;
            font-weight: 300;
            line-height: 1.8;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .scroll-indicator i {
            color: var(--pure-white);
            font-size: 2rem;
        }

        /* Filter Section */
        .filter-section {
            background: var(--pure-white);
            /* padding: 40px 0; */
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .filter-container {
            max-width: 1400px;
            margin: 0 auto;
            /* padding: 0 50px; */
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            border: 1px solid #ddd;
            background: transparent;
            color: var(--dark-grey);
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--accent-red);
            border-color: var(--accent-red);
            color: var(--pure-white);
        }

        /* Masonry Gallery Grid */
        .gallery-section {
            padding: 80px 50px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 300px;
            gap: 20px;
            grid-auto-flow: dense;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: var(--dark-grey);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease, filter 0.4s ease;
            filter: grayscale(20%);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }

        .gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-category {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-red);
            margin-bottom: 10px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }

        .gallery-item:hover .gallery-category {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--pure-white);
            margin-bottom: 10px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.15s;
        }

        .gallery-item:hover .gallery-title {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-zoom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--accent-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.2rem;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item:hover .gallery-zoom {
            opacity: 1;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .lightbox-close:hover {
            color: var(--accent-red);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: none;
            color: var(--pure-white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            background: var(--accent-red);
        }

        .lightbox-prev { left: -80px; }
        .lightbox-next { right: -80px; }

        .lightbox-caption {
            position: absolute;
            bottom: -60px;
            left: 0;
            width: 100%;
            text-align: center;
            color: var(--pure-white);
        }

        .lightbox-caption h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 5px;
        }

        .lightbox-caption p {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Featured Collections */
        .collections-section {
            padding: 100px 50px;
            background: var(--dark-grey);
            color: var(--pure-white);
        }

        .collections-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .collections-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .collections-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 20px;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .collection-card {
            position: relative;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
        }

        .collection-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .collection-card:hover img {
            transform: scale(1.1);
        }

        .collection-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            transition: background 0.4s ease;
        }

        .collection-card:hover .collection-overlay {
            background: linear-gradient(to top, rgba(196,30,58,0.8), transparent);
        }

        .collection-count {
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0.8;
            margin-bottom: 10px;
        }

        .collection-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .collection-desc {
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0.8;
            font-weight: 300;
        }

        /* Video Section */
        .video-section {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .video-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .video-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            color: var(--dark-grey);
            margin-bottom: 20px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .video-main {
            position: relative;
            height: 600px;
            overflow: hidden;
            background: var(--dark-grey);
        }

        .video-main video,
        .video-main iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay-play {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.3);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .video-overlay-play:hover {
            background: rgba(0,0,0,0.5);
        }

        .play-button {
            width: 100px;
            height: 100px;
            border: 3px solid var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .video-overlay-play:hover .play-button {
            background: var(--accent-red);
            border-color: var(--accent-red);
            transform: scale(1.1);
        }

        .video-thumbnails {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .video-thumb {
            position: relative;
            height: 185px;
            overflow: hidden;
            cursor: pointer;
            background: var(--dark-grey);
        }

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

        .video-thumb:hover img {
            transform: scale(1.05);
        }

        .video-thumb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .video-thumb:hover .video-thumb-overlay {
            background: rgba(0,0,0,0.6);
        }

        .video-thumb-play {
            width: 50px;
            height: 50px;
            border: 2px solid var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1rem;
        }

        .video-thumb-title {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: var(--pure-white);
            font-size: 0.9rem;
            font-weight: 300;
        }

        /* Instagram Feed */
        .instagram-section {
            padding: 100px 50px;
            background: var(--light-grey);
        }

        .instagram-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .instagram-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--dark-grey);
            margin-bottom: 15px;
        }

        .instagram-handle {
            font-size: 1rem;
            color: var(--accent-red);
            letter-spacing: 2px;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .instagram-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            cursor: pointer;
        }

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

        .instagram-item:hover img {
            transform: scale(1.1);
        }

        .instagram-overlay {
            position: absolute;
            inset: 0;
            background: rgba(196,30,58,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: var(--pure-white);
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-stat {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-grey) 0%, #2d2d2d 100%);
            padding: 120px 50px;
            text-align: center;
            color: var(--pure-white);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(196,30,58,0.05) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-btn {
            display: inline-block;
            background: var(--accent-red);
            color: var(--pure-white);
            padding: 20px 50px;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-red);
        }

        .cta-btn:hover {
            background: transparent;
            color: var(--pure-white);
        }

  
      

        /* Responsive */
        @media (max-width: 1200px) {
            .masonry-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .video-grid {
                grid-template-columns: 1fr;
            }
            .video-main {
                height: 400px;
            }
            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .masonry-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 250px;
            }
            .gallery-item.large {
                grid-column: span 2;
                grid-row: span 2;
            }
            .collections-grid {
                grid-template-columns: 1fr;
            }
            .collection-card {
                height: 400px;
            }
            .hero-title {
                font-size: 3.5rem;
            }
            .lightbox-prev { left: 20px; }
            .lightbox-next { right: 20px; }
          
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .gallery-hero {
                height: 80vh;
            }
            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }
            .masonry-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 300px;
            }
            .gallery-item.large,
            .gallery-item.wide,
            .gallery-item.tall {
                grid-column: span 1;
                grid-row: span 1;
            }
            .filter-container {
                padding: 0 20px;
            }
            .gallery-section {
                padding: 40px 20px;
            }
            .collections-section,
            .video-section,
            .instagram-section {
                padding: 60px 20px;
            }
            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-title {
                font-size: 2.5rem;
            }
         
        }

        /* Make filter buttons horizontally scrollable on narrow screens */
        @media (max-width: 900px) {
            .filter-container {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                gap: 12px;
                padding: 10px 14px;
                justify-content: flex-start;
            }

            .filter-container::-webkit-scrollbar {
                height: 8px;
            }
            .filter-container::-webkit-scrollbar-track {
                background: transparent;
            }
            .filter-container::-webkit-scrollbar-thumb {
                background: rgba(0,0,0,0.12);
                border-radius: 8px;
            }

            .filter-btn {
                flex: 0 0 auto;
                white-space: nowrap;
            }
        }
