        /* CSS Reset & Variable Variables */
        :root {
            --primary: #F62440;
            --black: #000000;
            --white: #FFFFFF;
            --light-grey: #DDDDDD;
            --font-editorial: 'Mea Culpa', cursive;
            --font-serif: 'Cormorant Garamond', serif;
            --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--black);
            color: var(--white);
            font-family: var(--font-serif);
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* Utility Scrollbar */
        ::-webkit-scrollbar { width: 5px; height: 5px; }
        ::-webkit-scrollbar-track { background: var(--black); }
        ::-webkit-scrollbar-thumb { background: var(--primary); }

        /* Multi-page Display Architecture */
        .page-view {
            display: none;
            width: 100%;
        }
        .page-view.active-view {
            display: block;
        }

        /* FIXED PERSISTENT FLOATING NAVIGATION ARCHITECTURE */
/* FIXED PERSISTENT FLOATING NAVIGATION ARCHITECTURE */
.editorial-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    display: flex;
}

.frame-left {
    width: 50%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    pointer-events: none; /* Change this to none */
}

.frame-left .brand-nav-container {
    pointer-events: auto; /* Only the nav container gets pointer events */
}

.frame-right {
    width: 50%;
    height: 100%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    pointer-events: none; /* Change this to none */
}

.frame-right .fixed-right-ribbon {
    pointer-events: auto; /* Only the ribbon gets pointer events */
}

        /* Brand & Vertical Links Area */
        .brand-nav-container {
            display: flex;
            align-items: flex-start;
            gap: 60px;
        }

        .brand-logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            cursor: pointer;
            text-decoration: none;
        }

        .vertical-nav-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .nav-item {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            width: max-content;
            transition: var(--transition-smooth);
        }
        .nav-item:hover {
            color: var(--primary);
            transform: translateX(8px);
        }

        /* Top Fixed Ribbon (Right Side Only) */
        .fixed-right-ribbon {
            width: 100%;
            background-color: var(--primary);
            height: 30px;
            display: flex;
            align-items: center;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-mini-text {
            display: inline-block;
            font-family: var(--font-serif);
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--black);
            animation: miniMarquee 25s linear infinite;
        }

        @keyframes miniMarquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Mobile Hamburger Toggle Mechanism */
        .hamburger-trigger {
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 200;
            background: var(--primary);
            border: none;
            width: 45px;
            height: 45px;
            cursor: pointer;
            padding: 10px;
        }
        .hamburger-trigger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--white);
            margin: 5px 0;
            transition: 0.3s;
        }

        /* CORE HOMEPAGE HERO STRUCTURE */
        .hero-section {
            width: 100%;
            min-height: 100vh;
            display: flex;
            position: relative;
        }

        .hero-left-content {
            width: 50%;
            background-color: var(--black);
            padding: 180px 40px 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .hero-center-titles {
            margin-top: 40px;
        }

        .hero-script-headline {
            font-family: var(--font-editorial);
            font-size: clamp(4rem, 8vw, 9rem);
            color: var(--primary);
                        margin-top: 5rem;

            line-height: 0.8;
            margin-bottom: 20px;
        }

        .hero-small-quote {
            font-size: 1.4rem;
            font-style: italic;
            max-width: 400px;
            margin-top: 5rem;
            font-weight: 300;
        }

        .hero-editorial-details {
            margin-left: auto;
            max-width: 380px;
            text-align: right;
            margin-top: -20px;
            padding-right: 20px;
        }

        .hero-editorial-details h3 {
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .hero-editorial-details p {
            color: var(--light-grey);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* Overlapping Fashion Cards Architecture */
        .stacked-cards-container {
            position: relative;
            margin-top: 60px;
            height: 280px;
            width: 100%;
        }

        .editorial-card-square {
            position: absolute;
            width: 180px;
            height: 180px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            background: #111;
            transition: var(--transition-smooth);
        }

        .editorial-card-square img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: var(--transition-smooth);
        }

        .editorial-card-square:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .card-pos-1 { bottom: 10px; left: 10px; z-index: 2; }
        .card-pos-2 { bottom: 45px; left: 120px; z-index: 1; border-color: var(--primary); }

        .hero-right-media {
            width: 50%;
            height: 200vh;
            position: relative;
        }

        .hero-full-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* EXTENDED SYSTEM SECTIONS */
        /* Section 2: Three Column Media Grid */
        .section-three-col {
            background: var(--black);
            display: flex;
            align-items: center;
        }

        .col-side1 { width: 35%; position: relative; height: 100vh; overflow: hidden; }
        .col-center { width:65%; position: relative; height: 100vh; overflow: hidden; }
                .col-side2 { width: 25%; position: relative; height: 100vh; overflow: hidden; }

        .col-side img, .col-center video {
            width: 100%; height: 100%; object-fit: cover;
        }
        .col-side2 img {
            margin-right: -10rem;
        }

        /* Highlight Selection Label Utility */
        .highlight-label {
            position: absolute;
            background-color: var(--primary);
            color: var(--white);
            font-size: 0.9rem;
            font-weight: bold;
            padding: 4px 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            z-index: 5;
        }
        .lbl-top-left { top: 30px; left: 30px; height: 100VH; }
        .lbl-bottom-center { bottom: 30px; left: 50%; transform: translateX(-50%); }
        .lbl-overlap { bottom: 60px; right: -10px; }

        /* Infinite Global Marquee Strip */
        .global-marquee-container {
            background-color: var(--black);
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            padding: 25px 0;
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
        }

        .marquee-infinite-text {
            display: inline-block;
            font-size: clamp(2rem, 4vw, 5rem);
            text-transform: uppercase;
            font-weight: 300;
            letter-spacing: 4px;
            animation: infiniteScroll 40s linear infinite;
        }

        @keyframes infiniteScroll {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Section 3: Parallax Screen Overlay */
        .section-parallax-hero {
            position: relative;
            height: 100vh;
            background-image: url('https://i.pinimg.com/1200x/a9/2f/58/a92f586a7940b7d04cf39d468e860676.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: flex-end;
            padding: 80px 60px;
        }

        .parallax-content-wrapper {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: flex-end;
            z-index: 2;
        }

        .parallax-huge-head {
            font-size: clamp(3rem, 7vw, 8rem);
            line-height: 0.9;
            text-transform: uppercase;
            max-width: 50%;
        }

        .parallax-right-para {
            max-width: 400px;
            font-size: 1.4rem;
            font-weight: 300;
        }

        /* Section 4: 60/40 Split Composition */
        .section-split-campaign {
            display: flex;
            width: 100%;
            min-height: 80vh;
        }

        .campaign-left-60 {
            width: 60%;
            position: relative;
        }
        .campaign-left-60 img { width: 100%; height: 100%; object-fit: cover; }

        .campaign-right-40 {
            width: 40%;
            background-color: var(--white);
            color: var(--primary);
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .campaign-right-40 p {
            font-size: 2.2rem;
            line-height: 1.3;
            font-weight: 400;
        }

        .red-marquee-strip {
            background-color: var(--primary);
            color: var(--white);
            padding: 15px;
            overflow: hidden;
            white-space: nowrap;
            margin-top: 40px;
        }

        /* Section 5: Inverse Primary Statement */
        .section-inverse-statement {
            background-color: var(--primary);
            color: var(--white);
            padding: 140px 80px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .inverse-left-para { font-size: 1.8rem; max-width: 450px; font-weight: 300; }
        .inverse-right-head { font-size: clamp(4rem, 8vw, 10rem); line-height: 0.8; text-transform: uppercase; }

        /* Section 6: Horizontal Drag Gallery */
        .section-horizontal-gallery {
            padding: 100px 40px;
            background: #080808;
        }
        .section-horizontal-gallery h2 {
            font-size: 2.5rem; text-transform: uppercase; margin-bottom: 40px; letter-spacing: 2px;
        }
        .drag-scroller {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            padding-bottom: 30px;
            cursor: grab;
        }
        .gallery-editorial-card {
            min-width: 350px;
            flex-shrink: 0;
            background: var(--black);
            padding: 15px;
            border: 1px solid #111;
        }
        .gallery-editorial-card img { width: 100%; height: 450px; object-fit: cover; margin-bottom: 15px; }
        .gallery-editorial-card h4 { font-size: 1.5rem; text-transform: uppercase; }
        .gallery-editorial-card span { color: var(--primary); font-size: 0.9rem; display: block; margin: 5px 0; }
        .gallery-editorial-card i { font-size: 1rem; font-weight: 300; opacity: 0.8; }

        /* Section 7: Alternating Magazine Panels */
        .section-magazine-panels {
            padding: 100px 40px;
            display: flex;
            justify-content: space-between;
            gap: 40px;
            background: var(--black);
        }
        .panel-column { display: flex; flex-direction: column; width: 31%; gap: 30px; }
        .h-auto-1 { margin-top: 0; }
        .h-auto-2 { margin-top: 80px; }
        .h-auto-3 { margin-top: 40px; }
        .panel-column img { width: 100%; object-fit: cover; }
        .img-tall { height: 550px; }
        .img-short { height: 350px; }
        .panel-column p { font-size: 1.2rem; line-height: 1.6; opacity: 0.9; }
        .panel-column blockquote { font-size: 2rem; border-left: 3px solid var(--primary); padding-left: 20px; font-style: italic; }

        /* Section 8: Massive Statement Canvas */
        .section-massive-canvas {
            background: var(--black);
            padding: 160px 40px;
            border-top: 1px solid #111;
            text-align: center;
        }
        .massive-statement-text {
            font-size: clamp(2.5rem, 6vw, 7rem);
            font-weight: 300;
            line-height: 1.1;
            text-transform: uppercase;
            max-width: 1400px;
            margin: 0 auto 40px auto;
        }
        .massive-sub-para { font-size: 1.3rem; max-width: 600px; margin: 0 auto; color: var(--light-grey); }

        /* Section 9: Irregular Masonry Studio */
        .section-masonry-studio {
            padding: 100px 40px;
            background: #000;
        }
        .masonry-grid-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .masonry-item { position: relative; overflow: hidden; height: 400px; background: #111; }
        .masonry-item.span-v { height: 550px; grid-row: span 2; }
        .masonry-item.span-h { grid-column: span 2; }
        .masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .masonry-overlay {
            position: absolute; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.75); display: flex; flex-direction: column;
            justify-content: center; align-items: center; opacity: 0; transition: var(--transition-smooth);
        }
        .masonry-item:hover .masonry-overlay { opacity: 1; }
        .masonry-item:hover img { transform: scale(1.08); }
        .masonry-overlay h4 { font-size: 1.8rem; text-transform: uppercase; color: var(--primary); }

        /* Section 10: Editorial Quote Split */
        .section-quote-split {
            display: flex; width: 100%; background: #0c0c0c; min-height: 70vh; align-items: center;
        }
        .quote-split-left { width: 50%; padding: 80px; }
        .quote-split-left h2 { font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 400; line-height: 1.2; font-style: italic; }
        .quote-split-right { width: 50%; height: 75vh; }
        .quote-split-right img { width: 100%; height: 100%; object-fit: cover; }

        /* Section 11: Interactive Lookbook Module */
        .section-interactive-lookbook {
            padding: 100px 40px; background: var(--black); text-align: center;
        }
        .lookbook-display-container {
            position: relative; max-width: 700px; margin: 0 auto; height: 800px; overflow: hidden;
        }
        .lookbook-slide {
            position: absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition: opacity 0.8s ease-in-out;
        }
        .lookbook-slide.active { opacity: 1; position: relative; }
        .lookbook-slide img { width: 100%; height: 100%; object-fit: cover; }
        .lookbook-controls { display: flex; justify-content: center; gap: 40px; margin-top: 30px; }
        .lookbook-btn {
            background: none; border: 1px solid var(--white); color: var(--white);
            padding: 10px 30px; font-family: var(--font-serif); font-size: 1.1rem;
            cursor: pointer; text-transform: uppercase; transition: var(--transition-smooth);
        }
        .lookbook-btn:hover { background: var(--primary); border-color: var(--primary); }
        .lookbook-meta { margin-top: 20px; font-size: 1.4rem; text-transform: uppercase; }

        /* Section 12: Narrative Story Blocks */
        .section-story-blocks { padding: 120px 40px; background: #050505; }
        .story-block-row {
            display: flex; justify-content: space-between; padding: 40px 0; border-bottom: 1px solid #222;
        }
        .story-num { font-size: 3rem; font-weight: 700; color: var(--primary); width: 100px; }
        .story-head { font-size: 2.2rem; text-transform: uppercase; width: 30%; }
        .story-para { font-size: 1.2rem; max-width: 600px; color: var(--light-grey); line-height: 1.7; }

        /* Section 13: Fashion Journal Hub */
        .section-journal-hub { padding: 100px 40px; background: var(--black); }
        .journal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
        .journal-card { background: #0e0e0e; padding: 15px; }
        .journal-card img { width: 100%; height: 300px; object-fit: cover; }
        .journal-card h3 { font-size: 1.6rem; text-transform: uppercase; margin: 15px 0 10px 0; }
        .journal-card p { font-size: 1.05rem; opacity: 0.8; margin-bottom: 15px; }
        .journal-readmore { color: var(--primary); text-decoration: none; text-transform: uppercase; font-size: 0.9rem; font-weight: bold; }

        /* Section 14: Grid Matrix Style Box */
        .section-instagram-matrix { padding: 80px 40px; background: #000; }
        .matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .matrix-box { position: relative; aspect-ratio: 1; overflow: hidden; }
        .matrix-box img { width: 100%; height: 100%; object-fit: cover; }
        .matrix-hover-state {
            position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(246, 36, 64, 0.9);
            display: flex; justify-content: center; align-items: center; opacity: 0; transition: var(--transition-smooth);
        }
        .matrix-box:hover .matrix-hover-state { opacity: 1; }
        .matrix-hover-state span { font-size: 1.5rem; text-transform: uppercase; font-weight: bold; }

        /* Section 15: Core Marketing Newsletter Block */
        .section-newsletter-block { padding: 100px 40px; background: var(--black); }
        .newsletter-inner-box { background: #0a0a0a; border: 1px solid #151515; padding: 80px 60px; display: flex; justify-content: space-between; }
        .news-left-title h2 { font-size: 3.5rem; text-transform: uppercase; line-height: 1; }
        .news-right-form-panel { width: 50%; }
        .input-row-editorial { display: flex; gap: 20px; margin-bottom: 20px; }
        .input-field-editorial {
            width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--white);
            color: var(--white); font-family: var(--font-serif); font-size: 1.3rem; padding: 10px 0; outline: none;
        }
        .action-btn-editorial {
            background: var(--white); color: var(--black); border: none; padding: 12px 35px;
            font-family: var(--font-serif); font-size: 1.1rem; text-transform: uppercase; cursor: pointer; transition: var(--transition-smooth);
        }
        .action-btn-editorial.btn-unsub { background: transparent; color: var(--white); border: 1px solid #333; }
        .action-btn-editorial:hover { background: var(--primary); color: var(--white); }
        .form-feedback-msg { margin-top: 15px; font-size: 1.1rem; display: none; text-transform: uppercase; letter-spacing: 1px; }

        /* COMMERCE FUNCTIONAL ENGINE (PRODUCT CATALOG PAGES) */
        .shop-page-wrapper { padding: 180px 40px 100px 40px; }
        .editorial-catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; }
        .product-premium-card { background: #0a0a0a; border: 1px solid #111; padding: 15px; position: relative; }
        .product-img-frame { width: 100%; height: 480px; overflow: hidden; background: #1a1a1a; }
        .product-img-frame img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .product-premium-card:hover .product-img-frame img { transform: scale(1.03); }
        .product-meta-row { display: flex; justify-content: space-between; margin-top: 20px; font-size: 1.3rem; text-transform: uppercase; }
        .product-price-tag { color: var(--primary); font-weight: bold; }
        .add-to-cart-trigger-btn {
            width: 100%; background: transparent; border: 1px solid var(--white); color: var(--white);
            padding: 12px; margin-top: 15px; font-family: var(--font-serif); font-size: 1rem;
            text-transform: uppercase; cursor: pointer; transition: var(--transition-smooth);
        }
        .add-to-cart-trigger-btn:hover { background: var(--primary); border-color: var(--primary); }

        /* GENERIC EDITORIAL LAYOUT UTILITY (ABOUT, CONTACT, LEGAL) */
/* Update the generic-editorial-canvas class */
.generic-editorial-canvas { 
    padding: 180px 40px 100px 40px; 
    max-width: 1200px; 
    margin: 0 auto;
}

/* For full centering of specific pages */
.generic-editorial-canvas.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.generic-editorial-canvas.centered h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.generic-editorial-canvas.centered p {
    font-size: 1.3rem;
    max-width: 600px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.generic-editorial-canvas.centered > div {
    max-width: 500px;
    width: 100%;
}

.generic-editorial-canvas.centered input {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.generic-editorial-canvas.centered button {
    width: 100%;
    padding: 15px;
}
        /* SLIDE OUT COMMERCE CART SIDEBAR */
        .floating-cart-anchor-trigger {
            position: fixed; bottom: 30px; right: 30px; background-color: var(--primary);
            color: var(--white); border: none; width: 65px; height: 65px; border-radius: 50%;
            display: flex; justify-content: center; align-items: center; cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 150; transition: var(--transition-smooth);
        }
        .floating-cart-anchor-trigger:hover { transform: scale(1.1); }
        .cart-count-badge {
            position: absolute; top: -5px; right: -5px; background: var(--white); color: var(--black);
            font-size: 0.8rem; font-weight: bold; width: 22px; height: 22px; border-radius: 50%;
            display: flex; justify-content: center; align-items: center;
        }

        .cart-slide-panel {
            position: fixed; top:0; right: -450px; width: 450px; height: 100vh;
            background: var(--black); border-left: 1px solid #222; z-index: 250;
            padding: 40px; display: flex; flex-direction: column; transition: var(--transition-smooth);
        }
        .cart-slide-panel.open-panel { right: 0; }
        .cart-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
        .cart-panel-header h2 { font-size: 2rem; text-transform: uppercase; }
        .cart-close-btn { background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
        
        .cart-items-scrollable-area { flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
        .cart-item-row { display: flex; gap: 15px; border-bottom: 1px solid #111; padding-bottom: 15px; align-items: center; }
        .cart-item-row img { width: 70px; height: 90px; object-fit: cover; }
        .cart-item-details { flex-grow: 1; }
        .cart-item-details h4 { font-size: 1.1rem; text-transform: uppercase; }
        .cart-item-details p { color: var(--primary); font-size: 1rem; margin-top: 5px; }
        .cart-remove-item { background: none; border: none; color: #666; cursor: pointer; text-transform: uppercase; font-size: 0.8rem; }
        .cart-remove-item:hover { color: var(--primary); }

        .cart-panel-footer { border-top: 1px solid #222; padding-top: 30px; margin-top: 20px; }
        .cart-subtotal-row { display: flex; justify-content: space-between; font-size: 1.4rem; text-transform: uppercase; margin-bottom: 20px; }
        .checkout-action-btn {
            width: 100%; background: var(--primary); color: var(--white); border: none; padding: 15px;
            font-family: var(--font-serif); font-size: 1.1rem; text-transform: uppercase; cursor: pointer;
        }

        /* PREMIUM MAGAZINE SYSTEM FOOTER */
        .editorial-system-footer {
            background-color: var(--black);
            border-top: 1px solid #111;
            padding: 80px 40px 40px 40px;
            margin-top: 100px;
        }

        .footer-columns-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

        .footer-bottom-bar {
            border-top: 1px solid #111;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
            color: #666;
        }

        .footer-legal-links { display: flex; gap: 25px; }
        .footer-legal-links a { color: #666; text-decoration: none; cursor: pointer; }
        .footer-legal-links a:hover { color: var(--white); }

        /* RESPONSIVE DESIGN DISRUPTION */
        @media (max-width: 1024px) {
            .editorial-frame { display: none; }
            .hamburger-trigger { display: block; }
            
            .brand-nav-container-mobile {
                position: fixed; top:0; left:-100%; width: 280px; height: 100vh;
                background: var(--black); z-index: 199; display: flex; flex-direction: column;
                padding: 80px 30px; gap: 30px; border-right: 1px solid #222;
                transition: var(--transition-smooth);
            }
            .brand-nav-container-mobile.open-menu { left: 0; }
            
            .hero-section { flex-direction: column; }
            .hero-left-content { width: 100%; padding-top: 100px; }
            .hero-right-media { width: 100%; height: 60vh; }
            
            .section-three-col { flex-direction: column; }
            .col-side, .col-center { width: 100%; height: 400px; }
            
            .section-split-campaign { flex-direction: column; }
            .campaign-left-60, .campaign-right-40 { width: 100%; }
            
            .section-inverse-statement { flex-direction: column; gap: 40px; }
            .section-magazine-panels { flex-direction: column; }
            .panel-column { width: 100%; margin-top: 0 !important; }
            
            .masonry-grid-layout { grid-template-columns: repeat(2, 1fr); }
            .section-quote-split { flex-direction: column; }
            .quote-split-left, .quote-split-right { width: 100%; padding: 40px; }
            
            .editorial-catalog-grid { grid-template-columns: repeat(2, 1fr); }
            .journal-grid { grid-template-columns: repeat(2, 1fr); }
            .matrix-grid { grid-template-columns: repeat(2, 1fr); }
            .newsletter-inner-box { flex-direction: column; gap: 40px; padding: 40px 20px; }
            .news-right-form-panel { width: 100%; }
            .footer-columns-grid { grid-template-columns: repeat(2, 1fr); }
            .cart-slide-panel { width: 100%; right: -100%; }
        }

        @media (max-width: 600px) {
            .editorial-catalog-grid, .journal-grid, .matrix-grid, .footer-columns-grid { grid-template-columns: 1fr; }
            .story-block-row { flex-direction: column; gap: 15px; }
            .story-head { width: 100%; }
        }
