        :root {
            --wine: #5E0006;
            --teal: #87B6BC;
            --yellow: #F6F09F;
            --white: #ffffff;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--wine);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .serif {
            font-family: 'Marcellus', serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--white); }
        ::-webkit-scrollbar-thumb { background: var(--wine); }

        /* Header Transitions */
        header.scrolled {
            background: rgba(94, 0, 6, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
        }

        /* Hero Animation */
        .hero-zoom {
            animation: slowZoom 20s infinite alternate;
        }
        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* Fullscreen Menu */
        #menu-overlay {
            clip-path: circle(0% at 95% 5%);
            transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        }
        #menu-overlay.open {
            clip-path: circle(150% at 95% 5%);
        }

        /* Circular Luxury Button */
        .btn-luxury {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: var(--wine);
            color: white;
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: all 0.5s ease;
            cursor: pointer;
            border: 1px solid transparent;
            font-family: 'Marcellus', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
        }
        .btn-luxury:hover {
            box-shadow: 0 0 30px rgba(94, 0, 6, 0.3);
            transform: scale(1.05);
            background: #7a0008;
        }

        /* Vertical Timeline */
        .timeline-line {
            width: 1px;
            background: var(--wine);
            height: 300px;
            margin: 20px auto;
            position: relative;
        }
        .timeline-dot {
            width: 8px;
            height: 8px;
            background: var(--wine);
            border-radius: 50%;
            position: absolute;
            left: -3.5px;
        }

        /* Villa Gallery Scroll */
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        .villa-card {
            min-width: 45vw;
            height: 60vh;
            position: relative;
            overflow: hidden;
            transition: all 0.6s ease;
        }
        .villa-card img {
            transition: transform 1.2s ease;
        }
        .villa-card:hover img {
            transform: scale(1.05);
        }

        /* Reveal Animation */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* Page Management */
        .page-content { display: none; }
        .page-content.active { display: block; animation: fadeIn 1s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Privacy Modal Styling */
        .content-block { line-height: 1.8; color: rgba(94, 0, 6, 0.8); }
