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

#hero {
    padding-top: 230px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: var(--surface-teal, #16223B);
}

#hero .pageItemContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#hero .tag2 {
    background: rgba(244, 245, 247, 0.1);
    color: var(--text-white);
}

#hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-white);
    max-width: 850px;
}

#hero .heroSub {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #C7D2E4;
    max-width: 780px;
    margin-bottom: 30px;
}

.ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#hero .cta1 {
    background: #16223B;
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

main .cta {
    width: 280px;
}

@media (max-width: 1000px) {
    #hero {
        padding-top: 120px;
    }
}

@media (max-width: 650px) {
    #hero h1 {
        font-size: 30px;
    }

    #hero .heroSub {
        font-size: 16px;
        line-height: 1.5;
    }

    .ctas {
        flex-wrap: wrap;
    }
}

@media (max-width: 350px) {
    .ctas .cta {
        width: 100%;
    }
}

.headerGroup h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--libre);
    line-height: 1.3;
    color: var(--teal-900);
    margin-top: 20px;
    max-width: 900px;
}

.headerGroup p {
    font-size: 20px;
    line-height: 1.3;
    color: var(--text-gray);
    margin-top: 20px;
    max-width: 800px;
}

@media (max-width: 650px) {
    .herocontent {
        align-items: flex-start;
        text-align: left;
        padding-bottom: 64px;
    }

    .herocontent h1 {
        font-size: 30px;
    }

    .herocontent h2 {
        font-size: 1.7em;
    }

    .headerGroup h2 {
        font-size: 30px;
    }

    .headerGroup p {
        font-size: 16px;
        line-height: 1.5;
    }
}



.vision-mission {
    padding-top: 104px;
    padding-bottom: 104px;
    background: #f4f4f4;
}

/* ==========================================================================
   ORIGIN STORY
   ========================================================================== */

.originStory {
    padding-top: 104px;
    padding-bottom: 104px;
}

.originStory-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 56px;
}

