    /* --- DESIGN SYSTEM TOKENS --- */
        :root {
            --color-navy: #0A2947;
            --color-white: #FFFFFF;
            --color-black: #111111;
            --color-sage: #778873;
            --color-light-gray: #F8F9FA;
            --font-editorial: "Noto Serif", serif;
            --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* --- GLOBAL BASICS --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            background-color: var(--color-white);
            color: var(--color-black);
            font-family: var(--font-editorial);
            -webkit-font-smoothing: antialiased;
            scroll-behavior: smooth;
        }

        /* --- SCROLLBAR DESIGN --- */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--color-white);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--color-sage);
        }

        /* --- LAYOUT UTILITIES --- */
        section {
            position: relative;
            padding: 140px 8%;
            width: 100%;
            background-color: var(--color-white);
            overflow: hidden;
        }

        .editorial-para {
            font-size: 1.25rem;
            line-height: 2.1;
            font-weight: 300;
            color: #333333;
            max-width: 800px;
            margin: 0 auto;
            text-align: justify;
        }

        hr {
            border: none;
            border-top: 1px solid rgba(119, 136, 115, 0.2);
            margin: 80px 0;
        }

        /* --- LINKED CORE PAGES WRAPPER --- */
        .page-view {
            display: none;
            animation: fadeInPage 1s forwards cubic-bezier(0.25, 1, 0.5, 1);
        }

        .page-view.active-view {
            display: block;
        }

        @keyframes fadeInPage {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- HEADER & NAVIGATION COMPONENT --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: var(--color-white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--color-black);
            cursor: pointer;
            text-transform: uppercase;
            text-decoration: none;
        }

        .menu-trigger {
            font-size: 0.95rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition-medium);
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .menu-trigger:hover {
            color: var(--color-sage);
        }

        .hamburger-icon {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 24px;
        }

        .hamburger-icon span {
            width: 100%;
            height: 1px;
            background-color: var(--color-black);
            transition: var(--transition-medium);
        }

        /* --- FULL SCREEN DRAWER MENU --- */
        .navigation-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 550px;
            height: 100vh;
            background-color: var(--color-black);
            z-index: 2000;
            transition: var(--transition-slow);
            padding: 120px 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        }

        .navigation-drawer.drawer-open {
            right: 0;
        }

        .drawer-close {
            position: absolute;
            top: 35px;
            right: 50px;
            color: var(--color-white);
            font-size: 2.5rem;
            cursor: pointer;
            font-weight: 200;
            transition: var(--transition-medium);
        }

        .drawer-close:hover {
            transform: rotate(90deg);
            color: var(--color-sage);
        }

        .nav-links-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 40px;
        }

        .nav-link {
            color: var(--color-white);
            font-size: 3.2rem;
            text-decoration: none;
            font-weight: 300;
            transition: var(--transition-medium);
            display: inline-block;
            cursor: pointer;
        }

        .nav-link:hover {
            color: var(--color-sage);
            transform: translateX(15px);
        }

        .drawer-footer {
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
            letter-spacing: 1px;
            line-height: 1.6;
        }

        /* --- HOMEPAGE HERO SECTION --- */
        .hero-split-container {
            display: flex;
            width: 100%;
            height: 100vh;
            margin-top: 90px;
            position: relative;
        }

        .hero-side {
            flex: 1;
            background-size: cover;
            background-position: center;
            filter: brightness(0.9);
        }

        .hero-left {
            background-image: url('https://i.pinimg.com/736x/26/ba/a7/26baa7ab0f9fe6daae569b3caf2c0140.jpg');
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-right {
            background-image: url('https://i.pinimg.com/736x/f1/56/62/f156622c4c53e4736f6c8182741266d0.jpg');
        }

        /* FLOATING ELEVATED CENTRAL CARD */
        .hero-elevated-card {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 580px;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 4px;
            padding: 50px 45px;
            box-shadow: 0 30px 70px rgba(10, 41, 71, 0.08);
            text-align: center;
            z-index: 10;
        }

        .hero-elevated-card h1 {
            color: var(--color-navy);
            font-size: 2.2rem;
            font-weight: 400;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .hero-card-img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            margin: 0 auto 25px auto;
            border-radius: 2px;
            display: block;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .hero-card-text {
            font-size: 1rem;
            line-height: 1.9;
            color: #444444;
            font-weight: 300;
        }

        /* --- SECTION 2: REVEAL GALLERY --- */
        .reveal-section {
            background-color: var(--color-white);
            text-align: center;
        }

        .massive-title {
            font-size: 9vw;
            color: var(--color-navy);
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1;
            margin-bottom: 60px;
            text-transform: uppercase;
            pointer-events: none;
            user-select: none;
        }

        .reveal-gallery-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto 80px auto;
        }

        .reveal-card {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background-color: var(--color-light-gray);
        }

        .reveal-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- SECTION 3: ROTATING 3D IMAGE CAROUSEL --- */
        .carousel-section {
            background-color: var(--color-white);
            perspective: 1600px;
            text-align: center;
            padding-bottom: 180px;
        }

        .section-heading-navy {
            font-size: 2.5rem;
            color: var(--color-navy);
            margin-bottom: 100px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .stage-3d {
            position: relative;
            width: 320px;
            height: 420px;
            margin: 0 auto;
            transform-style: preserve-3d;
            transition: transform 0.1s linear;
        }

        .carousel-item-3d {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            backface-visibility: hidden;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            cursor: grab;
            user-select: none;
        }

        .carousel-item-3d:active {
            cursor: grabbing;
        }

        .carousel-item-3d img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        /* --- SECTION 4: DESIGN PHILOSOPHY --- */
        .philosophy-section {
            max-width: 1100px;
            margin: 0 auto;
        }

        .philosophy-block {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            padding: 40px 0;
        }

        .philosophy-left h3 {
            font-size: 1.8rem;
            color: var(--color-black);
            font-weight: 400;
            margin-bottom: 12px;
        }

        .philosophy-left quotes {
            font-style: italic;
            color: var(--color-sage);
            font-size: 1.1rem;
            display: block;
            line-height: 1.5;
        }

        .philosophy-right p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #444444;
            text-align: justify;
        }

        /* --- SECTION 5: DRAGGABLE PROJECT SHOWCASE --- */
        .showcase-section {
            padding-right: 0;
            padding-left: 0;
        }

        .showcase-section h2 {
            text-align: center;
            margin-bottom: 60px;
        }

        .draggable-viewport {
            width: 100%;
            overflow: hidden;
            cursor: grab;
            padding: 20px 5%;
        }

        .draggable-viewport:active {
            cursor: grabbing;
        }

        .track-horizontal {
            display: flex;
            gap: 60px;
            width: max-content;
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        .showcase-card {
            width: 420px;
            user-select: none;
        }

        .showcase-img-wrap {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }

        .showcase-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            transition: transform 0.6s ease;
        }

        .showcase-card:hover img {
            transform: scale(1.04);
        }

        .showcase-card h4 {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--color-black);
            letter-spacing: 1px;
        }

        /* --- SECTION 6: EDITORIAL REFLECTION --- */
        .reflection-section {
            text-align: center;
            background-color: var(--color-light-gray);
        }

        .reflection-section h5 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-sage);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .reflection-section .editorial-para {
            max-width: 750px;
            margin-bottom: 60px;
        }

        .reflection-square-img {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            margin: 0 auto;
            display: block;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        /* --- SECTION 7: SUBSCRIBE / UNSUBSCRIBE SPLIT --- */
        .split-subscribe-container {
            display: flex;
            width: 100%;
            min-height: 80vh;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .sub-left-panel {
            flex: 1;
            background-image: url('https://i.pinimg.com/736x/b2/bd/f9/b2bdf9ae56e697de2144b23e526bb0d3.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sub-floating-card {
            background: rgba(255, 255, 255, 0.98);
            padding: 40px;
            border-radius: 2px;
            max-width: 420px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            text-align: center;
        }

        .sub-floating-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--color-black);
        }

        .sub-floating-card .square-mini {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin: 15px auto;
            display: block;
        }

        .sub-floating-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #555555;
        }

        .sub-right-panel {
            flex: 1;
            background-color: var(--color-white);
            padding: 80px 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-title {
            font-size: 2.2rem;
            color: var(--color-navy);
            margin-bottom: 35px;
            font-weight: 400;
        }

        .journal-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input-group label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--color-sage);
            font-weight: 600;
        }

        .input-group input {
            padding: 16px;
            border: 1px solid #DDDDDD;
            font-family: var(--font-editorial);
            font-size: 1rem;
            outline: none;
            transition: var(--transition-medium);
            background-color: var(--color-light-gray);
        }

        .input-group input:focus {
            border-color: var(--color-navy);
            background-color: var(--color-white);
        }

        .submit-btn {
            background-color: var(--color-navy);
            color: var(--color-white);
            padding: 18px;
            border: none;
            font-family: var(--font-editorial);
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition-medium);
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: var(--color-black);
        }

        .unsub-trigger {
            margin-top: 25px;
            font-size: 0.85rem;
            color: #888888;
            text-align: center;
            cursor: pointer;
            text-decoration: underline;
            transition: var(--transition-medium);
        }

        .unsub-trigger:hover {
            color: var(--color-black);
        }

        /* STATUS NOTIFICATIONS */
        .form-message-space {
            margin-top: 20px;
            padding: 15px;
            font-size: 1rem;
            text-align: center;
            display: none;
            border-radius: 2px;
        }

        .message-success {
            display: block;
            background-color: #E6F4EA;
            color: #137333;
            border: 1px solid #C1E7C4;
        }

        /* --- INNER PAGES SPECIFIC COMPONENT STYLE --- */
        .inner-hero {
            width: 100%;
            height: 60vh;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 90px;
        }

        .inner-hero::before {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.4);
        }

        .inner-hero-title {
            position: relative;
            color: var(--color-white);
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 2px;
            z-index: 5;
            text-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .grid-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 60px 0;
        }

        .grid-gallery img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        /* --- FOOTER COMPONENT --- */
        footer {
            background-color: var(--color-black);
            color: var(--color-white);
            padding: 60px 5%;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links {
            display: flex;
            gap: 40px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition-medium);
            cursor: pointer;
        }

        .footer-links a:hover {
            color: var(--color-white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
            flex-wrap: wrap;
            gap: 15px;
        }

        /* --- LEGAL MODAL POPUPS --- */
        .legal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 5000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .legal-box {
            background: var(--color-white);
            padding: 50px;
            max-width: 700px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            border-radius: 4px;
        }

        .legal-box h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--color-navy);
        }

        .legal-box p {
            font-size: 1rem;
            line-height: 1.8;
            color: #444444;
            margin-bottom: 15px;
        }

        .close-legal {
            position: absolute;
            top: 20px; right: 25px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--color-black);
        }

        /* --- MOBILE RESPONSIVE ADAPTATIONS --- */
        @media(max-width: 992px) {
            .hero-split-container {
                flex-direction: column;
            }
            .hero-side { height: 50vh; }
            .hero-elevated-card { width: 85%; padding: 35px 25px; }
            .reveal-gallery-wrapper { grid-template-columns: 1fr; }
            .philosophy-block { grid-template-columns: 1fr; gap: 15px; }
            .split-subscribe-container { flex-direction: column; }
            .grid-gallery { grid-template-columns: 1fr 1fr; }
            .inner-hero-title { font-size: 2.8rem; }
        }

        @media(max-width: 600px) {
            section { padding: 80px 5%; }
            .massive-title { font-size: 12vw; }
            .grid-gallery { grid-template-columns: 1fr; }
            .footer-top { flex-direction: column; align-items: flex-start; }
            .footer-links { flex-direction: column; gap: 15px; }
        }

        .principles-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.principle-card{
    background:#FBF9F6;
    padding:45px 35px;
    border:1px solid rgba(10,22,40,0.08);
    position:relative;
    transition:all .4s ease;
    min-height:280px;
}

