
  /* ===================== CSS VARIABLES ===================== */
  :root {
    --green-dark: #1a3a2a;
    --green-mid: #2d5a3d;
    --green-accent: #4a8c5c;
    --green-light: #6ab87a;
    --green-lime: #8cc63f;
    --white: #ffffff;
    --off-white: #f7f5f0;
    --cream: #ede9e0;
    --text-dark: #111a14;
    --text-body: #2c3a2f;
    --text-muted: #5a6e5e;
    --border: #d4ddd6;
    --shadow: rgba(26,58,42,0.12);
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --nav-h: 76px;
    --radius: 4px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ===================== RESET & BASE ===================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  ul { list-style: none; }

  /* ===================== PAGES ===================== */

  /* ===================== NAVBAR ===================== */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow var(--transition);
  }
  .navbar.scrolled { box-shadow: 0 4px 32px var(--shadow); }
  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center;
    padding: 0 2rem; height: 100%;
    gap: 2rem;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 0.7rem;
    flex-shrink: 0; cursor: pointer;
  }
  .nav-logo-icon {
    width: 42px; height: 42px;
    background: var(--green-dark);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .nav-logo-icon svg { width: 26px; height: 26px; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
  .nav-logo-text .brand { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--green-dark); letter-spacing: 0.04em; }
  .nav-logo-text .tagline { font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
  .nav-links {
    display: flex; align-items: center; gap: 0.2rem;
    margin-left: auto;
  }
  .nav-link {
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem; font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    cursor: pointer; white-space: nowrap;
  }
  .nav-link:hover, .nav-link.active { color: var(--green-dark); background: var(--off-white); }
  .nav-link.active { color: var(--green-mid); font-weight: 600; }
  .nav-cta {
    margin-left: 0.8rem;
    padding: 0.55rem 1.4rem;
    background: var(--green-dark);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.88rem; font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
    cursor: pointer;
  }
  .nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; margin-left: auto;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--green-dark);
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem; z-index: 998;
    box-shadow: 0 8px 32px var(--shadow);
    flex-direction: column; gap: 0.3rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile .nav-link { display: block; padding: 0.7rem 0.9rem; }
  .nav-mobile .nav-cta { margin: 0.8rem 0 0; display: block; text-align: center; padding: 0.8rem; }

  /* ===================== MAIN PADDING ===================== */
  main { padding-top: var(--nav-h); }

  /* ===================== HERO ===================== */
  .hero {
    position: relative; overflow: hidden;
    min-height: 88vh;
    display: flex; align-items: center;
    background: var(--green-dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,58,42,0.92) 0%, rgba(26,58,42,0.7) 40%, rgba(26,58,42,0.5) 100%);
    z-index: 1;
  }
  .hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    z-index: 0;
  }
  .hero-pattern {
    position: absolute; inset: 0; z-index: 1;
    background-image: radial-gradient(circle at 20% 80%, rgba(138,198,63,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(106,184,122,0.08) 0%, transparent 50%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(138,198,63,0.15);
    border: 1px solid rgba(138,198,63,0.3);
    color: var(--green-lime);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both 0.2s;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--green-lime); border-radius: 50%; }
  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700; line-height: 1.05;
    color: var(--white); margin-bottom: 1.5rem;
    max-width: 700px;
    animation: fadeUp 0.8s ease both 0.4s;
  }
  .hero-h1 .accent { color: var(--green-lime); font-style: italic; }
  .hero-desc {
    font-size: 1.1rem; color: rgba(255,255,255,0.82);
    max-width: 520px; line-height: 1.75; margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease both 0.6s;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s ease both 0.8s;
  }
  .btn-primary {
    padding: 0.85rem 2rem;
    background: var(--green-lime);
    color: var(--green-dark);
    font-weight: 700; font-size: 0.92rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 0.5rem;
    cursor: pointer;
  }
  .btn-primary:hover { background: #a0d84a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(138,198,63,0.35); }
  .btn-outline {
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    font-weight: 600; font-size: 0.92rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
  .hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: var(--white);
    animation: fadeUp 0.8s ease both 1s;
  }
  .hero-stats-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 2rem;
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; border-top: 3px solid var(--green-lime);
  }
  .hero-stat {
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--border);
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hero-stat-icon svg { width: 22px; height: 22px; fill: var(--white); }
  .hero-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
  .hero-stat-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.3; margin-top: 4px; }

  /* ===================== SECTION STYLES ===================== */
  .section { padding: 5rem 2rem; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green-accent); margin-bottom: 0.6rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--green-lime); }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--text-dark);
    line-height: 1.15; margin-bottom: 1rem;
  }
  .section-desc { font-size: 1rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; }
  .section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
  .link-arrow {
    font-size: 0.88rem; font-weight: 600; color: var(--green-mid);
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: gap var(--transition), color var(--transition);
    white-space: nowrap; cursor: pointer;
  }
  .link-arrow:hover { gap: 0.7rem; color: var(--green-dark); }

  /* ===================== FOCUS AREAS ===================== */
  .focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .focus-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .focus-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative; overflow: hidden;
  }
  .focus-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 3px; height: 0;
    background: var(--green-lime);
    transition: height var(--transition);
  }
  .focus-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--shadow); border-color: var(--green-accent); }
  .focus-card:hover::before { height: 100%; }
  .focus-card-icon {
    width: 44px; height: 44px;
    background: var(--green-dark);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.9rem;
  }
  .focus-card-icon svg { width: 22px; height: 22px; fill: var(--white); }
  .focus-card h4 { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.4rem; }
  .focus-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

  /* ===================== PROJECT CARDS ===================== */
  .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .project-card {
    border-radius: 8px; overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    background: var(--white);
  }
  .project-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
  .project-card-img {
    height: 200px; position: relative; overflow: hidden;
    background: var(--green-dark);
  }
  .project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .project-card:hover .project-card-img img { transform: scale(1.06); }
  .project-tag {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--green-lime); color: var(--green-dark);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    padding: 0.25rem 0.7rem; border-radius: 100px; text-transform: uppercase;
  }
  .project-card-body { padding: 1.5rem; }
  .project-card-body h3 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
  .project-card-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
  .project-card-body .link-arrow { font-size: 0.82rem; }

  /* ===================== QUOTE BANNER ===================== */
  .quote-banner {
    background: var(--green-dark);
    background-image: radial-gradient(circle at 0% 100%, rgba(138,198,63,0.1) 0%, transparent 60%);
    padding: 5rem 2rem;
  }
  .quote-banner-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: center;
  }
  .quote-text { position: relative; }
  .quote-text::before {
    content: '\201C';
    font-family: var(--font-display); font-size: 8rem;
    color: rgba(138,198,63,0.2); line-height: 0;
    position: absolute; top: 2rem; left: -1rem;
    font-weight: 700;
  }
  .quote-text blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--white); font-weight: 300;
    line-height: 1.5; font-style: italic;
    position: relative; z-index: 1; padding-left: 0.5rem;
  }
  .quote-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .quote-value {
    display: flex; gap: 0.8rem;
    align-items: flex-start;
  }
  .quote-value-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .quote-value-icon svg { width: 18px; height: 18px; fill: var(--green-lime); }
  .quote-value h5 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
  .quote-value p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

  /* ===================== TEAM CARDS ===================== */
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .team-card {
    border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
    background: var(--white); transition: all var(--transition);
  }
  .team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--shadow); }
  .team-card-img { height: 220px; overflow: hidden; background: var(--cream); }
  .team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .team-card-body { padding: 1.25rem 1.4rem; }
  .team-card-body h3 { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
  .team-card-body .role { font-size: 0.82rem; color: var(--green-accent); font-weight: 500; margin: 0.2rem 0 0.6rem; }
  .team-card-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
  .team-linkedin {
    display: inline-flex; align-items: center; gap: 0.3rem;
    margin-top: 0.7rem; font-size: 0.78rem; font-weight: 600;
    color: var(--green-mid); transition: color var(--transition);
    cursor: pointer;
  }
  .team-linkedin:hover { color: var(--green-dark); }
  .team-linkedin svg { width: 14px; height: 14px; fill: currentColor; }

  /* ===================== ABOUT PAGE ===================== */
  .about-hero {
    background: var(--green-dark);
    background-image: linear-gradient(135deg, var(--green-dark) 60%, var(--green-mid));
    padding: 6rem 2rem 5rem;
    position: relative; overflow: hidden;
  }
  .about-hero::after {
    content: ''; position: absolute; right: -80px; top: -80px;
    width: 400px; height: 400px;
    border: 1px solid rgba(138,198,63,0.12); border-radius: 50%;
  }
  .about-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
  .page-hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(138,198,63,0.15); border: 1px solid rgba(138,198,63,0.3); color: var(--green-lime); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.2rem; }
  .page-hero-h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 0.8rem; }
  .page-hero-sub { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--green-lime); font-style: italic; font-weight: 300; }

  /* ===================== MISSION/VISION ===================== */
  .mv-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .mv-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 2rem;
    position: relative; overflow: hidden;
    transition: all var(--transition);
  }
  .mv-card:hover { box-shadow: 0 12px 32px var(--shadow); transform: translateY(-3px); }
  .mv-card-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
  .mv-card-icon { width: 44px; height: 44px; background: var(--green-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .mv-card-icon svg { width: 22px; height: 22px; fill: var(--white); }
  .mv-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); }
  .mv-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
  .mv-card ul { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; }
  .mv-card ul li::before { content: '• '; color: var(--green-lime); font-weight: 700; }

  /* ===================== WHO WE ARE ===================== */
  .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .who-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--text-dark); margin-bottom: 1.2rem; line-height: 1.2; }
  .who-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
  .who-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .who-stat { padding: 1.2rem; background: var(--off-white); border-radius: 6px; border: 1px solid var(--border); }
  .who-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
  .who-stat .lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }
  .who-img-wrap { position: relative; }
  .who-img-wrap img { border-radius: 8px; object-fit: cover; height: 480px; width: 100%; }
  .who-img-badge {
    position: absolute; bottom: 1rem; left: 1rem;
    background: var(--green-dark); color: var(--white);
    padding: 1.2rem 1.5rem; border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .who-img-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--green-lime); line-height: 1; }
  .who-img-badge .lbl { font-size: 0.78rem; opacity: 0.8; margin-top: 0.2rem; }

  /* ===================== APPROACH ===================== */
  .approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .approach-card {
    padding: 2rem; border: 1px solid var(--border); border-radius: 8px;
    transition: all var(--transition); position: relative;
  }
  .approach-card:hover { border-color: var(--green-accent); box-shadow: 0 8px 24px var(--shadow); }
  .approach-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 0.5rem; }
  .approach-card h4 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
  .approach-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

  /* ===================== MILESTONES TIMELINE ===================== */
  .timeline { position: relative; padding: 2rem 0; }
  .timeline::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 2px; background: var(--border); }
  .timeline-list { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; }
  .timeline-item { text-align: center; position: relative; padding-top: 50px; }
  .timeline-dot {
    position: absolute; top: 14px;
    left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px;
    background: var(--white); border: 3px solid var(--green-accent);
    border-radius: 50%; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .timeline-dot.active { background: var(--green-dark); border-color: var(--green-dark); }
  .timeline-dot svg { width: 14px; height: 14px; fill: var(--white); }
  .timeline-year { font-weight: 700; font-size: 0.88rem; color: var(--green-dark); margin-bottom: 0.3rem; }
  .timeline-desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; padding: 0 0.5rem; }

  /* ===================== PARTNERS ===================== */
  .partners-row { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; margin-top: 2rem; }
  .partner-badge {
    padding: 0.6rem 1.5rem;
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: 6px; font-weight: 600; font-size: 0.88rem;
    color: var(--text-body);
    transition: all var(--transition);
    cursor: default;
  }
  .partner-badge:hover { border-color: var(--green-accent); color: var(--green-dark); }

  /* ===================== SERVICES PAGE ===================== */
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .service-card {
    padding: 2rem; border: 1px solid var(--border); border-radius: 8px;
    background: var(--white); transition: all var(--transition);
    position: relative; overflow: hidden;
  }
  .service-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,58,42,0) 0%, rgba(26,58,42,0.02) 100%);
    transition: opacity var(--transition); opacity: 0;
  }
  .service-card:hover { border-color: var(--green-accent); box-shadow: 0 16px 48px var(--shadow); transform: translateY(-3px); }
  .service-card:hover::after { opacity: 1; }
  .service-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 0.8rem; }
  .service-icon-wrap { margin-bottom: 1rem; }
  .service-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.5rem; }
  .service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
  .service-card ul { display: flex; flex-direction: column; gap: 0.3rem; }
  .service-card ul li { font-size: 0.8rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
  .service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--green-lime); font-size: 0.75rem; }
  .service-ideal { margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--green-accent); font-weight: 600; }

  /* ===================== WHY WORK WITH US ===================== */
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .why-card { padding: 1.5rem; text-align: center; border: 1px solid var(--border); border-radius: 8px; transition: all var(--transition); }
  .why-card:hover { border-color: var(--green-lime); background: var(--off-white); }
  .why-card .icon { width: 50px; height: 50px; margin: 0 auto 0.8rem; background: var(--off-white); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .why-card .icon svg { width: 24px; height: 24px; fill: var(--green-dark); }
  .why-card h4 { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 0.4rem; }
  .why-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

  /* ===================== PROJECTS PAGE ===================== */
  .filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .filter-tab {
    padding: 0.5rem 1.2rem; border: 1px solid var(--border); border-radius: 100px;
    font-size: 0.82rem; font-weight: 500; cursor: pointer;
    transition: all var(--transition); background: var(--white);
  }
  .filter-tab:hover, .filter-tab.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
  .projects-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .project-full-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); transition: all var(--transition); }
  .project-full-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
  .project-full-card .pfc-img { height: 180px; overflow: hidden; background: var(--green-dark); position: relative; }
  .project-full-card .pfc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .project-full-card:hover .pfc-img img { transform: scale(1.06); }
  .pfc-body { padding: 1.4rem; }
  .pfc-location { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.5rem; }
  .pfc-location svg { width: 12px; height: 12px; fill: var(--green-accent); flex-shrink: 0; }
  .pfc-body h3 { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.4rem; }
  .pfc-body .challenge-label { font-size: 0.72rem; font-weight: 700; color: var(--green-accent); text-transform: uppercase; letter-spacing: 0.1em; margin: 0.7rem 0 0.2rem; }
  .pfc-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
  .pfc-impacts { margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.2rem; }
  .pfc-impact { font-size: 0.78rem; color: var(--green-mid); display: flex; align-items: center; gap: 0.4rem; }
  .pfc-impact::before { content: '✓'; color: var(--green-lime); font-weight: 700; }

  /* ===================== STORIES ===================== */
  .stories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .story-card { border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; position: relative; }
  .story-card::before { content: '\201C'; font-family: var(--font-display); font-size: 4rem; color: var(--border); line-height: 0; position: absolute; top: 2.2rem; left: 1.5rem; }
  .story-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.75; padding-top: 1.5rem; font-style: italic; }
  .story-meta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.78rem; font-weight: 600; color: var(--green-mid); }

  /* ===================== CONTACT PAGE ===================== */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
  .contact-info h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; }
  .contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
  .contact-detail-icon { width: 40px; height: 40px; background: var(--off-white); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-detail-icon svg { width: 18px; height: 18px; fill: var(--green-dark); }
  .contact-detail h5 { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 0.2rem; }
  .contact-detail p, .contact-detail a { font-size: 0.84rem; color: var(--text-muted); }
  .contact-teams { margin-top: 2rem; }
  .contact-teams h3 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 1rem; }
  .contact-team-item { display: flex; gap: 0.8rem; align-items: center; padding: 0.9rem; border: 1px solid var(--border); border-radius: 6px; margin-bottom: 0.6rem; transition: all var(--transition); cursor: pointer; }
  .contact-team-item:hover { border-color: var(--green-accent); background: var(--off-white); }
  .contact-team-item .icon { width: 36px; height: 36px; background: var(--green-dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-team-item .icon svg { width: 16px; height: 16px; fill: var(--white); }
  .contact-team-item h5 { font-weight: 600; font-size: 0.82rem; color: var(--text-dark); }
  .contact-team-item p { font-size: 0.75rem; color: var(--text-muted); }
  .contact-form { background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; }
  .contact-form h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--border); border-radius: var(--radius);
    font: inherit; font-size: 0.88rem; color: var(--text-body);
    background: var(--white); outline: none;
    transition: border-color var(--transition);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(74,140,92,0.12); }
  .form-group textarea { resize: vertical; min-height: 130px; }
  .btn-submit {
    width: 100%; padding: 0.9rem;
    background: var(--green-dark); color: var(--white);
    border-radius: var(--radius); font-weight: 700; font-size: 0.92rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    transition: all var(--transition); cursor: pointer; border: none; font-family: inherit;
  }
  .btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,42,0.25); }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; cursor: pointer; font-weight: 600; font-size: 0.92rem; color: var(--text-dark); transition: color var(--transition); }
  .faq-q:hover { color: var(--green-dark); }
  .faq-q svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; transition: transform var(--transition); }
  .faq-q.open svg { transform: rotate(180deg); }
  .faq-a { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; padding: 0 0 1rem; display: none; }
  .faq-a.open { display: block; }
  .who-work-with { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; margin-top: 2rem; }
  .wwwith-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.2rem; background: var(--off-white); border-radius: 8px; border: 1px solid var(--border); }
  .wwwith-item svg { width: 28px; height: 28px; fill: var(--green-dark); }
  .wwwith-item span { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-align: center; }

  /* ===================== CTA BANNER ===================== */
  .cta-banner {
    background: var(--green-dark); padding: 4rem 2rem;
    background-image: radial-gradient(circle at 100% 0%, rgba(138,198,63,0.1) 0%, transparent 50%);
  }
  .cta-banner-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
  .cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); font-weight: 700; margin-bottom: 0.5rem; }
  .cta-banner p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
  .cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-cta-white { padding: 0.85rem 2rem; background: var(--white); color: var(--green-dark); font-weight: 700; font-size: 0.9rem; border-radius: var(--radius); transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; cursor: pointer; }
  .btn-cta-white:hover { background: var(--off-white); transform: translateY(-2px); }
  .btn-cta-outline { padding: 0.85rem 2rem; border: 2px solid rgba(255,255,255,0.5); color: var(--white); font-weight: 600; font-size: 0.9rem; border-radius: var(--radius); transition: all var(--transition); white-space: nowrap; cursor: pointer; }
  .btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  /* ===================== FOOTER ===================== */
  .footer { background: var(--text-dark); padding: 4rem 2rem 2rem; }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin: 1rem 0 1.5rem; max-width: 280px; }
  .footer-socials { display: flex; gap: 0.6rem; }
  .social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all var(--transition);
    cursor: pointer;
  }
  .social-btn:hover { background: var(--green-mid); border-color: var(--green-mid); }
  .social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
  .social-btn:hover svg { fill: var(--white); }
  .footer-col h4 { font-weight: 700; font-size: 0.85rem; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; }
  .footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
  .footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color var(--transition); cursor: pointer; }
  .footer-col ul li a:hover { color: var(--green-lime); }
  .footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; }
  .footer-contact-item svg { width: 14px; height: 14px; fill: var(--green-lime); flex-shrink: 0; margin-top: 4px; }
  .footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
  .footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

  /* ===================== FOOTER LOGO ===================== */
  .footer-logo { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; }
  .footer-logo-icon { width: 38px; height: 38px; background: var(--green-mid); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .footer-logo-icon svg { width: 22px; height: 22px; }
  .footer-logo-text .brand { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); }
  .footer-logo-text .tagline { font-size: 0.6rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }

  /* ===================== BG TINTS ===================== */
  .bg-off { background: var(--off-white); }
  .bg-cream { background: var(--cream); }

  /* ===================== ANIMATIONS ===================== */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ===================== COUNTERS ===================== */
  .counter-animated { display: inline-block; transition: all 0.3s; }

  /* ===================== SCROLL TOP ===================== */
  .scroll-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 44px; height: 44px; background: var(--green-dark);
    color: var(--white); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; pointer-events: none;
    transition: all var(--transition); z-index: 500;
    box-shadow: 0 4px 16px rgba(26,58,42,0.3);
  }
  .scroll-top.visible { opacity: 1; pointer-events: all; }
  .scroll-top:hover { background: var(--green-mid); transform: translateY(-2px); }
  .scroll-top svg { width: 20px; height: 20px; fill: var(--white); }

  /* ===================== RESPONSIVE ===================== */
  
  

  

  /* Filter animation */
  @keyframes filterFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  .filter-fade { animation: filterFade 0.35s ease both; }
   }
  .nav-logo img { height: 42px; width: auto; display: block; }
  .footer-logo img { height: 38px; width: auto; display: block; }

  /* ===== COMPREHENSIVE RESPONSIVE FIXES ===== */

  /* Stats bar items */
  .projects-stats-bar > div { border-bottom: 1px solid var(--border); }
  

  /* Nav logo — no gap needed, just image */
  .nav-logo { gap: 0; }
  .nav-logo img { height: 44px; width: auto; display: block; }
  .footer-logo img { height: 40px; width: auto; display: block; }

  /* Ensure hero stat icons show white fill */
  .hero-stat-icon svg path, .hero-stat-icon svg polyline,
  .hero-stat-icon svg circle, .hero-stat-icon svg line { stroke: #fff; fill: none; }
  .hero-stat-icon svg [fill="white"], .hero-stat-icon svg [fill="#fff"] { fill: #fff !important; }

  /* Prevent badge overflow on small screens */
  .who-img-wrap { overflow: hidden; }

  /* who-grid image order on mobile */
  

  /* Approach grid fix */

  /* Vision section responsive */
  

  /* Fix section padding on very small screens */
  

  /* Page transitions */


  /* Fix timeline dots on small screens */

  /* Footer responsive */



  /* ===== RESPONSIVE BREAKPOINTS ===== */

  @media (min-width: 901px) {
    .projects-stats-bar > div { border-bottom: none; }
  }

  @media (max-width: 1024px) {
    .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
    .hero-stat:nth-child(2) { border-right: none; }
    .focus-grid, .who-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .projects-grid, .team-grid, .services-grid, .approach-grid, .mv-cards, .projects-full-grid { grid-template-columns: 1fr 1fr; }
    .quote-banner-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .timeline-list { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .who-work-with { grid-template-columns: repeat(3,1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .who-img-wrap { order: -1; }
    .who-img-wrap img { height: 320px; }
  }

  @media (max-width: 900px) {
    .projects-stats-bar { grid-template-columns: repeat(3, 1fr) !important; }
    .projects-stats-bar > div:nth-child(3) { border-right: none !important; }
    .funders-3col { grid-template-columns: 1fr 1fr !important; }
    .vision-4grid { grid-template-columns: 1fr 1fr !important; }
  }

  @media (max-width: 768px) {
    :root { --nav-h: 68px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .focus-cards { grid-template-columns: 1fr; }
    .projects-grid, .team-grid, .services-grid, .approach-grid, .mv-cards,
    .projects-full-grid, .stories-grid, .why-grid { grid-template-columns: 1fr; }
    .section-header-flex { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner-inner { flex-direction: column; }
    .cta-banner-actions { flex-direction: column; width: 100%; }
    .btn-cta-white, .btn-cta-outline { text-align: center; justify-content: center; }
    .responsive-grid { grid-template-columns: 1fr !important; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 640px) {
    .who-work-with { grid-template-columns: repeat(2, 1fr) !important; }
    .timeline-list { grid-template-columns: 1fr 1fr !important; }
    .timeline::before { display: none; }
    .timeline-item { position: relative; padding-top: 0; padding-left: 3rem; border-left: 2px solid var(--border); margin-bottom: 1rem; }
    .timeline-dot { left: -16px; top: 0; position: absolute; }
    .quote-text::before { display: none; }
    .quote-text blockquote { font-size: 1.2rem; padding-left: 0; }
    .quote-values { grid-template-columns: 1fr; }
    .quote-banner-inner { gap: 2rem; }
    .hero-stats-inner { grid-template-columns: 1fr 1fr !important; }
    .hero-stat:nth-child(2n) { border-right: none; }
    .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
    .projects-stats-bar { grid-template-columns: repeat(2, 1fr) !important; }
    .projects-stats-bar > div:nth-child(2n) { border-right: none !important; }
    .projects-stats-bar > div:nth-child(2) { border-right: none !important; }
    .funders-3col { grid-template-columns: 1fr !important; }
    .approach-grid { grid-template-columns: 1fr; }
    .mv-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .footer-socials { flex-wrap: wrap; }
    .projects-stats-bar > div:last-child { border-right: none !important; }
  }

  @media (max-width: 480px) {
    .hero-stats-inner { grid-template-columns: 1fr 1fr; }
    .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; }
    .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; justify-content: center; width: 100%; }
    .section { padding: 3rem 1.2rem; }
    .about-hero { padding: 4rem 1.2rem 3rem; }
    .page-hero-h1 { font-size: 2rem; }
    .cta-banner-actions { flex-direction: column; width: 100%; }
    .btn-cta-white, .btn-cta-outline { justify-content: center; text-align: center; }
  }

  @media (max-width: 360px) {
    .hero-content { padding: 3rem 1.2rem 8rem; }
    .nav-inner { padding: 0 1rem; }
    .section { padding: 2.5rem 1rem; }
  }



  /* ===== FORM VALIDATION ===== */
  .form-group input.field-error,
  .form-group select.field-error,
  .form-group textarea.field-error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
    animation: shake 0.35s ease;
  }
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-5px); }
    60%       { transform: translateX(5px); }
    80%       { transform: translateX(-3px); }
  }
  .form-group input.field-error:focus,
  .form-group select.field-error:focus,
  .form-group textarea.field-error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
  }
  .field-error-msg {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.76rem;
    color: #dc3545;
    margin-top: 0.35rem;
    font-weight: 500;
    animation: fadeIn 0.2s ease;
  }
  .field-error-msg svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
  }
  .form-group input.field-valid,
  .form-group select.field-valid,
  .form-group textarea.field-valid {
    border-color: var(--green-accent);
    box-shadow: 0 0 0 3px rgba(74, 140, 92, 0.1);
  }
  #formError {
    display: none;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff5f5;
    border: 1px solid #fcc;
    border-radius: var(--radius);
    font-size: 0.83rem;
    color: #c0392b;
    display: none;
    align-items: center;
    gap: 0.5rem;
  }
  #formError svg { flex-shrink: 0; width: 16px; height: 16px; fill: #c0392b; }
  .btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
  }

