        :root {
            --bg-base: #779977;
            --layer-overlay: #D2E48E;
            --accent-gradient: #C4F080;
            --headline: #FFD717;
            --deep-moss: #1a2e1a;
            --white: #FFFFFF;
        }

        body {
            background-color: var(--white);
            color: var(--deep-moss);
            margin: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- HERO SECTION: LAYERED FRAME REVEAL --- */
        .hero-container {
            height: 100vh;
            background: linear-gradient(135deg, var(--bg-base) 0%, var(--layer-overlay) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .grain-overlay {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        .organic-shape {
            position: absolute;
            background: var(--accent-gradient);
            filter: blur(100px);
            border-radius: 50%;
            z-index: 1;
            opacity: 0.5;
            animation: float 25s infinite alternate ease-in-out;
        }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(150px, 80px) scale(1.2); }
        }

        .vertical-spine {
            position: absolute;
            left: 3rem;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: left center;
            text-transform: uppercase;
            letter-spacing: 0.8rem;
            font-size: 0.7rem;
            font-weight: 700;
            white-space: nowrap;
            color: var(--deep-moss);
            opacity: 0.4;
            z-index: 10;
        }

        .editorial-frame {
            position: absolute;
            right: -10%;
            width: 55%;
            height: 95%;
            transform: rotate(2.1deg);
            z-index: 5;
            overflow: hidden;
            animation: frameEntry 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes frameEntry {
            from { transform: rotate(8deg) translateY(200px); opacity: 0; }
            to { transform: rotate(2.5deg) translateY(0); opacity: 1; }
        }

        .editorial-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: rotate(-2.5deg) scale(1.15);
            transition: transform 10s linear;
        }

        .hero-container:hover .editorial-frame img {
            transform: rotate(-2.5deg) scale(1);
        }

        .hero-headline {
            font-weight: 400;
            line-height: 1;
            color: var(--headline);
            z-index: 10;
            position: relative;
        }

        .hero-headline span {
            display: block;
            font-size: clamp(2rem, 5vw, 7rem);
            text-shadow: 4px 4px 0px rgba(26, 46, 26, 0.1);
        }

        .brand-marker {
            font-size: 2px;
            color: var(--white);
            margin-bottom: -0.15em;
            display: inline-block;
        }

        .narrative-block {
            background: rgba(210, 228, 142, 0.85);
            backdrop-filter: blur(15px);
            padding: 2.5rem;
            max-width: 450px;
            margin-top: 2.5rem;
            border-left: 6px solid var(--headline);
            animation: slideUpFade 1.2s ease-out 1s both;
        }

        @keyframes slideUpFade {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- AUTH & MODALS --- */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 46, 26, 0.96);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .btn-capsule {
            background: var(--headline);
            color: var(--deep-moss);
            padding: 1.2rem 3.5rem;
            border-radius: 100px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.75rem;
            box-shadow: 0 10px 30px rgba(255, 215, 23, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            cursor: pointer;
            border: none;
        }

        .btn-capsule:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 23, 0.6);
            background: var(--white);
        }

        /* --- PAGES --- */
        .page-view { display: none; }
        .page-view.active { display: block; animation: fadeIn 0.6s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* --- MAGAZINE CARDS --- */
        .mag-card {
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
            cursor: pointer;
            border: 1px solid #eee;
        }
        .mag-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        /* --- FOOTER --- */
        footer a { transition: color 0.3s; }
        footer a:hover { color: var(--headline); opacity: 1 !important; }

        .compass-pulse {
            position: absolute;
            bottom: 4rem;
            right: 4rem;
            width: 100px;
            height: 100px;
            border: 1px solid rgba(26, 46, 26, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotateCompass 10s infinite linear;
        }

        @keyframes rotateCompass { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

