:root {
    --green: #1AA060;
    --green-dark: #107645;
    --green-soft: #e8f7ef;
    --ink: #143127;
    --muted: #5f746c;
    --line: #d9eee3;
    --bg: #f7fbf9;
    --card: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6
}

a {
    color: var(--green-dark);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.wrap {
    max-width: 1120px;
    margin: auto;
    padding: 0 20px
}

.topbar {
    background: var(--green);
    color: white;
    font-size: .92rem
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 20px
}

.site-header {
    background: white;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none
}

.brand img {
    border-radius: 10px
}

.brand small {
    display: block;
    color: var(--green-dark);
    font-weight: 700
}

.menu {
    display: flex;
    align-items: center;
    gap: 18px
}

.menu a {
    font-weight: 750;
    color: var(--ink)
}

.btn {
    display: inline-block;
    background: var(--green);
    color: white !important;
    border: 2px solid var(--green);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none
}

.btn.light {
    background: white;
    color: var(--green-dark) !important
}

.hero {
    background: linear-gradient(135deg, rgba(26, 160, 96, .94), rgba(16, 118, 69, .94)), url('../img/org-logo.jpg');
    background-size: cover;
    background-position: center;
    color: white
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 36px;
    align-items: center;
    padding: 74px 20px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
    font-weight: 900;
    color: var(--green-dark)
}

.hero .eyebrow {
    color: #dff8ea
}

.hero h1 {
    font-size: clamp(2.2rem, 5.3vw, 4.8rem);
    line-height: 1.02;
    margin: .15em 0
}

.lead {
    font-size: 1.18rem;
    color: #496158;
    max-width: 760px
}

.hero .lead {
    color: #f3fff8
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.hero-card,
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(20, 49, 39, .08)
}

.hero-card {
    color: var(--ink)
}

.hero-card img {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 18px;
    border-radius: 18px
}

.motto {
    font-size: 1.45rem;
    font-weight: 900;
    margin: 0 0 8px
}

.section {
    padding: 62px 0
}

.section h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: .15em 0
}

.section h2 {
    font-size: 2rem;
    margin: 0 0 12px
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.grid.two {
    grid-template-columns: repeat(2, 1fr)
}

.two-by-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch
}

.pill {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green-dark);
    border: 1px solid #bce8cd;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .82rem
}

.facts {
    border-collapse: collapse;
    width: 100%;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line)
}

.facts th,
.facts td {
    text-align: left;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: top
}

.facts th {
    width: 210px;
    background: var(--green-soft)
}

.footer {
    background: #103427;
    color: #daf3e5;
    padding: 36px 0;
    margin-top: 28px
}

.footer a {
    color: white
}

.fb-box {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: white;
    min-height: 550px; /* match or exceed data-height */
    display: grid;
    place-items: center;
    width: 100%;
}

.fb-page,
.fb-page iframe {
  width: 100% !important;
}

.project-list {
    display: grid;
    gap: 18px
}

.project-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px
}

.project-card h3 {
    margin: .2rem 0
}

.project-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 10px
}

.project-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin-top: 12px;
    color: var(--muted);
    font-size: .95rem
}

.news-list {
    display: grid;
    gap: 14px
}

.news-item {
    border-left: 5px solid var(--green);
    padding: 16px 18px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--line)
}

.news-item h3 {
    margin: .2rem 0
}

.news-meta {
    color: var(--muted);
    font-weight: 750;
    font-size: .9rem
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0
}

.filter {
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 750
}

.filter.active {
    background: var(--green);
    border-color: var(--green);
    color: white
}

.team-member {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-soft);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--green-dark);
    flex: 0 0 auto
}

.notice {
    background: #fff;
    border: 1px dashed var(--green);
    border-radius: 18px;
    padding: 16px
}

.project-desc {
  margin: 8px 0 12px;
  color: #444;
  line-height: 1.5;
}

@media(max-width:850px) {

    .hero .wrap,
    .grid,
    .grid.two,
    .two-by-two {
        grid-template-columns: 1fr
    }

    .menu {
        display: none
    }

    .topbar .wrap {
        display: block
    }

    .project-card {
        grid-template-columns: 1fr
    }

    .project-details {
        grid-template-columns: 1fr
    }

    .facts th {
        width: auto;
        display: block
    }

    .facts td {
        display: block
    }
}