﻿/* ── HERO ── */
.mission-hero {
    min-height: 65vh;
    padding: 90px 5vw 80px;
    background: var(--green-900);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .mission-hero::before {
        content: '';
        position: absolute;
        right: 5vw;
        top: 50%;
        transform: translateY(-50%);
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(90,200,138,0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatA 8s ease-in-out infinite;
    }

    .mission-hero::after {
        content: '';
        position: absolute;
        left: -100px;
        bottom: -100px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(42,122,74,0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

.mission-hero-inner {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.mission-hero .page-tag {
    background: rgba(255,255,255,0.1);
    color: var(--green-300);
    border-color: rgba(255,255,255,0.15);
}

.mission-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeUp .7s .1s ease both;
}

    .mission-hero h1 em {
        font-style: normal;
        color: var(--green-400);
    }

.mission-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    font-weight: 300;
    max-width: 560px;
    animation: fadeUp .7s .2s ease both;
}

/* ── MISSION STATEMENT ── */
.mission-statement {
    padding: 80px 5vw;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mission-statement-inner {
    max-width: 760px;
}

.ms-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: -0.01em;
    position: relative;
    padding: 0 32px;
}

    .ms-quote::before, .ms-quote::after {
        font-family: Georgia, serif;
        font-size: 5rem;
        color: var(--green-200);
        line-height: 1;
        position: absolute;
    }

    .ms-quote::before {
        content: '"';
        top: -20px;
        left: 0;
    }

    .ms-quote::after {
        content: '"';
        bottom: -40px;
        right: 0;
    }

.ms-line {
    width: 48px;
    height: 3px;
    background: var(--green-400);
    border-radius: 2px;
    margin: 32px auto 0;
}

/* ── PILLARS ── */
.pillars-section {
    padding: 100px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pillar-list {
    display: flex;
    flex-direction: column;
}

.pillar-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    cursor: pointer;
    transition: padding-left var(--transition);
}

    .pillar-item:hover {
        padding-left: 8px;
    }

    .pillar-item:first-child {
        padding-top: 0;
    }

.pillar-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all var(--transition);
}

.pillar-item:hover .pillar-icon {
    background: var(--green-600);
    color: white;
    transform: scale(1.05);
}

.pillar-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pillar-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ── GOALS ── */
.goals-grid {
    display: grid;
    gap: 16px;
}

.goals-header {
    margin-bottom: 24px;
}

    .goals-header h3 {
        font-family: var(--font-display);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .goals-header p {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 300;
    }

.goal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    border: 1px solid var(--border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all var(--transition);
}

    .goal-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--green-300);
        transform: translateX(4px);
    }

.goal-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--green-600);
    letter-spacing: 0.05em;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    padding: 4px 10px;
    border-radius: 40px;
    white-space: nowrap;
    align-self: center;
    flex-shrink: 0;
}

.goal-text h5 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.goal-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ── APPROACH ── */
.approach-section {
    padding: 80px 5vw 100px;
    background: var(--green-50);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 48px;
}

.approach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
}

    .approach-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.approach-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.approach-card:hover .approach-card-icon {
    background: var(--green-600);
    color: white;
    transform: scale(1.1);
}

.approach-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .pillars-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }
}
