   
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

        :root {
            --black: #0A0A0A;
            --off-white: #F8F8F8;
            --gold: #faeccd;
            --beige: #E9E5E0;
            --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: transparent;
            color: var(--black);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* Refined Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--black);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .loader.fade-out {
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }

        .loader-content {
            color: var(--off-white);
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 0.8em;
            animation: fadeInOut 2.5s infinite;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Enhanced Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(10px);
            padding: 1.5rem 3rem;
            z-index: 100;
            transform: translateY(0);
            transition: var(--transition);
            border-bottom: 1px solid rgba(196, 166, 97, 0.1);
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--off-white);
            text-decoration: none;
            letter-spacing: 0.3em;
            position: relative;
            overflow: hidden;
        }

        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--gold);
            transform: translateX(-101%);
            transition: var(--transition);
        }

        .navbar-brand:hover::after {
            transform: translateX(0);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: var(--off-white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 0.2em;
            opacity: 0.9;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(196, 166, 97, 0.1);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: -1;
        }

        .nav-link:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-link:hover {
            opacity: 1;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--gold);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--off-white);
            margin: 5px 0;
            transition: var(--transition);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
                z-index: 101;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background-color: rgba(26, 26, 26, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
        }

        /* Luxurious Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .video-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--black), transparent);
            opacity: 0.7;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            color: var(--off-white);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 1s;
        }

        .hero p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.5s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .featured-section {
            padding: 10rem 2rem;
            background: transparent;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            text-align: center;
            margin-bottom: 5rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Refined Product Cards */
        .product-card {
            position: relative;
            padding-top: 120%;
            background: var(--off-white);
            border: 1px solid rgba(196, 166, 97, 0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, var(--black), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .product-card:hover::before {
            opacity: 0.3;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .product-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 2rem;
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
            color: var(--off-white);
            transform: translateY(100%);
            transition: var(--transition);
        }

        .product-card:hover .product-info {
            transform: translateY(0);
        }

        .product-card:hover img {
            transform: scale(1.1);
        }

        .collection-section {
            padding: 10rem 2rem;
            background: transparent;
            color: var(--off-white);
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Collection Section Refinements */
        .collection-item {
            position: relative;
            padding-top: 120%;
            overflow: hidden;
            border: 1px solid rgba(196, 166, 97, 0.1);
        }

        .collection-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .collection-info {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -45%);
            text-align: center;
            width: 80%;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .collection-info h3 {
            position: relative;
            padding-bottom: 1rem;
        }

        .collection-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 1px;
            background-color: var(--gold);
        }

        .collection-item:hover img {
            transform: scale(1.05);
            filter: brightness(0.2);
        }

        .collection-item:hover .collection-info {
            opacity: 1;
            transform: translate(-50%, -50%);
        }



        /* Responsive Enhancements */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .nav-menu {
                background-color: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                padding: 2rem;
            }

            .nav-link {
                font-size: 1.2rem;
                margin: 1.5rem 0;
            }

            .hero-content {
                padding: 2rem 1.5rem;
            }

            .featured-section,
            .collection-section {
                padding: 6rem 1.5rem;
            }

            .products-grid {
                gap: 2rem;
            }
        }

        .menu-toggle {
            display: none;
            z-index: 200;
            position: relative;
            width: 30px;
            height: 20px;
            cursor: pointer;
        }

        .menu-toggle span {
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--off-white);
            transition: var(--transition);
        }

        .menu-toggle span:nth-child(1) { top: 0; }
        .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .menu-toggle span:nth-child(3) { bottom: 0; }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 50%;
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 40%;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 26, 0.98);
            z-index: 150;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .menu-links {
            text-align: center;
        }

        .menu-links li {
            margin: 2rem 0;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }

        .menu-overlay.active .menu-links li {
            transform: translateY(0);
            opacity: 1;
        }

        .menu-links li:nth-child(1) { transition-delay: 0.1s; }
        .menu-links li:nth-child(2) { transition-delay: 0.2s; }
        .menu-links li:nth-child(3) { transition-delay: 0.3s; }
        .menu-links li:nth-child(4) { transition-delay: 0.4s; }

        .menu-links a {
            color: var(--off-white);
            text-decoration: none;
            font-size: 2rem;
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.2em;
            position: relative;
            display: inline-block;
        }

        .menu-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--off-white);
            transition: var(--transition);
        }

        .menu-links a:hover::after {
            width: 100%;
        }

        /* Enhanced CTA Buttons */
        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.9rem;
            margin-top: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: var(--transition);
            z-index: -1;
        }

        .cta-button:hover {
            color: var(--black);
            transform: translateY(-2px);
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-dark {
            border-color: var(--black);
            color: var(--black);
        }

        .cta-dark::before {
            background: var(--black);
        }

        .cta-dark:hover {
            color: var(--off-white);
        }

        .product-cta {
            margin-top: 1rem;
            font-size: 0.8rem;
            padding: 0.8rem 1.5rem;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--black);
            border-left: 1px solid rgba(196, 166, 97, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(
                to bottom,
                rgba(196, 166, 97, 0.3),
                rgba(196, 166, 97, 0.5)
            );
            border-radius: 6px;
            border: 3px solid var(--black);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(
                to bottom,
                rgba(196, 166, 97, 0.5),
                rgba(196, 166, 97, 0.7)
            );
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgba(196, 166, 97, 0.1);
            z-index: 1000;
        }

        .progress-fill {
            width: 0;
            height: 100%;
            background: linear-gradient(
                to right,
                var(--gold),
                rgba(196, 166, 97, 0.5)
            );
            transition: width 0.1s ease-out;
            box-shadow: 0 0 10px rgba(196, 166, 97, 0.3);
        }

        /* For Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--gold) var(--black);
        }
        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            pointer-events: none;
            mix-blend-mode: difference;
            z-index: 9999;
            transition: transform 0.2s ease;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            background: rgba(250, 236, 205, 0.2);
            border: 1px solid var(--gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.6s ease, width 0.3s ease, height 0.3s ease;
        }

        /* Cursor states */
        body:hover .cursor {
            transform: scale(1);
        }

        .cursor.active {
            transform: scale(2);
        }

        .cursor-follower.active {
            transform: scale(1.5);
            background: rgba(250, 236, 205, 0.1);
        }

        /* Hide default cursor */
        * {
            cursor: none;
        }

        /* Restore default cursor for mobile */
        @media (max-width: 768px) {
            .cursor, .cursor-follower {
                display: none;
            }
            * {
                cursor: auto;
            }
        }

        /* About Section Styles */
        .about-section {
            padding: 10rem 2rem;
            background: transparent;
            position: relative;
            overflow: hidden;
            color: var(--off-white);
        }

        /* Animated Luxury Background */
        .luxury-bg-pattern {
            position: fixed;  /* Change from absolute to fixed */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;  /* Ensure it stays behind all content */
            background: 
                linear-gradient(45deg, rgba(250, 236, 205, 0.03) 25%, transparent 25%) -50px 0,
                linear-gradient(45deg, transparent 75%, rgba(250, 236, 205, 0.03) 75%) -50px 0,
                linear-gradient(-45deg, rgba(250, 236, 205, 0.03) 25%, transparent 25%) -50px 0,
                linear-gradient(-45deg, transparent 75%, rgba(250, 236, 205, 0.03) 75%) -50px 0;
            background-size: 100px 100px;
            background-color: var(--black); /* Add a base background color */
            animation: patternMove 15s linear infinite;
        }

        .luxury-bg-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, 
                rgba(250, 236, 205, 0.1) 0%, 
                rgba(10, 10, 10, 0) 50%);
            animation: pulseGlow 4s ease-in-out infinite;
        }

        /* Floating Golden Particles */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: floatParticle 8s infinite;
        }

        /* Enhanced Section Content */
        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
            background: linear-gradient(
                rgba(10, 10, 10, 0.8),
                rgba(10, 10, 10, 0.6)
            );
            backdrop-filter: blur(10px);
            border: 1px solid rgba(250, 236, 205, 0.1);
            border-radius: 10px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .section-title {
            color: var(--off-white);
            text-shadow: 0 0 10px rgba(250, 236, 205, 0.3);
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin: 2rem 0;
            color: var(--off-white);
            opacity: 0.9;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-circle {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                rgba(250, 236, 205, 0.1),
                rgba(250, 236, 205, 0.05)
            );
            border-radius: 50%;
            padding: 2px;
        }

        .progress-ring-circle {
            transition: stroke-dashoffset 1s ease;
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
            stroke: var(--gold);
            filter: drop-shadow(0 0 5px rgba(250, 236, 205, 0.3));
        }

        .stat-number {
            position: absolute;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--gold);
            text-shadow: 0 0 10px rgba(250, 236, 205, 0.3);
        }

        .stat-label {
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            color: var(--off-white);
            opacity: 0.8;
        }

        .section-title {
            position: relative;
            display: inline-block;
        }

        .title-accent {
            position: absolute;
            color: var(--gold);
            font-size: 1.5em;
            top: -0.5em;
            right: -1em;
            opacity: 0.5;
        }

        .about-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            position: relative;
        }

        .image-wrapper {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(250, 236, 205, 0.1);
            border-radius: 5px;
        }

        .about-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .overlay-text {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            transform: translateY(20px);
            transition: transform 0.6s ease;
        }

        .image-wrapper:hover .about-image {
            transform: scale(1.1);
        }

        .image-wrapper:hover .image-overlay {
            opacity: 1;
        }

        .image-wrapper:hover .overlay-text {
            transform: translateY(0);
        }

        .about-quote {
            position: relative;
            padding: 3rem;
            background: linear-gradient(
                45deg,
                rgba(10, 10, 10, 0.9),
                rgba(10, 10, 10, 0.7)
            );
            color: var(--off-white);
            text-align: center;
            border: 1px solid rgba(250, 236, 205, 0.1);
            border-radius: 5px;
        }

        .quote-mark {
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.3;
            font-family: 'Playfair Display', serif;
        }

        .quote-author {
            display: block;
            margin-top: 1rem;
            font-style: italic;
            color: var(--gold);
        }

        .about-features {
            max-width: 1400px;
            margin: 8rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }

        .feature-item {
            position: relative;
            padding: 3rem 2rem;
            background: linear-gradient(
                45deg,
                rgba(10, 10, 10, 0.9),
                rgba(10, 10, 10, 0.7)
            );
            color: var(--off-white);
            text-align: center;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(250, 236, 205, 0.1);
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
            background: linear-gradient(
                45deg,
                rgba(250, 236, 205, 0.1),
                rgba(250, 236, 205, 0.05)
            );
            box-shadow: 0 0 20px rgba(250, 236, 205, 0.1);
        }

        .feature-hover-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(196, 166, 97, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
        }

        .feature-item:hover .feature-hover-effect {
            transform: translateX(100%);
        }

        .feature-item:hover .icon-circle {
            transform: rotate(360deg);
        }

        .feature-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-item p {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-content {
                padding-right: 0;
            }

            .about-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .about-stats {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .stat-circle {
                width: 100px;
                height: 100px;
            }
        }

        /* Animations */
        @keyframes patternMove {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 100px 100px;
            }
        }

        @keyframes pulseGlow {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }
    
        /* History Section Styles */
