        :root { --purple: #512D6D; --brown: #9D5C0D; }
        * { scroll-behavior: smooth; cursor: default; }
        body { font-family: 'Encode Sans Semi Condensed', sans-serif; background: #fff; color: #512D6D; overflow-x: hidden; }

        /* --- Animations --- */
        .word-reveal span {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .word-reveal.active span { opacity: 1; transform: translateY(0); }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(3deg); }
        }
        .floating { animation: float 7s ease-in-out infinite; }
        .floating-reverse { animation: float 9s ease-in-out infinite reverse; }

        @keyframes bgPulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.1; }
            100% { transform: scale(1); opacity: 0.3; }
        }
        .hero-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, #9D5C0D 0%, transparent 70%);
            animation: bgPulse 10s ease-in-out infinite;
            z-index: 0;
            filter: blur(80px);
        }

        .page { display: none; opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateY(20px); }
        .page.active { display: block; opacity: 1; transform: translateY(0); }

        .reveal { opacity: 0; transform: translateY(60px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* Card Effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(81, 45, 109, 0.1);
            transition: all 0.4s ease;
        }
        .glass-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

        /* Quick View Modal */
        #modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(81, 45, 109, 0.9);
            backdrop-filter: blur(12px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        /* Nav underline */
        .nav-link { position: relative; }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--brown);
            transition: width 0.3s;
        }
        .nav-link:hover::after { width: 100%; }

        /* Gradient Text */
        .text-gradient {
            background: linear-gradient(90deg, #512D6D, #9D5C0D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
.testimonial-card {
    min-width: 320px;
    max-width: 400px;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card span {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4a484; /* warmBrown */
}

/* SMOOTH INFINITE SCROLL */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}

/* RESPONSIVE SPEED */
@media (max-width: 768px) {
    .animate-marquee {
        animation-duration: 40s;
    }
}
