/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #08783e;
    --green-dark: #005c2d;
    --green-light: #eaf7ef;
    --dark: #07111f;
    --text: #303a37;
    --muted: #66716c;
    --border: #dfe7e2;
    --white: #ffffff;
    --background: #f8faf9;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    height: 76px;
    background: #ffffff;
    border-bottom: 1px solid #edf1ee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 19px;
    font-weight: 800;
    color: #111820;
}

.brand-text strong span {
    color: var(--green);
}

.brand-text small {
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #555;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #202622;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--green);
    left: 0;
    bottom: -8px;
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


/* Header Button */

.header-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;

    background: var(--green);
    color: white;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.25s ease;
}

.header-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}


/* Mobile Menu */

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}


/* =====================================================
   FOUNDER HERO
===================================================== */

.founder-hero {
    padding: 70px 0 90px;
    background: #ffffff;
}

.founder-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 50px;

    display: grid;
    grid-template-columns: 1fr 1.15fr 0.75fr;
    gap: 40px;

    align-items: center;
}


/* Founder Intro */

.section-eyebrow {
    display: inline-block;

    color: var(--green);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.04em;
}

.founder-intro h1 {
    margin-top: 12px;

    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--dark);
}

.founder-intro h2 {
    margin-top: 8px;

    color: var(--green);

    font-size: 26px;
    font-weight: 600;
}


/* Quote */

.founder-quote {
    display: flex;
    gap: 12px;

    margin-top: 30px;
}

.quote-icon {
    color: var(--green);
    font-size: 48px;
    line-height: 0.8;
    font-weight: 700;
}

.founder-quote p {
    max-width: 420px;

    font-size: 15px;
    line-height: 1.7;

    color: #27322d;
}

.founder-quote strong {
    display: block;
    color: var(--green);
}


/* Description */

.founder-description {
    margin-top: 22px;

    max-width: 470px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}


/* Buttons */

.founder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 18px;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.25s ease;
}

.btn-primary {
    color: white;
    background: var(--green);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--green);
    border: 1px solid var(--green);
    background: white;
}

.btn-secondary:hover {
    background: var(--green-light);
}


/* =====================================================
   FOUNDER IMAGE
===================================================== */

.founder-image-wrapper {
    position: relative;

    height: 560px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.founder-bg-circle {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #eaf7ef 0%,
            #f4faf6 55%,
            transparent 70%
        );

    z-index: 0;
}

.founder-image {
    position: relative;
    z-index: 1;

    height: 550px;
    width: auto;

    object-fit: contain;
}


/* =====================================================
   VALUE CARDS
===================================================== */

.founder-values {
    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 18px 22px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.04);
}

.value-card {
    display: flex;
    gap: 15px;

    padding: 20px 0;

    border-bottom: 1px solid #edf1ee;
}

.value-card:last-child {
    border-bottom: none;
}

.value-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-light);

    color: var(--green);

    font-size: 18px;
}

.value-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.value-card p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   CO-FOUNDERS
===================================================== */

.cofounders-section {
    padding: 90px 0 110px;

    background: var(--background);
}

.section-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 30px;
}


/* Heading */

.section-heading {
    text-align: center;
    max-width: 650px;

    margin: 0 auto 55px;
}

.section-heading h2 {
    margin-top: 10px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;
}

.section-heading h2 span {
    color: var(--green);
}

.section-heading p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 15px;
}


/* Grid */

.cofounder-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;

    max-width: 900px;

    margin: auto;
}


/* Card */

.cofounder-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cofounder-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 80, 40, 0.1);
}


/* Image */

.cofounder-image-wrapper {
    height: 370px;

    position: relative;

    overflow: hidden;

    background: #f7faf8;
}

.cofounder-bg-circle {
    position: absolute;

    width: 320px;
    height: 320px;

    left: 50%;
    bottom: -100px;

    transform: translateX(-50%);

    background: #eaf7ef;

    border-radius: 50%;
}

.cofounder-image {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center bottom;
}


/* Content */

.cofounder-content {
    padding: 28px 30px 32px;
}

.cofounder-content h3 {
    font-size: 23px;

    color: var(--green);

    margin-bottom: 5px;
}

