        /* --- BRAND DESIGN SYSTEM & TOKENS --- */
        :root {
            --cream: #F6F3EB;
            --dark-coffee: #4B4038;
            --text-dark: #111111;
            --text-light: #F6F3EB;
            
            --font-head: 'Oswald', sans-serif;
            --font-body: 'Cabin', sans-serif;
            --transition-fluid: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            
            /* Core Atmospheric Shared Imagery Asset */
            --bg-shared-src: url('https://static.wixstatic.com/media/c837a6_4cc3dd88d7d347bb931a01e0642fcbba~mv2.jpg/v1/fill/w_1280,h_752,fp_0.50_0.50,q_85,enc_auto/Img.jpg');
        }

        /* --- IMMERSIVE LAYOUT RESET --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--dark-coffee);
            color: var(--text-light);
            font-family: var(--font-body);
            font-variation-settings: "wdth" 100;
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* --- TYPOGRAPHIC UTILITIES --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-head);
            font-optical-sizing: auto;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 400;
            line-height: 1.15;
        }

        p {
            font-family: var(--font-body);
            font-optical-sizing: auto;
            font-weight: 400;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        /* --- STRUCTURAL CONTAINERS --- */
        .editorial-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4%;
            width: 100%;
        }

        .section-separator {
            width: 100%;
            height: 1px;
            background: rgba(246, 243, 235, 0.2);
            margin: 60px 0;
        }

        /* --- GLOBAL EDITORIAL HEADER --- */
