        /* --- LUXURY MINIMALIST DESIGN SYSTEM --- */
        :root {
            --primary: #e77700;
            --secondary: #8AA624;
            --bg-soft: #DBE4C9;
            --white: #faffb9;
            --dark-matter: #1f3e00; /* Never pure black */
            --space-editorial: 6rem;
            --transition-fluid: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-editorial);
            background-color: var(--white);
            color: var(--dark-matter);
            overflow-x: hidden;
            font-weight: 200; /* Ultra thin weights for body text */
            line-height: 1.7;
        }

        /* --- TYPOGRAPHY UTILITIES --- */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 0.95;
        }

        p {
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-fluid);
        }

        /* --- HARD NO TO CORPORATE ROUNDED UI --- */
        button, input, textarea, select {
            border-radius: 0 !important;
        }

        /* --- INTERACTIVE SEARCH MODAL LAYER --- */
        #searchOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--bg-soft);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10% 5%;
            transform: translateY(-100%);
            transition: var(--transition-fluid);
        }
        #searchOverlay.active {
            transform: translateY(0);
        }
        .search-input-wrap {
            border-bottom: 2px solid var(--dark-matter);
            display: flex;
            align-items: center;
        }
        .search-input-wrap input {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            font-family: var(--font-editorial);
            font-size: 4rem;
            text-transform: uppercase;
            font-weight: 900;
            color: var(--dark-matter);
        }
        .close-search {
            position: absolute;
            top: 3rem;
            right: 3rem;
            font-size: 1rem;
            text-transform: uppercase;
            cursor: pointer;
            font-weight: 700;
        }

        /* --- TRANSPARENT SWISS-GRID HEADER --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            height: 100px;
            width: 100%;
            padding: 2.5rem 3.5rem;
            display: grid;
            grid-template-columns: 2fr 6fr 2fr;
            align-items: center;
            z-index: 1000;
            background: transparent;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        header.nav-hidden {
            transform: translateY(-100%);
        }
        .logo-box img {
            object-fit: contain;
            background-color: #191B18;
            margin-top: -3rem;
        }
        .logo-text-fallback {
            font-weight: 900;
            font-size: 1.3rem;
            letter-spacing: -0.05em;
        }
        .nav-center-links {
            display: flex;
                        margin-top: -8rem;

            justify-content: center;
            gap: 3.5rem;
        }
        .nav-center-links a {
            font-weight: 400;
            text-transform: uppercase;
            font-size: 0.85rem;
            
            letter-spacing: 0.15em;
            position: relative;
        }
        .nav-center-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary);
            transition: var(--transition-fluid);
        }
        .nav-center-links a:hover::after, .nav-center-links a.active::after {
            width: 100%;
        }
        .header-right-tools {
            display: flex;
            justify-content: flex-end;
            align-items: center;
                                    margin-top: -6rem;

            gap: 2.5rem;
        }
        .search-trigger-icon {
            width: 22px;
            height: 22px;
            border: 1.5px solid var(--dark-matter);
            border-radius: 50% !important; /* Circular requirement explicitly specified */
            cursor: pointer;
            position: relative;
            transition: var(--transition-fluid);
        }
        .search-trigger-icon::after {
            content: '';
            position: absolute;
            width: 1.5px;
            height: 7px;
            background: var(--dark-matter);
            transform: rotate(-45deg);
            bottom: -4px;
            right: -2px;
        }
        .search-trigger-icon:hover {
            transform: scale(1.1);
            border-color: var(--primary);
        }

        /* --- THE RESPONSIVE HAMBURGER INFRASTRUCTURE --- */
        .hamburger-node {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1500;
        }
        .hamburger-node span {
            display: block;
            width: 26px;
            height: 1.5px;
            background: var(--dark-matter);
            transition: var(--transition-fluid);
        }
        .hamburger-node.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .hamburger-node.open span:nth-child(2) { opacity: 0; }
        .hamburger-node.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        .mobile-magazine-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--bg-soft);
            z-index: 1400;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            gap: 1.5rem;
            transform: translateX(100%);
            transition: var(--transition-fluid);
        }
        .mobile-magazine-menu.open {
            transform: translateX(0);
        }
        .mobile-magazine-menu a {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(28, 30, 26, 0.1);
            padding-bottom: 0.5rem;
        }

        /* --- WRAPPER MANAGEMENT FOR COHESIVE PAGES --- */
        .magazine-page-view {
            display: none;
            animation: viewFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }
        .magazine-page-view.active-view {
            display: block;
        }
        @keyframes viewFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ==================== HOME PAGE COMPOSITIONS ==================== */
        .hero-architectural-envelope {
            min-height: 170vh;
            padding: 12rem 3.5rem 4rem 3.5rem;
            display: grid;
            grid-template-columns: 3.5fr 5fr 3.5fr;
            gap: 2rem;
            position: relative;
            background: var(--white);
        }
        .hero-left-headline {
            font-size: 4rem;
            font-weight: 900;
            line-height: 0.85;
            text-transform: uppercase;
            color: var(--dark-matter);
            position: sticky;
            top: 15rem;
            height: fit-content;
        }
        .hero-center-offset-box {
            padding-top: 15vh;
            position: relative;
        }
        .floating-offset-img {
            width: 90%;
            height: 92vh;
            object-fit: cover;
            box-shadow: 0 45px 90px rgba(0,0,0,0.07);
            filter: sepia(10%);
        }
        @keyframes editorialFloat {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-25px) rotate(1.5deg); }
        }
        .hero-right-editorial-stack {
            padding-top: 2vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 90%;
        }
        .mini-editorial-p {
            font-size: 0.8rem;
            font-weight: 300;
            text-align: justify;
            max-width: 290px;
            line-height: 1.6;
            opacity: 0.9;
        }
        .floating-statistics-panel {
            margin-top: 12rem;
            border-top: 1px solid var(--dark-matter);
            padding-top: 2.5rem;
        }
        .stat-editorial-row {
            margin-bottom: 3.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: elementReveal 1s ease forwards 0.5s;
        }
        @keyframes elementReveal {
            to { opacity: 1; transform: translateY(0); }
        }
        .stat-editorial-row h3 {
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .stat-editorial-row p {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-top: 0.4rem;
            font-weight: 400;
        }
        .hero-landscape-bottom-wrap {
            grid-column: span 3;
            width: 100%;
            margin-top: 8rem;
            overflow: hidden;
        }
        .hero-landscape-bottom-wrap img {
            width: 100%;
            height: 75vh;
            object-fit: cover;
            transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .hero-landscape-bottom-wrap:hover img {
            transform: scale(1.05);
        }

        /* SECTION 2: BLANK QUOTE CHASM */
        .section-blank-quote {
            min-height: 90vh;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-editorial);
        }
        .enormous-editorial-quote {
            font-size: 4.8rem;
            font-weight: 200;
            max-width: 1200px;
            text-align: center;
            line-height: 1.15;
            letter-spacing: -0.03em;
        }

        /* SECTION 3: ASYMMETRICAL UNBALANCED GRID */
        .asymmetrical-magazine-layout {
            padding: var(--space-editorial) 3.5rem;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 6rem 3rem;
            align-items: center;
            background: var(--white);
        }
        .mag-grid-cell img {
            width: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            transition: var(--transition-fluid);
        }
        .mag-grid-cell img:hover {
            filter: grayscale(0%);
        }
        .cell-width-8 { grid-column: span 8; }
        .cell-width-8 img { height: 85vh; }
        .cell-width-4 { grid-column: span 4; padding-left: 2rem; }
        .cell-width-5 { grid-column: span 5; }
        .cell-width-5 img { height: 55vh; }
        .cell-width-7 { grid-column: span 7; padding-right: 3rem; }
        .cell-tall-6 { grid-column: span 6; }
        .cell-tall-6 img { height: 95vh; }
        .cell-wide-6 { grid-column: span 6; }
        .cell-wide-6 img { height: 55vh; }
        .editorial-caption-sub {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: 0.75rem;
            color: var(--primary);
            font-weight: 700;
        }
        .large-editorial-p {
            font-size: 1.3rem;
            font-weight: 300;
            line-height: 1.6;
        }

        /* SECTION 4: EDITORIAL TIMELINE INDEX */
        .timeline-section-container {
            padding: var(--space-editorial) 4rem;
            background: #FAF9F5;
        }
        .timeline-vertical-backbone {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            border-left: 1px solid rgba(28, 30, 26, 0.15);
            padding-left: 4rem;
        }
        .timeline-interactive-row {
            position: relative;
            margin-bottom: 6rem;
            cursor: pointer;
        }
        .timeline-interactive-row::before {
            content: '';
            position: absolute;
            left: calc(-4rem - 4.5px);
            top: 0.8rem;
            width: 8px;
            height: 8px;
            background: var(--dark-matter);
            transition: var(--transition-fluid);
        }
        .timeline-interactive-row:hover::before {
            background: var(--primary);
            transform: scale(1.5);
        }
        .timeline-year-node {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--dark-matter);
            transition: var(--transition-fluid);
        }
        .timeline-story-expansion {
            max-height: 0;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            font-size: 1.1rem;
            color: #555852;
            margin-top: 0.75rem;
            max-width: 650px;
        }
        .timeline-interactive-row.active-node .timeline-story-expansion {
            max-height: 300px;
        }
        .timeline-interactive-row.active-node .timeline-year-node {
            color: var(--primary);
        }

        /* SECTION 5: HUGE PARALLAX LANDSCAPE AND FLOATING ACCENTS */
        .huge-parallax-canvas {
            height: 130vh;
            position: relative;
            overflow: hidden;
            background-image: url('https://i.pinimg.com/1200x/d2/5b/1d/d25b1dceadefd032624d6073380cce9e.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .floating-colored-editorial-card {
            position: absolute;
            background: var(--bg-soft);
            padding: 4.5rem;
            max-width: 440px;
            box-shadow: 0 50px 100px rgba(0,0,0,0.08);
            top: 35%;
            left: 12%;
            transition: transform 0.2s ease-out;
        }

        /* SECTION 6: LARGE SPLIT BALANCED CRITIQUE */
        .large-split-critique {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            background: var(--white);
            align-items: center;
            position: relative;
        }
        .critique-left-philosophy {
            padding: 8rem;
        }
        .critique-left-philosophy h2 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 2.5rem;
        }
        .critique-right-portrait {
            position: relative;
            height: 100%;
        }
        .critique-right-portrait img {
            width: 85%;
            height: 110%;
            object-fit: cover;
            position: absolute;
            top: -5%;
            right: 5%;
            box-shadow: 0 40px 80px rgba(0,0,0,0.08);
            z-index: 10;
        }

        /* SECTION 7: EDITORIAL GALLERY MASONRY */
        .gallery-editorial-masonry {
            padding: var(--space-editorial) 3.5rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3.5rem;
            background: var(--white);
        }
        .masonry-editorial-unit {
            display: flex;
            flex-direction: column;
        }
        .masonry-editorial-unit img {
            width: 100%;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }
        .m-size-tall img { height: 70vh; }
        .m-size-wide { grid-column: span 2; }
        .m-size-wide img { height: 42vh; }
        .m-size-square img { height: 42vh; }
        .m-size-portrait img { height: 55vh; }
        .masonry-editorial-unit h5 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        .masonry-editorial-unit p {
            font-size: 0.8rem;
            font-weight: 300;
        }

        /* SECTION 8: OVERSIZED MAGAZINE PREVIEWS */
        .oversized-magazine-previews {
            padding: var(--space-editorial) 3.5rem;
            background: #FAF9F5;
        }
        .preview-article-strip {
            display: grid;
            grid-template-columns: 1fr 4fr 7fr;
            padding: 4rem 0;
            border-bottom: 1px solid rgba(28, 30, 26, 0.15);
            position: relative;
            cursor: pointer;
            align-items: flex-start;
        }
        .preview-article-strip:first-child {
            border-top: 1px solid rgba(28, 30, 26, 0.15);
        }
        .strip-index-number {
            font-size: 2.5rem;
            font-weight: 200;
            color: var(--primary);
        }
        .strip-heading-text {
            font-size: 2.5rem;
            font-weight: 900;
        }
        .strip-hover-image-reveal {
            position: absolute;
            right: 15%;
            top: -30%;
            width: 280px;
            height: 360px;
            object-fit: cover;
            opacity: 0;
            pointer-events: none;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
            z-index: 100;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        .preview-article-strip:hover .strip-hover-image-reveal {
            opacity: 1;
            transform: scale(1.05) translateY(15px);
        }

        /* SECTION 9: INTERACTIVE COVERAGE INDEX INDEXING INDEX */
        .interactive-coverage-index {
            display: grid;
            grid-template-columns: 4.5fr 7.5fr;
            min-height: 90vh;
            background: var(--white);
            border-top: 1px solid rgba(28, 30, 26, 0.1);
        }
        .coverage-menu-panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 4.5rem;
            border-right: 1px solid rgba(28, 30, 26, 0.08);
        }
        .coverage-index-node {
            font-size: 3.5rem;
            font-weight: 200;
            text-transform: uppercase;
            margin-bottom: 2rem;
            cursor: pointer;
            transition: var(--transition-fluid);
            color: rgba(28, 30, 26, 0.25);
        }
        .coverage-index-node.active-node, .coverage-index-node:hover {
            color: var(--dark-matter);
            padding-left: 20px;
        }
        .coverage-viewer-panel {
            padding: 8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .viewer-display-canvas {
            width: 100%;
            height: 55vh;
            object-fit: cover;
            margin-bottom: 3rem;
            transition: opacity 0.4s ease;
        }

        /* SECTION 10: EDITORIAL AMBIENT TESTIMONIALS */
        .editorial-ambient-testimonials {
            background-color: var(--bg-soft);
            padding: 12rem 4rem;
            position: relative;
            text-align: center;
        }
        .testimonial-editorial-scaffold {
            max-width: 1000px;
            margin: 0 auto;
        }
        .testimonial-editorial-scaffold h3 {
            font-size: 2.8rem;
            font-weight: 300;
            line-height: 1.4;
            letter-spacing: -0.02em;
        }
        .ambient-quote-glyph {
            font-size: 16rem;
            position: absolute;
            top: 0rem;
            left: 5rem;
            color: var(--secondary);
            opacity: 0.25;
            font-family: serif;
        }

        /* SECTION 11: SUBSCRIPTION INDEX PREVIEWS */
        .subscription-journal-scaffold {
            padding: var(--space-editorial) 4rem;
            text-align: center;
            background: var(--white);
        }
        .subscription-journal-scaffold h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }
        .minimalist-form-module {
            max-width: 650px;
            margin: 4rem auto 0 auto;
        }
        .form-underline-input {
            display: flex;
            border-bottom: 2px solid var(--dark-matter);
            padding-bottom: 0.75rem;
        }
        .form-underline-input input {
            flex: 1;
            border: none;
            outline: none;
            font-family: var(--font-editorial);
            font-size: 1.2rem;
            padding: 0.5rem;
            background: transparent;
        }
        .form-editorial-actions {
            display: flex;
            gap: 2rem;
            margin-top: 2.5rem;
        }
        .form-editorial-actions button {
            background: none;
            border: 1px solid var(--dark-matter);
            padding: 1rem 2.5rem;
            font-family: var(--font-editorial);
            text-transform: uppercase;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-fluid);
        }
        .form-editorial-actions button:hover {
            background: var(--dark-matter);
            color: var(--white);
        }
        .form-response-wireframe {
            margin-top: 2rem;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--secondary);
        }

        /* ==================== INTERNAL PAGE ARCHITECTURES ==================== */
        .internal-editorial-hero {
            padding: 14rem 3.5rem 6rem 3.5rem;
            min-height: 95vh;
            display: grid;
            grid-template-columns: 5.5fr 6.5fr;
            gap: 5rem;
            align-items: center;
            background: #FAF9F5;
        }
        .internal-hero-title-architecture h1 {
            font-size: 6rem;
            font-weight: 900;
            line-height: 0.9;
        }
        .internal-hero-image-architecture img {
            width: 100%;
            height: 65vh;
            object-fit: cover;
            box-shadow: 0 35px 70px rgba(0,0,0,0.06);
        }

        /* ABOUT PAGE LONGER DISCOURSE */
        .long-form-historical-essay {
            padding: var(--space-editorial) 4rem;
            background: var(--white);
        }
        .essay-text-columns {
            max-width: 1000px;
            margin: 0 auto;
        }
        .essay-text-columns h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        .essay-text-columns p {
            font-size: 1.15rem;
            line-height: 1.85;
            margin-bottom: 3rem;
            text-align: justify;
        }
        .behind-the-scenes-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-top: 6rem;
        }
        .behind-the-scenes-gallery img {
            width: 100%;
            height: 45vh;
            object-fit: cover;
        }

        /* COVERAGE PAGE LONGER CATALOG */
        .printed-catalog-scaffold {
            padding: var(--space-editorial) 3.5rem;
            background: var(--white);
        }
        .catalog-accordion-row {
            padding: 4rem 0;
            border-bottom: 1px solid rgba(28, 30, 26, 0.2);
        }
        .catalog-accordion-row:first-child {
            border-top: 1px solid rgba(28, 30, 26, 0.2);
        }
        .catalog-summary-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .catalog-summary-trigger h2 {
            font-size: 3rem;
            font-weight: 900;
        }
        .catalog-expanded-details {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-fluid);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            padding-top: 0;
        }
        .catalog-accordion-row.active-row .catalog-expanded-details {
            max-height: 800px;
            padding-top: 3rem;
        }
        .catalog-image-strip {
            display: flex;
            gap: 1.5rem;
        }
        .catalog-image-strip img {
            width: 50%;
            height: 35vh;
            object-fit: cover;
        }

        /* PROJECTS PAGE LONGER STREAM */
        .portfolio-alternating-stream {
            padding: var(--space-editorial) 3.5rem;
            background: var(--white);
        }
        .stream-project-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            margin-bottom: 14rem;
            align-items: center;
        }
        .stream-project-block:nth-child(even) {
            direction: rtl;
        }
        .stream-project-block:nth-child(even) .project-narrative-box {
            direction: ltr;
        }
        .stream-project-block img {
            width: 100%;
            height: 85vh;
            object-fit: cover;
        }
        .project-narrative-box h3 {
            font-size: 3.2rem;
            margin-bottom: 2rem;
        }

        /* JOURNAL PAGE LONGER MAGAZINE STYLE */
        .journal-magazine-scaffold {
            padding: var(--space-editorial) 3.5rem;
            display: grid;
            grid-template-columns: 8fr 4fr;
            gap: 5rem;
            background: var(--white);
        }
        .journal-featured-cover-box img {
            width: 100%;
            height: 80vh;
            object-fit: cover;
            margin-bottom: 3rem;
        }
        .journal-multi-column-prose {
            column-count: 2;
            column-gap: 3.5rem;
            text-align: justify;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .journal-sidebar-archive h4 {
            font-size: 1.3rem;
            border-bottom: 2px solid var(--dark-matter);
            padding-bottom: 0.75rem;
            margin-bottom: 2rem;
        }
        .archive-issue-link {
            display: block;
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed rgba(28, 30, 26, 0.15);
        }

        /* CONTACT PAGE ARCHITECTURE */
        .contact-split-canvas {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 110vh;
        }
        .contact-form-side {
            padding: 8rem 5rem;
            background: var(--bg-soft);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .contact-form-side h2 {
            font-size: 4rem;
            margin-bottom: 3rem;
        }
        .contact-form-side input, .contact-form-side textarea {
            width: 100%;
            padding: 1.25rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(28, 30, 26, 0.15);
            background: transparent;
            font-family: var(--font-editorial);
            font-size: 1rem;
        }
        .contact-form-side button {
            background: var(--dark-matter);
            color: var(--white);
            border: none;
            padding: 1.25rem 3.5rem;
            font-family: var(--font-editorial);
            text-transform: uppercase;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-fluid);
            width: fit-content;
        }
        .contact-form-side button:hover {
            background: var(--primary);
        }
        .contact-info-block {
            margin-top: 4rem;
            display: flex;
            gap: 3rem;
        }

        /* ==================== PRIVACY & TERMS EXHAUSTIVE DISCLOSURES ==================== */
        .legal-exhaustive-scaffold {
            padding: 14rem 4rem var(--space-editorial) 4rem;
            max-width: 1150px;
            margin: 0 auto;
            background: var(--white);
        }
        .legal-exhaustive-scaffold h1 {
            font-size: 5rem;
            margin-bottom: 3.5rem;
            border-bottom: 4px solid var(--dark-matter);
            padding-bottom: 1.5rem;
        }
        .legal-segment {
            margin-bottom: 5rem;
        }
        .legal-segment h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        .legal-segment p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-align: justify;
            color: #333630;
        }

        /* ==================== GLOBAL ARCHITECTURAL FOOTER ==================== */
        footer {
            background: #191B18; /* Rich near-black architectural color */
            color: var(--bg-soft);
            padding: 8rem 3.5rem 3rem 3.5rem;
        }
        .footer-uneven-columns {
            display: grid;
            grid-template-columns: 2fr 2.5fr 2.5fr 5fr;
            gap: 4rem;
            border-bottom: 1px solid rgba(219, 228, 201, 0.15);
            padding-bottom: 6rem;
        }
        .footer-column-node h5 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 2rem;
            letter-spacing: 0.15em;
        }
        .footer-column-node ul {
            list-style: none;
        }
        .footer-column-node ul li {
            margin-bottom: 1rem;
        }
        .footer-column-node ul li a {
            color: var(--bg-soft);
            font-size: 0.95rem;
        }
        .footer-column-node ul li a:hover {
            color: var(--primary);
        }
        .footer-bottom-line {
            display: flex;
            justify-content: space-between;
            padding-top: 3rem;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            opacity: 0.5;
        }

        /* ==================== SYSTEM RESPONSIVE MEDIA BREAKPOINTS ==================== */
        @media (max-width: 1100px) {
            header { padding: 2rem; grid-template-columns: 1fr auto; }
            .nav-center-links { display: none; }
            .hamburger-node { display: flex; }
            .hero-architectural-envelope { grid-template-columns: 1fr; min-height: auto; padding: 10rem 2rem 2rem 2rem; }
            .hero-left-headline { font-size: 5rem; position: relative; top: 0; }
            .hero-center-offset-box { padding-top: 2rem; }
            .floating-offset-img { width: 100%; height: 50vh; }
            .hero-right-editorial-stack { padding-top: 3rem; }
            .floating-statistics-panel { margin-top: 4rem; }
            .hero-landscape-bottom-wrap { grid-column: span 1; margin-top: 4rem; }
            .hero-landscape-bottom-wrap img { height: 45vh; }
            .section-blank-quote { padding: 4rem 2rem; }
            .enormous-editorial-quote { font-size: 2.8rem; }
            .asymmetrical-magazine-layout { grid-template-columns: 1fr; gap: 4rem; padding: 4rem 2rem; }
            .cell-width-8, .cell-width-4, .cell-width-5, .cell-width-7, .cell-tall-6, .cell-wide-6 { grid-column: span 1; padding: 0 !important; }
            .cell-width-8 img, .cell-width-5 img, .cell-tall-6 img, .cell-wide-6 img { height: 45vh; }
            .large-split-critique { grid-template-columns: 1fr; }
            .critique-left-philosophy { padding: 4rem 2rem; }
            .critique-right-portrait img { position: relative; width: 100%; height: 50vh; right: 0; top: 0; }
            .gallery-editorial-masonry { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
            .m-size-wide { grid-column: span 1; }
            .m-size-tall img, .m-size-wide img, .m-size-square img, .m-size-portrait img { height: 45vh; }
            .preview-article-strip { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0; }
            .strip-hover-image-reveal { display: none; }
            .interactive-coverage-index { grid-template-columns: 1fr; }
            .coverage-menu-panel { padding: 4rem 2rem; }
            .coverage-viewer-panel { padding: 4rem 2rem; }
            .internal-editorial-hero { grid-template-columns: 1fr; gap: 3rem; padding: 10rem 2rem 4rem 2rem; }
            .internal-hero-title-architecture h1 { font-size: 3.5rem; }
            .internal-hero-image-architecture img { height: 45vh; }
            .behind-the-scenes-gallery { grid-template-columns: 1fr; }
            .catalog-expanded-details { grid-template-columns: 1fr; gap: 3rem; }
            .catalog-image-strip { flex-direction: column; }
            .catalog-image-strip img { width: 100%; }
            .stream-project-block { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 6rem; }
            .stream-project-block img { height: 50vh; }
            .journal-magazine-scaffold { grid-template-columns: 1fr; gap: 4rem; padding: 4rem 2rem; }
            .journal-multi-column-prose { column-count: 1; }
            .contact-split-canvas { grid-template-columns: 1fr; }
            .contact-form-side { padding: 4rem 2rem; }
            .footer-uneven-columns { grid-template-columns: 1fr; gap: 3rem; }
        }
