* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #d4af37;
            --gold-dark: #b8941f;
            --navy: #1a2332;
            --navy-light: #2d3e50;
            --cream: #faf8f5;
            --white: #ffffff;
            --text: #333333;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* Page Header */
        .page-header {
            margin-top: 70px;
            height: 70vh;
            background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.5)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 800"><rect fill="%231a2332" width="1920" height="800"/><circle cx="960" cy="400" r="300" fill="%23d4af37" opacity="0.05"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, transparent, var(--white));
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 8px;
        }

        .page-header-divider {
            width: 120px;
            height: 2px;
            background: var(--gold);
            margin: 2rem auto;
        }

        .page-header p {
            font-size: 1.3rem;
            letter-spacing: 4px;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            font-weight: 300;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 8rem 0;
        }

        .gallery-section:nth-child(even) {
            background: var(--cream);
        }

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

        .section-subtitle {
            font-size: 0.85rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .section-title {
            font-size: 3.8rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-divider {
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            margin: 2rem auto;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.9;
        }

        /* Masonry Gallery Grid */
        .gallery-masonry {
            column-count: 3;
            column-gap: 2rem;
        }

        .gallery-item {
            position: relative;
            break-inside: avoid;
            margin-bottom: 2rem;
            overflow: hidden;
            cursor: pointer;
            background: var(--navy);
        }

        .gallery-item-inner {
            position: relative;
            width: 100%;
            padding-bottom: 75%; /* Default aspect ratio */
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--gold) 100%);
            transition: transform 0.5s ease;
        }

        .gallery-item.tall .gallery-item-inner {
            padding-bottom: 130%;
        }

        .gallery-item.wide .gallery-item-inner {
            padding-bottom: 50%;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(212, 175, 55, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.5s;
            z-index: 2;
        }

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

        .gallery-item:hover .gallery-item-inner {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem 2rem;
            color: var(--white);
            transform: translateY(100%);
            transition: transform 0.5s ease;
            z-index: 3;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .gallery-overlay h3 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--white);
            letter-spacing: 1px;
        }

        .gallery-overlay p {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            letter-spacing: 1px;
            line-height: 1.6;
        }

        .gallery-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0) rotate(-180deg);
            font-size: 4rem;
            color: var(--gold);
            transition: all 0.5s ease;
            z-index: 3;
            opacity: 0;
        }

        .gallery-item:hover .gallery-icon {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
            opacity: 1;
        }

        /* Featured Gallery - Grid Style */
        .featured-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .featured-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: var(--navy);
            transition: transform 0.3s ease;
        }

        .featured-item:hover {
            transform: translateY(-5px);
        }

        .featured-item-inner {
            position: relative;
            width: 100%;
            height: 100%;
            padding-bottom: 100%;
            overflow: hidden;
        }

        .featured-item-inner img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

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

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

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(26, 35, 50, 0.95), transparent);
            color: var(--white);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .featured-item:hover .featured-overlay {
            transform: translateY(0);
        }

        .featured-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }

        .featured-overlay p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 50%;
            font-size: 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
            font-weight: 300;
            line-height: 1;
        }

        .lightbox-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: var(--white);
        }

        .lightbox-caption {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 35, 50, 0.9);
            color: var(--white);
            padding: 1.5rem 3rem;
            border-radius: 5px;
            text-align: center;
            min-width: 300px;
            backdrop-filter: blur(10px);
        }

        .lightbox-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }

        .lightbox-caption p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: rgba(255,255,255,0.8);
            letter-spacing: 1px;
        }

        .cta-btn {
            display: inline-block;
            padding: 1.3rem 4rem;
            background: var(--gold);
            color: var(--navy);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s;
            border: 2px solid var(--gold);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }


        @media (max-width: 1024px) {
            .gallery-masonry {
                column-count: 2;
            }

            .featured-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .featured-item.large,
            .featured-item.wide {
                grid-column: span 1;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .container,
            .nav-container {
                padding: 0 1.5rem;
            }

            .page-header h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .gallery-masonry {
                column-count: 1;
            }

            .featured-gallery {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .lightbox-close {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }

            .lightbox-caption {
                bottom: 10px;
                padding: 1rem 1.5rem;
                min-width: 200px;
            }

            .lightbox-caption h3 {
                font-size: 1.2rem;
            }

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

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .page-header {
                height: 40vh;
                min-height: 300px;
                margin-top: 60px;
            }

            .page-header-content h1 {
                font-size: 2rem !important;
                letter-spacing: 2px;
            }

            .page-header-divider {
                width: 60px;
            }

            .page-header-content p {
                font-size: 0.9rem !important;
                letter-spacing: 1px;
            }

            .gallery-section {
                padding: 4rem 0;
            }

            .section-subtitle {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }

            .section-title {
                font-size: 2rem !important;
            }

            .section-divider {
                width: 60px;
            }

            .section-description {
                font-size: 0.9rem;
                padding: 0 1rem;
            }

            .featured-gallery {
                gap: 1rem;
            }

            .featured-item {
                min-height: 250px;
            }

            .featured-item.large {
                grid-column: span 1;
                min-height: 300px;
            }

            .featured-item.wide {
                grid-column: span 1;
            }

            .featured-overlay h3 {
                font-size: 1.2rem;
            }

            .featured-overlay p {
                font-size: 0.85rem;
            }

            .lightbox-content {
                width: 95%;
                max-width: none;
            }

            .lightbox-close {
                width: 40px;
                height: 40px;
                font-size: 2rem;
            }

            .lightbox-caption {
                padding: 1.5rem 1rem;
            }

            .lightbox-caption h3 {
                font-size: 1.2rem;
            }

            .lightbox-caption p {
                font-size: 0.85rem;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .cta-content h2 {
                font-size: 2rem !important;
            }

            .cta-content p {
                font-size: 0.95rem !important;
            }

            .cta-btn {
                padding: 1rem 2rem;
                font-size: 0.75rem;
                letter-spacing: 2px;
            }
        }