        :root { scroll-behavior: smooth; }
        body { 
            background-color: #987070; 
            color: #F5F4F4; 
            font-family: 'Agdasima', sans-serif;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* Hero Text Layering */
        .hero-title-main {
            line-height: 0.85;
            letter-spacing: -0.05em;
        }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fixed Background Parallax */
        .parallax-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* View Management */
        .view-section { display: none; }
        .view-section.active { display: block; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: #987070; }
        ::-webkit-scrollbar-thumb { background: #BBCB2E; }

        /* Filters */
        .filter-btn.active { color: #BBCB2E; border-bottom: 2px solid #BBCB2E; opacity: 1; }
        
        /* Video Step Stroke */
        .step-num {
            -webkit-text-stroke: 1px #BBCB2E;
            color: transparent;
            font-size: 8rem;
        }

        .editorial-img {
            filter: grayscale(1);
            transition: 0.6s filter ease;
        }
        .editorial-img:hover { filter: grayscale(0); }
