        :root {
            --bg-main: #F3F4F4;
            --bg-alt: #D9CFC7;
            --text-dark: #000000;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-dark);
            margin: 0;
            overflow-x: hidden;
        }

        /* Animations */
        .fade-in { animation: fadeIn 1s ease forwards; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Routing logic */
        .page-view { display: none; }
        .page-view.active { display: block; }

        /* Editorial Styles */
        .stagger-down { transform: translateY(60px); }
        
        .divider-horizontal {
            border-top: 1px solid rgba(0,0,0,0.1);
            width: 100%;
            margin: 1.5rem 0;
        }

        .img-editorial {
            filter: grayscale(100%);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            object-fit: cover;
        }
        .img-editorial:hover {
            filter: grayscale(0%);
            transform: scale(1.02);
        }

        /* Hamburger Menu Overlay */
        #menu-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bg-main);
            z-index: 2000; display: none;
            flex-direction: column; align-items: center; justify-content: center;
        }

        /* Animated Background for Hero */
        .hero-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(120deg, #f3f4f4 0%, #e2e4e4 100%);
            z-index: -1;
            overflow: hidden;
        }
        .blob {
            position: absolute;
            width: 800px; height: 800px;
            background: var(--bg-alt);
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.5;
            animation: move 25s infinite alternate ease-in-out;
        }
        @keyframes move {
            from { transform: translate(-10%, -10%); }
            to { transform: translate(20%, 30%); }
        }

        /* Button Styling */
        .btn-hc {
            padding: 0.8rem 2.5rem;
            border: 1px solid black;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.75rem;
            font-weight: 500;
            transition: 0.3s;
            background: transparent;
        }
        .btn-hc:hover {
            background: black;
            color: white;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-main); }
        ::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

        /* Modal Backdrop */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.5);
            display: none; align-items: center; justify-content: center; z-index: 3000;
        }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeUp {
    animation: fadeUp 0.3s ease;
}