        :root {
            --bg-sand: #F4F0EB;
            --sage-light: #DCE2DA;
            --sage-dark: #3A4539;
            --gold-muted: #B89B72;
            --text-main: #2C302B;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: var(--bg-sand); color: var(--text-main); font-family: 'Montserrat', sans-serif; overflow-x: hidden; }
        h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

        /* HEAVY VPS LOAD: SVG Noise & Liquid Gradients */
        .liquid-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; 
            background: linear-gradient(120deg, #F4F0EB, #E3E7DF, #F4F0EB); background-size: 400% 400%; animation: gradientFlow 15s ease infinite; }
        .glass-blob { position: fixed; border-radius: 50%; filter: blur(90px); z-index: -1; opacity: 0.6; mix-blend-mode: multiply; animation: float 20s infinite alternate; }
        .blob-1 { width: 70vw; height: 70vw; background: #C8D3C5; top: -20%; left: -20%; }
        .blob-2 { width: 50vw; height: 50vw; background: #E6D5C3; bottom: -10%; right: -10%; animation-delay: -5s; }
        
        @keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        @keyframes float { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(5vw, 10vh) scale(1.1); } }

        /* Asymmetric Nav */
        nav { padding: 40px 5vw; display: flex; justify-content: space-between; align-items: flex-start; position: fixed; width: 100%; top: 0; z-index: 100; mix-blend-mode: difference; }
        .logo { font-size: 2rem; color: var(--sage-dark); line-height: 0.9; }
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { color: var(--sage-dark); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--sage-dark); transition: 0.4s; }
        .nav-links a:hover::after { width: 100%; }

        /* 1. HERO: Typographic & Asymmetric */
        .hero { height: 100vh; padding: 0 5vw; display: flex; flex-direction: column; justify-content: center; }
        .hero h1 { font-size: clamp(4rem, 12vw, 10rem); line-height: 0.85; letter-spacing: -2px; color: var(--sage-dark); margin-left: 10vw; }
        .hero p { font-size: 1.2rem; max-width: 400px; margin-top: 40px; margin-left: 15vw; line-height: 1.6; }

        /* 2. THE STICKY SCROLL SECTION (The Magic Feature) */
        .sticky-wrapper { height: 400vh; position: relative; }
        .sticky-viewport { position: sticky; top: 0; height: 100vh; width: 100vw; overflow: hidden; display: flex; align-items: center; }
        .horizontal-track { display: flex; width: 300vw; height: 100%; transition: transform 0.1s ease-out; will-change: transform; }
        
        .slide { width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; padding: 10vw; position: relative; }
        .slide-content { display: flex; gap: 5vw; align-items: center; width: 100%; max-width: 1400px; }
        .slide-text { flex: 1; }
        .slide-text h2 { font-size: 5rem; color: var(--sage-dark); margin-bottom: 20px; line-height: 0.9; }
        .slide-text p { font-size: 1.2rem; line-height: 1.8; opacity: 0.8; max-width: 500px; }
        .slide-visual { flex: 1; height: 60vh; background: var(--sage-light); border-radius: 200px 200px 0 0; position: relative; overflow: hidden; border: 1px solid var(--sage-dark); }
        .slide-visual::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(58,69,57,0.2), transparent); }
        
        .v2 { border-radius: 0 0 200px 200px; background: #E6D5C3; }
        .v3 { border-radius: 100px; background: #C8D3C5; }

        /* 3. HOVER REVEAL MENU (Services) */
        .services-menu { min-height: 100vh; padding: 150px 5vw; }
        .services-menu h2 { font-size: 3rem; margin-bottom: 80px; color: var(--sage-dark); text-align: center; }
        .menu-list { list-style: none; max-width: 1000px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,0.1); }
        .menu-item { border-bottom: 1px solid rgba(0,0,0,0.1); padding: 40px 0; cursor: pointer; transition: 0.4s; position: relative; overflow: hidden; }
        .menu-item h3 { font-size: 3rem; color: var(--sage-dark); position: relative; z-index: 2; transition: 0.4s; transform: translateX(0); }
        .menu-item p { font-family: 'Montserrat', sans-serif; font-size: 1rem; opacity: 0; max-height: 0; transition: 0.4s; z-index: 2; position: relative; margin-top: 10px; }
        
        /* Hover Animation */
        .menu-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--sage-dark); transform: scaleY(0); transform-origin: bottom; transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1); z-index: 1; }
        .menu-item:hover::before { transform: scaleY(1); transform-origin: top; }
        .menu-item:hover h3 { color: var(--bg-sand); transform: translateX(30px); }
        .menu-item:hover p { opacity: 0.8; max-height: 100px; color: var(--bg-sand); transform: translateX(30px); }

        /* 4. ASYMMETRIC INTAKE FORM */
        .intake-section { padding: 150px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: flex-start; }
        .intake-text h2 { font-size: 5rem; line-height: 0.9; color: var(--sage-dark); margin-bottom: 30px; }
        .intake-text p { font-size: 1.1rem; opacity: 0.7; max-width: 400px; }
        
        .custom-form { background: rgba(255,255,255,0.4); backdrop-filter: blur(20px); padding: 60px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.6); }
        .input-group { margin-bottom: 30px; position: relative; }
        input, select, textarea { width: 100%; padding: 20px 0; border: none; border-bottom: 1px solid var(--sage-dark); background: transparent; font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--text-main); outline: none; transition: 0.3s; }
        input:focus, textarea:focus { border-bottom-width: 2px; }
        
        .btn-fluid { margin-top: 20px; padding: 25px 50px; background: var(--sage-dark); color: #fff; border: none; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; border-radius: 50px; cursor: pointer; width: 100%; transition: 0.4s; }
        .btn-fluid:hover { background: var(--gold-muted); transform: translateY(-5px); }

        /* 5. MINIMALIST FOOTER */
        footer { padding: 80px 5vw 40px; border-top: 1px solid rgba(58,69,57,0.1); display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; }
        .f-col h4 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 30px; color: var(--sage-dark); }
        .f-col p { font-size: 1.2rem; margin-bottom: 10px; color: var(--sage-dark); }
        .f-col span { display: block; font-size: 0.9rem; opacity: 0.6; margin-bottom: 20px; }
        .copyright { grid-column: 1 / -1; text-align: center; margin-top: 80px; font-size: 0.8rem; opacity: 0.4; }

        @media (max-width: 1024px) {
            .hero h1 { font-size: 4rem; margin-left: 0; }
            .hero p { margin-left: 0; }
            .slide-content, .intake-section, footer { flex-direction: column; grid-template-columns: 1fr; }
            .slide-visual { display: none; } /* Hide visual on mobile to focus on text */
            .nav-links { display: none; }
        }
