        :root {
            --sage: #A1BC98;
            --white: #FFFFFF;
            --black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: "Poiret One", sans-serif;
            background-color: var(--sage);
            color: var(--black);
            overflow-x: hidden;
        }

        /* 🏁 MAGAZINE MARGINS */
        .mag-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* 🏁 HEADER DESIGN */
        header {
            padding: 60px 0;
            animation: fadeIn 1.5s ease;
            margin-top: 20px;
        }

        .logo {
            font-size: 2.5rem;
            letter-spacing: 8px;
            font-weight: bold;
            cursor: pointer;
        }

        .nav-frame {
            border-top: 1px solid var(--black);
            border-bottom: 1px solid var(--black);
            padding: 15px 40px;
            display: inline-block;
        }

        .nav-link {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            margin: 0 20px;
            position: relative;
            transition: opacity 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: black;
            transition: width 0.4s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* 🌟 HERO SECTION - MAGAZINE GRID */
        .hero-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }

        .hero-card {
            background: var(--white);
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .hero-card:hover {
            transform: translateY(-10px);
        }

        .hero-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s ease;
        }

        .hero-card:hover img {
            transform: scale(1.05);
        }

        /* 🔍 SEARCH SYSTEM */
        #search-container {
            height: 0;
            overflow: hidden;
            transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        #search-container.active {
            height: 60px;
            padding: 0 30px;
            display: flex;
            align-items: center;
        }

        /* 📰 BLOG CARDS */
        .blog-card {
            background: white;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: 0.3s;
        }

        .blog-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        /* 📖 ABOUT PAGE - NO CARDS */
        .about-section {
            padding: 100px 0;
        }

        .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            filter: sepia(0.2);
        }

        /* 🔐 AUTH & UI */
        .btn-black {
            background: black;
            color: white;
            padding: 12px 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            transition: 0.3s;
        }

        .btn-black:hover {
            opacity: 0.8;
        }

        .page-view { display: none; }
        .page-view.active { display: block; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ⚡ QUICK VIEW MODAL */
        #quick-modal {
            position: fixed;
            inset: 0;
            background: rgba(161, 188, 152, 0.98);
            z-index: 2000;
            display: none;
            padding: 60px;
        }
    