* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --green: #07a507;
    --green-deep: #036b35;
    --green-bright: #00c853;
    --dark: #07130e;
    --muted: #5d7065;
    --light: #f5fff8;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 5%;
    max-width: 1240px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand img {
    height: 58px;
    width: 58px;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.name {
    color: var(--green);
    font-size: clamp(20px, 4vw, 34px);
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
}

.btn,
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.45rem;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-bright));
    box-shadow: 0 14px 30px rgba(7, 165, 7, 0.28);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.burger span {
    width: 27px;
    height: 3px;
    background-color: var(--green);
    border-radius: 999px;
}

.close-btn {
    display: none;
    place-items: center;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1100;
    color: var(--white);
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.about-hero {
    min-height: 86vh;
    padding: 9rem 5% 4.5rem;
    display: grid;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 19, 14, 0.94) 0%, rgba(7, 19, 14, 0.74) 46%, rgba(7, 165, 7, 0.12) 100%),
        url("../images/grow.jpg") center right / cover no-repeat;
    position: relative;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 26%;
    background: linear-gradient(180deg, rgba(245, 255, 248, 0), var(--light));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #baf7c6;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-hero h1 {
    max-width: 760px;
    font-size: clamp(2.35rem, 6vw, 5rem);
    line-height: 1.03;
    margin-bottom: 1.2rem;
}

.about-hero p {
    max-width: 660px;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

.story-section,
.testimonials {
    padding: 5rem 5%;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.section-heading .eyebrow {
    color: var(--green);
    margin-bottom: 0.55rem;
}

.section-heading h2,
.principles h2 {
    color: var(--dark);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 0.8rem;
}

.section-heading p {
    color: var(--muted);
    font-weight: 500;
}

.story-grid,
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1120px;
    margin: 0 auto;
}

.story-grid article,
.testimonial-cards article {
    min-height: 220px;
    padding: 1.6rem;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(7, 165, 7, 0.12);
    box-shadow: 0 18px 45px rgba(7, 19, 14, 0.08);
}

.story-grid h3,
.testimonial-cards h3 {
    margin-bottom: 0.75rem;
    color: var(--green-deep);
}

.story-grid p,
.testimonial-cards p,
.principles p {
    color: var(--muted);
}

.principles {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 2rem;
    padding: 5rem 5%;
    background:
        linear-gradient(90deg, rgba(245, 255, 248, 0.98), rgba(255, 255, 255, 0.86)),
        url("../images/money.jpg") center / cover no-repeat;
}

.principles-copy {
    max-width: 720px;
}

.principles p {
    margin-top: 1rem;
    font-weight: 500;
}

.principles-panel {
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 8px;
    background: rgba(7, 19, 14, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.principles-panel div {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
}

.principles-panel strong {
    display: block;
    color: var(--white);
    font-size: 1.8rem;
}

.principles-panel span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

footer {
    background: var(--green);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
}

@media (max-width: 900px) {
    .story-grid,
    .testimonial-cards,
    .principles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -230px;
        height: 100vh;
        width: 220px;
        background: var(--green);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.25rem;
        gap: 1.5rem;
        box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li a {
        color: var(--white);
        font-size: 1.05rem;
    }

    .nav-links .btn {
        color: var(--green);
        background: var(--white);
        box-shadow: none;
    }

    .about-hero {
        min-height: auto;
        padding-top: 7.6rem;
        background:
            linear-gradient(180deg, rgba(7, 19, 14, 0.94), rgba(7, 19, 14, 0.7)),
            url("../images/grow.jpg") center / cover no-repeat;
    }

    .story-section,
    .testimonials,
    .principles {
        padding: 3.8rem 5%;
    }
}