.history-section {
    padding: 10rem 2rem;
    position: relative;
    color: var(--off-white);
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    margin: 6rem 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent,
        var(--gold),
        var(--gold),
        transparent
    );
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    margin-bottom: 4rem;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-date {
    position: absolute;
    right: -85px;
    top: 0;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: -85px;
}

.timeline-content {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border: 1px solid var(--gold);
    max-width: 500px;
    position: relative;
}

.timeline-content::before {
    content: '✦';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.5rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -40px;
}

.timeline-content h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content p {
    line-height: 1.6;
    color: var(--off-white);
}

.history-quote {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    position: relative;
}

.history-quote .quote-mark {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.history-quote p {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin: 2rem 0;
    line-height: 1.6;
}

.history-quote .quote-author {
    color: var(--gold);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 0;
        right: auto;
        top: -30px;
    }

    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
    }
}

/* Enhanced Limited Editions Section Styles */
.limited-editions-section {
    padding: 12rem 2rem;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Luxury background pattern */
.limited-editions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:transparent;
    background-size: 100px 100px;
    opacity: 0.03;
    z-index: 0;
}

.limited-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin: 5rem 0;
}

.edition-item {
    position: relative;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(250, 236, 205, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.edition-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(250, 236, 205, 0.1);
}

.edition-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.edition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.edition-item:hover .edition-image img {
    transform: scale(1.1);
}

.edition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.8)
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edition-item:hover .edition-overlay {
    opacity: 1;
}

