:root {
      /* Brand Palette */
      --c-red: #C94A2A;
      --c-green: #2A5C4E;
      --c-charcoal: #2C2625;
      --c-cream: #FBF7F2;
      --c-cream-dark: #F0EAE2;
      --c-white: #FFFFFF;
      --c-gold: #D4925A;
      
      --radius-organic: 20px 10px 24px 8px;
      --font-header: 'Playfair Display', serif;
      --font-body: 'Space Grotesk', sans-serif;
      --card-w: 100%;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background: var(--c-cream);
      color: var(--c-charcoal);
      font-family: var(--font-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: -1;
    }

    /* --- ATMOSPHERE BLOBS (New) --- */
    .blob {
      position: absolute;
      z-index: -1;
      filter: blur(90px);
      opacity: 0.06;
      border-radius: 50%;
      pointer-events: none;
      animation: float 20s infinite alternate ease-in-out;
    }
    .blob-1 { top: -200px; left: -200px; width: 800px; height: 800px; background: var(--c-red); }
    .blob-2 { top: 100px; right: -300px; width: 900px; height: 900px; background: var(--c-green); animation-delay: -10s; }
    
    @keyframes float {
      0% { transform: translate(0, 0); }
      100% { transform: translate(40px, 60px); }
    }

    h1, h2, h3 { font-family: var(--font-header); color: var(--c-charcoal); }
    .text-red { color: var(--c-red); }
    .container { max-width: 1440px; width: 100%; margin: 0 auto; padding: 0 60px; }
    
    /* --- Navigation --- */
    nav {
      padding: 30px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      margin: 0;
    }
    .logo {
      font-family: var(--font-header);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--c-charcoal);
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .nav-links a {
      margin-left: 40px;
      text-decoration: none;
      color: var(--c-charcoal);
      font-size: 1rem;
      font-weight: 500;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .nav-links a:hover { opacity: 1; color: var(--c-red); }

    /* --- Hero --- */
    .hero {
      padding: 60px 0 30px;
      text-align: center;
    }
    .hero h1 {
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--c-charcoal);
    }
    .hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      color: var(--c-green);
      opacity: 0.9;
    }

    /* --- ECOSYSTEM GRID --- */
    .map-section {
      margin: 40px 0 100px;
    }
    .ecosystem-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      padding: 40px 0;
      max-width: 740px;
      margin: 0 auto;
    }
    .node-wrapper { display: flex; justify-content: center; }

    .card {
      background: var(--c-white);
      width: var(--card-w);
      padding: 30px;
      border-radius: var(--radius-organic);
      border: 1px solid rgba(44, 38, 37, 0.06);
      box-shadow: 5px 10px 30px rgba(44, 38, 37, 0.05), -2px -2px 10px rgba(255, 255, 255, 0.8);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative; text-align: left;
    }
    .card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 10px 20px 40px rgba(201, 74, 42, 0.1), 0 0 0 1px var(--c-red); z-index: 20; }
    .card-icon {
      width: 52px; height: 52px;
      background: var(--c-cream-dark); color: var(--c-charcoal);
      border-radius: 12px 6px 14px 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; transition: background 0.3s, color 0.3s;
    }
    .card:hover .card-icon { background: var(--c-red); color: var(--c-white); }
    .card-icon svg { width: 28px; height: 28px; }

    /* --- MICRO → MIRO animation --- */
    .micro-c {
      display: inline-block;
      vertical-align: baseline;
      max-width: 0.6em;
      opacity: 1;
      animation: vanish-c 5s ease-in-out 2s forwards;
    }
    @keyframes vanish-c {
      0%, 50% { max-width: 0.6em; opacity: 1; }
      85% { opacity: 0; max-width: 0.3em; }
      100% { max-width: 0; opacity: 0; }
    }

    .card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-green); margin-bottom: 8px; }
    .card-market { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
    .market-pl { background: rgba(42,92,78,0.08); color: var(--c-green); }
    .market-global { background: rgba(201,74,42,0.08); color: var(--c-red); }
    .card h3 { font-size: 20px; margin-bottom: 10px; }
    .card p { font-size: 14px; color: #666; margin-bottom: 0; line-height: 1.5; }

/* --- PORTFOLIO (Simplified) --- */
    #portfolio { padding: 60px 0 100px; border-top: 1px solid rgba(44,38,37,0.05); }
    .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 40px; }
    .project-card {
      background: var(--c-white); border-radius: var(--radius-organic); padding: 36px;
      border: 1px solid rgba(44,38,37,0.05); position: relative; transition: transform 0.3s;
    }
    .project-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    .card-status {
      position: absolute; top: 24px; right: 24px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
      padding: 6px 12px; border-radius: 20px;
    }
    .status-sold { background: rgba(44, 38, 37, 0.05); color: var(--c-charcoal); opacity: 0.6; }
    .project-card h3 { font-size: 24px; margin-bottom: 12px; }

    /* --- NEWSLETTER SECTION (New) --- */
    .newsletter-section {
      background: var(--c-cream-dark);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .newsletter-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
    .newsletter-section h2 { font-size: 3rem; margin-bottom: 20px; color: var(--c-red); }
    .newsletter-section p { font-size: 1.25rem; color: var(--c-charcoal); margin-bottom: 40px; opacity: 0.8; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--c-charcoal); color: var(--c-white);
      padding: 18px 40px; border-radius: 50px; text-decoration: none;
      font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }
    .btn-primary:hover { background: var(--c-red); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 74, 42, 0.2); }

    /* --- REDESIGNED FOOTER --- */
    footer {
      background: var(--c-white);
      border-top: 1px solid rgba(44,38,37,0.08);
      padding: 80px 0 40px;
      margin-top: 0; /* Connected to newsletter */
    }
    .footer-container {
      display: grid;
      grid-template-columns: 1.5fr auto auto;
      gap: 80px;
      align-items: start;
      margin-bottom: 60px;
    }
    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c-green);
      margin-bottom: 24px;
      font-weight: 700;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 14px; }
    .footer-col a {
      color: var(--c-charcoal);
      text-decoration: none;
      opacity: 0.7;
      transition: opacity 0.2s, color 0.2s;
      font-size: 1rem;
    }
    .footer-col a:hover { opacity: 1; color: var(--c-red); }
    
    .footer-brand { max-width: 360px; }
    .footer-logo {
      font-family: var(--font-header);
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--c-charcoal);
      margin-bottom: 20px;
      display: block;
      text-decoration: none;
    }
    .footer-desc { font-size: 1rem; opacity: 0.6; line-height: 1.6; }

    .footer-bottom {
      border-top: 1px solid rgba(44,38,37,0.08);
      padding-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
      opacity: 0.5;
    }
    
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 101;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--c-charcoal);
      border-radius: 2px;
      transition: all 0.3s;
    }

    @media (max-width: 992px) {
      .container { padding: 0 24px; }
      .ecosystem-container { grid-template-columns: 1fr; gap: 24px; max-width: 100%; }
      .card { width: 100%; max-width: 100%; }
      .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / span 2; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .hero h1 { font-size: 3rem; }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--c-white);
        flex-direction: column;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(44,38,37,0.12);
        padding: 16px 0;
        min-width: 160px;
        z-index: 100;
      }
      .nav-links.open { display: flex; }
      .nav-links a { margin-left: 0; padding: 12px 24px; font-size: 1rem; }
      .hamburger { display: flex; }
      .logo { font-size: 1.1rem; }
      .hero h1 { font-size: 2rem; }
      nav { position: relative; }
    }
