        :root { scroll-behavior: smooth; }
        body { margin: 0; padding: 0; background-color: #F9F8F6; color: #4A4A4A; overflow-x: hidden; }
        
        /* Full Bleed Hero */
        .hero-bg {
            background: linear-gradient(to right, rgba(249, 248, 246, 0.92), rgba(249, 248, 246, 0.4)), 
                        url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&q=80&w=2000');
            background-size: cover;
            background-position: center;
        }

        .nav-blur {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .content-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .content-card:hover { transform: translateY(-8px); shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }

        .custom-scrollbar::-webkit-scrollbar { width: 6px; }
        .custom-scrollbar::-webkit-scrollbar-track { background: #f1f1f1; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #8BA889; border-radius: 10px; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .animate-fade-up { animation: fadeIn 0.8s ease-out forwards; }
