            /* --- BRAND DESIGN TOKENS --- */
        :root {
            --electric-blue: #2F2FE4;
            --bright-orange: #FFA02E;
            --soft-peach: #FFB399;
            --white: #FFFFFF;
            --text-dark: #111111;
            --pure-white: #FFFFFF;
            --warm-gray: #F5F3F0;
            --ink-black: #111111;
            --font-sans: 'Product Sans', 'Google Sans', system-ui, -apple-system, sans-serif;
            --transition-expo: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- GLOBAL LAYOUT RESET --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            font-family: var(--font-sans);
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* --- RADICAL FIXED HEADER & NAVIGATION --- */
        .editorial-fixed-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            z-index: 2000;
            padding: 30px 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--white);
        }
.editorial-brand-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.editorial-brand-logo img {
    height: 340px;
    width: auto;
    display: block;
}
        /* Minimalist Hamburger Button */
        .editorial-hamburger-trigger {
            background: none;
            border: none;
            cursor: pointer;
            width: 32px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 2100;
        }

        .editorial-hamburger-trigger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--white);
            transition: transform var(--transition-expo), opacity var(--transition-expo);
        }

        .editorial-hamburger-trigger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .editorial-hamburger-trigger.active span:nth-child(2) {
            opacity: 0;
        }
        .editorial-hamburger-trigger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Fullscreen Magazine Index */
        .magazine-index-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--electric-blue);
            z-index: 1900;
            display: flex;
            align-items: center;
            padding: 0 8%;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-expo);
        }

        .magazine-index-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .magazine-chapters-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px 60px;
            width: 100%;
            max-width: 1200px;
        }

        .chapter-link-node {
            color: var(--white);
            font-size: clamp(1.5rem, 3vw, 2.8rem);
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: -0.03em;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .chapter-link-node:hover, .chapter-link-node.active-route {
            opacity: 1;
            color: var(--bright-orange);
        }

        .chapter-link-node span {
            font-size: 1rem;
            vertical-align: super;
            margin-right: 10px;
            font-weight: 400;
            color: var(--soft-peach);
        }

        /* --- THE TWELVE PAGES ARCHITECTURE --- */
        .magazine-chapter-canvas {
            display: none;
            min-height: 100vh;
            padding-top: 120px;
            animation: chapterReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .magazine-chapter-canvas.active-canvas {
            display: block;
        }

        @keyframes chapterReveal {
            from { opacity: 0; transform: scale(0.98) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        /* ==========================================
           CHAPTER 1: THE CITY MAP (HOME) - FIXED
           ========================================== */
        .canvas-map-home {
            background-color: var(--white);
            position: relative;
            min-height: 100vh;
            overflow: visible;
            padding-top: 0;
        }

        /* ==========================================
           CHAPTER 2: THE FOOD NEWSPAPER (DISCOVER)
           ========================================== */
        .canvas-newspaper-discover {
            background-color: var(--soft-peach);
            padding: 140px 4% 80px 4%;
            color: var(--text-dark);
        }

        .newspaper-masthead {
            text-align: center;
            border-bottom: 4px double var(--text-dark);
            padding-bottom: 20px;
            margin-bottom: 40px;
        }

        .newspaper-masthead h1 {
            font-size: clamp(3rem, 8vw, 7.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
        }

        .newspaper-meta-bar {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            text-transform: uppercase;
            border-bottom: 1px solid var(--text-dark);
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .newspaper-columns-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            align-items: start;
        }

        .newspaper-story-editorial {
            border-right: 1px solid rgba(17,17,17,0.2);
            padding-right: 20px;
        }

        .newspaper-story-editorial:last-child {
            border-right: none;
            padding-right: 0;
        }

        .newspaper-story-editorial h2 {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .newspaper-story-editorial p {
            font-size: 1.05rem;
            text-align: justify;
            opacity: 0.9;
        }

        .newspaper-embedded-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            filter: grayscale(1);
            margin: 20px 0;
            border: 1px solid var(--text-dark);
        }

/* ==========================================
   CHAPTER 3: THE OPEN WAREHOUSE (KITCHENS)
   ========================================== */
.canvas-blueprint-kitchens {
    background-color: var(--electric-blue);
    color: var(--white);
    padding: 140px 4%;
    position: relative;
}

.blueprint-schematic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    position: relative;
    align-items: stretch;
}

.blueprint-outline-zone {
    border: 2px dashed rgba(255,255,255,0.4);
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
    min-height: 650px;
    height: auto;
}

.blueprint-zone-tag {
    position: absolute;
    top: -12px;
    left: 15px;
    background-color: var(--electric-blue);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    white-space: nowrap;
}

.blueprint-outline-zone h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.blueprint-outline-zone img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.blueprint-outline-zone > p:first-of-type {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Scrollable content container */
.zone-content-scroll {
    flex: 1;
    overflow-y: auto;
    max-height: 280px;
    padding-right: 8px;
    margin-top: 10px;
}

.zone-content-scroll p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.zone-content-scroll p:last-child {
    margin-bottom: 0;
}

/* Custom scrollbar for webkit */
.zone-content-scroll::-webkit-scrollbar {
    width: 4px;
}

.zone-content-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.zone-content-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
}

/* Grid positions */
.boz-1 { grid-column: 1 / 7; grid-row: 1 / 4; }
.boz-2 { grid-column: 7 / 13; grid-row: 1 / 4; }
.boz-3 { grid-column: 1 / 7; grid-row: 4 / 7; }
.boz-4 { grid-column: 7 / 13; grid-row: 4 / 7; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blueprint-schematic-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .blueprint-outline-zone {
        min-height: auto;
    }
    
    .zone-content-scroll {
        max-height: 200px;
    }
    
    .blueprint-zone-tag {
        white-space: normal;
        font-size: 0.7rem;
        top: -18px;
    }
}

@media (max-width: 768px) {
    .canvas-blueprint-kitchens {
        padding: 100px 4% 60px 4%;
    }
    
    .blueprint-outline-zone {
        padding: 20px;
    }
    
    .blueprint-outline-zone h3 {
        font-size: 1.3rem;
    }
    
    .zone-content-scroll {
        max-height: 250px;
    }
}
        /* ==========================================
           CHAPTER 4: THE TIMELINE (DELIVERY)
           ========================================== */
        .canvas-timeline-delivery {
            background-color: var(--white);
            position: relative;
            padding: 0;
        }

        .timeline-axis-spine {
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 100%;
            background-color: var(--text-dark);
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-fullscreen-chapter {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .timeline-content-split {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 0 8%;
            gap: 100px;
            align-items: center;
        }

        .timeline-chapter-card h2 {
            font-size: 5rem;
            font-weight: 700;
            line-height: 0.9;
            margin-bottom: 20px;
            color: var(--electric-blue);
        }

        .timeline-chapter-card p {
            font-size: 1.3rem;
            max-width: 450px;
        }

        .timeline-visual-node img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border: 4px solid var(--text-dark);
        }

        .timeline-fullscreen-chapter:nth-child(even) .timeline-content-split {
            direction: rtl;
        }
        .timeline-fullscreen-chapter:nth-child(even) .timeline-chapter-card,
        .timeline-fullscreen-chapter:nth-child(even) .timeline-visual-node {
            direction: ltr;
        }

        /* ==========================================
           CHAPTER 5: THE WALL OF FLAVOR (CITY STORIES)
           ========================================== */
        .canvas-mural-stories {
            background-color: var(--bright-orange);
            min-height: 150vh;
            position: relative;
            padding: 140px 4%;
            overflow: hidden;
        }

        .mural-scattered-headline {
            position: absolute;
            font-size: clamp(3rem, 7vw, 6.5rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.85;
            letter-spacing: -0.04em;
            opacity: 0.15;
            pointer-events: none;
        }

        .msh-1 { top: 10%; left: -2%; transform: rotate(-5deg); }
        .msh-2 { top: 40%; right: -5%; transform: rotate(8deg); }
        .msh-3 { bottom: 15%; left: 15%; transform: rotate(-3deg); }

        .mural-pasted-poster {
            position: absolute;
            background-color: var(--white);
            padding: 20px;
            box-shadow: 10px 10px 0px var(--text-dark);
            border: 2px solid var(--text-dark);
            max-width: 340px;
        }

        .mural-pasted-poster img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .mural-pasted-poster blockquote {
            font-size: 1.1rem;
            font-weight: 700;
            font-style: italic;
        }

        .mpp-1 { top: 18%; left: 46%; transform: rotate(-4deg); }
        .mpp-2 { top: 25%; right: 12%; transform: rotate(3deg); }
        .mpp-3 { bottom: 20%; left: 22%; transform: rotate(6deg); }
        .mpp-4 { bottom: 12%; right: 8%; transform: rotate(-2deg); }

        /* ==========================================
           CHAPTER 6: THE BOOK (JOURNAL)
           ========================================== */
        .canvas-book-journal {
            background-color: #f8b5b5;
            padding: 140px 4%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .book-open-spread {
            background-color: var(--white);
            width: 100%;
            max-width: 1300px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: 0 40px 80px rgba(0,0,0,0.15);
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .book-left-page {
            padding: 80px;
            border-right: 1px solid rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .book-left-page h2 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2F2FE4;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -0.03em;
        }

        .book-left-page p {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #2F2FE4;
            opacity: 0.8;
        }

        .book-right-page img {
            width: 100%;
            height: 100%;
            min-height: 650px;
            object-fit: cover;
        }

        /* ==========================================
           CHAPTER 7: THE MANIFESTO (ABOUT)
           ========================================== */
        .canvas-manifesto-about {
            background-color: var(--electric-blue);
            color: var(--white);
            padding: 180px 12% 140px 12%;
        }

        .manifesto-scroll-container {
            max-width: 1000px;
        }

        .manifesto-block-node {
            margin-bottom: 120px;
        }

        .manifesto-block-node:last-child {
            margin-bottom: 0;
        }

        .manifesto-block-node h2 {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: var(--bright-orange);
            letter-spacing: -0.04em;
        }

        .manifesto-block-node p {
            font-size: clamp(1.3rem, 2.5vw, 2.2rem);
            line-height: 1.4;
            opacity: 0.9;
            font-weight: 400;
        }

        /* ==========================================
           CHAPTER 8: THE DIRECTORY (PARTNERS)
           ========================================== */
        .canvas-directory-partners {
            background-color: var(--soft-peach);
            padding: 140px 6%;
            color: var(--text-dark);
        }

        .directory-layout-root {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 100px;
        }

        .directory-left-sticky h2 {
            font-size: 5rem;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.9;
            position: sticky;
            top: 160px;
        }

        .directory-column-listings h3 {
            font-size: 3.5rem;
            font-weight: 700;
            border-bottom: 3px solid var(--text-dark);
            margin-top: 40px;
            padding-bottom: 10px;
        }

        .directory-column-listings h3:first-child {
            margin-top: 0;
        }

        .directory-row-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            border-bottom: 1px solid rgba(17,17,17,0.15);
        }

        .directory-row-item h4 {
            font-size: 1.6rem;
            font-weight: 700;
        }

        .directory-row-item span {
            font-size: 1.1rem;
            opacity: 0.7;
        }

        /* ==========================================
           CHAPTER 9: THE DATA GALLERY (IMPACT)
           ========================================== */
        .canvas-gallery-impact {
            background-color: var(--white);
            padding: 140px 4%;
        }

        .data-gallery-layout {
            display: flex;
            flex-direction: column;
            gap: 100px;
        }

        .data-massive-node {
            display: flex;
            align-items: baseline;
            gap: 40px;
            border-bottom: 2px solid var(--text-dark);
            padding-bottom: 40px;
        }

        .data-massive-node h2 {
            font-size: clamp(6rem, 15vw, 14rem);
            font-weight: 700;
            line-height: 0.8;
            letter-spacing: -0.05em;
            color: var(--electric-blue);
        }

        .data-massive-node p {
            font-size: clamp(2rem, 4vw, 4rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1;
            color: var(--text-dark);
        }

        /* ==========================================
           CHAPTER 10: THE POSTCARD (CONTACT)
           ========================================== */
        .canvas-postcard-contact {
            background-color: var(--bright-orange);
            padding: 160px 4% 100px 4%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .postcard-container-box {
            background-color: #FFFDF6;
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            border: 3px solid var(--text-dark);
            box-shadow: 25px 25px 0 var(--text-dark);
            padding: 60px;
            position: relative;
        }

        .postcard-left-pane {
            padding-right: 60px;
            border-right: 2px dashed rgba(17,17,17,0.2);
        }

        .postcard-left-pane h2 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .postcard-right-pane {
            padding-left: 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .postcard-field-row {
            border-bottom: 2px solid var(--text-dark);
            margin-bottom: 35px;
            padding-bottom: 10px;
        }

        .postcard-field-row label {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
            color: var(--electric-blue);
        }

        .postcard-field-row input, .postcard-field-row textarea {
            width: 100%;
            background: none;
            border: none;
            outline: none;
            font-family: var(--font-sans);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .postcard-stamp-box {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 90px;
            height: 110px;
            border: 3px dashed var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.75rem;
            text-align: center;
            text-transform: uppercase;
            transform: rotate(5deg);
        }

        .postcard-submit-btn {
            background-color: var(--electric-blue);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            align-self: flex-start;
        }

        /* ==========================================
           CHAPTER 11: THE WEEKLY DISPATCH (NEWSLETTER)
           ========================================== */
        .canvas-dispatch-newsletter {
            background-color: var(--electric-blue);
            color: var(--white);
            padding: 160px 4%;
            text-align: center;
        }

        .dispatch-newspaper-layout {
            max-width: 950px;
            margin: 0 auto;
            border: 4px double var(--white);
            padding: 60px;
        }

        .dispatch-newspaper-layout h2 {
            font-size: clamp(3rem, 7vw, 6.5rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 20px;
        }

        .dispatch-embedded-form {
            margin-top: 50px;
            display: flex;
            gap: 20px;
        }

        .dispatch-input-node {
            flex: 1;
            background: transparent;
            border: 2px solid var(--white);
            padding: 20px;
            font-family: var(--font-sans);
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 700;
            outline: none;
        }

        .dispatch-input-node::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .dispatch-submit-node {
            background-color: var(--bright-orange);
            color: var(--text-dark);
            border: none;
            padding: 0 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
        }

        /* ==========================================
           CHAPTER 12: THE RESPONSIBLE PRIVACY CHAPTER
           ========================================== */
        .canvas-privacy-policy {
            background-color: var(--white);
            color: var(--text-dark);
            padding: 160px 8% 100px 8%;
        }

        .privacy-editorial-box h1 {
            font-size: 4.5rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            margin-bottom: 20px;
            border-bottom: 3px solid var(--text-dark);
            padding-bottom: 20px;
        }

        .privacy-editorial-box h2 {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 40px;
            margin-bottom: 15px;
            color: var(--electric-blue);
        }

        .privacy-editorial-box p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 900px;
            text-align: justify;
        }

        /* ==========================================
           CHAPTER 13: THE RESPONSIBLE TERMS CHAPTER
           ========================================== */
        .canvas-terms-service {
            background-color: var(--white);
            color: var(--text-dark);
            padding: 160px 8% 100px 8%;
        }

        .terms-editorial-box h1 {
            font-size: 4.5rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            margin-bottom: 20px;
            border-bottom: 3px solid var(--text-dark);
            padding-bottom: 20px;
        }

        .terms-editorial-box h2 {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 40px;
            margin-bottom: 15px;
            color: var(--electric-blue);
        }

        .terms-editorial-box p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 900px;
            text-align: justify;
        }

        /* ==========================================
           FINAL CHAPTER EXPERIENCE (FOOTER MATRIX)
           ========================================== */
        .canvas-footer-chapter {
            background-color: var(--white);
            color: var(--text-dark);
            padding: 120px 4% 40px 4%;
            border-top: 2px solid var(--text-dark);
        }

        .footer-thank-you-headline {
            font-size: clamp(2.5rem, 6vw, 6rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 80px;
            max-width: 1100px;
        }

        .footer-columns-four {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 100px;
        }

        .footer-col-node h4 {
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 25px;
            letter-spacing: 0.05em;
            color: var(--electric-blue);
        }

        .footer-col-node ul {
            list-style: none;
        }

        .footer-col-node ul li {
            margin-bottom: 12px;
        }

        .footer-col-node ul li a {
            font-size: 1.1rem;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 400;
            cursor: pointer;
        }

        .footer-col-node ul li a:hover {
            color: var(--bright-orange);
        }

        /* Endless Scrolling Text Marquee */
        .marquee-container-loop {
            width: 100vw;
            margin-left: -4%;
            overflow: hidden;
            white-space: nowrap;
            background-color: var(--text-dark);
            padding: 20px 0;
        }

        .marquee-text-content {
            display: inline-block;
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--white);
            animation: marqueeAnimation 15s linear infinite;
        }

        @keyframes marqueeAnimation {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-33.33%, 0, 0); }
        }

        /* ==========================================
           EDITORIAL REDESIGN STYLES
           ========================================== */

        /* SECTION 1: Editorial Cover */
        .editorial-cover {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 85vh;
            background: var(--white);
        }

        .cover-content {
            padding: 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cover-tag {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .cover-title {
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .title-accent {
            color: var(--bright-orange);
            border-bottom: 2px solid var(--bright-orange);
        }

        .cover-description {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 2rem;
            max-width: 90%;
        }

        .cover-meta {
            display: flex;
            gap: 2rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--electric-blue);
        }

        .cover-image {
            position: relative;
            overflow: hidden;
        }

        .cover-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-credit {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            font-size: 0.7rem;
            background: rgba(0,0,0,0.5);
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
        }

        /* SECTION 2: Editor's Letter */
        .editors-letter {
            display: grid;
            grid-template-columns: 2fr 1fr;
            background: var(--soft-peach);
            padding: 5rem 8%;
        }

        .letter-content {
            max-width: 600px;
        }

        .letter-mark {
            font-size: 2rem;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .letter-content h3 {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .letter-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .letter-signature {
            font-style: italic;
            font-size: 0.9rem;
        }

        .letter-visual {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .visual-marks {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mark-line {
            width: 60px;
            height: 2px;
            background: var(--electric-blue);
            opacity: 0.5;
        }

        /* SECTION 3: Featured Essay */
        .featured-essay {
            padding: 5rem 8%;
            background: var(--white);
        }

        .essay-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 2rem;
        }

        .essay-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: start;
        }

        .essay-image {
            position: relative;
        }

        .essay-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .image-caption {
            font-size: 0.7rem;
            opacity: 0.6;
            margin-top: 0.5rem;
            text-align: center;
        }

        .essay-text h2 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }

        .essay-meta {
            font-size: 0.8rem;
            opacity: 0.6;
            margin-bottom: 1.5rem;
        }

        .essay-text p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .continue-reading {
            display: inline-block;
            margin-top: 1rem;
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid var(--electric-blue);
        }

        /* SECTION 4: Manifesto Quote */
        .manifesto-quote {
            background: var(--electric-blue);
            padding: 5rem 8%;
            color: var(--white);
        }

        .quote-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .quote-mark-large {
            font-size: 6rem;
            font-family: serif;
            line-height: 1;
            opacity: 0.3;
        }

        .quote-text {
            font-size: 1.8rem;
            line-height: 1.4;
            font-style: italic;
            margin: 1rem 0;
        }

        .quote-attribution {
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.7;
        }

        /* SECTION 5: Dual Column Editorial */
        .dual-editorial {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 5rem 8%;
            background: var(--white);
        }

        .column-tag {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .editorial-column h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .column-image {
            margin-top: 1.5rem;
        }

        .column-image img {
            width: 100%;
            border-radius: 8px;
        }

        .stat-badge {
            background: var(--soft-peach);
            padding: 1.5rem;
            text-align: center;
            margin: 1.5rem 0;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--electric-blue);
        }

        .stat-text {
            font-size: 0.8rem;
        }

        /* SECTION 6: Data Editorial */
        .data-editorial {
            background: var(--soft-peach);
            padding: 5rem 8%;
            text-align: center;
        }

        .data-header {
            margin-bottom: 3rem;
        }

        .data-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .data-header h2 {
            font-size: 2rem;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .data-point {
            text-align: center;
        }

        .data-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--electric-blue);
        }

        .data-description {
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        .data-footnote {
            font-size: 0.7rem;
            margin-top: 2rem;
            opacity: 0.6;
        }

        /* SECTION 7: Photo Essay */
        .photo-essay {
            padding: 5rem 8%;
            background: var(--white);
        }

        .essay-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .essay-header h2 {
            font-size: 2rem;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .photo-card {
            text-align: center;
        }

        .photo-card img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 8px;
        }

        .photo-caption {
            margin-top: 0.5rem;
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* SECTION 8: Interview */
        .interview-section {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            padding: 5rem 8%;
            background: var(--white);
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .interview-header {
            margin-bottom: 2rem;
        }

        .interview-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 0.5rem;
        }

        .interview-header h2 {
            font-size: 2rem;
        }

        .interview-question {
            margin-bottom: 2rem;
        }

        .question {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .answer {
            opacity: 0.8;
            line-height: 1.7;
        }

        .interview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        /* SECTION 9: Editorial Footer */
        .editorial-footer {
            padding: 3rem 8%;
            background: var(--soft-peach);
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .footnotes {
            margin-bottom: 2rem;
        }

        .footnotes h4 {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .footnotes ul {
            list-style: none;
            padding-left: 0;
        }

        .footnotes li {
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
            opacity: 0.7;
        }

        .colophon {
            font-size: 0.7rem;
            opacity: 0.6;
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 2rem;
        }

        /* ==========================================
           ROUTES ESSAY SECTION
           ========================================== */
        .routes-essay {
            padding: 5rem 8%;
            background: var(--warm-gray);
        }

        .routes-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .routes-header .essay-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .routes-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .routes-header p {
            font-size: 1.1rem;
            opacity: 0.7;
        }

        .routes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .route-card {
            background: var(--pure-white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .route-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--electric-blue);
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .route-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }

        .route-card p {
            font-size: 0.9rem;
            line-height: 1.5;
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .route-stats {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--electric-blue);
            border-top: 1px solid #eee;
            padding-top: 0.75rem;
        }

        /* ==========================================
           ARCHIVE SECTION
           ========================================== */
        .archive-section {
            padding: 5rem 8%;
            background: var(--pure-white);
        }

        .archive-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .archive-header .essay-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .archive-header h2 {
            font-size: 2rem;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 2rem;
            border-left: 2px solid var(--electric-blue);
            padding-left: 2rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 10px;
            height: 10px;
            background: var(--electric-blue);
            border-radius: 50%;
        }

        .timeline-year {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--electric-blue);
        }

        .timeline-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            font-size: 0.9rem;
            opacity: 0.7;
            line-height: 1.5;
        }

        /* ==========================================
           MAP SECTION
           ========================================== */
        .map-section {
            padding: 5rem 8%;
            background: var(--soft-peach);
        }

        .map-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .map-header .essay-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .map-header h2 {
            font-size: 2rem;
        }

        .map-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .map-zone {
            background: var(--pure-white);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }

        .zone-name {
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--electric-blue);
        }

        .zone-stats {
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .zone-tags {
            font-size: 0.7rem;
            opacity: 0.6;
        }

        .map-note {
            text-align: center;
            font-size: 0.7rem;
            opacity: 0.5;
            margin-top: 2rem;
        }

        /* ==========================================
           FUTURE SECTION
           ========================================== */
        .future-section {
            padding: 5rem 8%;
            background: var(--ink-black);
            color: var(--pure-white);
        }

        .future-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .future-header .essay-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--bright-orange);
            margin-bottom: 1rem;
        }

        .future-header h2 {
            font-size: 2rem;
        }

        .future-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .future-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .future-quote {
            font-style: italic;
            font-size: 1.2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
            margin-top: 2rem;
            color: var(--bright-orange);
        }

        /* ==========================================
           RESPONSIVE STYLES
           ========================================== */
        @media (max-width: 1024px) {
            .newspaper-columns-layout { grid-template-columns: repeat(2, 1fr); }
            .blueprint-schematic-grid { display: flex; flex-direction: column; gap: 40px; }
            .timeline-content-split { grid-template-columns: 1fr; gap: 40px; }
            .directory-layout-root { grid-template-columns: 1fr; gap: 40px; }
            .postcard-container-box { grid-template-columns: 1fr; gap: 40px; padding: 30px; }
            .postcard-left-pane { padding-right: 0; border-right: none; border-bottom: 2px dashed rgba(17,17,17,0.2); padding-bottom: 40px; }
            .postcard-right-pane { padding-left: 0; }
            .footer-columns-four { grid-template-columns: repeat(2, 1fr); }
            .magazine-chapters-grid { grid-template-columns: repeat(2, 1fr); }
            .editorial-cover,
            .editors-letter,
            .essay-grid,
            .dual-editorial,
            .interview-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .photo-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .routes-grid, .map-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .newspaper-columns-layout, .footer-columns-four, .magazine-chapters-grid { grid-template-columns: 1fr; }
            .data-massive-node { flex-direction: column; gap: 10px; }
            .dispatch-embedded-form { flex-direction: column; }
            .book-open-spread { grid-template-columns: 1fr; }
            .book-left-page { padding: 40px; }
            .data-grid,
            .photo-grid {
                grid-template-columns: 1fr;
            }
            .quote-text {
                font-size: 1.2rem;
            }
            .cover-title {
                font-size: 2.2rem;
            }
            .editorial-column h3 {
                font-size: 1.4rem;
            }
            .routes-grid, .map-grid {
                grid-template-columns: 1fr;
            }
            .timeline-item {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                padding-left: 1rem;
            }
            .timeline-year {
                margin-bottom: 0.5rem;
            }
        }

        /* Fix for blueprint zones to prevent text overlap */
.blueprint-outline-zone {
    border: 2px dashed rgba(255,255,255,0.4);
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    height: auto;
}

.blueprint-schematic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    position: relative;
    align-items: stretch;
}

/* Make each zone span full height in its area */
.boz-1, .boz-2, .boz-3, .boz-4 {
    display: flex;
    flex-direction: column;
}

/* Scrollable content area */
.blueprint-outline-zone > div:last-child {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blueprint-outline-zone {
        min-height: auto;
    }
    
    .blueprint-schematic-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

/* ==========================================
   CHAPTER 6: THE BOOK (JOURNAL)
   ========================================== */
.canvas-book-journal {
    background-color: #ff7205;
    padding: 140px 4% 100px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.book-open-spread {
    background-color: var(--white);
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-open-spread:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 50px rgba(0,0,0,0.15);
}

.book-left-page {
    padding: 60px 50px;
    border-right: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFEF9;
}

.page-number {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.book-left-page h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--electric-blue);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.book-left-page p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.continue-reading-mark {
    margin-top: 30px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--bright-orange);
    font-weight: 600;
}

.chef-quote {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid var(--bright-orange);
}

.quote-mark {
    font-size: 2rem;
    font-family: serif;
    color: var(--electric-blue);
    opacity: 0.4;
    display: inline-block;
    line-height: 1;
}

.chef-quote p {
    font-style: italic;
    margin: 5px 0 10px 0;
}

.chef-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--electric-blue);
    letter-spacing: 0.03em;
}

.photo-essay-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--electric-blue);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

.book-right-page {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.book-right-page img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-open-spread:hover .book-right-page img {
    transform: scale(1.02);
}

.image-caption-book {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px 20px 15px 20px;
    font-size: 0.75rem;
    text-align: center;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .book-open-spread {
        grid-template-columns: 1fr;
    }
    
    .book-left-page {
        padding: 40px 35px;
    }
    
    .book-left-page h2 {
        font-size: 1.8rem;
    }
    
    .book-right-page {
        min-height: 400px;
    }
    
    .book-right-page img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .canvas-book-journal {
        padding: 100px 4% 60px 4%;
        gap: 30px;
    }
    
    .book-left-page {
        padding: 30px 25px;
    }
    
    .book-left-page h2 {
        font-size: 1.5rem;
    }
    
    .book-left-page p {
        font-size: 0.9rem;
    }
    
    .book-right-page {
        min-height: 300px;
    }
    
    .book-right-page img {
        min-height: 300px;
    }
    
    .chef-quote {
        margin: 15px 0;
        padding-left: 15px;
    }
}

/* ==========================================
   FOOTER NEWSLETTER SECTION
   ========================================== */
.footer-newsletter-section {
    background: linear-gradient(135deg, var(--soft-peach) 0%, #FFE0CC 100%);
    border-radius: 24px;
    padding: 50px 60px;
    margin-bottom: 80px;
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-left h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.newsletter-left p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.newsletter-stats span {
    font-size: 0.8rem;
    background: rgba(47, 47, 228, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--electric-blue);
    font-weight: 500;
}

.footer-subscribe-form {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-subscribe-form input,
.footer-unsubscribe-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.footer-subscribe-form input:focus,
.footer-unsubscribe-form input:focus {
    border-color: var(--electric-blue);
}

.footer-subscribe-form button,
.footer-unsubscribe-form button {
    background-color: var(--electric-blue);
    color: white;
    border: none;
    padding: 0 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.footer-subscribe-form button:hover,
.footer-unsubscribe-form button:hover {
    background-color: #1a1ab0;
    transform: scale(0.98);
}

.footer-unsubscribe-form button.cancel-btn {
    background-color: #ccc;
    color: #333;
}

.footer-unsubscribe-form button.cancel-btn:hover {
    background-color: #bbb;
}

.unsubscribe-link {
    margin-top: 15px;
}

.unsubscribe-link a {
    font-size: 0.8rem;
    color: var(--electric-blue);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.unsubscribe-link a:hover {
    opacity: 1;
    text-decoration: underline;
}

.form-message {
    margin-top: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-newsletter-section {
        padding: 40px 30px;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-left h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-newsletter-section {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .footer-subscribe-form {
        flex-direction: column;
    }
    
    .footer-subscribe-form button,
    .footer-unsubscribe-form button {
        padding: 12px 20px;
    }
    
    .newsletter-stats {
        gap: 10px;
    }
    
    .newsletter-stats span {
        font-size: 0.7rem;
    }
}
