        :root {
            --wine: #5E0006;
            --gold: #FFE52A;
            --sky: #9CC6DB;
            --white: #FFFFFF;
        }

        body {
            background-color: var(--white);
            color: var(--wine);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .font-luxury {
            font-family: 'Oranienbaum', serif;
        }

        /* 🌿 HERO SPLIT ELEGANCE */
        .hero-split {
            display: flex;
            min-height: 100vh;
            width: 100%;
        }

        .hero-left {
            width: 30%;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: sticky;
            top: 0;
            height: 100vh;
        }

        .hero-right {
            width: 70%;
            padding: 2rem 4rem 4rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-image-container {
            width: 100%;
            height: 85vh;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(94, 0, 6, 0.1);
            position: relative;
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: slowZoom 20s infinite alternate;
        }

        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* 🌸 MARQUEE */
        .marquee-container {
            background: var(--sky);
            padding: 1rem 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* 📱 SIDEBARS */
        .sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 450px;
            height: 100vh;
            background: white;
            z-index: 1000;
            box-shadow: -10px 0 50px rgba(0,0,0,0.1);
            transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 3rem;
            overflow-y: auto;
        }

        .sidebar.active { right: 0; }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(94, 0, 6, 0.2);
            backdrop-filter: blur(5px);
            z-index: 900;
            display: none;
        }

        .overlay.active { display: block; }

        /* 🛠️ UTILS */
        .view { display: none; }
        .view.active { display: block; animation: fadeIn 0.8s ease forwards; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-gold {
            background: var(--gold);
            color: var(--wine);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-family: 'Oranienbaum', serif;
            transition: 0.4s;
            display: inline-block;
            text-align: center;
        }

        .btn-gold:hover {
            background: var(--wine);
            color: var(--gold);
        }

        .vertical-nav button {
            text-align: left;
            transition: 0.3s;
            font-size: 1.25rem;
        }

        .vertical-nav button:hover {
            text-decoration: underline;
            padding-left: 10px;
            letter-spacing: 1px;
        }

        /* 📱 RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-split { flex-direction: column; }
            .hero-left { width: 100%; height: auto; position: relative; }
            .hero-right { width: 100%; padding: 2rem; }
            .sidebar { width: 100%; }
        }