/* ===== WORDPRESS REAL PAGE LOAD ANIMATION ===== */
main {
  animation: wpPageIn 0.3s ease both;
}
@keyframes wpPageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ===== NAV ACTIVE STATE ===== */
.nav-link.active {
  color: var(--green-dark) !important;
  background: var(--off-white) !important;
  font-weight: 600;
}

  /* ===================== OUR TEAM PAGE ===================== */

  /* ── Team Hero ── */
  .team-hero {
    background: var(--green-dark);
    background-image: linear-gradient(135deg, var(--green-dark) 55%, var(--green-mid) 100%);
    padding: 6rem 2rem 5rem;
    position: relative; overflow: hidden;
  }
  .team-hero-inner {
    max-width: 1280px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .team-hero-accent {
    color: var(--green-lime);
    font-style: italic;
  }
  .team-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    line-height: 1.75;
    margin-top: 0.9rem;
  }
  /* Decorative rings */
  .team-hero-decor {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
    overflow: hidden;
  }
  .team-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(138,198,63,0.1);
  }
  .team-hero-ring-1 {
    width: 420px; height: 420px;
    right: -100px; top: -120px;
  }
  .team-hero-ring-2 {
    width: 220px; height: 220px;
    right: 80px; bottom: -60px;
    border-color: rgba(138,198,63,0.06);
  }

  /* ── Team Intro Strip ── */
  .team-intro-strip { padding-top: 4rem; padding-bottom: 4rem; }
  .team-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .team-intro-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .team-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .team-istat {
    padding: 1.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
  }
  .team-istat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--shadow);
  }
  .team-istat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    position: relative;
    display: inline-block;
  }
  .team-istat-num::after {
    content: '';
    display: block;
    width: 28px; height: 3px;
    background: var(--green-lime);
    border-radius: 2px;
    margin: 0.5rem auto 0;
  }
  .team-istat-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 0.6rem;
  }

  /* ── Leadership Grid ── */
  .team-leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  .team-lead-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition);
  }
  .team-lead-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--shadow);
    border-color: var(--green-accent);
  }
  .team-lead-img-wrap {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    display: flex; align-items: center; justify-content: center;
  }
  .team-lead-img-placeholder {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
  }
  .team-lead-img-placeholder svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0.6;
  }
  .team-lead-initials {
    position: relative; z-index: 1;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.05em;
  }
  .team-lead-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(138,198,63,0.18);
    border: 1px solid rgba(138,198,63,0.35);
    color: var(--green-lime);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    display: flex; align-items: center; gap: 0.35rem;
  }
  .team-lead-badge svg { width: 10px; height: 10px; fill: var(--green-lime); }
  .team-lead-body { padding: 1.5rem 1.6rem 1.75rem; }
  .team-lead-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }
  .team-lead-role {
    font-size: 0.82rem;
    color: var(--green-accent);
    font-weight: 600;
    margin-bottom: 0.6rem;
  }
  .team-lead-dept {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .team-lead-dept svg { width: 13px; height: 13px; stroke: var(--green-lime); flex-shrink: 0; }
  .team-lead-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.1rem;
  }
  .team-lead-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }
  .team-lead-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green-mid);
    background: rgba(74,140,92,0.1);
    border: 1px solid rgba(74,140,92,0.2);
    padding: 0.22rem 0.65rem;
    border-radius: 100px;
  }

  /* ── Department Filter Tabs ── */
  .team-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .team-filter-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
  }
  .team-filter-btn:hover {
    border-color: var(--green-accent);
    color: var(--green-mid);
    background: rgba(74,140,92,0.06);
  }
  .team-filter-btn.active {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
  }

  /* ── Team Card Placeholder (no photo) ── */
  .team-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  }
  .team-card-placeholder span {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
  }

  /* ── Dept tag on standard team card ── */
  .team-card-dept-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 0.18rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ── Placeholder note ── */
  .team-placeholder-note {
    margin-top: 2.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
  }
  .team-placeholder-note svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--green-accent); }
  .team-placeholder-note a { color: var(--green-mid); font-weight: 600; text-decoration: underline; }
  .team-placeholder-note a:hover { color: var(--green-dark); }

  /* ── Join CTA ── */
  .team-join-section {
    background: var(--green-dark);
    background-image: linear-gradient(135deg, var(--green-dark) 60%, #1a4a2e);
    padding: 5rem 2rem;
  }
  .team-join-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .team-join-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-lime);
    margin-bottom: 0.75rem;
  }
  .team-join-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.15;
  }
  .team-join-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.8;
  }
  .team-join-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }
  .team-join-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    cursor: pointer;
  }
  .team-join-link:hover { color: var(--white); }

  /* ── Responsive: Team Page ── */
  @media (max-width: 1024px) {
    .team-leadership-grid { grid-template-columns: 1fr 1fr; }
    .team-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  @media (max-width: 768px) {
    .team-leadership-grid { grid-template-columns: 1fr; }
    .team-intro-stats { grid-template-columns: 1fr 1fr; }
    .team-join-inner { flex-direction: column; align-items: flex-start; }
    .team-join-actions { align-items: flex-start; }
    .team-filter-tabs { gap: 0.4rem; }
    .team-filter-btn { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
  }

  @media (max-width: 480px) {
    .team-hero { padding: 4rem 1.2rem 3rem; }
    .team-intro-stats { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
    .team-istat-num { font-size: 2rem; }
    .team-join-section { padding: 3.5rem 1.2rem; }
    .team-placeholder-note { flex-direction: column; text-align: center; }
  }

  /* ── Qualification / Degree line ── */
  .team-lead-degree,
  .team-card-degree {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
  }
  .team-lead-degree svg,
  .team-card-degree svg {
    width: 13px; height: 13px;
    flex-shrink: 0;
    margin-top: 1px;
    stroke: var(--green-lime);
  }
  .team-card-degree {
    font-size: 0.74rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