/* --- GLOBAL EDITORIAL HEADER --- */
.global-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    z-index: 999;

    background-image: url('logo.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; /* Use contain for logos */

    background-color: #211111; /* Optional */

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}        /* Class manipulated via JS scroll detection mechanics */
        .global-header-wrapper.header-hidden {
            transform: translateY(-100%);
        }

        .header-top-area {
            text-align: center;
            padding: 50px 20px 0 20px;
        }

        .brand-logo-headline {
            font-family: var(--font-head);
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 300;
            letter-spacing: 0.25em;
            color: var(--text-light);
            cursor: pointer;
            display: inline-block;
        }

        .header-bottom-navigation {
            width: 100%;
            background: linear-gradient(to top, rgba(17,17,17,0.8), transparent);
            padding: 30px 0;
        }

        .nav-link-menu {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(20px, 8vw, 100px);
            list-style: none;
            width: 100%;
        }

        .nav-link-menu li a {
            font-family: var(--font-head);
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-light);
            cursor: pointer;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-link-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--cream);
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-link-menu li a:hover::after,
        .nav-link-menu li a.active-route::after {
            width: 100%;
            left: 0;
        }

        /* Responsive Mobile Hamburger Layout Matrix */
        .hamburger-button {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 32px;
            height: 22px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
            position: absolute;
            top: 40px;
            right: 30px;
        }

        .hamburger-button span {
            width: 100%;
            height: 2px;
            background-color: var(--text-light);
            transition: all 0.3s ease-in-out;
            transform-origin: left center;
        }

        /* --- MULTIPAGE ROUTER PANELS --- */
        .page-view-layer {
            display: none;
            margin-top: 450px; /* Counter-balance standard floating header canvas depth */
            animation: fadeInLayer 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .page-view-layer.active-layer {
            display: block;
        }

        @keyframes fadeInLayer {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- SHARED SECTION DESIGN MODULES --- */
        .shared-journal-section {
            background-image: linear-gradient(rgba(75, 64, 56, 0.85), rgba(75, 64, 56, 0.85)), var(--bg-shared-src);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 140px 0;
            width: 100%;
        }

        .fullscreen-break-hero {
            height: 120vh;
            width: 100%;
            background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* --- HOME PAGE STRUCTURAL LAYOUTS --- */
        
        /* Three-Column Composition Grid */
        .hero-three-column-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 50px;
            align-items: center;
            min-height: 80vh;
        }

        .tall-square-card {
            width: 120%;
            aspect-ratio: 3 / 5;
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            border: 1px solid rgba(246, 243, 235, 0.1);
        }

        .hero-center-editorial {
            text-align: center;
            padding: 0 20px;
            color: var(--text-light);
        }

        .hero-center-editorial h1 {
            font-size: clamp(2.2rem, 4vw, 4.5rem);
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Section 2 Layout */
        .roasting-journal-wrap {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .roasting-journal-wrap h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .roasting-journal-wrap p {
            font-size: 1.25rem;
            line-height: 1.9;
        }

        /* Section 4 Staggered Composition Card Architecture */
        .staggered-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        /* High-low-high staggered arrangement logic mapping */
        .staggered-item:nth-child(1) { transform: translateY(0); }
        .staggered-item:nth-child(2) { transform: translateY(70px); }
        .staggered-item:nth-child(3) { transform: translateY(0); }

        .split-editorial-card {
            width: 100%;
            height: 600px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 25px 50px rgba(0,0,0,0.4);
        }

        .card-top-media {
            height: 70%;
            background-size: cover;
            background-position: center;
            width: 100%;
        }

        .card-bottom-content {
            height: 30%;
            background-color: var(--dark-coffee);
            color: var(--text-light);
            padding: 25px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-top: 1px solid rgba(246, 243, 235, 0.1);
        }

        .card-bottom-content h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            letter-spacing: 0.05em;
        }

        .card-bottom-content p {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .card-bottom-content .origin-tag {
            font-family: var(--font-head);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.5;
            margin-top: auto;
        }

        /* Section 5: Featured Experience Layout Frame */
        .experience-wide-wrapper {
            margin-top: 50px;
            text-align: center;
        }

        .experience-wide-card {
            width: 100%;
            height: 550px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            margin-bottom: 50px;
        }

        .experience-text-block {
            max-width: 850px;
            margin: 0 auto;
            font-size: 1.3rem;
            line-height: 1.8;
        }

        /* Section 6: Community Speech Bubbles Matrix */
        .community-split-matrix {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
            align-items: start;
        }

        .testimonial-bubbles-stack {
            display: flex;
            flex-direction: column;
            gap: 45px;
        }

        .circular-speech-bubble {
            background-color: var(--cream);
            color: var(--text-dark);
            border-radius: 35px;
            padding: 45px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .circular-speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 60px;
            border-width: 20px 20px 0;
            border-style: solid;
            border-color: var(--cream) transparent;
            display: block;
            width: 0;
        }

        .bubble-chat-icon {
            font-size: 2.5rem;
            color: var(--dark-coffee);
            opacity: 0.15;
            line-height: 1;
            margin-bottom: 10px;
            display: block;
        }

        .circular-speech-bubble p {
            font-size: 1.2rem;
            color: var(--text-dark);
            font-style: italic;
            line-height: 1.6;
        }

        .bubble-author {
            display: block;
            margin-top: 15px;
            font-family: var(--font-head);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--dark-coffee);
            font-weight: 600;
        }

        /* Section 8: Home Journal Article Blocks */
        .home-journal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .home-journal-block h3 {
            font-size: 1.5rem;
            margin: 20px 0 10px 0;
        }

        /* --- INTERNAL PAGE COMPONENT FORM FACTORS --- */
        
        /* Layout Grid Forms */
        .split-contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            background: rgba(0,0,0,0.2);
            padding: 60px;
            border: 1px solid rgba(246, 243, 235, 0.1);
        }

        .contact-form-element {
            display: flex;
            flex-direction: column;
        }

        .contact-form-field {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(246, 243, 235, 0.4);
            padding: 15px 5px;
            font-family: var(--font-body);
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 35px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .contact-form-field:focus {
            border-bottom-color: var(--text-light);
        }

        .form-submit-editorial-btn {
            background: var(--cream);
            color: var(--text-dark);
            border: none;
            padding: 18px 40px;
            font-family: var(--font-head);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            cursor: pointer;
            align-self: flex-start;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .form-submit-editorial-btn:hover {
            background: var(--dark-coffee);
            color: var(--text-light);
        }

        /* Menu Catalog Layout Grid */
        .menu-catalog-section {
            margin-bottom: 80px;
        }

        .menu-catalog-section h2 {
            font-size: 2.2rem;
            border-bottom: 1px solid rgba(246, 243, 235, 0.2);
            padding-bottom: 15px;
            margin-bottom: 30px;
        }

        .menu-item-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .menu-item-info h3 {
            font-size: 1.4rem;
            font-weight: 400;
        }

        .menu-item-info p {
            font-size: 1rem;
            opacity: 0.8;
            font-style: italic;
        }

        .menu-item-price {
            font-family: var(--font-head);
            font-size: 1.4rem;
        }

        /* Journal Page Architecture Matrix */
        .journal-articles-stack {
            display: flex;
            flex-direction: column;
            gap: 100px;
        }

        .journal-long-post {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .journal-long-post:nth-child(even) {
            direction: rtl;
        }

        .journal-long-post:nth-child(even) .journal-post-content {
            direction: ltr;
        }

        /* --- GLOBAL JOURNAL SYSTEM FOOTER --- */
        footer {
            background-color: var(--cream);
            color: var(--text-dark);
            padding: 120px 0 0 0;
            width: 100%;
        }

        .footer-top-columns {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 50px;
            padding-bottom: 80px;
        }

        .footer-column h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.6;
            color: var(--text-dark);
        }

        .footer-column p {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.6;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: var(--text-dark);
            font-size: 1rem;
            cursor: pointer;
        }

        .footer-column ul li a:hover {
            opacity: 0.6;
        }

.footer-bottom-signature-row {
    width: 100%;
    min-height: 400px;

    background: url('logo.png') center center / cover no-repeat;

    border-top: 1px solid rgba(17, 17, 17, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    position: relative;
}
        /* --- RESPONSIVE MEDIA BREAKPOINTS SYSTEM --- */
        @media (max-width: 1100px) {
            .hero-three-column-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-three-column-grid .tall-square-card {
                display: none; /* Emphasize clean core copy text readability on viewport collapse */
            }
            .staggered-cards-container {
                grid-template-columns: 1fr;
                gap: 80px;
            }
            .staggered-item:nth-child(2) {
                transform: translateY(0);
            }
            .community-split-matrix {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .home-journal-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer-top-columns {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .journal-long-post {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .journal-long-post:nth-child(even) {
                direction: ltr;
            }
            .split-contact-layout {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 20px;
            }
        }

        @media (max-width: 768px) {
            .global-header-wrapper {
                height: 180px;
            }
            .page-view-layer {
                margin-top: 180px;
            }
            .brand-logo-headline {
                font-size: 2.2rem;
                letter-spacing: 0.15em;
                position: absolute;
                top: 35px;
                left: 20px;
            }
            .header-bottom-navigation {
                display: none; /* Decouple structural elements onto mobile overlay canvas */
            }
            .hamburger-button {
                display: flex;
            }

            /* Responsible Mobile Drawer Overlay Activation Rules */
            .header-bottom-navigation.mobile-expanded {
                display: flex !important;
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: var(--dark-coffee);
                z-index: 1000;
                align-items: center;
                justify-content: center;
                animation: fadeInLayer 0.4s ease forwards;
            }

            .header-bottom-navigation.mobile-expanded .nav-link-menu {
                flex-direction: column;
                gap: 35px;
            }

            .header-bottom-navigation.mobile-expanded .nav-link-menu li a {
                font-size: 1.8rem;
            }

            /* Transform hamburger icon into an X when open */
            .hamburger-button.open span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger-button.open span:nth-child(2) {
                opacity: 0;
            }
            .hamburger-button.open span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .footer-top-columns {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .newsletter-management {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(17,17,17,0.1);
}

.newsletter-block h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.newsletter-block p {
    opacity: 0.7;
    margin-bottom: 25px;
    line-height: 1.8;
}

.newsletter-block form {
    display: flex;
    gap: 12px;
}

.newsletter-block input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(17,17,17,0.15);
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-block button {
    padding: 16px 28px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
}

.newsletter-block button:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .newsletter-management {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-block form {
        flex-direction: column;
    }
}
