        
                /* CSS RESET & SYSTEM STYLE SHEET VARIABLES */
        * {
            box-sizing: border-box;

        margin: 0;
            padding: 0;
        }
        
        :root {
            --bg-white: #FFFFFF;
            --text-black: #000000;
            --accent-lime: #BBDC12;
            --accent-rust: #B34A44;
            --accent-cream: #FFEFE3;
            --accent-maroon: #60241E;
            --accent-apricot: #FFDDB0;
            --accent-blue: #67A2C5;
            --smooth-transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: "Monda", sans-serif;
            background-color: var(--bg-white);
            color: var(--text-black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* PREMIUM GRAIN OVERLAY & SCROLL BAR STRUCTURAL SYSTEMS */
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.035;
            pointer-events: none;
            z-index: 9999;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-white);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--text-black);
            border: 2px solid var(--bg-white);
        }

        /* READING PROGRESS BAR INDICATOR */
        #reading-progress-node {
            position: fixed;
            top: 0; left: 0;
            height: 4px;
            width: 0%;
            background: var(--accent-rust);
            z-index: 5000;
            transition: width 0.1s linear;
        }

        /* REUSABLE EDITORIAL GRID SYSTEM COMPONENTS */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 0.9;
        }

        p {
            font-weight: 400;
            font-size: 1.05rem;
            line-height: 1.65;
        }

        .thin-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        /* HEADER FRAME SYSTEM */
        header {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            z-index: 3000;
            transition: var(--smooth-transition);
        }

        header.sticky-scrolled {
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 2px solid var(--text-black);
            backdrop-filter: blur(10px);
        }

        /* TILE BOXED LOGO UTILITIES */
        .logo-tile-group {
            display: flex;
            gap: 0px;
            text-decoration: none;
            cursor: pointer;
        }

        .logo-tile {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-black);
            border: 2px solid var(--text-black);
            margin-right: -2px; /* Pull tiles flush together to prevent micro gaps */
        }

        /* NAVIGATION INTERFACE & PREMIUM RANDOMIZED HOVER HOOKS */
        .navigation-links {
            display: flex;
            gap: 3.5rem;
        }

        .navigation-links a {
            text-decoration: none;
            color: var(--text-black);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .navigation-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--text-black);
            transform: translateX(-50%);
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navigation-links a:hover {
            transform: translateY(-4px);
        }

        .navigation-links a:hover::after {
            width: 100%;
        }

        /* RESPONSIVE HAMBURGER ACTION MECHANICS */
        .hamburger-button {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 4000;
        }

        .hamburger-button span {
            width: 32px;
            height: 3px;
            background: var(--text-black);
            transition: var(--smooth-transition);
        }

        .hamburger-button.is-active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger-button.is-active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-button.is-active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -7px);
        }

        .mobile-navigation-canvas {
            position: fixed;
            top: 0; right: -100%;
            width: 100%; height: 100vh;
            background: var(--accent-cream);
            z-index: 3500;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            transition: var(--smooth-transition);
        }

        .mobile-navigation-canvas.is-open {
            right: 0;
        }

        .mobile-navigation-canvas a {
            font-size: 2.5rem;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-black);
            cursor: pointer;
            transition: var(--smooth-transition);
        }

        /* APPLICATION LAYER VIEWS WRAPPER */
        .spa-view-layer {
            display: none;
            width: 100%;
            min-height: 100vh;
        }

        .spa-view-layer.is-active {
            display: block;
            animation: viewFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes viewFadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* SECTION ARCHITECTURE FRAMEWORK ELEMENTS */
        .layout-section {
            padding: 0;
            margin: 0;
            position: relative;
            background: var(--bg-white);
            width: 100%;
            overflow: hidden;
        }

        /* SECTION 1: MARGINLESS TYPOGRAPHY HERO STYLE */
        .hero-row-marquee {
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            padding: 13rem 0 4rem 0;
            border-bottom: 1px solid var(--text-black);
        }

        .hero-row-marquee h1 {
            font-size: calc(5rem + 5vw);
            display: inline-block;
            transition: transform 0.1s linear;
            will-change: transform;
        }

        /* SECTION 2: UNEQUAL SPLIT SYSTEM */
        .split-layout-grid {
            display: grid;
            grid-template-columns: 40% 60%;
            border-bottom: 1px solid var(--text-black);
        }

        .split-left-pane {
            padding: 4rem;
            border-right: 1px solid var(--text-black);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .split-square-box {
            border: 1px solid var(--accent-rust);
            width: 40%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .split-square-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .split-right-pane {
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .split-right-pane img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .split-right-pane:hover img {
            transform: scale(1.1);
        }

        /* SECTION 4: TALL STORIES GRID STRUCTURE */
        .stories-container {
            padding: 6rem 3rem;
            border-bottom: 4px solid var(--text-black);
        }

        .stories-grid-system {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .tall-story-card {
            border: 4px solid var(--text-black);
            background: var(--bg-white);
            transition: var(--smooth-transition);
            display: flex;
            flex-direction: column;
        }

        .tall-story-card:hover {
            transform: translateY(-16px);
            box-shadow: 16px 16px 0px var(--text-black);
        }

        .story-top-art {
            height: 480px;
            overflow: hidden;
            border-bottom: 4px solid var(--text-black);
        }

        .story-top-art img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--smooth-transition);
        }

        .tall-story-card:hover .story-top-art img {
            transform: scale(1.05);
        }

        .story-bottom-narrative {
            padding: 2.5rem;
        }

        /* SECTION 5: MARQUEE COMPONENT AND SYSTEM PARALLAX */
        .marquee-strip-wrap {
            background: var(--text-black);
            color: var(--bg-white);
            padding: 1.5rem 0;
            white-space: nowrap;
            overflow: hidden;
            border-bottom: 4px solid var(--text-black);
        }

        .marquee-infinite-node {
            display: inline-block;
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            animation: infiniteScrollLoop 28s linear infinite;
        }

        @keyframes infiniteScrollLoop {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        .marquee-description-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 6rem 3rem;
            gap: 4rem;
            border-bottom: 4px solid var(--text-black);
        }

        .parallax-window-container {
            height: 650px;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            border-bottom: 4px solid var(--text-black);
        }

        /* SECTION 6: EDITORIAL CHRONICLES AND BOX PANELS */
        .features-master-grid {
            display: grid;
            grid-template-columns: 45% 55%;
            border-bottom: 4px solid var(--text-black);
        }

        .features-left-visual {
            padding: 4rem;
            border-right: 4px solid var(--text-black);
            background: var(--accent-cream);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .features-left-visual .portrait-border-box {
            border: 4px solid var(--accent-maroon);
            width: 100%;
            height: 700px;
            overflow: hidden;
        }

        .features-left-visual .portrait-border-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .features-right-panels {
            display: flex;
            flex-direction: column;
        }

        .stacked-editorial-panel {
            padding: 3.5rem;
            border-bottom: 4px solid var(--text-black);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .stacked-editorial-panel:last-child {
            border-bottom: none;
        }

        .stacked-editorial-panel:hover {
            padding-left: 5rem;
        }

        .panel-num-label {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .panel-arrow-icon {
            position: absolute;
            right: 3.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* SECTION 7-12 MAPS AND ASYMMETRICAL MOOD GRID */
        .magazine-spread-block {
            padding: 6rem 3rem;
            background: var(--accent-cream);
            border-bottom: 4px solid var(--text-black);
        }

        .swatch-matrix {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .swatch-node {
            width: 55px;
            height: 55px;
            border: 2px solid var(--text-black);
        }

        /* SECTION 8: HORIZONTAL COLLECTION TIMELINE */
        .timeline-scroll-axis {
            display: flex;
            overflow-x: auto;
            border-bottom: 4px solid var(--text-black);
        }

        .timeline-segment-node {
            min-width: 450px;
            border-right: 4px solid var(--text-black);
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .timeline-segment-node:nth-child(even) {
            background: var(--accent-apricot);
        }

        .timeline-visual-frame {
            height: 250px;
            border: 2px solid var(--text-black);
            overflow: hidden;
            margin-top: 2rem;
        }

        .timeline-visual-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* SECTION 9: ASYMMETRICAL MOOD COLLAGE MATRIX */
        .moodboard-asymmetric-matrix {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 320px;
            gap: 2rem;
            padding: 6rem 3rem;
            border-bottom: 4px solid var(--text-black);
        }

        .mood-item-cell {
            position: relative;
            border: 4px solid var(--text-black);
            overflow: hidden;
        }

        .mood-item-cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--smooth-transition);
        }

        .mood-item-cell:hover img {
            transform: scale(1.1) rotate(1deg);
        }

        .mood-floating-annotation {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            background: var(--text-black);
            color: var(--bg-white);
            padding: 1rem;
            font-size: 0.85rem;
            transform: translateY(100%);
            transition: var(--smooth-transition);
        }

        .mood-item-cell:hover .mood-floating-annotation {
            transform: translateY(0);
        }

        /* SECTION 10: SHOWCASE SPLIT LAYOUT SHEET */
        .showcase-split-sheet {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 4px solid var(--text-black);
        }

        .showcase-visual-side {
            height: 800px;
            overflow: hidden;
            border-right: 4px solid var(--text-black);
        }

        .showcase-visual-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .showcase-text-side {
            padding: 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--accent-cream);
        }

        /* BUTTON DESIGN PATTERN SPECIFICATIONS */
        .editorial-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 3.5rem;
            background: var(--text-black);
            color: var(--bg-white);
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid var(--text-black);
            cursor: pointer;
            transition: var(--smooth-transition);
            margin-top: 2rem;
            width: fit-content;
        }

        .editorial-action-btn:hover {
            background: var(--accent-lime);
            color: var(--text-black);
            box-shadow: 8px 8px 0px var(--text-black);
            transform: translate(-4px, -4px);
        }

        /* SECTION 11: IRREGULAR EDITORIAL GALLERY GRID */
        .irregular-gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2.5rem;
            padding: 6rem 3rem;
            border-bottom: 4px solid var(--text-black);
            align-items: end;
        }

        .gallery-irregular-panel {
            position: relative;
        }

        .gallery-image-wrapper {
            border: 3px solid var(--text-black);
            overflow: hidden;
            background: var(--text-black);
        }

        .gallery-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .outside-floating-caption {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            font-weight: 700;
        }

        /* SECTION 12: CLOSING EDITORIAL BLOCK */
        .closing-statement-wrap {
            padding: 10rem 3rem;
            text-align: center;
            background: var(--bg-white);
            border-bottom: 4px solid var(--text-black);
        }

        /* INNER PAGES MASTER INTERFACE SUITE */
        .inner-view-hero {
            padding: 14rem 3rem 6rem 3rem;
            border-bottom: 4px solid var(--text-black);
        }

        .inner-content-block {
            padding: 6rem 3rem;
            border-bottom: 4px solid var(--text-black);
        }

        /* LEGAL LAYOUT FRAMEWORK MATRIX (PRIVACY & TERMS) */
        .legal-layout-matrix {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 5rem;
            align-items: start;
        }

        .sticky-legal-sidebar {
            position: sticky;
            top: 140px;
            border-left: 4px solid var(--text-black);
            padding-left: 2rem;
        }

        .sidebar-node-link {
            display: block;
            color: var(--text-black);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            transition: var(--smooth-transition);
        }

        .sidebar-node-link:hover {
            color: var(--accent-rust);
            transform: translateX(8px);
        }

        .legal-article-node {
            margin-bottom: 4.5rem;
            border-bottom: 2px solid var(--text-black);
            padding-bottom: 4.5rem;
        }

        .legal-article-node:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .legal-article-node h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        /* COLLAPSIBLE ACCORDION FOR ENHANCED POLICY VIEWING */
        .accordion-header-block {
            background: var(--accent-cream);
            border: 2px solid var(--text-black);
            padding: 1.5rem;
            margin-top: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            text-transform: uppercase;
        }

        .accordion-hidden-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background: var(--bg-white);
            border-left: 2px solid var(--text-black);
            border-right: 2px solid var(--text-black);
        }

        .accordion-inner-padding {
            padding: 2rem;
            border-bottom: 2px solid var(--text-black);
        }

        /* BACK TO TOP ANIMATED UTILITY BUTTON */
        #apex-scroll-trigger {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: var(--bg-white);
            border: 3px solid var(--text-black);
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2500;
            opacity: 0;
            visibility: hidden;
            transition: var(--smooth-transition);
        }

        #apex-scroll-trigger.is-visible {
            opacity: 1;
            visibility: visible;
        }

        #apex-scroll-trigger:hover {
            background: var(--accent-lime);
            transform: translateY(-6px);
        }

        /* GLOBAL PREMIUM FOOTER COMPONENT METRICS */
        footer {
            background: var(--bg-white);
            padding: 0;
            margin: 0;
            width: 100%;
        }

        /* NO GAP FOOTER NAVIGATION TILE MATRIX BLOCK */
        .footer-tiles-row-flush {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .footer-navigation-tile {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--text-black);
            border-right: 2px solid var(--text-black);
            border-bottom: 4px solid var(--text-black);
            cursor: pointer;
            transition: var(--smooth-transition);
        }

        .footer-navigation-tile:last-child {
            border-right: none;
        }

        .footer-navigation-tile:hover {
            transform: scale(1.02);
            color: var(--text-black) !important;
            box-shadow: inset 0 0 0 4px var(--text-black);
        }

        /* THREE COLUMN MASTER LAYOUT GRID */
        .footer-three-column-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr 1fr;
            border-bottom: 4px solid var(--text-black);
        }

        .footer-grid-column {
            padding: 5rem 3rem;
            border-right: 4px solid var(--text-black);
        }

        .footer-grid-column:last-child {
            border-right: none;
        }

        /* OUTLINED HOVER COMPLIANT SOCIAL LINKS */
        .square-outlined-social-btn {
            width: 75px;
            height: 55px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-black);
            font-weight: 700;
            margin-right: 0.75rem;
            transition: var(--smooth-transition);
        }


        /* SUBSCRIPTION PANEL SYSTEM INTERFACE */
        .bordered-subscription-panel-box {
            padding: 2.5rem;
            background: var(--accent-cream);
        }

        .form-editorial-input-node {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid var(--text-black);
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            margin-bottom: 1rem;
        }

        .form-action-split-btns {
            display: flex;
            gap: 1rem;
        }

        .sub-action-btn {
            padding: 1rem 1.5rem;
            border: 2px solid var(--text-black);
            background: var(--text-black);
            color: var(--bg-white);
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            font-family: inherit;
            transition: var(--smooth-transition);
        }

        .sub-action-btn:hover {
            background: var(--accent-lime);
            color: var(--text-black);
        }

        .sub-action-btn.unsubscribe-variant {
            background: transparent;
            color: var(--text-black);
        }

        .sub-action-btn.unsubscribe-variant:hover {
            background: var(--accent-rust);
            color: var(--bg-white);
        }

        .success-banner-node {
            display: none;
            margin-top: 1.5rem;
            padding: 1rem;
            background: var(--accent-lime);
            border: 2px solid var(--text-black);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            animation: viewFadeIn 0.4s ease;
        }

        /* FULL ROW FLUSH BRAND SIGNATURE SYSTEM WITH ZERO SEPARATION GAPS */
        .footer-full-width-signature-row {
            width: 100%;
            overflow: hidden;
            border-bottom: 4px solid var(--text-black);
            margin: 0;
            padding: 0;
        }

        .signature-tiles-container-flush {
            display: flex;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .signature-tile-flush-node {
            flex: 1;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: calc(1rem + 1.5vw);
            color: var(--text-black);
            border-right: 2px solid var(--text-black);
            margin: 0;
            padding: 0;
        }

        .signature-tiles-container-flush .signature-tile-flush-node:last-child {
            border-right: none;
        }

        .footer-copyright-bottom-strip {
            padding: 2.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 700;
        }

        /* RESPONSIVE LAYOUT CALIBRATION MATRIX ENGINE */
        @media (max-width: 1200px) {
            .split-layout-grid, 
            .stories-grid-system, 
            .marquee-description-split, 
            .features-master-grid, 
            .showcase-split-sheet,
            .irregular-gallery-grid,
            .legal-layout-matrix,
            .footer-three-column-grid {
                grid-template-columns: 1fr;
            }
            
            .features-left-visual {
                border-right: none;
                border-bottom: 4px solid var(--text-black);
            }
            
            .showcase-visual-side {
                border-right: none;
                border-bottom: 4px solid var(--text-black);
                height: 500px;
            }

            .footer-grid-column {
                border-right: none;
                border-bottom: 4px solid var(--text-black);
            }
            
            .footer-grid-column:last-child {
                border-bottom: none;
            }

            .footer-tiles-row-flush {
                grid-template-columns: 1fr;
            }
            
            .footer-navigation-tile {
                border-right: none;
                border-bottom: 2px solid var(--text-black);
            }

            .irregular-gallery-grid {
                align-items: stretch;
                gap: 4rem;
            }
            
            .gallery-irregular-panel {
                height: 450px !important;
                margin-top: 0 !important;
            }

            .moodboard-asymmetric-matrix {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navigation-links {
                display: none;
            }

            .hamburger-button {
                display: flex;
            }

            .split-left-pane, .stories-container, .marquee-description-split, .features-left-visual, .magazine-spread-block, .moodboard-asymmetric-matrix, .showcase-text-side, .irregular-gallery-grid, .inner-view-hero, .inner-content-block, .footer-grid-column {
                padding: 3rem 1.5rem;
            }

            .moodboard-asymmetric-matrix {
                grid-template-columns: 1fr;
            }

            .footer-copyright-bottom-strip {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }
