        /* Immersive Color Architecture & Custom CSS Variables */
        :root {
            --deep-burgundy: #9B0F06;
            --warm-paper: #005eff;
            --bronze: #C08552;
            --sage: #8E977D;
            --white: #FFFFFF;
            --black: #111111;
            --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

        /* Architectural Resets */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--warm-paper);
        }

        body {
            font-family: 'PT Serif', serif;
            background-color: var(--warm-paper);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Multi-Page Subview Routing Systems */
        .editorial-page {
            display: none;
        }
        .editorial-page.active-page {
            display: block;
            animation: journalFade In 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes journalFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ASYMMETRICAL FIXED EDITORIAL BRANDBAR (LEFT SIDEBAR) */
        .vertical-brandbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100px;
            height: 100vh;
            border-right: 1px solid rgba(192, 133, 82, 0.3);
            background-color: transparent;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }

        .vertical-brandbar.scrolled {
            background-color: var(--warm-paper);
        }

        .vertical-brandbar .brand-logo-link {
            transform: rotate(-90deg);
            white-space: nowrap;
            font-weight: 700;
            letter-spacing: 0.15em;
            font-size: 1.1rem;
            color: var(--deep-burgundy);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            text-decoration: none;
        }

        .brand-vector-node {
            width: 14px;
            height: 14px;
            fill: var(--deep-burgundy);
            transform: rotate(45deg);
        }

        /* TOP FLOATING NAVIGATION BUFFER */
        .editorial-top-nav {
            position: fixed;
            top: 0;
            left: 100px;
            right: 0;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            z-index: 999;
            transition: var(--transition-smooth);
            background-color: transparent;
        }

        .editorial-top-nav.scrolled {
            background-color: var(--warm-paper);
            border-bottom: 1px solid rgba(192, 133, 82, 0.2);
            box-shadow: 0 4px 30px rgba(0,0,0,0.02);
        }

        .center-links {
            display: flex;
            gap: 48px;
            margin: 0 auto;
        }

        .center-links a {
            color: var(--black);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            position: relative;
            padding: 4px 0;
            transition: var(--transition-fast);
        }

        .center-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--bronze);
            transition: var(--transition-fast);
        }

        .center-links a:hover::after,
        .center-links a.active-link::after {
            width: 100%;
        }

        .right-actions {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .search-trigger-box {
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid transparent;
            padding-bottom: 4px;
        }

        .search-trigger-box input {
            background: transparent;
            border: none;
            outline: none;
            font-family: inherit;
            font-size: 1rem;
            color: var(--black);
            width: 80px;
            transition: var(--transition-smooth);
        }

        .search-trigger-box input:focus {
            width: 160px;
            border-bottom: 1px solid var(--bronze);
        }

        .cart-status {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 1.1rem;
            color: var(--black);
        }

        /* HAMBURGER FOR LOWER FRAME RESPONSIVENESS */
        .magazine-hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
        }

        .magazine-hamburger span {
            width: 28px;
            height: 1px;
            background-color: var(--black);
            transition: var(--transition-fast);
        }

        .magazine-hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            background-color: var(--deep-burgundy);
        }
        .magazine-hamburger.open span:nth-child(2) { opacity: 0; }
        .magazine-hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            background-color: var(--deep-burgundy);
        }

        .mobile-editorial-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--warm-paper);
            z-index: 1050;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
            transition: var(--transition-smooth);
        }

        .mobile-editorial-drawer.open {
            right: 0;
        }

        .mobile-editorial-drawer a {
            font-size: 2.2rem;
            color: var(--black);
            text-decoration: none;
        }

        /* CONTENT CONTAINMENT WRAPPER */
        main {
            margin-left: 100px;
            position: relative;
            z-index: 1;
        }

        /* SECTION ROW FORMATTING EXCLUSIVES */
        .editorial-canvas {
            padding: 140px 80px;
            position: relative;
        }

        /* HERO SECTION — JOURNAL COVER LAYOUT */
        .hero-cover {
            background-color: var(--warm-paper);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 120px;
            overflow: hidden;
        }

        .cover-composition {
            position: relative;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-oversized-heading {
            font-size: 9.5rem;
            font-weight: 700;
            line-height: 0.85;
            color: var(--black);
            text-transform: uppercase;
            position: relative;
            z-index: 2;
            pointer-events: none;
            letter-spacing: -0.04em;
        }

        .hero-oversized-heading span {
            display: block;
        }

        .cover-image-container {
            position: absolute;
            top: 10%;
            right: 5%;
            width: 55%;
            height: 550px;
            z-index: 1;
            overflow: hidden;
        }

        .cover-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: sepia(20%) grayscale(10%);
            transition: var(--transition-smooth);
        }

        .cover-image-container:hover img {
            transform: scale(1.04);
        }

        .floating-editorial-card {
            position: absolute;
            bottom: -40px;
            right: 0;
            background-color: var(--warm-paper);
            border: 1px solid var(--bronze);
            padding: 40px;
            max-width: 380px;
            z-index: 3;
            box-shadow: 12px 12px 0px rgba(192, 133, 82, 0.1);
        }

        .floating-editorial-card .issue-tag {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--bronze);
            margin-bottom: 16px;
            display: block;
            font-weight: 700;
        }

        .floating-editorial-card p {
            font-size: 1.4rem;
            font-style: italic;
            line-height: 1.5;
            color: var(--black);
        }

        /* SECTION 2 — THE DEVICE ARCHIVE HORIZONTAL STRIP */
        .archive-strip-section {
            background-color: var(--white);
            border-top: 1px solid rgba(192, 133, 82, 0.2);
            border-bottom: 1px solid rgba(192, 133, 82, 0.2);
            overflow: hidden;
        }

        .archive-scroll-viewport {
            overflow-x: auto;
            display: flex;
            align-items: center;
            padding: 100px 0;
            scrollbar-width: none;
        }

        .archive-scroll-viewport::-webkit-scrollbar {
            display: none;
        }

        .archive-horizontal-container {
            display: flex;
            align-items: center;
            gap: 120px;
            padding-left: 80px;
            padding-right: 200px;
        }

        .archive-strip-text {
            width: 320px;
            flex-shrink: 0;
        }

        .archive-strip-text h3 {
            font-size: 2.5rem;
            color: var(--deep-burgundy);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .archive-strip-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--black);
        }

        .archive-strip-image {
            width: 440px;
            height: 520px;
            flex-shrink: 0;
            overflow: hidden;
            border: 1px solid rgba(192, 133, 82, 0.15);
        }

        .archive-strip-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* SECTION 3 — GIANT QUOTE WALL */
        .quote-wall {
            background-color: var(--deep-burgundy);
            color: var(--warm-paper);
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 40px;
        }

        .quote-wall h2 {
            font-size: 4.5rem;
            font-style: italic;
            font-weight: 400;
            line-height: 1.2;
            max-width: 1100px;
            letter-spacing: -0.02em;
        }

        .quote-wall .editorial-caption {
            margin-top: 40px;
            font-size: 1.15rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--bronze);
            max-width: 600px;
            line-height: 1.6;
        }

        /* SECTION 4 — STACKED PRODUCT STORIES */
        .stacked-stories {
            background-color: var(--warm-paper);
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            margin-bottom: 16px;
            padding: 100px 0;
            border-bottom: 1px solid rgba(192, 133, 82, 0.2);
        }

        .story-panel:last-child {
            border-bottom: none;
        }

        .story-panel .story-image-frame {
            height: 650px;
            overflow: hidden;
        }

        .story-panel .story-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-panel .story-text-frame h3 {
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 24px;
            line-height: 1.1;
            color: var(--black);
        }

        .story-panel .story-text-frame p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #333333;
            margin-bottom: 30px;
        }

        .story-action-btn {
            background: none;
            border: 1px solid var(--black);
            padding: 14px 28px;
            font-family: inherit;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-fast);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .story-action-btn:hover {
            background-color: var(--black);
            color: var(--warm-paper);
        }

        /* SECTION 5 — DEVICE GALLERY CORRIDOR */
        .gallery-corridor {
            background-color: var(--white);
            overflow: hidden;
        }

        .corridor-title {
            font-size: 4rem;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 80px;
            text-align: center;
            letter-spacing: -0.02em;
        }

        .corridor-flex-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 80px 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding-bottom: 80px;
        }

        .corridor-frame {
            width: 380px;
            background-color: var(--warm-paper);
            padding: 20px;
            border: 1px solid rgba(192, 133, 82, 0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transform: rotate(-3deg);
            transition: var(--transition-smooth);
        }

        .corridor-frame:nth-child(even) {
            transform: rotate(2deg);
            margin-top: 40px;
        }

        .corridor-frame:nth-child(3n) {
            transform: rotate(-1.5deg);
            margin-top: -20px;
        }

        .corridor-frame:hover {
            transform: rotate(0deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(155, 15, 6, 0.08);
        }

        .corridor-frame .frame-inner-img {
            height: 420px;
            overflow: hidden;
            background-color: var(--white);
            margin-bottom: 16px;
        }

        .corridor-frame .frame-inner-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .corridor-frame h4 {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 6px;
        }

        .corridor-frame p {
            font-size: 0.95rem;
            color: var(--bronze);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* SECTION 6 — TECHNOLOGY ESSAYS */
        .essays-section {
            background-color: var(--warm-paper);
            border-top: 1px solid rgba(192, 133, 82, 0.3);
        }

        .essays-section h2 {
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 60px;
            color: var(--black);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .essay-pipeline {
            max-width: 1200px;
            margin: 0 auto;
        }

        .essay-node {
            padding: 60px 0;
            border-bottom: 1px solid var(--bronze);
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
        }

        .essay-node:last-child {
            border-bottom: none;
        }

        .essay-node h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-burgundy);
            line-height: 1.2;
        }

        .essay-node .essay-body-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #222222;
        }

        /* SECTION 7 — CURATED COLLECTION CAROUSEL */
        .carousel-track-section {
            background-color: var(--white);
            padding: 100px 0;
            overflow: hidden;
            border-top: 1px solid rgba(192, 133, 82, 0.2);
            border-bottom: 1px solid rgba(192, 133, 82, 0.2);
        }

        .infinite-carousel-container {
            display: flex;
            gap: 60px;
            width: max-content;
            animation: loopScrolling 40s linear infinite;
        }

        @keyframes loopScrolling {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        .carousel-editorial-artifact {
            width: 500px;
            flex-shrink: 0;
        }

        .carousel-editorial-artifact .artifact-img-box {
            height: 340px;
            width: 100%;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .carousel-editorial-artifact .artifact-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-editorial-artifact .artifact-meta {
            font-size: 0.9rem;
            color: var(--bronze);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 6px;
        }

        .carousel-editorial-artifact h4 {
            font-size: 1.8rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--black);
        }

        /* SECTION 8 — EDITORIAL NEWSLETTER */
        .editorial-newsletter-section {
            background-color: var(--warm-paper);
        }

        .burgundy-newsletter-block {
            background-color: var(--deep-burgundy);
            color: var(--warm-paper);
            padding: 80px;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .burgundy-newsletter-block .left-editorial-desc h2 {
            font-size: 5rem;
            line-height: 1;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .burgundy-newsletter-block .left-editorial-desc p {
            font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .newsletter-input-matrix {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .newsletter-input-matrix input {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--warm-paper);
            padding: 16px 4px;
            font-family: inherit;
            font-size: 1.15rem;
            color: var(--warm-paper);
            outline: none;
            transition: var(--transition-fast);
        }

        .newsletter-input-matrix input::placeholder {
            color: rgba(255, 248, 240, 0.6);
        }

        .newsletter-input-matrix input:focus {
            border-bottom-color: var(--bronze);
        }

        .archive-submit-btn {
            background-color: var(--warm-paper);
            color: var(--deep-burgundy);
            border: none;
            padding: 18px;
            font-family: inherit;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: var(--transition-fast);
            margin-top: 12px;
        }

        .archive-submit-btn:hover {
            background-color: var(--bronze);
            color: var(--warm-paper);
        }

        .newsletter-feedback {
            margin-top: 20px;
            font-size: 1.2rem;
            font-style: italic;
            display: none;
        }

        .leave-archive-link {
            font-size: 0.95rem;
            text-decoration: underline;
            color: var(--warm-paper);
            opacity: 0.7;
            cursor: pointer;
            display: inline-block;
            margin-top: 16px;
        }

        /* SECTION 9 — FINAL MANIFESTO SCREEN */
        .manifesto-screen {
            background-color: var(--sage);
            color: var(--warm-paper);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px;
        }

        .manifesto-inner {
            max-width: 1000px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.5s ease;
        }

        .manifesto-inner.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .manifesto-inner p {
            font-size: 3.2rem;
            line-height: 1.4;
            font-weight: 400;
        }

        .manifesto-inner p span {
            display: block;
            margin-top: 24px;
            font-style: italic;
            color: var(--deep-burgundy);
        }

        /* SUBPAGE VIEW — COLLECTIONS NARRATIVES */
        .collections-narratives-hero {
            background-color: var(--white);
            padding: 140px 80px 80px 80px;
            text-align: center;
            border-bottom: 1px solid rgba(192, 133, 82, 0.2);
        }

        .collections-narratives-hero h1 {
            font-size: 5rem;
            font-weight: 400;
            margin-bottom: 20px;
        }

        /* SUBPAGE VIEW — JOURNAL ARCHIVE */
        .journal-manifest-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .journal-entry-card {
            border-bottom: 1px solid rgba(192, 133, 82, 0.3);
            padding-bottom: 40px;
        }

        .journal-entry-card .j-meta {
            font-size: 0.9rem;
            color: var(--bronze);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .journal-entry-card h3 {
            font-size: 2.2rem;
            font-weight: 400;
            margin-bottom: 16px;
        }

        /* SUBPAGE VIEW — LEGAL DOCS OVERLAYS */
        .legal-document-layout {
            max-width: 800px;
            margin: 0 auto;
            padding: 160px 40px 100px 40px;
        }

        .legal-document-layout h1 {
            font-size: 4rem;
            color: var(--deep-burgundy);
            margin-bottom: 40px;
        }

        .legal-document-layout h2 {
            font-size: 1.8rem;
            margin-top: 32px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .legal-document-layout p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--black);
            margin-bottom: 20px;
        }

        /* ARTISTIC EDITORIAL FOOTER */
        footer {
            background-color: var(--warm-paper);
            padding: 100px 80px 40px 80px;
            border-top: 1px solid var(--bronze);
        }

        .footer-split-composition {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
            padding-bottom: 80px;
        }

        .footer-left-title h2 {
            font-size: 5rem;
            line-height: 0.9;
            font-weight: 700;
            color: var(--deep-burgundy);
            text-transform: uppercase;
            letter-spacing: -0.04em;
        }

        .footer-right-directories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .footer-directory-col h4 {
            font-size: 1.1rem;
            text-transform: uppercase;
            color: var(--bronze);
            margin-bottom: 24px;
            letter-spacing: 0.05em;
        }

        .footer-directory-col ul {
            list-style: none;
        }

        .footer-directory-col ul li {
            margin-bottom: 14px;
        }

        .footer-directory-col ul li a {
            color: var(--black);
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition-fast);
        }

        .footer-directory-col ul li a:hover {
            color: var(--deep-burgundy);
            padding-left: 6px;
        }

        .footer-base-signature {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(192, 133, 82, 0.3);
            display: flex;
            justify-content: space-between;
            color: var(--black);
            opacity: 0.8;
            font-size: 1rem;
        }

        /* COMPREHENSIVE RESPONSIVE DESIGN ADJUSTMENTS */
        @media (max-width: 1024px) {
            .hero-oversized-heading { font-size: 6rem; }
            .cover-image-container { height: 420px; width: 65%; }
            .quote-wall h2 { font-size: 3rem; }
            .story-panel { grid-template-columns: 100%; gap: 40px; }
            .story-panel .story-image-frame { height: 450px; }
            .burgundy-newsletter-block { grid-template-columns: 100%; gap: 40px; padding: 40px; }
            .footer-split-composition { grid-template-columns: 100%; gap: 60px; }
        }

        @media (max-width: 768px) {
            .vertical-brandbar { display: none; }
            .editorial-top-nav { left: 0; padding: 0 24px; }
            .center-links { display: none; }
            .magazine-hamburger { display: flex; }
            main { margin-left: 0; }
            .editorial-canvas { padding: 80px 24px; }
            .hero-oversized-heading { font-size: 4rem; top: 120px; }
            .cover-image-container { position: relative; width: 100%; right: 0; top: 0; height: 350px; margin-top: 140px; }
            .floating-editorial-card { position: relative; bottom: 0; max-width: 100%; margin-top: 24px; }
            .essay-node { grid-template-columns: 100%; gap: 16px; }
            .corridor-title { font-size: 2.8rem; }
            .footer-left-title h2 { font-size: 3.5rem; }
        }


        .unsubscribe-matrix{
    margin-top:1rem;
}

.newsletter-feedback{
    display:none;
    margin-top:1rem;
    font-size:.9rem;
    letter-spacing:.5px;
}

.secondary-btn{
    background:transparent;
    border:1px solid var(--bronze);
    color:var(--bronze);
}

.secondary-btn:hover{
    background:var(--bronze);
    color:var(--warm-paper);
}