.edition-number {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.edition-content {
    padding: 2.5rem;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.9),
        rgba(26, 26, 26, 1)
    );
}

.edition-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.edition-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.edition-description {
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.edition-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(250, 236, 205, 0.1);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--off-white);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.detail-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.edition-cta {
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.edition-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.edition-cta:hover::before {
    width: 100%;
}

.edition-cta:hover {
    color: var(--black);
    border-color: var(--gold);
}

.editions-footer {
    text-align: center;
    margin-top: 8rem;
    padding: 3rem;
    border-top: 1px solid rgba(250, 236, 205, 0.1);
}

.exclusivity-note {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    padding: 2rem;
}

.note-icon {
    color: var(--gold);
    font-size: 2rem;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.exclusivity-note p {
    color: var(--off-white);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
}

.cta-large {
    font-size: 1.2rem;
    padding: 1.5rem 4rem;
    letter-spacing: 0.1em;
    background: var(--gold);
    color: var(--black);
    border: none;
    transition: all 0.4s ease;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 236, 205, 0.2);
    background: var(--off-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .limited-editions-section {
        padding: 8rem 1.5rem;
    }

    .editions-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .edition-content h3 {
        font-size: 1.5rem;
    }

    .edition-item {
        margin: 0 auto;
        max-width: 500px;
    }

    .editions-footer {
        margin-top: 4rem;
        padding: 2rem 1rem;
    }

    .cta-large {
        padding: 1.2rem 3rem;
        width: 100%;
    }
}

/* Private Visit Section Styles */
.private-visit-section {
    padding: 10rem 2rem;
    position: relative;
    background: transparent;
    color: var(--off-white);
    overflow: hidden;
}

.private-visit-container {
    max-width: 1400px;
    margin: 0 auto;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.visit-info {
    padding: 2rem;
}

.visit-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.visit-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--off-white);
}

.visit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.visit-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(250, 236, 205, 0.1);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-form label {
    color: var(--off-white);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 236, 205, 0.1);
    border-radius: 4px;
    color: var(--off-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .visit-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visit-info {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .private-visit-section {
        padding: 6rem 1.5rem;
    }

    .visit-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .visit-form {
        padding: 2rem 1.5rem;
    }
}

/* Footer Styles */
.main-footer {
    background: var(--black);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    padding: 6rem 0 4rem;
    border-bottom: 1px solid rgba(250, 236, 205, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--off-white);
    background: rgba(250, 236, 205, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--off-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    opacity: 1;
    padding-left: 5px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 236, 205, 0.1);
    border-radius: 4px;
    color: var(--off-white);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--off-white);
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--gold);
}

.footer-middle {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(250, 236, 205, 0.1);
}

.payment-security {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-methods h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.payment-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
}

.payment-icons i {
    color: var(--off-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
}

.security-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.security-badges i {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.security-badges i:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--off-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-grid {
        gap: 3rem;
    }

    .payment-security {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

