        /* --- DESIGN SYSTEM TOKENS --- */
        :root {
            --bg-primary: #D6FB61;
            --bg-secondary: #ECEFCA;
            --bg-white: #FFFFFF;
            --text-primary: #25671E;
            --text-dark: #000000;
            --border-color: rgba(37, 103, 30, 0.2);
            --border-dark: #000000;
            --font-editorial: 'Libre Baskerville', serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- BASIC RESET & FRAMEWORK --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-editorial);
            font-weight: 400;
            line-height: 1.8;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- TYPOGRAPHY UTILITIES --- */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 400;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        p {
            font-size: 1.1rem;
            max-width: 42em; /* Comfortable reading line width */
        }

        .editorial-spacing {
            letter-spacing: 0.02em;
        }

        /* --- HEADER SYSTEM --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            background: transparent;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
        }

        header.header-hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    display: block;
    height: 250px;
    width: auto;
    margin-top: 1rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}        /* Mobile Hamburger & Nav Shell */
        .nav-container {
            display: flex;
            align-items: center;
        }

        .hamburger-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            width: 32px;
            height: 24px;
            position: relative;
            z-index: 1010;
        }

        .hamburger-btn span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--text-primary);
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: var(--transition-smooth);
        }

        .hamburger-btn span:nth-child(1) { top: 0px; }
        .hamburger-btn span:nth-child(2) { top: 10px; }
        .hamburger-btn span:nth-child(3) { top: 20px; }

        .hamburger-btn.menu-active span:nth-child(1) { top: 10px; transform: rotate(135deg); }
        .hamburger-btn.menu-active span:nth-child(2) { opacity: 0; left: -60px; }
        .hamburger-btn.menu-active span:nth-child(3) { top: 10px; transform: rotate(-135deg); }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            font-weight: 700;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            opacity: 0.6;
        }

        /* --- APPLICATION ROUTING SYSTEM STATES --- */
        .page-layer {
            display: none;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .page-layer.active-page {
            display: block;
            opacity: 1;
        }

        /* --- REUSABLE STRUCTURES & LAYOUT SECTION --- */
        section {
            padding: 140px 10%;
            position: relative;
            clear: both;
        }
        
        .bg-secondary-layer { background-color: var(--bg-secondary); }
        .bg-white-layer { background-color: var(--bg-white); color: var(--text-dark); }

        .section-headline {
            font-size: clamp(2.2rem, 5vw, 4rem);
            margin-bottom: 50px;
            line-height: 1.2;
        }

        /* --- 1. HOME PAGE --- */
        /* Hero Split Screen Frame */
        .hero-split {
            display: flex;
            min-height: 100vh;
            padding: 0;
            border-bottom: none;
        }

        .hero-left-canvas {
            margin-left: 2rem;
                        margin-top: 8rem;

            width: 55%;
            background: linear-gradient(rgba(37, 103, 30, 0.05), rgba(37, 103, 30, 0.05)), 
                        url('https://static.wixstatic.com/media/11062b_c025459f182b4e829e450e9dbfb9e104~mv2.jpg/v1/fill/w_899,h_1125,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/11062b_c025459f182b4e829e450e9dbfb9e104~mv2.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }

        .hero-right-editorial {
            width: 45%;
            padding: 160px 5% 80px 6%;
            background-color: var(--bg-primary);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 50px;
        }

        .hero-headline {
            font-size: clamp(2.5rem, 4.5vw, 4.2rem);
            line-height: 1.15;
        }

        .tall-portrait-card {
            width: 100%;
            height: 720px;
            background: url('https://i.pinimg.com/736x/e2/3d/59/e23d593351a66d24bcdca3e30155956f.jpg') no-repeat center center/cover;
        }

        /* Section 2: Story Feature Frame */
        .story-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10%;
            align-items: flex-start;
        }

        .story-vertical-img {
            width: 50%;
            height: 300px;

            background: url('https://i.pinimg.com/736x/8e/dd/e6/8edde682e35525bfdb9abb110d4161aa.jpg') no-repeat center center/cover;
            margin-top: 10rem;
        }

        .story-text-wrapper {
            padding-top: 180px;
        }

        /* Section 3: Journal Manifesto Layout */
        .manifesto-layout {
            text-align: center;
            padding: 160px 15%;
        }

        .manifesto-layout h2 {
            margin-bottom: 60px;
        }

        .manifesto-essay {
            font-size: 1.25rem;
            line-height: 2;
            text-align: justify;
            text-justify: inter-word;
            margin: 0 auto;
            max-width: 46em;
        }

        /* Section 4: Pure Immersive Visual Pause */
        .immersive-image-break {
            height: 120vh;
            background: url('https://i.pinimg.com/736x/76/aa/e1/76aae185deb7ebee66443c51df37acc8.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            padding: 0;
        }

        /* Section 5: Editorial Matrix Rows */
        .principles-intro-block {
            margin-bottom: 80px;
        }

        .principles-quote {
            font-style: italic;
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0.95;
        }

        .principles-table {
            margin-top: 40px;
        }

        .principle-row {
            display: grid;
            grid-template-columns: 1fr 2fr;
            padding: 35px 0;
            border-top: 1px solid var(--border-color);
            align-items: baseline;
        }

        .principle-row:last-child {
            border-bottom: 1px solid var(--border-color);
        }

        .principle-title {
            font-size: 1.4rem;
            font-weight: 700;
        }

        /* Section 6: Subscription Module Grid */
        .subscription-hr {
            border: none;
            height: 1px;
            background-color: var(--border-dark);
            margin: 40px 0 60px 0;
        }

        .community-split {
            display: grid;
            grid-template-columns: 1.2fr 2fr;
            gap: 12%;
            align-items: flex-start;
        }

        .community-portrait {
            width: 100%;
            height: 320px;
            background: url('https://i.pinimg.com/736x/bf/03/40/bf0340837b88530d198a1ce6ea0574ad.jpg') no-repeat center center/cover;
        }

        .sub-forms-wrapper {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        .minimal-form {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .form-group-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .form-input-field {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--border-dark);
            padding: 12px 0;
            font-family: var(--font-editorial);
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .form-input-field:focus {
            outline: none;
            border-bottom-width: 2px;
        }

        .journal-action-btn {
            background: transparent;
            border: 1px solid var(--border-dark);
            padding: 14px 35px;
            font-family: var(--font-editorial);
            font-size: 1rem;
            cursor: pointer;
            align-self: flex-start;
            transition: var(--transition-smooth);
        }

        .journal-action-btn:hover {
            background-color: var(--text-dark);
            color: var(--bg-white);
        }

        .success-notification {
            display: none;
            font-style: italic;
            margin-top: 15px;
            color: #27AE60;
        }

        /* --- 2. ABOUT PAGE --- */
        .about-layer-frame {
            padding-top: 180px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-header-text {
            font-size: clamp(2.5rem, 6vw, 5rem);
            line-height: 1.15;
            margin-bottom: 100px;
        }

        .manifesto-section-node {
            margin-bottom: 120px;
        }

        .manifesto-section-node h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .manifesto-section-node p {
            font-size: 1.2rem;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        /* --- 3. CONTACT PAGE --- */
        .contact-split-frame {
            display: flex;
            min-height: 80vh;
            padding: 180px 0 0 0;
            align-items: stretch;
        }

        .contact-left-statement {
            width: 45%;
            padding: 0 5% 100px 10%;
        }

        .contact-left-statement h2 {
            font-size: clamp(2.8rem, 5vw, 4.8rem);
            line-height: 1.15;
            position: sticky;
            top: 180px;
        }

        .contact-right-panel {
            width: 55%;
            padding: 0 10% 100px 5%;
        }

        .faq-block-container {
            margin-top: 120px;
            border-top: 1px solid var(--border-color);
            padding-top: 60px;
        }

        .faq-node {
            margin-bottom: 40px;
        }

        .faq-node h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* --- GLOBAL EDITORIAL FOOTER --- */
        footer {
            background-color: var(--bg-white);
            color: var(--text-dark);
            padding: 100px 10% 40px 10%;
        }

        .footer-rule {
            border: none;
            height: 1px;
            background-color: rgba(0,0,0,0.15);
            width: 100%;
        }

        .footer-columns-split {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            padding: 60px 0;
            gap: 40px;
        }

        .footer-brand-title {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-bottom: 15px;
        }

        .footer-nav-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .footer-nav-grid a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 1.05rem;
            transition: opacity 0.3s ease;
        }

        .footer-nav-grid a:hover {
            opacity: 0.5;
        }

        .copyright-text {
            font-size: 0.95rem;
            opacity: 0.6;
            padding-top: 40px;
        }

        /* --- RESPONSIVE LAYOUT TRANSLATIONS (HAMBURGER MODES) --- */
        @media (max-width: 1024px) {
            header { height: 80px; }
            .hamburger-btn { display: block; }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background-color: var(--bg-secondary);
                flex-direction: column;
                padding: 140px 50px;
                box-shadow: -10px 0 30px rgba(0,0,0,0.05);
                transition: var(--transition-smooth);
                z-index: 1005;
            }

            .nav-links.menu-active {
                right: 0;
            }

            /* Structural Unification of Split Screens */
            .hero-split { flex-direction: column; }
            .hero-left-canvas { width: 100%; height: 50vh; background-attachment: scroll; }
            .hero-right-editorial { width: 100%; padding: 80px 8%; }
            .tall-portrait-card { height: 550px; }

            .story-layout { grid-template-columns: 1fr; gap: 60px; }
            .story-text-wrapper { padding-top: 0; }
            .story-vertical-img { height: 550px; }

            .manifesto-layout { padding: 100px 5%; }
            .immersive-image-break { background-attachment: scroll; height: 70vh; }
            
            .community-split { grid-template-columns: 1fr; gap: 50px; }
            .form-group-row { grid-template-columns: 1fr; gap: 30px; }

            .contact-split-frame { flex-direction: column; padding-top: 120px; }
            .contact-left-statement, .contact-right-panel { width: 100%; padding: 40px 8%; }
            .contact-left-statement h2 { position: static; }
        }

        @media (max-width: 600px) {
            section { padding: 80px 6%; }
            .principle-row { grid-template-columns: 1fr; gap: 10px; }
            .footer-columns-split { grid-template-columns: 1fr; gap: 50px; }
            .footer-nav-grid { grid-template-columns: 1fr; }
        }
