/* ===================== */
/* 1. Hero               */
/* ===================== */
.hero {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 3rem 1rem;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subheading {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo {
    flex: 0 0 auto;
}

.hero-logo img {
    max-width: 280px;
    height: auto;
}

/* ===================== */
/* Section helpers        */
/* ===================== */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-inner--narrow {
    max-width: 800px;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===================== */
/* 2. Mission Strip      */
/* ===================== */
.mission-strip {
    background-color: var(--color-light-grey);
    padding: 3rem 1rem;
}

.mission-strip .section-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    text-align: center;
    padding: 1.5rem;
}

.mission-initial {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.mission-initial--green { color: var(--color-green); }
.mission-initial--blue { color: var(--color-blue); }
.mission-initial--pink { color: var(--color-pink); }

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.mission-card p {
    font-size: 0.95rem;
    color: var(--color-black);
}

/* ===================== */
/* 3. About Summary      */
/* ===================== */
.about-summary {
    background-color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.about-summary h2 {
    color: var(--color-black);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-summary p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-black);
    margin-bottom: 2rem;
}

/* ===================== */
/* 3b. Mission / Vision  */
/* ===================== */
.mission-vision {
    background-color: var(--color-light-grey);
    padding: 3rem 1rem;
    text-align: center;
}

.mission-vision .section-inner {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.mission-vision-block h2 {
    font-size: 1.5rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.mission-vision-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
}

/* ===================== */
/* 4. Impact Stats Strip */
/* ===================== */
.stats-strip {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 3rem 1rem;
}

.stats-strip .section-inner {
    text-align: center;
}

.stats-header {
    margin-bottom: 2rem;
}

.stats-heading {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.stats-subheading {
    font-size: 1.05rem;
    opacity: 0.85;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* ===================== */
/* 5. Project Highlights */
/* ===================== */
.project-highlights {
    background-color: var(--color-white);
    padding: 4rem 1rem;
}

.project-highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.project-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 1.5rem;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.project-card--orange {
    border-top-color: var(--color-orange);
}

.project-card--blue {
    border-top-color: var(--color-blue);
}

.project-card--green {
    border-top-color: var(--color-green);
}

.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-bottom: 0.5rem;
}

.project-card h3 {
    font-size: 1.2rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.project-info {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--color-orange);
    font-size: 0.95rem;
}

/* ===================== */
/* 6. Featured Quote     */
/* ===================== */
.featured-quote {
    background-color: var(--color-light-grey);
    padding: 4rem 1rem;
    text-align: center;
}

.quote-mark {
    display: block;
    font-size: 6rem;
    line-height: 1;
    color: var(--color-orange);
    font-family: Georgia, serif;
}

.featured-quote blockquote p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-quote cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--color-text-muted);
}

/* ===================== */
/* 7. Testimonials       */
/* ===================== */
.testimonials {
    background-color: var(--color-white);
    padding: 4rem 1rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-light-grey);
    border-radius: 6px;
    padding: 2rem;
}

.testimonial-card blockquote p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ===================== */
/* 8. Room Hire CTA      */
/* ===================== */
.room-hire-cta {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.room-hire-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.room-hire-cta p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================== */
/* 9. Funders Strip      */
/* ===================== */
.funders-strip {
    background-color: var(--color-white);
    padding: 3rem 1rem;
    text-align: center;
}

.funders-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-placeholder);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.funder-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.funder-placeholder {
    width: 120px;
    height: 60px;
    background-color: var(--color-border);
    border-radius: 4px;
}

.funders-subtext {
    font-size: 0.9rem;
    color: var(--color-text-placeholder);
}

/* ===================== */
/* 10. Social Strip      */
/* ===================== */
.social-strip {
    background-color: var(--color-light-grey);
    padding: 3rem 1rem;
    text-align: center;
}

.social-strip h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-row a {
    color: var(--color-black);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.social-row a:hover {
    color: var(--color-orange);
    text-decoration: none;
}

/* ===================== */
/* Mobile Responsive     */
/* ===================== */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo {
        order: -1;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 1.05rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .mission-strip .section-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .mission-vision .section-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .project-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .featured-quote blockquote p {
        font-size: 1.5rem;
    }

    .quote-mark {
        font-size: 4rem;
    }
}
