        :root {
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Quicksand', sans-serif;
            scroll-behavior: smooth;
            background-color: #FFFFFF;
            overflow-x: hidden;
            color: #1a1a1a;
        }

        /* --- EDITORIAL ANIMATIONS --- */
        @keyframes pageFadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bgZoom {
            from { transform: scale(1.1); }
            to { transform: scale(1); }
        }

        @keyframes breathCycle {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.08); opacity: 1; }
        }

        .view-transition {
            animation: pageFadeIn 1.4s var(--ease-out-expo) forwards;
        }

        .hero-bg-animate {
            animation: bgZoom 10s ease-out forwards;
        }

        .breath-indicator {
            animation: breathCycle 8s ease-in-out infinite;
        }

        /* --- HEADER STYLES --- */
        .nav-link {
            position: relative;
            letter-spacing: 0.15em;
            font-weight: 500;
            cursor: pointer;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #000;
            transition: width 0.6s var(--ease-out-expo);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* --- MAGAZINE LAYOUT ELEMENTS --- */
        .editorial-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 2rem;
        }

        .asymmetric-image {
            transition: transform 1.2s var(--ease-out-expo), filter 0.8s ease;
            filter: grayscale(40%);
        }

        .asymmetric-image:hover {
            transform: scale(1.02);
            filter: grayscale(0%);
        }

        /* --- CUSTOM SCROLLBAR --- */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #fff; }
        ::-webkit-scrollbar-thumb { background: #4DFFBE; }

        /* --- MODAL --- */
        .modal-active {
            overflow: hidden;
        }

        #modal-overlay {
            backdrop-filter: blur(10px);
            transition: opacity 0.5s ease;
        }
