/* About Us — scoped under .about-page */

.about-page {
    background: #F7F9FB;
    color: #0f1a2b;
    padding: 2rem 1rem 3rem;
    line-height: 1.7;
}

.about-page * {
    box-sizing: border-box;
}

.about-page .about-card {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 3rem;
    overflow: hidden;
}

/* ---------- HERO ---------- */
.about-page .hero-section {
    background: linear-gradient(135deg, #f2f8f4 0%, #e6f2ea 100%);
    border-radius: 1.5rem;
    padding: 2.75rem 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(45, 122, 74, 0.08);
}

.about-page .hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.about-page .hero-content {
    flex: 1;
    min-width: 0;
}

.about-page .brand-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2d7a4a;
    margin-bottom: 1rem;
}

.about-page .hero-section h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(var(--text-4xl), 4vw, var(--text-7xl));
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
    color: #0f1a2b;
    max-width: 640px;
}

.about-page .subhead {
    font-size: var(--text-lg);
    color: #3d4c5c;
    max-width: 560px;
    margin: 0;
    line-height: 1.65;
}

.about-page .hero-cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 9.5rem;
    height: 9.5rem;
    background: #1d5c38;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: 1.35;
    text-align: center;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(29, 92, 56, 0.28);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-page .hero-cta span {
    max-width: 6.5rem;
}

.about-page .hero-cta i {
    font-size: var(--text-sm);
    transition: transform 0.2s;
}

.about-page .hero-cta:hover {
    background: #164a2d;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(29, 92, 56, 0.34);
}

.about-page .hero-cta:hover i {
    transform: translateX(3px);
}

/* ---------- SECTIONS ---------- */
.about-page .section-header {
    margin-bottom: 1.5rem;
}

.about-page .section-lead {
    color: #3d4c5c;
    font-size: var(--text-base);
    margin: 0;
}

.about-page .mission-section,
.about-page .timeline-section,
.about-page .values-section,
.about-page .leadership-section,
.about-page .metrics-section,
.about-page .join-section {
    margin-bottom: 3rem;
}

.about-page h2 {
    font-family: 'Sora', sans-serif;
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f1a2b;
    margin-bottom: 0.5rem;
}

.about-page .mission-section p {
    color: #3d4c5c;
    font-size: var(--text-base);
    max-width: 900px;
    margin-bottom: 1rem;
}

.about-page .mission-section p:last-child {
    margin-bottom: 0;
}

/* ---------- TIMELINE ---------- */
.about-page .timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.about-page .timeline-item {
    background: #F7F9FB;
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-page .timeline-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.about-page .timeline-item .year {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2d7a4a;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.about-page .timeline-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: var(--text-base);
    font-weight: 600;
    color: #0f1a2b;
    margin-bottom: 0.4rem;
}

.about-page .timeline-item p {
    font-size: var(--text-sm);
    color: #3d4c5c;
    margin: 0;
}

/* ---------- VALUES ---------- */
.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.about-page .value-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 1.2rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-page .value-item:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.about-page .value-item .icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f8f4;
    border-radius: 50%;
    color: #2d7a4a;
    font-size: var(--text-xl);
}

.about-page .value-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: var(--text-base);
    font-weight: 600;
    color: #0f1a2b;
    margin-bottom: 0.4rem;
}

.about-page .value-item p {
    font-size: var(--text-sm);
    color: #3d4c5c;
    margin: 0;
}

/* ---------- LEADERSHIP ---------- */
.about-page .leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-page .leader-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #F7F9FB;
    border-radius: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-page .leader-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.about-page .leader-item .avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.about-page .avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-page .avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2d7a4a 0%, #1d5c38 100%);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: var(--text-2xl);
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(45, 122, 74, 0.25);
}

.about-page .leader-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: var(--text-lg);
    font-weight: 600;
    color: #0f1a2b;
    margin-bottom: 0.25rem;
}

.about-page .leader-item .role {
    font-size: var(--text-sm);
    color: #5a6a7a;
    font-weight: 500;
}

/* ---------- METRICS ---------- */
.about-page .metrics-section {
    background: linear-gradient(135deg, #2d7a4a 0%, #1d5c38 100%);
    border-radius: 1.5rem;
    padding: 2.75rem 2rem;
    box-shadow: 0 16px 40px rgba(29, 92, 56, 0.2);
}

.about-page .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.about-page .metric-item .number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about-page .metric-item .label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.5rem;
}

/* ---------- JOIN CTA ---------- */
.about-page .join-section {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f2f8f4 0%, #e6f2ea 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(45, 122, 74, 0.08);
    margin-bottom: 0;
}

.about-page .join-section p {
    color: #3d4c5c;
    max-width: 640px;
    margin: 0 auto 1.75rem;
    font-size: var(--text-base);
}

.about-page .join-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.about-page .join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.about-page .join-btn:hover {
    transform: translateY(-1px);
}

.about-page .join-btn.primary {
    background: #2d7a4a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(45, 122, 74, 0.25);
}

.about-page .join-btn.primary:hover {
    background: #236339;
}

.about-page .join-btn.outline {
    background: transparent;
    color: #2d7a4a;
    border: 2px solid #2d7a4a;
}

.about-page .join-btn.outline:hover {
    background: #2d7a4a;
    color: #ffffff;
}

.about-page .join-btn.light {
    background: #ffffff;
    color: #0f1a2b;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-page .join-btn.light:hover {
    border-color: #2d7a4a;
    color: #2d7a4a;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-page .timeline-grid,
    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .hero-inner {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 1rem 0.75rem 2rem;
    }

    .about-page .about-card {
        padding: 1.5rem 1.25rem;
        border-radius: 1.2rem;
    }

    .about-page .hero-section {
        padding: 2rem 1.5rem;
    }

    .about-page .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .about-page .hero-cta {
        align-self: center;
        width: 8.5rem;
        height: 8.5rem;
    }

    .about-page h2 {
        font-size: var(--text-2xl);
    }

    .about-page .timeline-grid,
    .about-page .values-grid,
    .about-page .leadership-grid,
    .about-page .metrics-grid {
        grid-template-columns: 1fr;
    }

    .about-page .metrics-section {
        padding: 2rem 1.25rem;
    }

    .about-page .join-section {
        padding: 2rem 1.25rem;
    }
}



@media (max-width: 768px) {
    .about-page .join-buttons {
        display: flex;
        justify-content: center;
        /* flex-direction: column; */
        align-items: center;
        width: 100%;
    }

    .about-page .join-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        box-sizing: border-box;
    }
}