.originStory-card {
    display: flex;
    gap: 32px;
    align-items: stretch;
    background: var(--surface-white, #fcfcfd);
    border: 1px solid var(--surface-gray, #d3d7e0);
    border-radius: 20px;
    padding: 56px 0 56px 56px;
    overflow: hidden;
}

.originStory-text {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.originStory-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    color: var(--teal-900, #16223b);
    margin: 0;
}

.originStory-heading-regular {
    font-weight: 400;
}

.originStory-text p:not(.originStory-heading) {
    font-size: 18px;
    line-height: 1.45;
    color: var(--text-mid-gray, #5b6377);
}

.originStory-image {
    flex-shrink: 0;
    width: 490px;
}

.originStory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .originStory-card {
        flex-direction: column;
        padding: 32px;
    }

    .originStory-image {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .originStory {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .originStory-heading {
        font-size: 24px;
    }
}


.vision-mission-grid {
    display: flex;
    gap: 32px;
    margin-top: 56px;
}

.vision-card {
    flex: 1 0 0;
    min-width: 0;
    padding: 24px;
    border-radius: var(--Spacing-2, 16px);
    background: linear-gradient(180deg, rgba(247, 242, 230, 0.13) 2.37%, var(--Entrelacs-Yellow-100, rgba(255, 236, 187, 0.13)) 86.13%);
    backdrop-filter: 100px;
}

.vision-card h3 {
    font-family: var(--libre);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

.vision-card p {
    font-size: 20px;
    line-height: 1.45;
    color: var(--text-gray2);
}

@media (max-width: 800px) {
    .vision-mission-grid {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .vision-mission {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .vision-card h3 {
        font-size: 24px;
    }

    .vision-card p {
        font-size: 16px;
    }
}


.founderStory {
    padding-top: 104px;
    padding-bottom: 104px;
}

.founderStory-card {
    background: var(--surface-white, #fcfcfd);
    border: 1px solid var(--surface-gray, #d3d7e0);
    border-radius: 24px;
    padding: 56px;
    display: flex;
    flex-direction: column;
}

.founderStory-header h2 {
    margin-top: 0;
}

.founderStory-main {
    display: flex;
    gap: 55px;
    align-items: flex-start;
    position: relative;
    margin: 80px 0 50px;
}

.founderStory-quote-icon {
    position: absolute;
    left: 48%;
    top: 70px;
    width: 45px;
    height: 36px;
}

.founderStory-quote-icon img {
    width: 100%;
    height: 100%;
}

.founderStory-photo-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founderStory-photo-wrapper {
    width: 417px;
    height: 417px;
    border-radius: 24px;
    overflow: hidden;
    background: #99c3f4;
}

.founderStory-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founderStory-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.founderStory-name {
    font-family: var(--libre);
    font-size: 24px;
    font-weight: 700;
    color: var(--teal-dark);
}

.founderStory-role {
    font-family: var(--libre);
    font-size: 20px;
    color: var(--text-base);
}

.founderStory-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 610px;
}

.founderStory-intro,
.founderStory-body {
    font-size: 20px;
    line-height: 1.45;
    color: var(--text-gray2);
}

@media (max-width: 1024px) {
    .founderStory-main {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .founderStory-quote-icon {
        left: 24px;
        top: 40px;
    }

    .founderStory-photo-wrapper {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    .founderStory-card {
        padding: 24px;
    }
}

@media (max-width: 650px) {

    .founderStory-pullquote {
        padding: 0;
        font-size: 24px;
    }

    .founderStory-name {
        font-size: 20px;
    }

    .founderStory-role {
        font-size: 16px;
    }

    .founderStory-intro {
        font-size: 16px;
    }

    .founderStory-body {
        font-size: 16px;
        line-height: 1.6;
    }

    #foundertexthidden p {
        font-size: 16px;
    }
}


.group {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0 auto;
}

.groupHeader {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--tangerine);
    text-align: center;
}

.groupList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 56px;
}

.groupListItem {
    width: 40%;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
}

.groupListItem .img {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 24px;
    background-color: #33486A;
    overflow: hidden;
    border-radius: 24px;
}

.groupListItem h3 {
    color: #156B70;
    font-family: "Libre Baskerville";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
}

.groupListItem header {
    color: #080808;
    font-family: "Libre Baskerville";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 116%;
    margin-top: 9px;
    margin-bottom: 14px;
}

.groupListItem p {
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--text-gray)
}


#leadership .groupListItem {
    width: 31%;
    margin: 0 1%;
}


#extendedLeadership .groupListItem {
    width: 23%;
    margin: 0 1% 56px;
}

#extendedLeadership .groupListItem .img {
    background-color: #F0708C;
    padding-top: 12px;
}

#advisors .groupListItem .img {
    width: 120px;
    height: 120px;
    margin-bottom: 0;
    flex-shrink: 0;
    background: #906192;
}
#extendedLeadership .groupListItem h3,
#advisors .groupListItem h3 {
    font-size: 20px;
}

#extendedLeadership .groupListItem header,
#advisors .groupListItem header {
    font-size: 16px;
}

#advisors .groupListItem {
    width: 47%;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
    align-items: center;
}


@media (max-width: 890px) {
    .group {
        padding: 60px 80px;
    }

    #leadership .groupListItem {
        width: 47%;
        margin-bottom: 46px;
    }

    #extendedLeadership .groupListItem {
        width: 30%;
    }

    #advisors .groupListItem {
        width: 100%;
    }


}

@media (max-width: 750px) {
    .group {
        padding: 60px 24px;
    }

    .groupListItem,
    #leadership .groupListItem,
    #extendedLeadership .groupListItem {
        width: 100%;
    }

    #advisors .groupListItem {
        flex-direction: column;
        align-items: flex-start;
    }

    .groupListItem h3 {
        font-size: 20px;
    }

    .groupListItem header {
        font-size: 16px;
    }

    .groupListItem p {
        font-size: 14px;
    }

}
