        /* --- CORE DESIGN SYSTEM & VARIABLES --- */
        :root {
            --color-black: #000000;
            --color-white: #ffffff;
            --color-dark-gray: #121212;
            --color-light-gray: #f4f4f4;
            --font-primary: 'Open Sans', sans-serif;
            --font-script: 'Mea Culpa', cursive;
            --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-slow: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            user-select: none;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--color-black);
            font-family: var(--font-primary);
            color: var(--color-white);
            overflow-x: hidden;
        }

        body {
            overflow-x: hidden;
            background-color: var(--color-black);
        }


        /* --- GLOBAL HEADER (FIXED GLASSMORPHISM) --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background-color: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-smooth);
        }

        header.scrolled {
            padding: 15px 40px;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }

        .logo-container a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-links a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            position: relative;
            padding: 5px 0;
            display: inline-block;
            transition: var(--transition-smooth);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 50%;
            background-color: var(--color-white);
            transition: var(--transition-smooth);
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            transform: translateY(-3px);
            opacity: 0.8;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu Icon */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 16px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 100%;
            height: 1px;
            background-color: var(--color-white);
            transition: var(--transition-smooth);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* --- MULTI-PAGE VIEW MANAGER --- */
        .page-view {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            min-height: 100vh;
            padding-top: 80px; /* Header spacing */
            background-color: var(--color-black);
        }

        .page-view.active-view {
            display: block;
            opacity: 1;
        }

        /* --- GLOBAL TYPOGRAPHY ELEMENTS --- */
        .editorial-title-large {
            font-size: calc(2rem + 2.5vw);
            font-weight: 300;
            letter-spacing: -0.02em;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .editorial-script-accent {
            font-family: var(--font-script);
            font-size: 4.5rem;
            color: var(--color-white);
            font-weight: 400;
            line-height: 0.8;
        }

        .editorial-para {
            font-size: 0.9rem;
            font-weight: 300;
            line-height: 1.8;
            letter-spacing: 0.02em;
            color: rgba(255, 255, 255, 0.7);
        }

        .section-tag {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: inline-block;
        }

        /* --- GENERAL COMPONENT ELEMENTS --- */
        .glass-panel {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
        }

        .editorial-btn {
            background: var(--color-white);
            color: var(--color-black);
            border: 1px solid var(--color-white);
            padding: 15px 40px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition-smooth);
            display: inline-block;
            text-align: center;
            text-decoration: none;
        }

        .editorial-btn:hover {
            background: transparent;
            color: var(--color-white);
        }

        .editorial-btn-secondary {
            background: transparent;
            color: var(--color-white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 12px 30px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .editorial-btn-secondary:hover {
            border-color: var(--color-white);
            background: rgba(255, 255, 255, 0.05);
        }

        /* --- HOME PAGE SECTIONS --- */
        /* Section 1: Split Editorial Hero */
        .split-hero {
            display: flex;
            height: calc(100vh - 80px);
            width: 100%;
            overflow: hidden;
        }

        .hero-left {
            width: 65%;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .hero-right {
            width: 35%;
            position: relative;
            overflow: hidden;
            height: 100%;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-img-wrap {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            animation: slowZoom 25s infinite alternate ease-in-out;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 60px;
        }

        @keyframes slowZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.12); }
        }

        /* Section 2: Editorial Fashion Film simulation */
        .fashion-film-section {
            padding: 120px 40px;
            background-color: #ff0808;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .film-header h2 {
            font-weight: 300;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .film-frame-container {
            margin: 60px 0;
            width: 100%;
            max-width: 650px;
            border: 15px solid #111;
            background-color: #000;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

        .film-frame-container img {
            width: 100%;
            height: auto;
            display: block;
            filter: grayscale(20%);
        }

        .signature-row {
            width: 90%;
            max-width: 1100px;
            text-align: center;
            margin-top: 20px;
        }

        .signature-row span {
            font-size: calc(3.5rem + 3.5vw);
            display: block;
            white-space: nowrap;
        }

        /* Section 3: Featured Collections */
        .featured-collections {
            background-color: var(--color-white);
            color: var(--color-black);
            padding: 120px 60px;
        }

        .featured-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 80px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 30px;
        }

        .featured-header .quote-box {
            max-width: 400px;
            font-style: italic;
            text-align: right;
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .collection-card {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
            color: var(--color-black);
        }

        .card-img-holder {
            width: 100%;
            height: 550px;
            overflow: hidden;
            margin-bottom: 25px;
            background-color: #eee;
        }

        .card-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .collection-card:hover .card-img-holder img {
            transform: scale(1.06);
        }

        .card-details h4 {
            font-size: 1.2rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
            transition: var(--transition-smooth);
        }

        .card-details p {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.6;
            transform: translateY(0);
            transition: var(--transition-smooth);
        }

        .collection-card:hover .card-details h4 {
            transform: translateY(-2px);
        }

        /* Section 4: Membership Editorial */
        .membership-editorial {
            position: relative;
            height: 120vh;
            width: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 100px 40px;
        }

        .membership-editorial::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }

        .membership-top {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .membership-top h2 {
            font-size: 3rem;
            letter-spacing: 0.2em;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .membership-panel-wrap {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 550px;
            margin-bottom: 40px;
        }

        .sub-form-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .sub-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 15px;
            color: var(--color-white);
            font-family: var(--font-primary);
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            outline: none;
            transition: var(--transition-smooth);
        }

        .sub-input:focus {
            border-color: var(--color-white);
            background: rgba(255, 255, 255, 0.2);
        }

        .form-message {
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            min-height: 20px;
            transition: var(--transition-smooth);
        }

        .form-message.success { color: #a3e635; }
        .form-message.error { color: #f87171; }

        .unsubscribe-trigger-wrap {
            text-align: center;
            margin-top: 15px;
        }

        .unsubscribe-link {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: underline;
            font-size: 0.7rem;
            cursor: pointer;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .unsubscribe-link:hover {
            color: var(--color-white);
        }

        /* Section 5: Fashion Journal Slider */
        .fashion-journal-section {
            padding: 120px 40px;
            background-color: var(--color-dark-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .journal-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .journal-header h2 {
            font-size: 2.2rem;
            font-weight: 300;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .journal-panel {
            width: 100%;
            max-width: 1200px;
            background-color: var(--color-black);
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            min-height: 500px;
            position: relative;
        }

        .journal-left {
            width: 35%;
            position: relative;
            overflow: hidden;
        }

        .journal-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0; left: 0;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .journal-img.active-content {
            opacity: 1;
        }

        .journal-right {
            width: 65%;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .journal-article-box {
            position: relative;
            min-height: 250px;
        }

        .journal-article {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
            transform: translateY(10px);
        }

        .journal-article.active-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .journal-article h3 {
            font-size: 1.6rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .journal-controls {
            margin-top: 40px;
        }

        .progress-line-container {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
            position: relative;
        }

        .progress-line-active {
            position: absolute;
            top: 0; left: 0;
            height: 100%;
            width: 33.33%;
            background: var(--color-white);
            transition: var(--transition-smooth);
        }

        .journal-nav-numbers {
            display: flex;
            gap: 30px;
        }

        .nav-num {
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .nav-num.active-num {
            color: var(--color-white);
            font-weight: 700;
        }

        /* --- EDITORIAL FOOTER --- */
        footer {
            background-color: var(--color-white);
            color: var(--color-black);
            padding: 80px 60px 30px 60px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand h2 {
            font-size: 1.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .footer-brand p {
            max-width: 360px;
            font-size: 0.85rem;
            color: #555;
            line-height: 1.7;
        }

        .footer-links-col h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-links-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links-col ul li a {
            color: var(--color-black);
            text-decoration: underline;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            transition: var(--transition-smooth);
        }

        .footer-links-col ul li a:hover {
            opacity: 0.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: #777;
            letter-spacing: 0.05em;
        }

        /* --- EDITORIAL SUB-PAGES COMPONENT WORKPACKS --- */
        .editorial-page-header {
            padding: 100px 60px 60px 60px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 1200px;
            margin: 0 auto;
        }

        .editorial-page-header h1 {
            margin-bottom: 15px;
        }

        .editorial-long-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px;
        }

        /* Collections Layout Engine */
        .narrative-row {
            display: flex;
            align-items: center;
            gap: 80px;
            margin-bottom: 140px;
        }

        .narrative-row.reverse {
            flex-direction: row-reverse;
        }

        .narrative-media {
            width: 55%;
            overflow: hidden;
            position: relative;
        }

        .narrative-media img {
            width: 100%;
            height: 700px;
            object-fit: cover;
            filter: grayscale(10%);
            transition: var(--transition-slow);
        }

        .narrative-media:hover img {
            transform: scale(1.04);
        }

        .narrative-content {
            width: 45%;
        }

        .narrative-content.full-width {
            width: 100%;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px auto;
        }

        .detail-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .detail-gallery img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* About & Documentary Layout Engine */
        .philosophy-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 100px;
        }

        .chapter-timeline {
            margin-top: 80px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            padding-left: 40px;
        }

        .chapter-node {
            margin-bottom: 60px;
            position: relative;
        }

        .chapter-node::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 5px;
            width: 11px;
            height: 11px;
            background: var(--color-white);
            border-radius: 50%;
        }

        .chapter-num {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        /* Blog Layout Engine */
        .blog-magazine-container {
            display: flex;
            flex-direction: column;
            gap: 120px;
        }

        .blog-editorial-post {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 80px;
        }

        .post-hero-img {
            width: 100%;
            height: 60vh;
            object-fit: cover;
            margin: 40px 0;
        }

        .pull-quote-block {
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 30px 0;
            margin: 40px 0;
            text-align: center;
        }

        /* Contact Engine */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-form-panel input, .contact-form-panel textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 16px;
            color: var(--color-white);
            font-family: var(--font-primary);
            margin-bottom: 20px;
            outline: none;
        }

        .contact-form-panel input:focus, .contact-form-panel textarea:focus {
            border-color: var(--color-white);
        }

        .office-info-block {
            margin-bottom: 40px;
        }

        .office-info-block h3 {
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        /* Legal / Privacy Accordion Stack */
        .legal-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .legal-node {
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255,255,255,0.01);
        }

        .legal-header-trigger {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 1rem;
        }

        .legal-header-trigger::after {
            content: '+';
            font-size: 1.3rem;
            transition: var(--transition-smooth);
        }

        .legal-node.active-node .legal-header-trigger::after {
            transform: rotate(45deg);
        }

        .legal-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            padding: 0 30px;
        }

        .legal-node.active-node .legal-body {
            max-height: 1000px;
            padding: 0 30px 30px 30px;
        }

        /* --- UNSUBSCRIBE MODAL SYSTEM --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(15px);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease-in-out;
        }

        .modal-overlay.modal-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-box {
            width: 100%;
            max-width: 480px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--color-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- UTILITY & BACK TO TOP BUTTON --- */
        .back-to-top {
            position: fixed;
            bottom: 35px;
            right: 35px;
            width: 45px;
            height: 45px;
            background: var(--color-white);
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 98;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition-smooth);
        }

        .back-to-top.btn-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top svg {
            width: 16px;
            height: 16px;
            fill: var(--color-black);
            transition: var(--transition-smooth);
        }

        .back-to-top:hover svg {
            transform: translateY(-4px);
        }

        /* --- RESPONSIVE LAYOUT MATRIX (HAMBURGER SYSTEM INTEGRATED) --- */
        @media (max-width: 992px) {
            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .narrative-row, .narrative-row.reverse {
                flex-direction: column;
                gap: 40px;
            }
            .narrative-media, .narrative-content {
                width: 100%;
            }
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 20px 25px;
            }
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background-color: var(--color-black);
                border-left: 1px solid rgba(255, 255, 255, 0.1);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transition: var(--transition-smooth);
                z-index: 1000;
            }
            .nav-links.active {
                right: 0;
            }
            .split-hero {
                flex-direction: column;
                height: auto;
            }
            .hero-left, .hero-right {
                width: 100%;
                height: 60vh;
            }
            .collections-grid {
                grid-template-columns: 1fr;
            }
            .featured-collections {
                padding: 80px 25px;
            }
            .featured-header {
                flex-direction: column;
                gap: 20px;
            }
            .featured-header .quote-box {
                text-align: left;
            }
            .journal-panel {
                flex-direction: column;
            }
            .journal-left, .journal-right {
                width: 100%;
            }
            .journal-left {
                height: 300px;
            }
            .journal-right {
                padding: 30px 20px;
            }
            .membership-editorial h2 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .editorial-page-header {
                padding: 60px 25px;
            }
            .editorial-long-container {
                padding: 40px 25px;
            }
            .philosophy-grid {
                grid-template-columns: 1fr;
            }
        }
