:root {
    --brand: #00685f;
    --brand-dark: #003f3a;
    --brand-soft: #eaf5f3;
    --text: #152331;
    --muted: #5f6f79;
    --white: #ffffff;
    --border: #e7eeec;
    --bg: #f7fbfa;
    --shadow: 0 18px 50px rgba(14, 50, 56, 0.09);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

a {
    text-decoration: none;
}

.site-header {
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 104, 95, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
    overflow: hidden;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
}

.brand-mark {
    display: inline-flex !important;
    align-items: center;
    flex-direction: row;
    gap: 0.85rem;
    white-space: nowrap;
    line-height: 1;
}

.brand-logo {
    width: 104px;
    height: auto;
    display: block;
    flex: 0 0 auto;
}

.brand-name-text {
    display: inline-block;
    color: var(--brand-dark);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
}

.hero-section {
    padding: 3rem 0 4rem;
}

.eyebrow,
.section-label {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-title {
    margin-top: 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.hero-title span {
    color: var(--brand);
}

.title-mark {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--brand);
    margin: 1rem 0;
}

.title-mark span {
    display: inline-block;
    width: 58px;
    height: 2px;
    background: var(--brand);
}

.hero-text,
.section-text {
    color: var(--muted);
    font-size: 1.03rem;
}

.hero-visual {
    min-height: 420px;
    border-radius: 0;
    position: relative;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.15)),
        url("../img/hero-mentoring.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 -80px 100px rgba(255,255,255,0.2);
}

.belief-card {
    position: absolute;
    top: 55px;
    right: 40px;
    width: min(360px, calc(100% - 40px));
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.belief-card h2 {
    color: var(--brand-dark);
}

.belief-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1rem;
}

.belief-item:last-child {
    margin-bottom: 0;
}

.belief-item span,
.card-icon,
.cta-mini span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.belief-item p {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
}

.section-padding {
    padding: 4rem 0;
}

.section-tight {
    padding-top: 2.5rem;
}

.section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin: 0.7rem 0 1rem;
}

.image-panel {
    min-height: 230px;
    border-radius: 18px;
    background-color: var(--brand-soft);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.image-panel-hands {
    background-image:
        linear-gradient(0deg, rgba(0,0,0,0.03), rgba(0,0,0,0.03)),
        url("../img/connection-hands.jpg");
}

.info-card,
.program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 10px 32px rgba(14, 50, 56, 0.07);
}

.info-card {
    display: block;
}

.info-card .card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
}

.info-card h3,
.program-card h3,
.volunteer-item h3 {
    margin-bottom: 0.45rem;
    font-weight: 800;
}

.info-card p,
.program-card p,
.volunteer-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.program-card .card-icon {
    margin-bottom: 1rem;
}

.volunteer-strip {
    margin: 3rem 0;
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f3faf8 0%, #edf7f5 100%);
}

.volunteer-item {
    padding-left: 1rem;
    border-left: 1px solid rgba(0,104,95,0.14);
}

.volunteer-item .card-icon {
    margin-bottom: 0.9rem;
}

.cta-section {
    padding: 2rem 0 1.2rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 63, 58, 0.2);
}

.cta-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 0.7rem;
}

.cta-text {
    color: rgba(255,255,255,0.82);
}

.cta-mini span {
    background: #fff;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.cta-mini strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

.site-footer {
    margin-top: 0.8rem;
    padding: 1.8rem 0;
    background: #003f3a;
    color: rgba(255,255,255,0.86);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-brand {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.2rem;
    align-items: center;
}

.footer-logo {
    width: 110px;
    height: auto;
}

.footer-contact,
.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact a {
    color: #fff;
    font-size: 1.1rem;
}

.footer-socials span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.btn-outline-brand {
    border: 1px solid rgba(0, 104, 95, 0.35);
    color: var(--brand);
    background: rgba(255,255,255,0.84);
    border-radius: 999px;
    font-weight: 700;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: var(--brand-soft);
    color: var(--brand-dark);
    border-color: var(--brand);
}

@media (max-width: 991.98px) {
    .brand-logo {
        width: 86px;
    }

    .brand-name-text {
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 440px;
        border-radius: 20px;
    }

    .belief-card {
        right: 20px;
        top: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer-contact,
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
        .brand-mark {
        gap: 0.65rem;
    }

    .brand-logo {
        width: 72px;
    }

    .brand-name-text {
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding-top: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        min-height: 520px;
    }

    .belief-card {
        left: 18px;
        right: 18px;
        width: auto;
        padding: 1.4rem;
    }

    .info-card {
        display: block;
    }

    .volunteer-item {
        padding-left: 0;
        border-left: 0;
    }

    .cta-box {
        padding: 1.5rem;
    }
}
