        /* DESIGN SYSTEM & VARIABLES */
        :root {
            --bg-cream: #F4FFC3;
            --editorial-red: #A94A4A;
            --highlight-yellow: #FFE31A;
            --olive-accent: #898121;
            --text-dark: #151515;
            --text-light: #F4FFC3;
            --white: #FFFFFF;
            
            /* Typography Scale - Balanced & Sophisticated */
            --font-editorial: 'Cinzel', serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

        /* RESET & BASE STYLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 0.95rem;
            overflow-x: hidden;
        }

        /* TYPOGRAPHY UTILITIES */
        .massive-headline {
            font-family: var(--font-editorial);
            font-size: calc(2.5rem + 2.5vw);
            line-height: 1.1;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .chapter-number {
            font-family: var(--font-editorial);
            font-size: calc(3rem + 3vw);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 1rem;
            display: block;
        }

        .editorial-p {
            font-size: 1.05rem;
            font-weight: 300;
            max-width: 550px;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .section-label {
            font-family: var(--font-editorial);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            display: block;
        }

        /* NAVIGATION & HAMBURGER SYSTEM */
        header {
            position: fixed;
            top: 0;
            left: 0;
            height: 100px;
            width: 100%;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            color: white;
        }

.brand-logo {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.brand-logo img {
    height: 242px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hover effect */
.brand-logo:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Optional responsive sizing */
@media (min-width: 1024px) {
    .brand-logo img {
        height: 242px;
    }
}

@media (max-width: 768px) {
    .brand-logo img {
        height: 236px;
    }
}
        .issue-tag {
            font-family: var(--font-body);
            font-size: 0.8rem;
            letter-spacing: 1px;
            color: #A94A4A;
            text-transform: uppercase;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: rgb(255, 22, 22);
            transition: all 0.3s ease;
        }

        /* Fullscreen Navigation Menu */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--text-dark);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-menu {
            list-style: none;
            text-align: center;
            width: 80%;
            max-width: 800px;
        }

        .nav-item {
            margin: 1.5rem 0;
            overflow: hidden;
        }

        .nav-link {
            font-family: var(--font-editorial);
            font-size: calc(1.5rem + 1.5vw);
            color: var(--bg-cream);
            text-decoration: none;
            text-transform: uppercase;
            display: inline-block;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--highlight-yellow);
            transform: italic skewX(-5deg);
        }

        /* LAYOUT COMPONENTS */
        section {
            padding: 8rem 4rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .editorial-container {
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        /* IMAGE STYLES - Premium Framing */
        .magazine-img-wrapper {
            width: 100%;
            height: 500px;
            overflow: hidden;
            position: relative;
            background-color: #e0e0e0;
            filter: grayscale(20%) contrast(110%);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .magazine-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .magazine-img-wrapper:hover .magazine-img {
            transform: scale(1.03);
        }

        /* SECTION SPECIFIC STYLES */
        /* Hero Cover */
        #hero {
            background-color: var(--bg-cream);
            padding-top: 12rem;
            justify-content: space-between;
        }

        .scroll-indicator {
            font-family: var(--font-editorial);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 4rem;
            align-self: flex-start;
        }

        /* Chapter 1: The Problem */
        #problem {
            background-color: var(--editorial-red);
            color: var(--text-light);
        }

        .quote-block {
            border-left: 2px solid var(--text-light);
            padding-left: 2rem;
            font-family: var(--font-editorial);
            font-size: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }

        /* Chapter 2: The Opportunity */
        #opportunity {
            background-color: var(--highlight-yellow);
            color: var(--text-dark);
        }

        /* Chapter 3: Solutions alternating blocks */
        #solutions {
            background-color: var(--bg-cream);
        }

        .solution-row {
            margin-bottom: 8rem;
        }

        .solution-row:nth-child(even) .grid-2 {
            direction: rtl;
        }

        .solution-row:nth-child(even) .grid-2 * {
            direction: ltr;
        }

        /* Chapter 4: Vertical Timeline */
        #build {
            background-color: var(--olive-accent);
            color: var(--white);
        }

        .timeline-vertical {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 3rem;
            border-left: 1px solid rgba(255,255,255,0.2);
        }

        .timeline-step {
            position: relative;
            margin-bottom: 4rem;
        }

        .timeline-step::before {
            content: '';
            position: absolute;
            left: calc(-3rem - 5px);
            top: 10px;
            width: 9px;
            height: 9px;
            background-color: var(--highlight-yellow);
            border-radius: 50%;
        }

        /* Chapter 5: Feature Story Big Banner Image */
        #feature-story {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://i.pinimg.com/736x/4d/c1/99/4dc199d31afcf2459b04ceb1e522ed86.jpg') center/cover no-repeat;
            color: var(--white);
            text-align: center;
            align-items: center;
        }

        /* Chapter 6: Journals Grid */
        #journals {
            background-color: var(--bg-cream);
        }

        .journal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .journal-card {
            background: transparent;
            border: 1px solid rgba(21,21,21,0.1);
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 350px;
        }

        /* INNER PAGES SECTION WRAPPERS */
        .inner-page-section {
            display: none; /* Controlled by routing engine */
            padding-top: 10rem;
        }

        .inner-page-section.active-page {
            display: block;
        }

        /* Form Customization */
        .editorial-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid var(--text-dark);
        }

        .form-group-light {
            border-bottom: 1px solid var(--text-light);
        }

        .editorial-form label {
            font-family: var(--font-editorial);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .editorial-form input, .editorial-form textarea {
            background: transparent;
            border: none;
            font-family: var(--font-body);
            font-size: 1rem;
            padding: 0.5rem 0;
            color: inherit;
        }

        .editorial-form input:focus, .editorial-form textarea:focus {
            outline: none;
        }

        .editorial-btn {
            font-family: var(--font-editorial);
            text-transform: uppercase;
            padding: 1rem 2rem;
            background-color: var(--text-dark);
            color: var(--bg-cream);
            border: none;
            letter-spacing: 2px;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.3s ease;
        }

        .editorial-btn:hover {
            background-color: var(--editorial-red);
            color: white;
        }

        /* FOOTER SYSTEM */
        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 6rem 4rem 3rem 4rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .footer-col h4 {
            font-family: var(--font-editorial);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            color: var(--highlight-yellow);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            color: var(--highlight-yellow);
        }

        .footer-statement {
            border-top: 1px solid rgba(244, 255, 195, 0.1);
            padding-top: 3rem;
            text-align: center;
        }

        .footer-statement h2 {
            font-family: var(--font-editorial);
            font-size: calc(1.2rem + 1vw);
            text-transform: uppercase;
            font-weight: 500;
        }

        /* RESPONSIVE DESIGN */
        @media(max-width: 968px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .solution-row:nth-child(even) .grid-2 {
                direction: ltr;
            }
            .journal-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            section {
                padding: 5rem 2rem;
            }
            header {
                padding: 1.5rem;
            }
        }
