        /* --- BRAND DESIGN SYSTEM SYSTEMIC CONSTANTS --- */
        :root {
            --primary-orange: #FF6A1C;
            --soft-peach: #FFCF95;
            --warm-cream: #FFF0D9;
            --black: #111111;
            --white: #FFFFFF;
            --font-family: 'Josefin Sans', sans-serif;
            --transition-editorial: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
            --transition-snappy: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* --- GLOBAL ROOT RESET & BASELINE ARCHITECTURE --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- TYPOGRAPHY ARSENAL --- */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.1;
        }

        p {
            font-weight: 300;
            font-size: 1.1rem;
            letter-spacing: 0.02em;
        }

        .thin-uppercase-label {
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--primary-orange);
            display: inline-block;
            margin-bottom: 15px;
        }

        .editorial-section-padding {
            padding: 140px 8%;
            position: relative;
        }

        /* --- PREMIUM IMAGE CONTAINER TRANSITIONS --- */
        .editorial-image-frame {
            position: relative;
            overflow: hidden;
            background-color: #F4EFEA;
        }

        .editorial-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition-editorial);
        }

        .editorial-image-frame:hover img {
            transform: scale(1.05);
        }

        .scrim-darkener {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.5) 100%);
            z-index: 1;
        }

        /* --- EDITORIAL PREMIUM BUTTON ARCHETYPES --- */
        .pill-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-decoration: none;
            transition: var(--transition-snappy);
            border: none;
            cursor: pointer;
        }

        .pill-button-primary {
            background-color: var(--primary-orange);
            color: var(--white);
        }

        .pill-button-primary:hover {
            background-color: var(--black);
            color: var(--white);
            transform: translateY(-2px);
        }

        .pill-button-secondary {
            background-color: transparent;
            border: 1px solid var(--black);
            color: var(--black);
        }

        .pill-button-secondary:hover {
            background-color: var(--black);
            color: var(--white);
        }

        /* --- FLOATING TRANSPARENT NAV ARCHITECTURE --- */
        header {
            position: absolute;
            top: 0; left: 0; width: 100%;
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
        }

        .brand-logo-frame {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--black);
            text-decoration: none;
            letter-spacing: 0.1em;
        }

        header.dark-hero-text .brand-logo-frame {
            color: var(--black);
        }

        nav.center-editorial-links {
            display: flex;
            gap: 40px;
        }

        nav.center-editorial-links a {
            text-decoration: none;
            color: rgb(244, 105, 105);
            font-weight: 600;
            font-size: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
            padding: 5px 0;
            transition: var(--transition-snappy);
        }

        nav.center-editorial-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 1px;
            background-color: var(--primary-orange);
            transition: var(--transition-snappy);
        }

        nav.center-editorial-links a:hover::after,
        nav.center-editorial-links a.active-link-node::after {
            width: 100%;
        }

        /* --- RESPONSIVE INTERACTIVE HAMBURGER SYSTEM --- */
        .hamburger-menu-trigger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 18px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1010;
        }

        .hamburger-menu-trigger span {
            width: 100%;
            height: 2px;
            background-color: var(--black);
            transition: var(--transition-snappy);
        }

        .hamburger-menu-trigger.open-state span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .hamburger-menu-trigger.open-state span:nth-child(2) { opacity: 0; }
        .hamburger-menu-trigger.open-state span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        .mobile-magazine-menu-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background-color: var(--warm-cream);
            z-index: 1005;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10%;
            transform: translateX(100%);
            transition: var(--transition-editorial);
        }

        .mobile-magazine-menu-overlay.active-state {
            transform: translateX(0);
        }

        .mobile-menu-link-stack {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .mobile-menu-link-stack a {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--black);
            text-decoration: none;
            letter-spacing: 0.05em;
        }

        /* --- ROUTING SYSTEM MULTI-PAGE LAYERS --- */
        .magazine-page-view-layer {
            display: none;
        }

        .magazine-page-view-layer.active-view-layer {
            display: block;
            animation: viewRevealAnimation 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
        }

        @keyframes viewRevealAnimation {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ==================== HOME PAGE LAYOUT ENGINE ==================== */
/* SECTION 01 — IMMERSIVE HERO SPLIT SCREEN */
.section-immersive-hero {
    height: 100vh;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left-editorial-pane {
    background-color: var(--warm-cream);
    padding: 0 8% 0 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-left-editorial-pane h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin: 20px 0 30px;
    color: var(--black);
}

.hero-left-editorial-pane p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444444;
    max-width: 480px;
}

.pill-button-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pill-button-primary:hover {
    background-color: var(--primary-green);
    color: var(--black);
}

/* Right side - Image takes full space with no gaps */
.hero-right-image-pane {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-right-image-pane img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .section-immersive-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }
    
    .hero-left-editorial-pane {
        padding: 80px 8%;
        min-height: 500px;
    }
    
    .hero-right-image-pane {
        height: 400px;
        position: relative;
    }
    
    .hero-right-image-pane img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    .hero-left-editorial-pane h1 {
        font-size: 2.2rem;
    }
    
    .hero-left-editorial-pane p {
        font-size: 1rem;
    }
    
    .hero-right-image-pane {
        height: 300px;
    }
}

        /* SECTION 02 — THE TRANSFORMATION WALL (TIMELINE) */
        .timeline-horizontal-chassis {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            margin-top: 60px;
        }

        .timeline-stage-node {
            background-color: var(--warm-cream);
            padding: 20px;
            border-top: 3px solid var(--black);
            transition: var(--transition-editorial);
        }

        .timeline-stage-node:hover {
            background-color: var(--soft-peach);
            transform: translateY(-5px);
        }

        .timeline-stage-node .editorial-image-frame {
            height: 180px;
            margin-bottom: 20px;
        }

        .timeline-stage-node h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .timeline-stage-node p {
            font-size: 0.9rem;
            color: #333333;
        }

        /* SECTION 03 — MAGAZINE ASYMMETRIC GRID */
        .section-magazine-asymmetric-grid {
            background-color: var(--soft-peach);
        }

        .section-magazine-asymmetric-grid h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 60px;
            text-align: center;
        }

        .asymmetric-photo-masonry {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 40px;
            align-items: center;
        }

        .masonry-item-card {
            background: var(--white);
            padding: 25px;
            box-shadow: 0 15px 40px rgba(17,17,17,0.05);
        }

        .masonry-item-card .editorial-image-frame {
            margin-bottom: 20px;
        }

        .masonry-item-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* Specific item dimensioning rules for premium layout feel */
        .masonry-item-size-1 { grid-column: span 7; }
        .masonry-item-size-1 .editorial-image-frame { height: 480px; }
        
        .masonry-item-size-2 { grid-column: span 5; }
        .masonry-item-size-2 .editorial-image-frame { height: 340px; }
        
        .masonry-item-size-3 { grid-column: span 4; }
        .masonry-item-size-3 .editorial-image-frame { height: 300px; }
        
        .masonry-item-size-4 { grid-column: span 8; }
        .masonry-item-size-4 .editorial-image-frame { height: 440px; }

        /* SECTION 04 — FULL IMAGE CHAPTER (PARALLAX EFFECT) */
        .parallax-chapter-banner {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            padding: 160px 10%;
            text-align: center;
            color: var(--white);
        }

        .parallax-chapter-banner h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            z-index: 2;
            position: relative;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .parallax-chapter-banner p {
            z-index: 2;
            position: relative;
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* SECTION 05 — HOBBY COLLECTIONS ARCHIVE INTERFERENCE */
        .section-collections-grid {
            background-color: var(--warm-cream);
        }

        .section-collections-grid h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 50px;
        }

        .collections-display-matrix {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .collection-categorical-card {
            background-color: var(--white);
            cursor: pointer;
            transition: var(--transition-editorial);
        }

        .collection-categorical-card .editorial-image-frame {
            height: 280px;
        }

        .collection-categorical-card-body {
            padding: 25px;
        }

        .collection-categorical-card h3 {
            font-size: 1.2rem;
        }

        .collection-categorical-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(17,17,17,0.08);
        }

        /* SECTION 06 — HUMAN-CENTERED COMMUNITY STORIES MODULE */
        .community-split-journal-row {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            margin-top: 40px;
        }

        .community-featured-story .editorial-image-frame {
            height: 480px;
            margin-bottom: 30px;
        }

        .community-featured-story h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .community-sidebar-stack {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-story-node {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 20px;
            align-items: center;
            border-bottom: 1px solid #EEEEEE;
            padding-bottom: 25px;
        }

        .sidebar-story-node .editorial-image-frame {
            height: 120px;
        }

        .sidebar-story-node h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        /* SECTION 07 — LIFESTYLE MOSAIC COMPOSITION */
        .section-lifestyle-mosaic {
            background-color: var(--primary-orange);
            color: var(--white);
        }

        .lifestyle-mosaic-grid-blueprint {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 260px;
            gap: 25px;
        }

        .mosaic-cell {
            position: relative;
        }

        .mosaic-cell-span-2x2 {
            grid-column: span 2;
            grid-row: span 2;
        }

        .mosaic-cell-span-2x1 {
            grid-column: span 2;
        }

        .mosaic-text-quote-box {
            background-color: var(--black);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mosaic-text-quote-box blockquote {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .mosaic-text-fact-box {
            background-color: var(--warm-cream);
            color: var(--black);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mosaic-text-fact-box h4 {
            font-size: 2.5rem;
            color: var(--primary-orange);
        }

        /* SECTION 08 — EXPERIENCE JOURNAL COMPILATION */
        .section-experience-journal-wrap {
            background-color: var(--warm-cream);
        }

        .journal-three-column-system {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .journal-magazine-card {
            background: var(--white);
            display: flex;
            flex-direction: column;
        }

        .journal-magazine-card .editorial-image-frame {
            height: 250px;
        }

        .journal-magazine-card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .journal-magazine-card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* SECTION 09 — HORIZONTAL INSPIRATION STRIP SYSTEM */
        .section-horizontal-strip-flow {
            padding: 80px 0;
            background-color: var(--white);
            overflow-x: auto;
            white-space: nowrap;
            display: flex;
            gap: 30px;
            scrollbar-width: none; /* Hide standard scrolls styling */
        }

        .section-horizontal-strip-flow::-webkit-scrollbar {
            display: none;
        }

        .horizontal-scrolling-photo-card {
            display: inline-block;
            width: 320px;
            flex-shrink: 0;
        }

        .horizontal-scrolling-photo-card .editorial-image-frame {
            height: 420px;
            margin-bottom: 15px;
        }

        .horizontal-scrolling-photo-card span {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* SECTION 10 — FINAL UNIFIED RUNWAY FEATURE */
        .section-final-feature-banner {
            height: 80vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
        }

        .section-final-feature-banner h2 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            line-height: 1.1;
            margin-bottom: 40px;
            z-index: 2;
        }

        .section-final-feature-banner .pill-button {
            z-index: 2;
        }

        /* ==================== SUB-PAGE STRUCTURAL MODULES ==================== */
        
        /* Category Filtering Strip */
        .category-filter-strip-layout {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-node-button {
            background-color: var(--warm-cream);
            border: none;
            padding: 10px 24px;
            font-family: inherit;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            border-radius: 30px;
            transition: var(--transition-snappy);
        }

        .filter-node-button.active-filter-node, .filter-node-button:hover {
            background-color: var(--primary-orange);
            color: var(--white);
        }

        /* Unified Subpage Shared Hero Header Banner style */
        .subpage-editorial-hero-banner {
            height: 40vh;
            background-color: var(--black);
            color: var(--white);
            display: flex;
            align-items: center;
            padding: 0 8%;
            position: relative;
        }

        .subpage-editorial-hero-banner h1 {
            font-size: clamp(2rem, 5vw, 3.8rem);
            z-index: 2;
        }

        /* Contact Page Split Layout Specifics */
        .contact-split-grid-chassis {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 100px);
        }

        .contact-form-side-panel {
            padding: 100px 12%;
            background-color: var(--warm-cream);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-form-side-panel h2 {
            font-size: 2.2rem;
            margin-bottom: 35px;
        }

        .minimal-input-field-block {
            display: flex;
            flex-direction: column;
            margin-bottom: 25px;
        }

        .minimal-input-field-block label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .minimal-input-field-block input, .minimal-input-field-block textarea {
            padding: 16px;
            background-color: var(--white);
            border: 1px solid transparent;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: var(--transition-snappy);
        }

        .minimal-input-field-block input:focus, .minimal-input-field-block textarea:focus {
            border-color: var(--primary-orange);
        }

        /* ==================== SYSTEM INTERACTIVE REGULATORY OVERLAYS ==================== */
        .regulatory-modal-curtain {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(17,17,17,0.85);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .regulatory-modal-curtain.modal-visible {
            display: flex;
        }

        .regulatory-modal-container-payload {
            background-color: var(--white);
            max-width: 750px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 50px;
            position: relative;
        }

        .regulatory-modal-close-trigger {
            position: absolute;
            top: 20px; right: 20px;
            background: none; border: none;
            font-size: 2.5rem; cursor: pointer; line-height: 1;
        }

        /* ==================== MAGAZINE PLATFORM FOOTER ==================== */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 100px 8% 50px;
        }

        .footer-primary-matrix {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 80px;
            margin-bottom: 40px;
        }

        .footer-brand-signature h3 {
            font-size: 2rem;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        .footer-brand-signature p {
            color: var(--soft-peach);
            font-weight: 400;
        }

        .footer-link-bucket-headline {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.15em;
        }

        .footer-links-stack-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-links-stack-list a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            transition: var(--transition-snappy);
        }

        .footer-links-stack-list a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .footer-newsletter-dock p {
            font-size: 0.95rem;
            margin-bottom: 20px;
            color: #BBBBBB;
        }

        .footer-newsletter-dock form {
            display: flex;
        }

        .footer-newsletter-dock input {
            flex: 1;
            padding: 14px;
            border: none;
            background-color: rgba(255,255,255,0.1);
            color: var(--white);
            font-family: inherit;
            outline: none;
        }

        .footer-newsletter-dock button {
            background-color: var(--primary-orange);
            color: var(--white);
            border: none;
            padding: 0 24px;
            font-family: inherit;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition-snappy);
        }

        .footer-newsletter-dock button:hover {
            background-color: var(--white);
            color: var(--black);
        }

        .footer-secondary-baseline-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
            color: #888888;
        }

        .footer-social-link-strip a {
            color: var(--white);
            text-decoration: none;
            margin-left: 20px;
            font-weight: 600;
            transition: var(--transition-snappy);
        }

        .footer-social-link-strip a:hover {
            color: var(--primary-orange);
        }

        /* ==================== ADAPTIVE RESPONSIVE GRID OVERRIDES ==================== */
        @media (max-width: 1100px) {
            header nav.center-editorial-links { display: none; }
            header .pill-button { display: none; }
            .hamburger-menu-trigger { display: flex; }
            
            .section-immersive-hero { grid-template-columns: 1fr; height: auto; }
            .hero-left-editorial-pane { padding: 120px 8% 80px; }
            .hero-right-image-pane { height: 500px; }

            .timeline-horizontal-chassis { grid-template-columns: repeat(2, 1fr); }
            .asymmetric-photo-masonry { display: flex; flex-direction: column; }
            .masonry-item-card { width: 100%; }
            .masonry-item-card .editorial-image-frame { height: 350px !important; }

            .collections-display-matrix { grid-template-columns: repeat(2, 1fr); }
            .lifestyle-mosaic-grid-blueprint { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
            .mosaic-cell-span-2x2 { grid-column: span 2; grid-row: span 1; }
            .mosaic-cell { height: 260px; }
            .journal-three-column-system { grid-template-columns: 1fr; }
            .footer-primary-matrix { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 750px) {
            .timeline-horizontal-chassis { grid-template-columns: 1fr; }
            .collections-display-matrix { grid-template-columns: 1fr; }
            .community-split-journal-row { grid-template-columns: 1fr; }
            .community-featured-story .editorial-image-frame { height: 320px; }
            .sidebar-story-node { grid-template-columns: 90px 1fr; }
            .sidebar-story-node .editorial-image-frame { height: 90px; }
            .lifestyle-mosaic-grid-blueprint { grid-template-columns: 1fr; }
            .mosaic-cell-span-2x2 { grid-column: span 1; }
            .mosaic-cell-span-2x1 { grid-column: span 1; }
            .contact-split-grid-chassis { grid-template-columns: 1fr; }
            .contact-split-grid-chassis .editorial-image-frame { height: 260px; }
            .footer-primary-matrix { grid-template-columns: 1fr; }
        }

        /* Banner Subtitle */
.subpage-editorial-hero-banner .banner-subtitle {
    font-size: 1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 15px auto 0;
    opacity: 0.8;
}

/* Collection Tags */
.collection-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 12px;
}

/* Filter Buttons - More categories */
.category-filter-strip-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-node-button {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-node-button:hover,
.filter-node-button.active-filter-node {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* Featured Collection Spotlight */
.featured-collection-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.spotlight-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.spotlight-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.spotlight-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    font-size: 0.8rem;
    font-weight: 500;
}

.spotlight-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

/* Collection Stats Footer */
.collection-stats-footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .featured-collection-spotlight {
        grid-template-columns: 1fr;
    }
    
    .collections-display-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .collections-display-matrix {
        grid-template-columns: 1fr;
    }
    
    .category-filter-strip-layout {
        gap: 8px;
    }
    
    .filter-node-button {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    .collection-stats-footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Journal Page Styles */
.journal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-subtitle {
    font-size: 1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 15px auto 0;
    opacity: 0.8;
}

.journal-three-column-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.journal-magazine-card {
    background: var(--white);
    border: 1px solid #EEEEEE;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-magazine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.editorial-image-frame {
    height: 220px;
    overflow: hidden;
}

.editorial-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journal-magazine-card:hover .editorial-image-frame img {
    transform: scale(1.03);
}

.journal-magazine-card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-label {
    color: var(--primary-green);
}

.read-time {
    color: #999;
}

.journal-magazine-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.journal-magazine-card-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-link {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-green);
    cursor: pointer;
}

/* Featured Essay */
.featured-essay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0 50px;
    padding: 50px;
    background: var(--soft-bg);
    border-radius: 8px;
}

.featured-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.featured-essay-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.featured-essay-content p {
    color: #444;
    line-height: 1.7;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-size: 0.8rem;
    color: #666;
}

.featured-link {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

.featured-essay-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

/* Journal Archive Stats */
.journal-archive-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    flex-wrap: wrap;
}

.stat-block {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

/* Responsive */
@media (max-width: 1000px) {
    .journal-three-column-system {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .featured-essay {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .journal-three-column-system {
        grid-template-columns: 1fr;
    }
    
    .journal-archive-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


/* Community Stories Page */
.subpage-editorial-hero-banner .banner-subtitle {
    font-size: 1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 15px auto 0;
    opacity: 0.8;
}

/* Featured Story */
.community-featured-story {
    margin-bottom: 60px;
}

.featured-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--soft-bg);
    border-radius: 8px;
    overflow: hidden;
}

.featured-story-image .editorial-image-frame {
    height: 100%;
    min-height: 400px;
}

.featured-story-content {
    padding: 50px 40px;
}

.story-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.featured-story-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-story-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.story-metadata {
    display: flex;
    gap: 25px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 25px;
}

/* Two Column Layout */
.community-split-journal-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* Main Stories */
.community-main-stories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.community-story-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 35px;
}

.community-story-card:last-child {
    border-bottom: none;
}

.community-story-card .editorial-image-frame {
    height: 200px;
}

.story-card-content {
    display: flex;
    flex-direction: column;
}

.story-category-small {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.story-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.story-card-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.story-impact {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 10px;
}

/* Sidebar */
.community-sidebar-stack {
    background: var(--soft-bg);
    padding: 30px;
    height: fit-content;
}

.community-sidebar-stack h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sidebar-intro {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sidebar-story-node {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-story-node:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-story-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.sidebar-story-image .editorial-image-frame {
    height: 70px;
}

.sidebar-story-details h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.sidebar-story-details p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 5px;
}

.sidebar-meta {
    font-size: 0.65rem;
    color: #999;
}

/* Community Impact Stats */
.community-impact-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 70px 0 50px;
    padding: 40px 20px;
    background: var(--primary-green);
    border-radius: 8px;
    text-align: center;
    flex-wrap: wrap;
}

.stat-block {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--black);
    margin-top: 5px;
}

.stat-desc {
    display: block;
    font-size: 0.7rem;
    color: rgba(0,0,0,0.6);
    margin-top: 5px;
}

/* Callout Section - No Buttons */
.community-callout {
    text-align: center;
    padding: 50px;
    background: var(--soft-bg);
    border-radius: 8px;
    margin-top: 20px;
}

.callout-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.community-callout h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.community-callout p {
    max-width: 500px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 0.9rem;
}

.callout-instruction {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    word-break: break-word;
}

/* Responsive */
@media (max-width: 1000px) {
    .featured-story-grid {
        grid-template-columns: 1fr;
    }
    
    .community-split-journal-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .community-story-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .community-impact-stats {
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .community-impact-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .featured-story-content {
        padding: 30px 25px;
    }
    
    .story-metadata {
        flex-direction: column;
        gap: 8px;
    }
    
    .sidebar-story-node {
        flex-direction: column;
    }
    
    .sidebar-story-image {
        width: 100%;
        height: 120px;
    }
    
    .sidebar-story-image .editorial-image-frame {
        height: 120px;
    }
}

.footer-newsletter-dock {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 8px;
}

.footer-newsletter-dock h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.footer-newsletter-dock p {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-newsletter-dock form {
    display: flex;
    margin-bottom: 15px;
}

.footer-newsletter-dock input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-newsletter-dock input:focus {
    border-color: var(--primary-green);
}

.footer-newsletter-dock input::placeholder {
    color: #888;
}

.footer-newsletter-dock button {
    padding: 12px 24px;
    background: var(--primary-green);
    border: none;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--black);
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter-dock button:hover {
    background: var(--white);
}

.footer-newsletter-dock .unsubscribe-btn {
    background: rgba(220, 53, 69, 0.8);
    color: white;
}

.footer-newsletter-dock .unsubscribe-btn:hover {
    background: #dc3545;
}

.form-divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

.form-divider span {
    position: relative;
    background: #111111;
    padding: 0 12px;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.form-status-msg {
    font-size: 0.7rem;
    margin-top: -10px;
    margin-bottom: 15px;
    padding: 6px 10px;
    border-radius: 4px;
}

.privacy-note {
    font-size: 0.65rem;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.privacy-note span {
    font-size: 0.7rem;
}