.principle-card:hover{
    transform:translateY(-10px);
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.principle-number{
    display:block;
    font-size:48px;
    font-weight:300;
    color:rgba(10,22,40,0.12);
    margin-bottom:20px;
    line-height:1;
    font-family:Georgia, serif;
}

.principle-card h4{
    font-size:22px;
    color:#0A1628;
    margin-bottom:18px;
    font-weight:500;
    letter-spacing:.5px;
}

.principle-card p{
    color:#555;
    line-height:1.9;
    font-size:15px;
}

.principle-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:#0A1628;
    transform:scaleY(0);
    transform-origin:top;
    transition:.4s ease;
}

.principle-card:hover::before{
    transform:scaleY(1);
}

.project-highlights-section{
    background:#F8F6F3;
}

.section-intro{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    display:block;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:12px;
    color:#8B8378;
    margin-bottom:12px;
}

.project-highlights-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.project-highlight-card{
    background:#fff;
    overflow:hidden;
    transition:.45s ease;
    border:1px solid rgba(10,22,40,0.08);
}

.project-highlight-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.project-image{
    height:280px;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.project-highlight-card:hover img{
    transform:scale(1.08);
}

.project-content{
    padding:35px;
    position:relative;
}

.project-number{
    display:block;
    font-size:52px;
    line-height:1;
    color:rgba(10,22,40,0.12);
    font-family:Georgia, serif;
    margin-bottom:18px;
}

.project-content h3{
    font-size:24px;
    color:#0A1628;
    margin-bottom:18px;
    font-weight:500;
}

.project-content p{
    color:#666;
    line-height:1.9;
    font-size:15px;
}

.project-content::before{
    content:"";
    position:absolute;
    top:0;
    left:35px;
    width:60px;
    height:2px;
    background:#0A1628;
}
.editorial-topics-section{
    background:#F8F6F3;
}

.editorial-header{
    text-align:center;
    margin-bottom:70px;
}

.editorial-label{
    display:block;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:12px;
    color:#8B8378;
    margin-bottom:12px;
}

.editorial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.editorial-card{
    background:#fff;
    padding:40px;
    border:1px solid rgba(10,22,40,.08);
    position:relative;
    transition:.4s ease;
}

.editorial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.editorial-category{
    display:inline-block;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#8B8378;
    margin-bottom:18px;
}

.editorial-card h3{
    font-size:26px;
    line-height:1.3;
    margin-bottom:18px;
    color:#0A1628;
    font-weight:500;
}

.editorial-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
    font-size:15px;
}

.editorial-card a{
    text-decoration:none;
    color:#0A1628;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}

.editorial-card a::after{
    content:" →";
    transition:.3s;
}

.editorial-card:hover a::after{
    margin-left:8px;
}

.editorial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#0A1628;
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
}

.editorial-card:hover::before{
    transform:scaleX(1);
}

.unsubscribe-panel {
    display: none;
    margin-top: 25px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #faf8f5;
    border-radius: 4px;
    animation: fadeIn 0.4s ease;
}

.unsubscribe-panel.active {
    display: block;
}

.unsubscribe-btn {
    background-color: #555;
}

.unsubscribe-btn:hover {
    background-color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-space {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.form-message-space.message-success {
    display: block;
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #C1E7C4;
}

.form-message-space.message-error {
    display: block;
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}