        /* --- DESIGN SYSTEM ARCHITECTURE --- */
        :root {
            --primary-olive: #8AA624;
            --soft-bg: #FAF7F3;
            --deep-slate: #273F4F;
            --dark-accent: #273F4F;
            --light-gray: #F4F2ED;
            --white: #FFFFFF;
            --font-main: 'Jost', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- GLOBAL RESET & EDITORIAL CORE --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--soft-bg);
            color: var(--deep-slate);
            font-family: var(--font-main);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            line-height: 1.7;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* --- HELPER STYLES & LAYOUT ELEMENTS --- */
        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 4rem;
        }
        @media (max-width: 991px) {
            .container { padding: 0 2rem; }
        }
        .section-spacer {
            padding: 10rem 0;
        }
        .editorial-title-large {
            font-size: clamp(3.5rem, 7vw, 7.5rem);
            font-weight: 200;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
        }
        .editorial-subtitle {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--primary-olive);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }
        .paragraph-editorial {
            font-size: 1.25rem;
            font-weight: 300;
            max-width: 38rem;
            color: rgba(39, 63, 79, 0.85);
        }
        .accent-line {
            height: 1px;
            background-color: var(--primary-olive);
            opacity: 0.3;
            width: 100%;
            margin: 4rem 0;
        }

        /* --- STICKY EDITORIAL NAVIGATION & HAMBURGER SYSTEM --- */
        .editorial-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #68686850;
            border-bottom: 1px solid rgba(39, 63, 79, 0.05);
            transition: var(--transition-smooth);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 6.5rem;
        }
        .brand-logo {
            font-size: 1.75rem;
            font-weight: 300;
            letter-spacing: -0.02em;
            color: var(--deep-slate);
        }
        .brand-logo span {
            color: var(--primary-olive);
            font-weight: 600;
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        .nav-link {
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary-olive);
            transition: var(--transition-smooth);
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        /* Mobile Hamburger Controls */
        .hamburger-trigger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1010;
        }
        .hamburger-bar {
            width: 28px;
            height: 1px;
            background-color: var(--deep-slate);
            transition: var(--transition-smooth);
        }
        .nav-mobile-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--soft-bg);
            z-index: 1005;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            transition: var(--transition-smooth);
        }
        .nav-mobile-overlay.open {
            right: 0;
        }
        .nav-mobile-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .nav-mobile-item a {
            font-size: 2.5rem;
            font-weight: 200;
        }

        @media (max-width: 991px) {
            .nav-desktop { display: none; }
            .hamburger-trigger { display: flex; }
        }

        /* --- SECTION 1: EDITORIAL COVER HERO --- */
        .hero-cover {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 750px;
            display: flex;
            align-items: center;
            background-color: #e5e2dd;
            overflow: hidden;
            padding-top: 6.5rem;
        }
        .hero-placeholder-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(39,63,79,0.2), rgba(39,63,79,0.4)), url('https://i.pinimg.com/1200x/2b/7c/13/2b7c138bc93c0745b08cbdb4358ccb42.jpg') center/cover no-repeat;
            transform: scale(1.05);
            z-index: 1;
        }
        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            color: var(--white);
        }
        .hero-title {
            font-size: clamp(4rem, 9vw, 9.5rem);
            font-weight: 100;
            line-height: 0.95;
            letter-spacing: -0.04em;
            margin-bottom: 2.5rem;
        }
        .hero-meta {
            display: flex;
            gap: 4rem;
            align-items: flex-start;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-meta { flex-direction: column; gap: 1.5rem; }
        }

        /* --- SECTION 2: PHILOSOPHY STATEMENT --- */
        .philosophy-strip {
            background-color: var(--white);
        }
        .philosophy-text-giant {
            font-size: clamp(2rem, 4.2vw, 4.5rem);
            font-weight: 200;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: var(--deep-slate);
        }
        .philosophy-text-giant span {
            color: var(--primary-olive);
        }

        /* --- SECTION 3: ARCHITECTURAL GALLERY GRID --- */
        .arch-grid-layout {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 2.5rem;
        }
        .arch-item {
            position: relative;
            overflow: hidden;
            background-color: var(--light-gray);
        }
        .arch-img-box {
            overflow: hidden;
            width: 100%;
            height: 100%;
        }
        .arch-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }
        .arch-item:hover .arch-img-box img {
            transform: scale(1.04);
        }
        .arch-details-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem;
            background: linear-gradient(transparent, rgba(39, 63, 79, 0.9));
            color: var(--white);
            opacity: 0;
            transition: var(--transition-smooth);
        }
        .arch-item:hover .arch-details-overlay {
            opacity: 1;
        }
        .size-large { grid-column: span 7; height: 600px; }
        .size-medium { grid-column: span 5; height: 450px; margin-top: auto; }
        .size-tall { grid-column: span 4; height: 650px; }
        .size-wide { grid-column: span 8; height: 480px; }

        @media (max-width: 991px) {
            .size-large, .size-medium, .size-tall, .size-wide {
                grid-column: span 12;
                height: 400px;
                margin-top: 0;
            }
        }

        /* --- SECTION 4: PROGRESSIVE CHRONOLOGICAL TIMELINE --- */
        .timeline-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding-left: 3rem;
            border-left: 1px solid rgba(138, 166, 36, 0.3);
        }
        .timeline-node {
            position: relative;
            margin-bottom: 6rem;
        }
        .timeline-node::before {
            content: '';
            position: absolute;
            left: calc(-3rem - 6px);
            top: 0.5rem;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background-color: var(--primary-olive);
            border: 4px solid var(--soft-bg);
        }
        .timeline-node-step {
            font-size: 0.9rem;
            color: var(--primary-olive);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }
        .timeline-node-title {
            font-size: 2.25rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        /* --- SECTION 5: SPLIT ESSAY SPREAD --- */
        .split-essay-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        @media (max-width: 991px) {
            .split-essay-grid { grid-template-columns: 1fr; gap: 3rem; }
        }
        .essay-pullquote {
            font-size: 2.5rem;
            font-weight: 200;
            line-height: 1.3;
            border-left: 3px solid var(--primary-olive);
            padding-left: 2rem;
            margin: 3rem 0;
            color: var(--deep-slate);
        }

        /* --- SECTION 13: ARCHITECTURAL BEFORE/AFTER SLIDER --- */
        .comparison-studio-wrapper {
            position: relative;
            width: 100%;
            height: 650px;
            overflow: hidden;
            background-color: var(--light-gray);
        }
        .comparison-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .comparison-panel img {
            width: 1440px;
            height: 650px;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .panel-before {
            z-index: 2;
            width: 50%;
            border-right: 2px solid var(--white);
        }
        .panel-after {
            z-index: 1;
        }
        .slider-handle-bar {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background-color: var(--white);
            z-index: 3;
            pointer-events: none;
            transform: translateX(-50%);
        }
        .slider-handle-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: var(--deep-slate);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            pointer-events: none;
        }
        .slider-control-input {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: ew-resize;
            z-index: 4;
        }

        /* --- SECTION 21: EDITORIAL ACCORDION (FAQ) --- */
        .accordion-block {
            max-width: 850px;
            margin: 0 auto;
        }
        .accordion-row {
            border-bottom: 1px solid rgba(39, 63, 79, 0.1);
            padding: 2rem 0;
        }
        .accordion-trigger-btn {
            width: 100%;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            cursor: pointer;
            font-family: var(--font-main);
            color: var(--deep-slate);
        }
        .accordion-trigger-btn h4 {
            font-size: 1.75rem;
            font-weight: 300;
        }
        .accordion-icon-marker {
            font-size: 1.5rem;
            font-weight: 200;
            transition: var(--transition-smooth);
        }
        .accordion-panel-content {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .accordion-panel-content p {
            padding-top: 1.5rem;
            font-size: 1.15rem;
            font-weight: 300;
            color: rgba(39, 63, 79, 0.8);
        }
        .accordion-row.active .accordion-panel-content {
            max-height: 250px;
        }
        .accordion-row.active .accordion-icon-marker {
            transform: rotate(45deg);
        }

        /* --- LEGAL AND LONGFORM TYPOGRAPHY LAYOUT --- */
        .legal-editorial-grid {
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 5rem;
        }
        @media (max-width: 991px) {
            .legal-editorial-grid { grid-template-columns: 1fr; gap: 3rem; }
        }
        .legal-menu-sticky {
            position: sticky;
            top: 10rem;
            height: max-content;
        }
        .legal-ordered-list {
            list-style: none;
            counter-reset: legal-counter;
        }
        .legal-clause-node {
            counter-increment: legal-counter;
            margin-bottom: 4rem;
        }
        .legal-clause-node::before {
            content: "§ " counter(legal-counter) ".0";
            display: block;
            font-size: 0.95rem;
            text-transform: uppercase;
            color: var(--primary-olive);
            margin-bottom: 0.75rem;
            letter-spacing: 0.1em;
            font-weight: 500;
        }
        .legal-clause-heading {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        /* --- SIGNATURE COMPREHENSIVE FOOTER --- */
        .editorial-footer {
            background-color: var(--deep-slate);
            color: rgba(255, 255, 255, 0.7);
            padding-top: 8rem;
            padding-bottom: 4rem;
            position: relative;
        }
        .footer-brand-title {
            font-size: 3rem;
            font-weight: 200;
            color: var(--white);
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }
        .footer-matrix {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
        }
        @media (max-width: 991px) {
            .footer-matrix { grid-template-columns: 1fr 1fr; gap: 3rem; }
        }
        @media (max-width: 576px) {
            .footer-matrix { grid-template-columns: 1fr; }
        }
        .footer-column-heading {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--white);
            margin-bottom: 2rem;
            font-weight: 400;
        }
        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .footer-links-list a:hover {
            color: var(--primary-olive);
            padding-left: 4px;
        }
        .footer-base {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 3rem;
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }
        @media (max-width: 768px) {
            .footer-base { flex-direction: column; gap: 1.5rem; text-align: center; }
        }

        /* --- PRE-BUILT PAGES MANAGEMENT LAYER --- */
        .app-view-panel {
            display: none;
        }
        .app-view-panel.active-panel {
            display: block;
        }
