        :root {
            --earth: #4B4038;
            --sand: #CAAA98;
            --olive: #81912F;
        }

        body {
            background-color: var(--sand);
            color: var(--earth);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .font-serif {
            font-family: 'Cormorant Garamond', serif;
        }

        /* UI Components */
        .glass-nav {
            background: rgba(202, 170, 152, 0.15);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
        }

        .floating-card {
            background: var(--sand);
            border-radius: 40px 10px 40px 10px;
            box-shadow: 0 25px 50px -12px rgba(75, 64, 56, 0.1);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .floating-card:hover { transform: translateY(-10px); box-shadow: 0 40px 60px -15px rgba(75, 64, 56, 0.2); }

        .btn-olive {
            background-color: var(--olive);
            color: white;
            transition: all 0.4s ease;
        }
        .btn-olive:hover {
            box-shadow: 0 0 25px rgba(129, 145, 47, 0.5);
            transform: scale(1.02);
        }

        /* Animations */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 1.2s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* Navigation Control */
        .page-section { display: none; }
        .page-section.active { display: block; }

        #mobile-menu {
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
            transform: translateX(100%);
        }
        #mobile-menu.open { transform: translateX(0); }

        .text-reveal-line {
            display: block;
            overflow: hidden;
        }

        .immersive-parallax {
            background-image: url('https://i.pinimg.com/1200x/81/5e/2f/815e2f4137a5d18facd5f0e7eb403efa.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }
