        /* --- 1. Variables & Reset --- */
        :root {
            /* Palette derived from logo/requirements */
            --primary: #2E4A35;    /* Deep Forest Green */
            --primary-dark: #1e3324;
            --accent: #8C6A4B;     /* Bark/Earth Brown */
            --bg: #FAFAF9;         /* Warm Paper */
            --card-bg: #FFFFFF;
            --text-main: #1F2937;
            --text-muted: #4B5563;
            --border: #E5E7EB;
            
            --font-ui: 'Inter', sans-serif;
            --font-serif: 'Merriweather', serif;
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-ui);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-serif);
            color: var(--primary);
            line-height: 1.2;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        /* --- 2. Layout Utilities --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }

        /* --- 3. Components --- */
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: #fff;
            box-shadow: 0 4px 6px rgba(46, 74, 53, 0.2);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px rgba(46, 74, 53, 0.3);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            margin-left: 1rem;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: #fff;
        }

        /* Tags */
        .tag-container {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: rgba(46, 74, 53, 0.08);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-weight: 600;
        }

        /* --- 4. Navigation --- */
        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(250, 250, 249, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1rem 0;
        }

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

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-serif);
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        /* CSS Placeholder for Logo if image fails */
        .logo-mark {
            width: 45px;
            height: 45px;
            /* background: var(--primary); */
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        /* .logo-mark::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
        } */

        .nav-links {
            display: flex;
            gap: 2rem;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }

        /* --- 5. Hero Section --- */
        .hero {
            text-align: center;
            padding: 8rem 0 6rem;
            background: radial-gradient(circle at 50% 30%, #e8efe9 0%, var(--bg) 70%);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            color: var(--accent);
            font-style: italic;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 750px;
            margin: 0 auto 2.5rem;
        }

        /* --- 6. Animations (Fade Up) --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- 7. Grid & Cards --- */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: auto;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            border-color: var(--primary);
        }

        .card-icon {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            background: #F3F4F6;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--primary);
        }

        .card h3 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .card p {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .card ul {
            padding-left: 1.2rem;
            margin-top: auto; /* Push to bottom if needed */
        }
        
        .card li {
            position: relative;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .card li::before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* --- 8. Mission List (Alternating) --- */
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .mission-item {
            background: #fff;
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            border-radius: 0 8px 8px 0;
        }

        .mission-item strong {
            display: block;
            color: var(--primary);
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        /* --- 9. Footer --- */
        footer {
            background-color: var(--primary);
            color: #fff;
            padding: 5rem 0 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .quote {
            font-family: var(--font-serif);
            font-size: 1.75rem;
            font-style: italic;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 800px;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .copyright {
            opacity: 0.5;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            text-align: center;
            padding-top: 2rem;
        }

        /* --- 10. Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                text-align: center;
            }

            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            
            .btn-outline { margin-left: 0; margin-top: 1rem; }
        }

        .logo {
            font-kerning: normal;
        }

        .accent {
            color: var(--accent);
        }
