        :root {
            --primary-dark: #343131;
            --luxury-white: #FFFFFF;
            --soft-lime: #F3FEB8;
            --luxury-gold: #FFDE4D;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Urbanist', sans-serif;
            background-color: #f8ff71f6;
            color: var(--primary-dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography & Variables */
        h1, h2, h3, h4, .giant-title {
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -2px;
        }
        
        p {
            font-weight: 300;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .label-caps {
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Structure Elements */
        section {
            padding: 140px 60px;
            position: relative;
            overflow: hidden;
        }

        .img-editorial-wrapper {
            overflow: hidden;
            background-color: #f0f0f0;
            position: relative;
        }

        .img-editorial-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .img-editorial-wrapper:hover img {
            transform: scale(1.03);
        }

        /* Navigation Architecture */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: rgba(255, 136, 33, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(52, 49, 49, 0.06);
        }

        .logo-container img {
            height: 222px;
            width: auto;
            margin-top: 3rem;
            object-fit: contain;
        }

        .nav-editorial-links {
            display: flex;
            gap: 45px;
        }

        .nav-editorial-links a {
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--primary-dark);
            transition: opacity 0.3s ease;
        }

        .nav-editorial-links a:hover, .nav-editorial-links a.active {
            opacity: 0.5;
        }

        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            border: none;
            background: none;
            z-index: 1001;
        }

        .hamburger-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--primary-dark);
            transition: 0.3s transform ease;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--primary-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            gap: 25px;
            z-index: 999;
            transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-nav-overlay.active {
            right: 0;
        }

        .mobile-nav-overlay a {
            color: #f8ff71f6;
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: -1px;
        }

        /* View Switching Machinery */
        .page-view-node {
            display: none;
            margin-top: 80px;
        }

        .page-view-node.active-node {
            display: block;
        }

        /* Universal Inline Marquee Layout */
        .marquee-container-row {
            overflow: hidden;
            color: #eb682f;
            white-space: nowrap;
            display: flex;
            width: 100%;
        }

        .marquee-scroll-track {
            display: inline-block;
            animation: continuousMarquee 30s linear infinite;
        }

        @keyframes continuousMarquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* --- HOME PAGE ARCHITECTURE --- */
        #home-hero {
            height: 100vh;
            background-color: #f8ff71f6;
            display: flex;
            align-items: center;
            padding: 0 60px;
            position: relative;
        }

        .hero-left-meta {
            position: absolute;
            top: 140px;
            left: 60px;
        }

        .hero-massive-title {
            font-weight: 900;
            font-size: 9.5vw;
            color: var(--primary-dark);
            width: 60%;
            z-index: 2;
            position: relative;
        }

        .hero-collage-composite {
            position: absolute;
            right: 60px;
            top: 15vh;
            width: 40vw;
            height: 75vh;
        }

        .collage-img {
            position: absolute;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .collage-large {
            width: 75%;
            height: 70%;
            top: 0;
            right: 0;
            z-index: 1;
        }

        .collage-medium {
            width: 55%;
            height: 50%;
            bottom: 5%;
            left: 0;
            z-index: 3;
        }

        .collage-small {
            width: 35%;
            height: 30%;
            top: 25%;
            left: 15%;
            z-index: 2;
        }

        .hero-bottom-ticker-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #f8ff71f6;
        }

        .hero-ticker-line {
            height: 1px;
            background-color: var(--soft-lime);
            width: 100%;
        }

        .hero-bottom-ticker-bar .marquee-scroll-track span {
            font-size: 1.2rem;
            font-weight: 500;
            text-transform: uppercase;
            padding: 20px 40px;
            display: inline-block;
            letter-spacing: 2px;
        }

        /* Section 02 - Curated Chapters */
        #sec-curated-chapters {
            background-color: var(--soft-lime);
        }

        .chapters-asymmetric-grid {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-top: 80px;
            gap: 30px;
        }

        .chapter-editorial-block {
            position: relative;
        }

        .chapter-editorial-block:nth-child(1) { width: 22%; margin-top: 40px; .img-editorial-wrapper { height: 420px; } p { text-align: left; margin-top: 15px; } }
        .chapter-editorial-block:nth-child(2) { width: 28%; margin-top: 0px; .img-editorial-wrapper { height: 560px; } p { text-align: right; margin-top: 30px; } }
        .chapter-editorial-block:nth-child(3) { width: 20%; margin-top: 120px; .img-editorial-wrapper { height: 350px; } p { text-align: center; margin-top: 10px; } }
        .chapter-editorial-block:nth-child(4) { width: 24%; margin-top: -30px; .img-editorial-wrapper { height: 490px; } p { text-align: left; padding-left: 20px; margin-top: 20px; } }

        .chapter-editorial-block h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        /* Section 03 - House Journal */
        .journal-magazine-spread {
            display: grid;
            grid-template-columns: 4fr 3fr 5fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .journal-spread-left { height: 650px; }
        .journal-spread-center { padding: 0 30px; }
        .journal-spread-right {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .journal-square-stack { height: 290px; }
        
        .journal-bottom-quote-block {
            border-top: 1px solid rgba(52, 49, 49, 0.1);
            padding-top: 50px;
            margin-top: 40px;
            text-align: center;
        }

        .journal-bottom-quote-block blockquote {
            font-size: 3rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.2;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Section 04 - Fixed Architecture */
        #sec-fixed-architecture {
            height: 80vh;
            background-image: url('https://i.pinimg.com/736x/bd/0e/29/bd0e29eae7102fc7721d208c5bb3e23c.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

        .fixed-architecture-overlay-title {
            color: #f8ff71f6;
            font-size: 6rem;
            font-weight: 900;
            text-align: center;
            line-height: 0.95;
            text-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Section 05 - Design Layers */
        .collage-layers-container {
            position: relative;
            height: 700px;
            margin-top: 60px;
            width: 100%;
        }

        .layer-base-img {
            position: absolute;
            left: 10%;
            top: 50px;
            width: 45%;
            height: 500px;
            z-index: 1;
        }

        .layer-overlapping-img {
            position: absolute;
            right: 15%;
            top: 180px;
            width: 35%;
            height: 420px;
            z-index: 3;
        }

        .layer-overlapping-text {
            position: absolute;
            left: 45%;
            top: 450px;
            width: 25%;
            background-color: #f8ff71f6;
            padding: 40px;
            z-index: 4;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .layer-gold-square {
            position: absolute;
            left: 8%;
            top: 420px;
            width: 120px;
            height: 120px;
            background-color: var(--luxury-gold);
            z-index: 2;
        }

        /* Section 06 - Collection Wall */
        #sec-collection-wall {
            background-color: var(--primary-dark);
            color: #f8ff71f6;
            padding-right: 0;
        }

        .horizontal-scroll-container {
            display: flex;
            gap: 50px;
            overflow-x: auto;
            padding: 60px 0;
            scrollbar-width: none;
        }

        .horizontal-scroll-container::-webkit-scrollbar {
            display: none;
        }

        .collection-strip-item {
            flex: 0 0 75vw;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .collection-strip-item .img-editorial-wrapper {
            height: 500px;
            width: 100%;
        }

        .collection-caption-meta {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-right: 60px;
        }

        .collection-caption-meta h3 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .collection-caption-meta p {
            max-width: 400px;
            opacity: 0.8;
        }

        /* Section 07 - Material Library */
        #sec-material-library {
            background-color: var(--luxury-gold);
            padding: 0;
            display: flex;
            height: 90vh;
        }

        .material-panel {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-right: 1px solid rgba(52, 49, 49, 0.15);
            transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 60px 40px;
        }

        .material-panel:last-child {
            border-right: none;
        }

        .material-panel-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.15;
            transition: opacity 0.6s, transform 0.6s;
            filter: grayscale(100%);
        }

        .material-panel h2 {
            font-size: 4rem;
            font-weight: 900;
            position: relative;
            z-index: 2;
        }

        .material-panel-contents {
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s, transform 0.4s;
        }

        .material-panel:hover {
            flex: 1.8;
        }

        .material-panel:hover .material-panel-bg {
            opacity: 0.85;
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        .material-panel:hover .material-panel-contents {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        /* Section 08 - Room Editorials */
        .room-editorial-subrow {
            display: flex;
            align-items: center;
            gap: 80px;
            margin-bottom: 120px;
        }

        .room-editorial-subrow:last-child {
            margin-bottom: 0;
            flex-direction: column;
            text-align: center;
        }

        .room-subrow-img-half {
            width: 55%;
            height: 580px;
        }

        .room-subrow-text-half {
            width: 45%;
        }

        .room-subrow-text-half h3 {
            font-size: 3.5rem;
            margin-bottom: 25px;
        }

        .room-subrow-center-full {
            width: 80%;
            height: 650px;
            margin: 0 auto 40px;
        }

        /* Section 09 - Residence Stories */
        #sec-residence-stories {
            background-color: var(--soft-lime);
        }

        .stories-container-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-top: 60px;
        }

        .story-editorial-card {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .story-editorial-card .img-editorial-wrapper {
            height: 450px;
        }

        .story-editorial-card h3 {
            font-size: 2rem;
            font-weight: 700;
        }

        .story-read-link {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-decoration: none;
            color: var(--primary-dark);
            align-self: flex-start;
            border-bottom: 2px solid var(--primary-dark);
            padding-bottom: 4px;
            margin-top: 10px;
        }

        /* Section 10 - Luxury Marquee */
        #sec-luxury-marquee {
            background-color: var(--primary-dark);
            padding: 40px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        #sec-luxury-marquee .marquee-scroll-track span {
            font-size: 7vw;
            font-weight: 900;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
            padding: 0 30px;
            letter-spacing: 2px;
            display: inline-block;
        }

        /* Section 11 - Members Journal */
        .members-journal-layout {
            display: grid;
            grid-template-columns: 4fr 4fr 4fr;
            gap: 60px;
            align-items: flex-start;
        }

        .member-column-box h3 {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }

        .magazine-editorial-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .magazine-editorial-form input[type="email"] {
            border: none;
            border-bottom: 1px solid var(--primary-dark);
            padding: 15px 0;
            font-family: inherit;
            font-size: 1.1rem;
            outline: none;
            background: transparent;
        }

        .magazine-editorial-form button {
            background-color: var(--primary-dark);
            color: #f8ff71f6;
            border: none;
            padding: 15px 30px;
            font-family: inherit;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            align-self: flex-start;
            transition: opacity 0.3s;
        }

        .magazine-editorial-form button:hover {
            opacity: 0.8;
        }

        .unsubscribe-link-anchor {
            font-size: 0.9rem;
            text-transform: uppercase;
            color: rgba(52, 49, 49, 0.6);
            text-decoration: underline;
            cursor: pointer;
            display: inline-block;
            margin-top: 15px;
        }

        /* Section 12 - Architectural Footer */
        footer {
            background-color: var(--primary-dark);
            color:#f8ff71f6;
            min-height: 950px;
            padding: 100px 60px 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .footer-monumental-header {
            text-align: center;
            width: 100%;
            margin-bottom: 60px;
        }

        .footer-logo-stroke-text {
            font-size: 11.5vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
            letter-spacing: -3px;
            line-height: 0.8;
        }

        .footer-architectural-zones {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            z-index: 5;
            position: relative;
            margin-bottom: 120px;
        }

        .footer-zone-block h4 {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: var(--luxury-gold);
        }

        .footer-zone-block p {
            font-size: 1rem;
            opacity: 0.7;
        }

        .footer-zone-block ul {
            list-style: none;
        }

        .footer-zone-block ul li {
            margin-bottom: 12px;
        }

        .footer-zone-block ul li a {
            color: #f8ff71f6;
            text-decoration: none;
            opacity: 0.7;
            font-size: 1rem;
            transition: opacity 0.3s;
            cursor: pointer;
        }

        .footer-zone-block ul li a:hover {
            opacity: 1;
        }

        .footer-zone-input-wrap {
            display: flex;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .footer-zone-input-wrap input {
            background: transparent;
            border: none;
            outline: none;
            color: #f8ff71f6;
            font-family: inherit;
            flex-grow: 1;
        }

        .footer-zone-input-wrap button {
            background: transparent;
            border: none;
            color: var(--luxury-gold);
            font-family: inherit;
            text-transform: uppercase;
            font-weight: 700;
            cursor: pointer;
        }

        .footer-floating-card-wrapper {
            width: 100%;
            height: 320px;
            margin-bottom: 60px;
            z-index: 2;
            position: relative;
        }

        .footer-bottom-strip {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            font-size: 0.9rem;
            opacity: 0.6;
        }

        .footer-bottom-strip .center-note { text-align: center; }
        .footer-bottom-strip .right-socials { display: flex; gap: 20px; justify-content: flex-end; }
        .footer-bottom-strip .right-socials a { color: inherit; text-decoration: none; }

        /* --- COLLECTIONS VIEW PAGE ARCHITECTURE --- */
        .collections-vertical-text-wrapper {
            position: relative;
            margin-top: 60px;
        }

        .collections-giant-vertical-title {
            font-size: 12vw;
            font-weight: 900;
            line-height: 0.8;
            color: var(--primary-dark);
            margin-bottom: 40px;
        }

        .collections-floating-imagery-grid {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .collections-layer-card {
            width: 33.33%;
            height: 480px;
        }

        .category-scroller-strip {
            background-color: var(--soft-lime);
            padding: 25px 0;
            margin: 80px -60px;
        }

        .category-scroller-strip span {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 0 40px;
        }

        .collections-editorial-showcase-row {
            margin-bottom: 120px;
        }

        .collections-editorial-showcase-row .full-width-img-box {
            height: 700px;
            width: 100%;
            margin-bottom: 30px;
        }

        .collections-showcase-meta-block {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .collections-showcase-meta-block h2 { font-size: 3.5rem; }
        .collections-showcase-meta-block .design-notes-box { max-width: 500px; }

        /* --- LIVING SPACES PAGE ARCHITECTURE --- */
        .floorplan-hero-container {
            position: relative;
            width: 100%;
            height: 85vh;
            background-color: #f5f5f5;
        }

        .floorplan-interactive-pin {
            position: absolute;
            background-color: var(--primary-dark);
            color: #f8ff71f6;
            padding: 12px 24px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: all 0.3s;
        }

        .floorplan-interactive-pin:hover {
            background-color: var(--luxury-gold);
            color: var(--primary-dark);
            transform: scale(1.05);
        }

        .pin-living { top: 25%; left: 30%; }
        .pin-bedroom { top: 40%; right: 20%; }
        .pin-kitchen { bottom: 35%; left: 15%; }
        .pin-workspace { bottom: 20%; right: 40%; }

        .spaces-rotating-layouts-block {
            margin-top: 100px;
        }

        .space-layout-chapter-row {
            display: flex;
            gap: 80px;
            align-items: center;
            margin-bottom: 140px;
        }

        .space-layout-chapter-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .space-layout-chapter-row .space-img-pane {
            width: 50%;
            height: 600px;
        }

        .space-layout-chapter-row .space-text-pane {
            width: 50%;
        }

        .space-layout-chapter-row .space-text-pane h2 {
            font-size: 4rem;
            margin-bottom: 30px;
        }

        /* --- DESIGN JOURNAL PAGE ARCHITECTURE --- */
        .journal-cover-mockup-grid {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 60px;
            align-items: flex-end;
            border-bottom: 2px solid var(--primary-dark);
            padding-bottom: 60px;
            margin-bottom: 100px;
        }

        .journal-cover-title-area h1 {
            font-size: 7.5vw;
            margin-top: 20px;
            margin-bottom: 40px;
        }

        .journal-cover-meta-strip {
            display: flex;
            gap: 40px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .journal-cover-image-holder {
            height: 680px;
        }

        .journal-articles-magazine-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .journal-article-excerpt-box {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .journal-article-excerpt-box .img-editorial-wrapper {
            height: 440px;
        }

        .journal-article-excerpt-box h3 {
            font-size: 2.2rem;
        }

        /* --- ABOUT PAGE ARCHITECTURE --- */
        .founder-letter-frame {
            max-width: 900px;
            margin: 0 auto;
        }

        .founder-letter-frame h1 {
            font-size: 5rem;
            margin-bottom: 50px;
        }

        .founder-editorial-body-grid {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 60px;
            margin-top: 60px;
        }

        .founder-portrait-box {
            height: 520px;
        }

        .signature-graphic-mock {
            font-size: 2.5rem;
            font-style: italic;
            font-family: serif;
            margin-top: 40px;
            border-top: 1px solid rgba(52, 49, 49, 0.2);
            padding-top: 20px;
        }

        .about-modular-chapters-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            margin-top: 120px;
        }

        .about-chapter-node {
            background-color: var(--soft-lime);
            padding: 50px;
        }

        .about-chapter-node h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        /* --- CONTACT PAGE ARCHITECTURE --- */
        .contact-minimal-workspace {
            display: grid;
            grid-template-columns: 6fr 6fr;
            gap: 100px;
            margin-top: 60px;
        }

        .contact-minimal-workspace h1 {
            font-size: 6.5rem;
            line-height: 0.85;
            margin-bottom: 40px;
        }

        .contact-intake-form-box {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .contact-editorial-field {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .contact-editorial-field label {
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
        }

        .contact-editorial-field input, .contact-editorial-field textarea {
            border: none;
            border-bottom: 1px solid var(--primary-dark);
            padding: 15px 0;
            font-family: inherit;
            font-size: 1.1rem;
            outline: none;
            background: transparent;
        }

        .contact-editorial-field textarea {
            resize: none;
        }

        .contact-form-submit-btn {
            background-color: var(--primary-dark);
            color: #f8ff71f6;
            border: none;
            padding: 20px 40px;
            font-family: inherit;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            align-self: flex-start;
            transition: background-color 0.3s;
        }

        .contact-form-submit-btn:hover {
            background-color: var(--luxury-gold);
            color: var(--primary-dark);
        }

        /* --- EDITORIAL LEGAL MODALS / FRAMES --- */
        .legal-editorial-content-frame {
            max-width: 900px;
            margin: 60px auto;
        }

        .legal-editorial-content-frame h1 {
            font-size: 4rem;
            margin-bottom: 40px;
        }

        .legal-editorial-content-frame h2 {
            font-size: 2rem;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .legal-editorial-content-frame p {
            margin-bottom: 20px;
        }

        /* --- RESPONSIVITY BREAKPOINTS --- */
        @media (max-width: 1200px) {
            section { padding: 80px 30px; }
            .nav-editorial-links { display: none; }
            .hamburger-btn { display: flex; }
            
            #home-hero { flex-direction: column; height: auto; padding-top: 140px; padding-bottom: 80px; align-items: flex-start; }
            .hero-massive-title { width: 100%; font-size: 14vw; }
            .hero-collage-composite { position: relative; right: auto; top: auto; width: 100%; height: 50vh; margin-top: 40px; }
            
            .chapters-asymmetric-grid { flex-direction: column; width: 100%; gap: 60px; }
            .chapter-editorial-block { width: 100% !important; margin: 0 !important; }
            
            .journal-magazine-spread, .collections-floating-imagery-grid, .about-modular-chapters-grid,
            .journal-articles-magazine-grid, .founder-editorial-body-grid, .contact-minimal-workspace,
            .members-journal-layout, .footer-architectural-zones, .space-layout-chapter-row {
                grid-template-columns: 1fr !important;
                flex-direction: column !important;
                gap: 40px;
            }

            .space-layout-chapter-row .space-img-pane, .space-layout-chapter-row .space-text-pane {
                width: 100% !important;
            }

            .room-editorial-subrow { flex-direction: column !important; gap: 40px; }
            .room-subrow-img-half, .room-subrow-text-half, .room-subrow-center-full { width: 100% !important; }
            
            .collections-showcase-meta-block { flex-direction: column; gap: 20px; }
            .floorplan-hero-container { height: 50vh; }
            .footer-bottom-strip { grid-template-columns: 1fr; gap: 20px; text-align: center; }
            .footer-bottom-strip .right-socials { justify-content: center; }
        }