.cofounder-role {
    font-size: 14px;

    font-weight: 600;

    color: var(--dark);
}

.small-green-line {
    width: 35px;
    height: 2px;

    margin: 18px auto;

    background: var(--green);
}

.cofounder-content p {
    max-width: 400px;

    margin: auto;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* LinkedIn */

.linkedin-btn {
    width: 38px;
    height: 38px;

    margin: 22px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);

    border: 1px solid var(--green);

    border-radius: 7px;

    transition: 0.25s ease;
}

.linkedin-btn:hover {
    color: white;
    background: var(--green);

}
/* =====================================================
   FOOTER
===================================================== */

.simple-footer {
    padding: 25px;

    text-align: center;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 13px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .header-container {
        padding: 0 25px;
    }

    .main-nav {
        gap: 20px;
    }

    .founder-container {
        grid-template-columns: 1fr 1fr;
    }

    .founder-intro {
        order: 1;
    }

    .founder-image-wrapper {
        order: 2;
    }

    .founder-values {
        grid-column: 1 / -1;
        order: 3;

        display: grid;
        grid-template-columns: repeat(3, 1fr);

        gap: 20px;
    }

    .value-card {
        border-bottom: none;
        border-right: 1px solid #edf1ee;

        padding: 10px 20px;
    }

    .value-card:last-child {
        border-right: none;
    }

    .mission-container {
        grid-template-columns: 1fr 2fr;
    }

    .mission-values {
        grid-column: 1 / -1;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .site-header {
        height: 65px;
    }

    .main-nav,
    .header-btn {
        display: none;
    }

    .mobile-menu {
        display: block;
    }


    /* Founder */

    .founder-hero {
        padding: 50px 0;
    }

    .founder-container {
        display: flex;
        flex-direction: column;

        padding: 0 20px;

        gap: 35px;
    }

    .founder-intro {
        text-align: center;
    }

    .founder-intro h1 {
        font-size: 40px;
    }

    .founder-intro h2 {
        font-size: 22px;
    }

    .founder-quote {
        text-align: left;
    }

    .founder-description {
        margin-left: auto;
        margin-right: auto;
    }

    .founder-actions {
        justify-content: center;
    }


    /* Founder Image */

    .founder-image-wrapper {
        width: 100%;
        height: 450px;
    }

    .founder-image {
        height: 440px;
        max-width: 100%;
    }

    .founder-bg-circle {
        width: 380px;
        height: 380px;
    }


    /* Values */

    .founder-values {
        display: block;

        width: 100%;
    }

    .value-card {
        border-right: none;

        border-bottom: 1px solid #edf1ee;

        padding: 20px 0;
    }

    .value-card:last-child {
        border-bottom: none;
    }


    /* Co-Founders */

    .cofounders-section {
        padding: 65px 0;
    }

    .section-container {
        padding: 0 20px;
    }

    .cofounder-grid {
        grid-template-columns: 1fr;

        max-width: 500px;
    }

    .cofounder-image-wrapper {
        height: 350px;
    }


    /* Mission */

    .mission-banner {
        padding: 40px 20px;
    }

    .mission-container {
        grid-template-columns: 1fr;

        padding: 35px 25px;

        gap: 30px;
    }

    .mission-main-icon {
        margin: auto;
    }

    .mission-main-text {
        text-align: center;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .mission-value {
        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, 0.25);

        padding: 20px 0 0;
    }


    /* CTA */

    .founder-cta {
        padding: 50px 20px;
    }

    .cta-container {
        flex-direction: column;

        text-align: center;

        padding: 35px 20px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text small {
        font-size: 6px;
    }

    .founder-intro h1 {
        font-size: 34px;
    }

    .founder-image-wrapper {
        height: 380px;
    }

    .founder-image {
        height: 370px;
    }

    .founder-bg-circle {
        width: 320px;
        height: 320px;
    }

    .founder-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .cofounder-image-wrapper {
        height: 300px;
    }

    .mission-main-text h2 {
        font-size: 22px;
    }

    .cta-container h2 {
        font-size: 22px;
    }

}