        :root {
            --bg-ivory: #FDFCFB;
            --bg-dark-ivory: #f6f1eb;
            --charcoal: #111111;
            --terracotta: #D14D28;
            --olive: #4A5D23;
            --font-sans: 'Fira Sans', sans-serif;
            --container-max: 1400px;
        }

        /* RESET & BASE */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            background-color: var(--bg-ivory); 
            color: var(--charcoal); 
            font-family: var(--font-sans); 
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container { 
            max-width: var(--container-max); 
            margin: 0 auto; 
            padding: 0 2rem; 
        }

        /* NAVIGATION - Bauhaus Grid Interface */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(253, 252, 251, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(26, 26, 26, 0.08);
            padding: 2rem 0;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .brand {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }

        .brand-desc {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            opacity: 0.4;
            margin-bottom: 4px;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .nav-links {
            display: flex;
            gap: 3.5rem;
            align-items: center;
        }

        .nav-links a {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--charcoal);
            letter-spacing: 0.3em;
            opacity: 1;
            transition: 0.3s ease;
             transform: scaleY(.9);
        }

        .nav-links a:hover {
            opacity: 1;
            color: var(--terracotta);
        }

        .nav-btn {
            padding: 0.4rem 2rem;
            border: 2px solid var(--charcoal);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            text-decoration: none;
            color: inherit;
            transition: 0.3s ease;
        }
        .nav-btn:hover {
            border: 2px solid var(--terracotta);
        }

        /* HERO - The Zenith Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 8rem;
            overflow: hidden;
        }

        /* Bauhaus Zen Sun */
        .zen-sun {
            position: absolute;
            left: 50%;
            top: 55%;
            transform: translate(-50%, -50%);
            width: 65vh;
            height: 65vh;
            background: var(--terracotta);
            border-radius: 50%;
            z-index: 0;
        }
        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            width: 100%;
            align-items: flex-end;
        }
        .hero-left {
            grid-column: span 8;
        }

        .vertical-mark {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5em;
            opacity: 0.3;
            margin-bottom: 3rem;
            display: block;
        }

        h1 {
            font-size: clamp(6rem, 16vw, 16rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 0.8;
            margin-bottom: 6rem;
        }

        .hero-right {
            grid-column: span 4;
            padding-left: 4rem;
            padding-bottom: 2rem;
        }

        .lead-text {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 3.5rem;
        }

        /* SECTIONS */
        .section-wrap {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            background: var(--bg-ivory);
        }
        .section-content {
            padding: 8rem 6rem;
    
        }
        .section-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            color: var(--terracotta);
            margin-bottom: 4rem;
            display: block;
        }
         .section-label.ivory{
            color: var(--bg-ivory);  
         }
        .ivory{
            background: var(--bg-ivory);  
         }
         .dark-ivory {
            background: var(--bg-dark-ivory);
         }

        h2 {
            font-size: clamp(3rem, 7vw, 9rem);
            font-weight: 700;
            letter-spacing: -0.05em;
            line-height: 0.9;
            margin-bottom: 5rem;
        }
        .pillar-list {
            list-style: none;
            display: grid;
            gap: 4rem;
        }
        .pillar-item {
            padding-left: 2rem;
            border-left: 1px solid rgba(26, 26, 26, 0.3);
        }
        .pillar-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
        }
        .pillar-desc {
            font-size: 1.125rem;
            color: rgba(26, 26, 26, 0.6);
            max-width: 400px;
            font-weight: 400;
        }
        .section-content.terracotta {
            background-color: var(--terracotta);
            color: var(--bg-ivory);
        }
        .section-media {
            background-color: var(--charcoal);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .section-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.1);
            opacity: 0.5;
            transition: 1.5s ease;
        }
        .section-media:hover img {
            opacity: 1;
            transform: scale(1.05);
        }
        .media-tag {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) rotate(-90deg);
            color: white;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1em;
            pointer-events: none;
            white-space: nowrap;
        }

        /* CALL TO ACTION */
        .mantra-section {
            padding: 12rem 0;
            text-align: center;
            background: var(--charcoal);
            color: var(--bg-ivory);
            border-bottom: 12px solid var(--terracotta);
        }
        .mantra-text {
            font-size: clamp(2.5rem, 10vw, 10rem);
            font-weight: 700;
            line-height: 0.9;
            letter-spacing: -0.05em;
            margin-bottom: 4rem;
        }


        /* ECOSYSTEM GRID */
        .ecosystem-section {
            padding: 8rem 0;
            border-bottom: 1px solid var(--charcoal);
        }
         .ecosystem-section.dark-ivory {
            background-color: var(--bg-dark-ivory);
        }
        .eco-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3px;
            background-color: var(--charcoal);
        }
        .eco-card {
            background-color: var(--bg-ivory);
            padding: 4rem;
            transition: 0.4s ease;
        }
        .eco-card:hover {
            background-color: var(--charcoal);
            color: white;
        }
        .eco-num {
            font-size: 12px;
            font-weight: 400;
            opacity: 0.8;
            margin-bottom: 2rem;
            display: block;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .eco-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .eco-desc {
            font-size: 1rem;
            opacity: 0.6;
            max-width: 300px;
            font-weight: 400;
        }
        .contact {
            margin: 40px 0; 
        }
        .contact a {
            text-decoration: none;
            color: var(--bg-ivory);
        }
        .mantra-section img {
            margin-bottom: 80px;
        }
        
                /* FOOTER */
        footer {
            padding: 4rem 0;
            background: var(--terracotta);
            color: white;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 4rem;
        }
        .footer-tag { 
            font-size: 12px; 
            text-transform: uppercase; 
            letter-spacing: 0.2em; 
            margin-top: 1rem;
        }
        .footer-brand h3 {
            margin: 10px 0;
        }
        .footer-links {
            display: flex;
            gap: 3rem;
        }
        .footer-links a { 
            text-decoration: none; color: inherit; transition: 0.3s;
        }
        .footer-links a:hover { 
            opacity: 1; color: var(--terracotta); 
        }
        
        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-grid, .section-wrap { display: block; }
            .hero-right, .section-content { padding: 4rem 2rem; border-right: none; }
            .section-media { height: 60vh; }
            h1 { margin-bottom: 0; }
            .zen-sun { top:50%; width: 60vh; height: 60vh; }
            nav .nav-links { display: none; }
            .eco-grid { grid-template-columns: 1fr; }
            .eco-card { padding: 3rem 2rem; }
        }