        /* --- GLOBAL CORE & DESIGN SYSTEM --- */
        :root {
            --warm-stone: #EDE9E6;
            --muted-olive: #819067;
            --text-black: #111111;
            --white: #FFFFFF;
            --font-editorial: 'Roboto Slab', serif;
            --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--warm-stone);
            color: var(--text-black);
            font-family: var(--font-editorial);
            font-weight: 300;
            line-height: 1.75;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        p {
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-premium);
        }

        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* --- GLOBAL HEADER & MECHANICAL BEHAVIOR --- */
        header {
            position: fixed;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(320px, 35vw, 550px); /* Exactly aligned with the narrow center content card width */
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 2rem;
            background: var(--warm-stone);
            border: 1px solid rgba(17, 17, 17, 0.08);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        }

        header.header-hidden {
            transform: translate(-50%, -150%);
            opacity: 0;
        }

        header.header-visible {
            transform: translate(-50%, -1rem);
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }

        .logo-container {
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: -0.04em;
            cursor: pointer;
            text-transform: uppercase;
        }

        .hamburger {
            background: none;
            border: none;
            cursor: pointer;
            width: 24px;
            height: 14px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 1010;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 1.5px;
            background-color: var(--text-black);
            transition: var(--transition-premium);
        }

        /* MENU OVERLAY FRAMEWORK */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--warm-stone);
            z-index: 1005;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: var(--transition-premium);
        }

        .menu-overlay.open {
            transform: translateY(0);
        }

        .menu-items {
            list-style: none;
            text-align: center;
        }

        .menu-items li {
            margin: 2rem 0;
        }

        .menu-items a {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 200;
            letter-spacing: -0.04em;
        }

        .menu-items a:hover {
            font-weight: 400;
            letter-spacing: 0.02em;
        }

        /* --- ROUTER VIEW ROUTING --- */
        .page-view {
            display: none;
            min-height: 100vh;
        }

        .page-view.active-view {
            display: block;
        }

        /* --- COMMON EDITORIAL LAYOUT COMPONENTS --- */
        .editorial-label {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 1rem;
            display: block;
        }

        .editorial-btn {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-bottom: 1px solid var(--text-black);
            padding-bottom: 0.25rem;
            display: inline-block;
            margin-top: 1rem;
            cursor: pointer;
        }

        .editorial-btn:hover {
            opacity: 0.6;
        }

        .page-hero-banner {
            width: 100%;
            height: 60vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 4rem 8%;
            position: relative;
        }

        .page-hero-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.15);
        }

        .page-hero-banner h1 {
            position: relative;
            z-index: 2;
            color: var(--white);
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        /* --- VIEW 1: HOME PAGE --- */
        .hero-video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-video-element {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .center-floating-card {
            position: relative;
            z-index: 2;
            width: clamp(20px, 35vw, 550px);
            height: 75vh;
            background-color: var(--warm-stone);
            padding: 4.5rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 30px 70px rgba(0,0,0,0.15);
        }

        .center-floating-card h1 {
            font-size: clamp(1.8rem, 2.5vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
            margin: 1rem 0 1.5rem 0;
        }

        .center-floating-card p {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .section-statement {
            background-color: var(--muted-olive);
            padding: 12rem 15%;
            text-align: center;
        }

        .section-statement p {
            font-size: clamp(1.6rem, 3vw, 2.6rem);
            font-weight: 300;
            line-height: 1.45;
            letter-spacing: -0.03em;
            color: var(--text-black);
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-grid-presentation {
            background-color: var(--warm-stone);
            padding: 8rem 8%;
        }

        .center-heading-block {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 6rem auto;
        }

        .center-heading-block h2 {
            font-size: clamp(2rem, 3.5vw, 3.6rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-top: 0.5rem;
        }

        .vertical-editorial-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .editorial-column {
            display: flex;
            flex-direction: column;
        }

        .column-image-wrapper {
            width: 100%;
            height: 55vh;
            background-size: cover;
            background-position: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .column-caption-title {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 0.8rem;
        }

        .column-caption-desc {
            font-size: 0.95rem;
            opacity: 0.85;
            line-height: 1.65;
        }

        .split-layout-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 85vh;
            background-color: var(--warm-stone);
        }

        .split-image-panel {
            background-size: cover;
            background-position: center;
            width: 100%;
        }

        .split-content-panel {
            padding: 8rem 12%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-content-panel h2 {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
        }

        .split-content-panel p {
            font-size: 1.05rem;
            margin-bottom: 1.8rem;
        }

        .full-image-feature {
            position: relative;
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 6rem;
        }

        .billboard-floating-card {
            background-color: var(--warm-stone);
            width: clamp(320px, 38vw, 580px);
            padding: 4rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .billboard-floating-card h2 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .insights-matrix-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .insight-flat-card {
            border-top: 1px solid rgba(17,17,17,0.15);
            padding-top: 2rem;
        }

        .insight-flat-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        /* --- VIEW 2: ABOUT PAGE --- */
        .editorial-longform-container {
            padding: 8rem 20% 6rem 20%;
            background-color: var(--warm-stone);
        }

        .editorial-longform-container h2 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
        }

        .editorial-longform-container p {
            font-size: 1.15rem;
            line-height: 1.85;
            margin-bottom: 2.5rem;
        }

        .three-column-principles {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            padding: 4rem 8% 8rem 8%;
            background-color: var(--warm-stone);
            border-top: 1px solid rgba(17,17,17,0.08);
        }

        .principle-block h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .team-section {
            padding: 8rem 8%;
            background-color: var(--white);
        }

        .team-matrix {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6rem 4rem;
            margin-top: 4rem;
        }

        .team-profile {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 2rem;
            align-items: start;
        }

        .team-portrait {
            height: 45vh;
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
        }

        .team-bio h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .team-bio span {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.5;
            display: block;
            margin-bottom: 1rem;
        }

        .team-bio p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- VIEW 3: SERVICES PAGE --- */
        .services-deep-stack {
            padding: 4rem 0;
            background-color: var(--warm-stone);
        }

        .service-row-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 65vh;
            border-bottom: 1px solid rgba(17,17,17,0.08);
        }

        .service-row-item:nth-child(even) {
            direction: rtl;
        }

        .service-row-item:nth-child(even) .service-row-content {
            direction: ltr;
        }

        .service-row-image {
            background-size: cover;
            background-position: center;
            width: 100%;
        }

        .service-row-content {
            padding: 6rem 12%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-row-content h2 {
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        /* --- VIEW 4: INSIGHTS MAGAZINE PAGE --- */
        .magazine-feed-layout {
            padding: 6rem 8%;
            background-color: var(--warm-stone);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
        }

        .magazine-article-card {
            background: transparent;
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid rgba(17,17,17,0.08);
            padding-bottom: 3rem;
        }

        .magazine-card-image {
            width: 100%;
            height: 45vh;
            background-size: cover;
            background-position: center;
            margin-bottom: 1.5rem;
        }

        .magazine-article-card h2 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        /* --- VIEW 5: CONTACT PAGE --- */
        .contact-split-view {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            min-height: 80vh;
            background-color: var(--warm-stone);
        }

        .contact-editorial-side {
            padding: 8rem 15% 8rem 20%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-editorial-side h2 {
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .contact-form-side {
            padding: 8rem 15% 8rem 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .editorial-form-group {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
        }

        .editorial-form-group label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            opacity: 0.6;
        }

        .editorial-form-group input,
        .editorial-form-group textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(17,17,17,0.3);
            font-family: var(--font-editorial);
            font-size: 1.1rem;
            padding: 0.5rem 0;
            color: var(--text-black);
            outline: none;
            transition: var(--transition-premium);
        }

        .editorial-form-group input:focus,
        .editorial-form-group textarea:focus {
            border-bottom-color: var(--text-black);
        }

        .form-submit-btn {
            background-color: var(--text-black);
            color: var(--warm-stone);
            border: none;
            font-family: var(--font-editorial);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 1.25rem 3rem;
            align-self: flex-start;
            cursor: pointer;
            transition: var(--transition-premium);
            margin-top: 1rem;
        }

        .form-submit-btn:hover {
            background-color: var(--muted-olive);
            color: var(--text-black);
        }

        /* --- GLOBAL FOOTER ARCHITECTURE --- */
        footer {
            background-color: var(--muted-olive);
            padding: 8rem 8% 4rem 8%;
            border-top: 1px solid rgba(17,17,17,0.05);
        }

        .footer-main-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .footer-brand-summary h3 {
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .footer-brand-summary p {
            font-size: 0.95rem;
            max-width: 320px;
            opacity: 0.85;
        }

        .footer-nav-column h4 {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 1.8rem;
            opacity: 0.6;
        }

        .footer-nav-column ul {
            list-style: none;
        }

        .footer-nav-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-nav-column ul li a:hover {
            padding-left: 6px;
        }

        .footer-statement-block {
            border-top: 1px solid rgba(17,17,17,0.12);
            padding-top: 4rem;
            text-align: center;
        }

        .footer-statement-block blockquote {
            font-size: clamp(1.4rem, 2.5vw, 2.2rem);
            font-weight: 400;
            line-height: 1.4;
            max-width: 950px;
            margin: 0 auto 3.5rem auto;
            letter-spacing: -0.02em;
        }

        .footer-legal-bar {
            font-size: 0.85rem;
            opacity: 0.6;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .legal-links-group a {
            margin-left: 1.5rem;
            text-decoration: underline;
        }

        /* --- RESPONSIVE STRUCTURAL OVERRIDES --- */
        @media(max-width: 1024px) {
            header { width: 90vw; }
            .vertical-editorial-columns, .insights-matrix-grid, .three-column-principles, .footer-main-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .split-layout-panel, .team-matrix, .team-profile, .service-row-item, .magazine-feed-layout, .contact-split-view {
                grid-template-columns: 1fr;
            }
            .service-row-item:nth-child(even) { direction: ltr; }
            .split-image-panel, .service-row-image { height: 45vh; }
            .column-image-wrapper { height: 45vh; }
            .contact-editorial-side { padding: 4rem 8%; }
            .contact-form-side { padding: 2rem 8% 6rem 8%; }
        }

        @media(max-width: 640px) {
            .center-floating-card { width: 90vw; height: auto; padding: 3rem 1.5rem; }
            .section-statement { padding: 6rem 8%; }
            .full-image-feature { padding: 2rem 1rem; align-items: center; }
            .billboard-floating-card { width: 100%; padding: 2.5rem 1.5rem; }
            .editorial-longform-container { padding: 4rem 8%; }
        }

        .footer-newsletter{
    margin-top:60px;
    padding-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
}

.newsletter-content{
    text-align:center;
    max-width:700px;
    margin:0 auto 30px;
}

.newsletter-label{
    display:block;
    font-size:.75rem;
    letter-spacing:.2em;
    margin-bottom:12px;
    opacity:.7;
}

.newsletter-content h3{
    margin-bottom:12px;
}

.newsletter-content p{
    line-height:1.8;
    opacity:.8;
}

.newsletter-forms{
    max-width:800px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.newsletter-form{
    display:flex;
    gap:10px;
}

.newsletter-form input{
    flex:1;
    padding:12px 14px;
    border:1px solid rgba(255,255,255,.15);
    background:transparent;
    color:inherit;
}

.newsletter-form button{
    padding:12px 18px;
    cursor:pointer;
}
