        * { scroll-behavior: smooth; }
        body { background-color: #F9F7F2; color: #121212; -webkit-font-smoothing: antialiased; }
        
        /* Smooth Entrance */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        
        /* Hero Motion */
        .hero-zoom { animation: slowPan 60s infinite alternate linear; }
        @keyframes slowPan { from { transform: scale(1) translate(0,0); } to { transform: scale(1.15) translate(-2%, -2%); } }

        /* Typography Utilities */
        .tracking-editorial { letter-spacing: 0.3em; }
        .line-magazine { line-height: 1.8; }

        /* Luxury Buttons */
        .btn-fab {
            display: inline-block; padding: 1.25rem 2.5rem; font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.2em; transition: all 0.5s;
            border-radius: 2px; position: relative; overflow: hidden;
        }
        .btn-fab:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

        /* Interactive Elements */
        .nav-link { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; transition: 0.4s; }
        .nav-link:hover { color: #FFB4A2; }

        /* Background Visuals */
        .bg-glow {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
            background: radial-gradient(circle at 10% 10%, #FFB4A222 0%, transparent 40%),
                        radial-gradient(circle at 90% 90%, #7BC8A422 0%, transparent 40%);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #F9F7F2; }
        ::-webkit-scrollbar-thumb { background: #121212; }
