/* =========================================================
   NOTE FROM JENNIFER
========================================================= */

:root {
    --founder-forest: #284f3c;
    --founder-forest-dark: #17382a;
    --founder-leaf: #5f8b67;
    --founder-sage: #dce9dd;
    --founder-sage-light: #f3f8f2;
    --founder-gold: #d7a928;
    --founder-gold-light: #fff5c9;
    --founder-cream: #fffdf6;
    --founder-white: #ffffff;
    --founder-text: #29342e;
    --founder-muted: #5f6e65;
    --founder-border: rgba(40, 79, 60, 0.18);
    --founder-shadow: 0 18px 45px rgba(31, 67, 49, 0.12);
}


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

.founder-hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
    padding: 6rem 1.5rem;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 245, 201, 0.95),
            transparent 38%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(220, 233, 221, 0.95),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #fffdf6 0%,
            #f4f9f1 52%,
            #e4efe3 100%
        );
}

.founder-hero::before,
.founder-hero::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.founder-hero::before {
    top: -110px;
    right: -85px;
    width: 300px;
    height: 300px;
    background: rgba(215, 169, 40, 0.1);
}

.founder-hero::after {
    bottom: -120px;
    left: -90px;
    width: 340px;
    height: 340px;
    background: rgba(95, 139, 103, 0.12);
}

.founder-hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 850px);
}

.founder-hero-icon,
.founder-closing-icon {
    margin-bottom: 1rem;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
}

.founder-eyebrow,
.founder-kicker {
    margin: 0 0 0.8rem;
    color: var(--founder-leaf);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.founder-hero h1 {
    margin: 0;
    color: var(--founder-forest-dark);
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    line-height: 1.02;
}

.founder-tagline {
    max-width: 720px;
    margin: 1.6rem auto 0;
    color: var(--founder-text);
    font-size: clamp(1.2rem, 2.6vw, 1.55rem);
    line-height: 1.7;
}

.founder-introduction {
    max-width: 690px;
    margin: 1.25rem auto 2rem;
    color: var(--founder-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================================
   PAGE SECTIONS
========================================================= */

.founder-section {
    padding: 5.5rem 1.5rem;
    background: var(--founder-white);
}

.founder-section-soft {
    background: var(--founder-sage-light);
}

.founder-section-highlight {
    background:
        linear-gradient(
            145deg,
            var(--founder-gold-light) 0%,
            #fffdf5 48%,
            #eef6eb 100%
        );
}

.founder-disclaimer {
    background:
        linear-gradient(
            145deg,
            #fff9dc 0%,
            #fffdf7 100%
        );
    border-top: 1px solid rgba(215, 169, 40, 0.24);
    border-bottom: 1px solid rgba(215, 169, 40, 0.24);
}

.founder-section-heading,
.founder-copy {
    width: min(100%, 820px);
    margin-inline: auto;
}

.founder-section-heading {
    margin-bottom: 2.2rem;
    text-align: center;
}

.founder-section-heading h2,
.founder-closing h2 {
    margin: 0;
    color: var(--founder-forest-dark);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
}

.founder-copy {
    color: var(--founder-text);
    font-size: 1.08rem;
    line-height: 1.9;
}

.founder-copy p {
    margin: 0 0 1.25rem;
}

.founder-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUOTES
========================================================= */

.founder-quote {
    position: relative;
    margin: 2.3rem 0;
    padding: 1.8rem 2rem 1.8rem 2.4rem;
    overflow: hidden;
    background: var(--founder-cream);
    border: 1px solid var(--founder-border);
    border-left: 6px solid var(--founder-gold);
    border-radius: 18px;
    box-shadow: var(--founder-shadow);
}

.founder-quote::before {
    position: absolute;
    top: -0.8rem;
    right: 1.2rem;
    content: "“";
    color: rgba(215, 169, 40, 0.17);
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
}

.founder-quote p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--founder-forest-dark);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: 1.65;
}


/* =========================================================
   LISTS
========================================================= */

.founder-list {
    margin: 1.6rem 0 2rem;
    padding: 0;
    list-style: none;
}

.founder-list li {
    position: relative;
    margin-bottom: 0.85rem;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--founder-white);
    border: 1px solid var(--founder-border);
    border-radius: 14px;
}

.founder-list li::before {
    position: absolute;
    top: 0.95rem;
    left: 1rem;
    content: "🌿";
}


/* =========================================================
   BUTTON ROWS
========================================================= */

.founder-button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.2rem;
}


/* =========================================================
   CLOSING
========================================================= */

.founder-closing {
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
    background:
        radial-gradient(
            circle at top center,
            rgba(255, 245, 201, 0.9),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #f2f8ef 0%,
            #fffdf6 100%
        );
}

.founder-closing .founder-copy {
    margin-top: 2rem;
}

.founder-closing-message {
    margin-top: 2rem !important;
    color: var(--founder-forest-dark);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 800;
    line-height: 1.6;
}

.founder-signature {
    margin-top: 2.4rem !important;
    color: var(--founder-leaf);
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .founder-hero {
        min-height: auto;
        padding: 4.75rem 1.2rem;
    }

    .founder-section,
    .founder-closing {
        padding: 4rem 1.2rem;
    }

    .founder-copy {
        font-size: 1rem;
        line-height: 1.8;
    }

    .founder-quote {
        padding: 1.5rem 1.35rem 1.5rem 1.6rem;
    }

    .founder-button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .founder-button-row .trail-button {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 480px) {

    .founder-hero {
        padding: 4rem 1rem;
    }

    .founder-section,
    .founder-closing {
        padding: 3.4rem 1rem;
    }

    .founder-tagline {
        font-size: 1.08rem;
    }

    .founder-introduction,
    .founder-copy {
        font-size: 0.98rem;
    }

    .founder-quote::before {
        display: none;
    }

}