        /* --- CORE DESIGN SYSTEM VARIABLES --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-white: #FFFFFF;
            --soft-black: #222222;
            --accent-pink: #FF2DD1;
            --deep-magenta: #D50B8B;
            --warm-peach: #FFAD60;
            --pure-black: #000000;
            --transition-smooth: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-snappy: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Inconsolata', monospace;
            background-color: var(--primary-white);
            color: var(--soft-black);
            overflow-x: hidden;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        html {
            scroll-behavior: smooth;
        }

        /* --- MAGAZINE VIEWS DECK ROUTER --- */
        .magazine-view-node {
            display: none;
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition-smooth);
        }

        .magazine-view-node.active-view {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* --- PREMIUM EDITORIAL TYPOGRAPHY --- */
        h1, h2, h3, h4, h5, h6 {
            color: var(--soft-black);
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .hero-title-giant {
            font-size: clamp(2.8rem, 7.5vw, 5.5rem);
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        .section-heading-editorial {
            font-size: clamp(1.8rem, 4.5vw, 3rem);
            line-height: 1.15;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .editorial-paragraph {
            font-size: 1.1rem;
            font-weight: 400;
            color: #333333;
            max-width: 750px;
            margin-bottom: 20px;
        }

        .btn-editorial-link {
            padding: 14px 38px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition-snappy);
            border: 2px solid var(--soft-black);
            background: transparent;
            color: var(--soft-black);
        }

        .btn-editorial-link:hover {
            background-color: var(--soft-black);
            color: var(--primary-white);
        }

        /* --- STICKY TRANSPARENT NAVIGATION HEADER --- */
        .magazine-header-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            z-index: 900;
            padding: 0 4%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition-smooth);
            background-color: transparent;
        }

        .magazine-header-bar.scrolled-sticky {
            background-color: var(--primary-white);
            height: 80px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .logo-txt {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--primary-white);
            letter-spacing: -0.02em;
            text-decoration: none;
            text-transform: uppercase;
            transition: var(--transition-snappy);
        }

        .magazine-header-bar.scrolled-sticky .logo-txt {
            color: var(--soft-black);
        }

        .nav-center-matrix {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }

        .nav-center-matrix a {
            color: var(--primary-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            text-transform: uppercase;
            transition: var(--transition-snappy);
        }

        .magazine-header-bar.scrolled-sticky .nav-center-matrix a {
            color: var(--soft-black);
        }

        /* --- DROPDOWN MODULE (DECOR +) --- */
        .dropdown-node {
            position: relative;
        }

        .dropdown-mega-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background-color: var(--primary-white);
            min-width: 260px;
            padding: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-snappy);
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dropdown-node:hover .dropdown-mega-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(10px);
        }

        .dropdown-mega-panel a {
            color: var(--soft-black) !important;
            display: block;
            width: 100%;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .dropdown-mega-panel a:hover {
            color: var(--deep-magenta) !important;
            padding-left: 5px;
        }

        .header-right-utilities {
            display: flex;
            align-items: center;
            gap: 22px;
            color: var(--primary-white);
        }

        .magazine-header-bar.scrolled-sticky .header-right-utilities {
            color: var(--soft-black);
        }

        .utility-icon-btn {
            background: none;
            border: none;
            color: inherit;
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition-snappy);
            position: relative;
        }

        .utility-icon-btn:hover {
            color: var(--accent-pink);
        }

        .cart-badge-counter {
            position: absolute;
            top: -5px;
            right: -8px;
            background-color: var(--accent-pink);
            color: var(--primary-white);
            font-size: 0.7rem;
            font-weight: 900;
            padding: 2px 6px;
            border-radius: 50px;
        }

        /* --- RESPONSIVE HAMBURGER NAVIGATION --- */
        .hamburger-toggle-button {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1100;
        }

        .hamburger-toggle-button span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--primary-white);
            transition: var(--transition-snappy);
        }

        .magazine-header-bar.scrolled-sticky .hamburger-toggle-button span {
            background-color: var(--soft-black);
        }

        .hamburger-toggle-button.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background-color: var(--soft-black); }
        .hamburger-toggle-button.is-active span:nth-child(2) { opacity: 0; }
        .hamburger-toggle-button.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background-color: var(--soft-black); }

        /* --- DYNAMIC SLIDEOUT CANVAS SYSTEMS (SEARCH & CART) --- */
        .drawer-overlay-canvas {
            position: fixed;
            top: 0;
            right: -100%;
            width: 450px;
            max-width: 100%;
            height: 100vh;
            background-color: var(--primary-white);
            box-shadow: -10px 0 40px rgba(0,0,0,0.15);
            z-index: 2000;
            transition: var(--transition-smooth);
            padding: 50px 4%;
            display: flex;
            flex-direction: column;
        }

        .drawer-overlay-canvas.drawer-open {
            right: 0;
        }

        .drawer-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 1999;
            display: none;
        }

        .drawer-close-trigger {
            align-self: flex-end;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            margin-bottom: 40px;
        }

        /* --- REUSABLE COMPOSITIONAL PANELS --- */
        
        /* 1. HERO VIEWPORT */
        .hero-magazine-viewport {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 140px 6% 6% 6%;
        }

        .hero-cinematic-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
            transform: scale(1);
            animation: slowCinemaZoom 25s infinite alternate ease-in-out;
        }

        @keyframes slowCinemaZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.08); }
        }

        .hero-darkly-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.2));
            z-index: 2;
        }

        .hero-floating-top-right {
            position: relative;
            z-index: 3;
            align-self: flex-end;
            text-align: right;
            max-width: 650px;
        }

        .hero-floating-bottom-left {
            position: relative;
            z-index: 3;
            align-self: flex-start;
            max-width: 700px;
            color: var(--primary-white);
        }

        /* 2. IMMERSIVE STORY MODULE */
        .story-section-viewport {
            min-height: 90vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 4%;
            position: relative;
        }

        .story-translucent-card {
            background-color: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 60px;
            max-width: 850px;
            text-align: center;
            box-shadow: 0 30px 60px rgba(0,0,0,0.04);
        }

        /* 3. DUAL LIFESTYLE PANEL SPLIT */
        .dual-lifestyle-chassis {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 100vh;
            width: 100%;
        }

        .lifestyle-panel-half {
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .lifestyle-panel-half-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: var(--transition-smooth);
        }

        .lifestyle-panel-half:hover .lifestyle-panel-half-bg {
            transform: scale(1.04);
        }

        .lifestyle-panel-overlay-tag {
            position: absolute;
            background-color: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--primary-white);
            padding: 35px;
            max-width: 80%;
            z-index: 5;
        }

        .position-top-left { top: 50px; left: 50px; }
        .position-bottom-right { bottom: 50px; right: 50px; text-align: right; }

        /* 4. PARALLAX SECTION ENGINE */
        .parallax-editorial-viewport {
            height: 100vh;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .parallax-content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.35);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary-white);
            text-align: center;
            padding: 0 4%;
        }

        /* 5. DRAG-TO-SCROLL HORIZONTAL STREAM GALLERY */
        .gallery-canvas-row {
            padding: 120px 0 120px 4%;
            background-color: var(--primary-white);
            overflow: hidden;
        }

        .gallery-horizontal-scrollstream {
            display: flex;
            gap: 35px;
            overflow-x: auto;
            cursor: grab;
            padding-bottom: 25px;
            scrollbar-width: none;
        }

        .gallery-horizontal-scrollstream::-webkit-scrollbar { display: none; }
        .gallery-horizontal-scrollstream:active { cursor: grabbing; }

        .gallery-media-card {
            flex: 0 0 420px;
        }

        .gallery-image-wrapper {
            width: 100%;
            height: 520px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .gallery-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .gallery-media-card:hover .gallery-image-wrapper img {
            transform: scale(1.05);
        }

        .gallery-caption-node {
            font-size: 1rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.05em;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* 6. FOUR PANEL QUADRA COMPOSITION MATRIX */
        .four-panel-quad-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            width: 100%;
        }

        .quad-color-block {
            padding: 12% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .quad-giant-quote-mark {
            position: absolute;
            font-size: 15rem;
            opacity: 0.12;
            font-weight: 900;
            line-height: 0;
            font-family: serif;
        }

        .quad-image-block {
            min-height: 650px;
            background-size: cover;
            background-position: center;
        }

        /* 7. SCROLL SLIDING STICKY REVEAL MATRIX */
        .sticky-reveal-chassis {
            height: 100vh;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .sliding-reveal-horizontal-card {
            background-color: var(--primary-white);
            padding: 60px;
            width: 580px;
            max-width: 92%;
            position: absolute;
            left: -650px; 
            transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 30px 0 60px rgba(0,0,0,0.12);
        }

        .sliding-reveal-horizontal-card.revealed-active {
            left: 0px;
        }

        /* 8. FINAL IMMERSIVE VISUAL SHOWCASE */
        .final-showcase-viewport {
            height: 95vh;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 100px 6%;
            text-align: center;
            color: var(--primary-white);
        }

        /* --- JOURNAL NEWSLETTER SUBSCRIPTION CORE --- */
        .journal-envelope-section {
            padding: 140px 4%;
            background-color: var(--primary-white);
            display: flex;
            justify-content: center;
            border-top: 1px solid #EEEEEE;
        }

        .journal-envelope-box {
            max-width: 800px;
            width: 100%;
            text-align: center;
        }

        .journal-input-group {
            display: flex;
            gap: 15px;
            margin-top: 45px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .journal-input-field {
            padding: 18px 24px;
            border: 1px solid var(--soft-black);
            background-color: transparent;
            font-family: 'Inconsolata', monospace;
            font-size: 1.1rem;
            min-width: 285px;
            outline: none;
        }

        /* --- SYSTEM MAGAZINE FOOTER MAP --- */
        .magazine-footer-system {
            background-color: var(--soft-black);
            color: var(--primary-white);
            padding: 120px 4% 40px 4%;
        }

        .footer-four-columns-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            margin-bottom: 90px;
        }

        .footer-column-node h5 {
            color: var(--warm-peach);
            font-size: 1.25rem;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: 0.05em;
        }

        .footer-column-node ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-column-node ul a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            transition: var(--transition-snappy);
        }

        .footer-column-node ul a:hover {
            color: var(--primary-white);
            padding-left: 6px;
        }

        .footer-bottom-baseline {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.4);
        }

        /* --- MOCK UTILITY STYLES FOR SPECIFIC INTERFACES --- */
        .visit-hours-map-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            width: 100%;
            margin-top: 40px;
        }

        .mock-gis-map-canvas {
            background: #F0F0F0;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
            background-size: 25px 25px;
        }

        .cart-empty-state-notice {
            text-align: center;
            margin: auto 0;
            color: #888888;
        }

        /* --- HIGH PERFORMANCE BREAKPOINT MEDIA ENGINE --- */
        @media (max-width: 1100px) {
            .dual-lifestyle-chassis { grid-template-columns: 1fr; height: auto; }
            .lifestyle-panel-half { height: 55vh; }
            .four-panel-quad-grid { grid-template-columns: 1fr; }
            .quad-image-block { min-height: 500px; }
            .footer-four-columns-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .hamburger-toggle-button { display: flex; }
            .nav-center-matrix {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-white);
                padding: 40px;
                box-shadow: 0 30px 60px rgba(0,0,0,0.08);
                gap: 25px;
            }
            .nav-center-matrix.mobile-menu-expanded { display: flex; }
            .nav-center-matrix a { color: var(--soft-black) !important; font-size: 1.1rem; }
            .dropdown-mega-panel { position: static; transform: none !important; opacity: 1; visibility: visible; box-shadow: none; padding: 15px 0 0 20px; }
            .footer-four-columns-grid { grid-template-columns: 1fr; }
            .sliding-reveal-horizontal-card { width: 100%; }
            .visit-hours-map-split { grid-template-columns: 1fr; }
            .drawer-overlay-canvas { width: 100%; }
        }
