
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #aaaba3;
            --gold-light: #ffffff;
            --gold-dark: #bebebe;
            --charcoal: #1a1a1a;
            --charcoal-light: #2a2a2a;
            --pearl: #f8f6f3;
            --pearl-dark: #ffffff;
            --accent: #556d8b;
            --glass: rgba(255, 255, 255, 0.1);
            --glass-dark: rgba(0, 0, 0, 0.3);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
            color: var(--pearl);
            overflow-x: hidden;
            scroll-behavior: smooth;
            cursor: none;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--charcoal);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
            border-radius: 4px;
        }


        /* Luxury Typography */
        .serif {
            font-family: 'Playfair Display', serif;
        }

        .hero-title {
            font-size: clamp(4rem, 12vw, 12rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            line-height: 1.5;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 6rem);
            font-weight: 400;
            letter-spacing: -0.01em;
            line-height: 1.1;
        }

        .body-elegant {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 300;
            line-height: 1.8;
            letter-spacing: 0.02em;
        }

        .caption {
            font-size: clamp(0.875rem, 2vw, 1.125rem);
            font-weight: 200;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* Glass Effects */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .glass-dark {
            background: var(--glass-dark);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 2rem 4rem;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        nav.scrolled {
            background: var(--glass-dark);
            backdrop-filter: blur(30px);
            padding: 1rem 4rem;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: 300;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 0.1em;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
            transition: gap 0.3s;
        }

        .nav-links a {
            color: var(--gold);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.22rem;
            font-weight: 400;
            letter-spacing: 0.07em;
            position: relative;
            padding: 0.7rem 1.1rem;
            background: transparent;
            transition: color 0.3s, background 0.3s, box-shadow 0.3s;
        }

        .nav-links a:hover, .nav-links a:focus {
            color: var(--pearl);
            background: rgba(255,255,255,0.06);
            box-shadow: 0 2px 18px 0 rgba(170,171,163,0.13);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, var(--gold-dark) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--accent) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--charcoal-light) 0%, transparent 50%);
            opacity: 0.3;
            animation: shimmer 20s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
            50% { transform: scale(1.1) rotate(2deg); opacity: 0.5; }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            animation: fadeInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }


        .hero-title {
            background: linear-gradient(135deg, var(--pearl) 0%, var(--gold) 50%, var(--pearl) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 3rem;
            animation: fadeInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
        }

        .hero-description {
            max-width: 600px;
            margin: 0 auto 4rem;
            opacity: 0.9;
            animation: fadeInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '';
            display: block;
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            margin: 0 auto 1rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Sections */
        .section {
            padding: 8rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-subtitle {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-bottom: 6rem;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .gallery-item-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--accent) 100%);
            transition: all 0.8s ease;
        }

        .gallery-item:nth-child(2) .gallery-item-bg {
            background: linear-gradient(135deg, var(--accent) 0%, var(--charcoal-light) 100%);
        }

        .gallery-item:nth-child(3) .gallery-item-bg {
            background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--gold-dark) 100%);
        }

        .gallery-item:hover .gallery-item-bg {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, var(--glass-dark));
            backdrop-filter: blur(20px);
            padding: 2rem;
            transform: translateY(100%);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }

        .gallery-description {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Feature Sections */
        .feature-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-bottom: 8rem;
        }

        .feature-content h3 {
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .feature-visual {
            height: 500px;
            background: var(--glass);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .feature-visual::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 20%;
            width: 60%;
            height: 60%;
            background: linear-gradient(45deg, var(--gold), var(--accent));
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 8rem 4rem;
            background: var(--glass-dark);
            border-radius: 40px;
            margin: 4rem 0;
        }

        .cta-button {
            display: inline-block;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--charcoal);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            letter-spacing: 0.05em;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: all 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(238, 238, 238, 0.114);
        }

        /* Footer */
        footer {
            padding: 4rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--pearl);
            text-decoration: none;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--gold);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
            
            .feature-section {
                grid-template-columns: 1fr;
                gap: 4rem;
                text-align: center;
            }
            
            .section {
                padding: 6rem 2rem;
            }
        }

        @media (max-width: 900px) {
            .nav-toggle {
                display: flex;
                background: none;
                border: none;
                cursor: pointer;
                z-index: 1201;
                width: 44px;
                height: 44px;
                align-items: center;
                justify-content: center;
                position: relative;
                margin-left: 1.5rem;
                box-shadow: 0 2px 16px 0 rgba(170,171,163,0.13);
                border-radius: 50%;
                transition: box-shadow 0.3s;
            }
            .nav-toggle:active, .nav-toggle:focus {
                box-shadow: 0 4px 24px 0 rgba(170,171,163,0.23);
            }
            .hamburger {
                display: block;
                width: 28px;
                height: 3px;
                background: var(--gold);
                border-radius: 2px;
                position: relative;
                transition: background 0.3s;
                box-shadow: 0 1px 8px 0 rgba(170,171,163,0.14);
            }
            .hamburger::before,
            .hamburger::after {
                content: '';
                position: absolute;
                left: 0;
                width: 28px;
                height: 3px;
                background: var(--gold-light);
                border-radius: 2px;
                transition: transform 0.32s cubic-bezier(.4,0,.2,1), top 0.32s, bottom 0.32s, background 0.3s;
                box-shadow: 0 1px 8px 0 rgba(170,171,163,0.11);
            }
            .hamburger::before {
                top: -9px;
            }
            .hamburger::after {
                bottom: -9px;
            }
            .nav-toggle.active .hamburger {
                background: transparent;
            }
            .nav-toggle.active .hamburger::before {
                transform: translateY(9px) rotate(45deg);
                background: var(--gold);
            }
            .nav-toggle.active .hamburger::after {
                transform: translateY(-9px) rotate(-45deg);
                background: var(--gold);
            }
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(34, 34, 34, 0.842);
                backdrop-filter: blur(36px) saturate(1.18);
                box-shadow: 0 8px 32px 0 rgba(170,171,163,0.14);
                border-left: 1.5px solid rgba(255, 255, 255, 0.07);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2.6rem;
                padding: 0;
                z-index: 1200;
                transition: opacity 0.36s cubic-bezier(.4,0,.2,1), visibility 0.36s cubic-bezier(.4,0,.2,1);
                opacity: 0;
                pointer-events: none;
                visibility: hidden;
            }
            .nav-links.active {
                opacity: 1;
                pointer-events: auto;
                visibility: visible;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                font-size: 2rem;
                font-family: 'Playfair Display', serif;
                color: var(--gold);
                font-weight: 400;
                padding: 1.1rem 0;
                display: block;
                letter-spacing: 0.07em;
                border-radius: 12px;
                transition: color 0.3s, background 0.3s, box-shadow 0.3s;
                box-shadow: 0 1px 8px 0 rgba(170,171,163,0.08);
            }
            .nav-links a:hover, .nav-links a:focus {
                color: var(--pearl);
                background: rgba(255,255,255,0.06);
                box-shadow: 0 2px 18px 0 rgba(170,171,163,0.13);
            }
        }
        @media (max-width: 600px) {
            .nav-container {
                padding: 1rem 0.5rem;
            }
            .logo {
                font-size: 1.6rem;
            }
            .nav-links a {
                font-size: 1.07rem;
                padding: 0.55rem 0;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

      