/* =========================================
   PHOEBE & PARTNERS
   GLOBAL STYLES
========================================= */


*
 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    background: #ffffff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(22, 63, 58, 0.065),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 30%,
            rgba(217, 164, 65, 0.045),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 68%,
            rgba(22, 63, 58, 0.045),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 88%,
            rgba(217, 164, 65, 0.04),
            transparent 30%
        );
}

:root {

    --green: #429887;

    --dark-green: #236d5e;

    --deep-green: #123e35;

    --soft-green: #edf7f4;

    --black: #17211e;

    --grey: #68716e;

    --white: #ffffff;

    --border: #e5ebe9;

}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--black);

    background: var(--white);

    line-height: 1.6;

}


body.loaded {
    overflow: auto;
}


a {
    text-decoration: none;
}


button {
    font-family: inherit;
}


.container {

    width: 90%;

    max-width: 1200px;

    margin: auto;

}



/* =========================================
   PAGE LOADER
========================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--white);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;

}


.page-loader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-logo {

    width: 130px;

    height: 130px;

    margin-bottom: 25px;

    animation:
        loaderLogo 1.5s ease-in-out infinite;

}


.loader-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.loader-line {

    width: 160px;

    height: 2px;

    background: var(--border);

    overflow: hidden;

    position: relative;

}


.loader-line::after {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: var(--green);

    animation: loaderLine 1.5s ease infinite;

}


.page-loader p {

    margin-top: 15px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    color: var(--dark-green);

}


@keyframes loaderLogo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

}


@keyframes loaderLine {

    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }

}



/* =========================================
   HEADER
========================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,0.97);

    border-bottom:
        1px solid var(--border);

}


.header-inner {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--black);

}


.brand img {

    width: 55px;

    height: 55px;

    object-fit: contain;

}


.brand-name {

    display: flex;

    flex-direction: column;

}


.brand-name strong {

    font-size: 15px;

    letter-spacing: 0.3px;

}


.brand-name span {

    color: var(--green);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.7px;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 24px;

}


.main-nav a {

    color: #343b38;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;

}


.main-nav a:hover {

    color: var(--green);

}


.mobile-menu {

    display: none;

    width: 42px;

    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.mobile-menu span {

    display: block;

    width: 25px;

    height: 2px;

    margin: 5px auto;

    background: var(--dark-green);

    transition: 0.3s;

}



/* =========================================
   HERO
========================================= */

.hero {

    min-height: 690px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            110deg,
            #123e35,
            #286f61,
            #429887
        );

}


.hero-background {

    position: absolute;

    inset: 0;

    opacity: 0.15;

    background-image:
        radial-gradient(
            circle at 80% 20%,
            white 0,
            transparent 30%
        );

}


.hero-inner {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

}


.hero-content {

    max-width: 720px;

    color: white;

    animation:
        heroText 1s ease forwards;

}


.eyebrow {

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero .eyebrow {

    color: #d9fff5;

}


.hero h1 {

    font-size:
        clamp(48px, 7vw, 78px);

    line-height: 1.03;

    letter-spacing: -2px;

    margin: 18px 0 25px;

}


.hero p {

    max-width: 610px;

    font-size: 17px;

    color: #edf8f5;

}


.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 35px;

}


.btn {

    display: inline-block;

    padding: 13px 25px;

    font-size: 13px;

    font-weight: 700;

    border-radius: 3px;

    transition: 0.3s;

}


.btn-primary {

    color: white;

    background: var(--green);

}


.btn-primary:hover {

    background: var(--dark-green);

    transform: translateY(-2px);

}


.btn-light {

    color: white;

    border: 1px solid rgba(255,255,255,0.7);

}


.btn-light:hover {

    background: white;

    color: var(--dark-green);

}


.hero-logo {

    animation:
        heroLogo 1.2s ease forwards;

}


.hero-logo-ring {

    width: 290px;

    height: 290px;

    padding: 12px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.2);

}


.hero-logo-ring img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

}


@keyframes heroText {

    from {

        opacity: 0;

        transform:
            translateX(-35px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


@keyframes heroLogo {

    from {

        opacity: 0;

        transform:
            translateX(35px)
            scale(0.9);

    }

    to {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);

    }

}



/* =========================================
   MEDIA CAROUSEL
========================================= */

.media-section {

    padding: 110px 0;

    background: #ffffff;

}


.section-heading {

    max-width: 700px;

    margin:
        0 auto 50px;

    text-align: center;

}


.section-heading h2 {

    font-size: 44px;

    line-height: 1.15;

    margin:
        12px 0 18px;

}


.section-heading p {

    color: var(--grey);

}


.media-carousel {

    position: relative;

}


.media-stage {

    width: 100%;

    height: 600px;

    position: relative;

    overflow: hidden;

    background: #102f29;

    border-radius: 6px;

}


.media-item {

    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.03);

    transition:
        opacity 0.8s ease,
        transform 0.9s ease,
        visibility 0.8s ease;

}


.media-item.active {

    opacity: 1;

    visibility: visible;

    transform: scale(1);

}


.media-item img,
.media-item video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.media-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.65),
            transparent 55%
        );

    pointer-events: none;

}


.media-type {

    position: absolute;

    left: 30px;

    top: 30px;

    z-index: 3;

    padding:
        7px 12px;

    background:
        rgba(255,255,255,0.92);

    color: var(--dark-green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.carousel-button {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 10;

    width: 52px;

    height: 52px;

    border: 0;

    border-radius: 50%;

    cursor: pointer;

    background:
        rgba(255,255,255,0.95);

    color: var(--dark-green);

    font-size: 22px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.15);

    transition: 0.3s;

}


.carousel-button:hover {

    background: var(--green);

    color: white;

}


.carousel-button.previous {

    left: 20px;

}


.carousel-button.next {

    right: 20px;

}


.media-controls {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 20px;

}


#mediaCounter {

    min-width: 60px;

    font-size: 12px;

    font-weight: 800;

    color: var(--dark-green);

}


.carousel-progress {

    flex: 1;

    height: 2px;

    background: var(--border);

}


.carousel-progress span {

    display: block;

    height: 100%;

    width: 3%;

    background: var(--green);

    transition:
        width 0.5s ease;

}


.play-button {

    border: 0;

    background: transparent;

    color: var(--dark-green);

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

}


.media-caption {

    max-width: 700px;

    margin-top: 25px;

}


.media-caption span {

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.media-caption h3 {

    font-size: 26px;

    margin: 5px 0;

}


.media-caption p {

    color: var(--grey);

}/* =========================================
   MEDIA CAPTION
========================================= */

.media-caption {
    position: relative;
    margin-top: 25px;
    padding: 22px 25px;

    background: rgba(22, 63, 58, 0.96);

    border-left: 4px solid #d9a441;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.media-caption span {
    display: block;

    margin-bottom: 7px;

    color: #d9a441;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.media-caption h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-family: "Roboto", sans-serif;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.2;
}

.media-caption p {
    margin: 0;

    max-width: 650px;

    color: rgba(255,255,255,0.72);

    font-family: "Roboto", sans-serif;

    font-size: 12px;
    line-height: 1.6;
}



/* =========================================
   PLACEHOLDER SECTIONS
========================================= */

.placeholder-section {

    padding: 120px 0;

    min-height: 400px;

}


.placeholder-section.light {

    background:
        var(--soft-green);

}


.placeholder-section.dark {

    background:
        var(--deep-green);

    color: white;

}


.placeholder-section h2 {

    font-size: 45px;

    margin:
        12px 0 15px;

}


.placeholder-section p {

    max-width: 650px;

    color: var(--grey);

}


.placeholder-section.dark p {

    color: #c8d8d3;

}


.placeholder-section.dark .eyebrow {

    color: #9fddcf;

}



/* =========================================
   FOOTER
========================================= */

.site-footer {

    padding: 60px 0;

    background: #0d2923;

    color: #b9c9c4;

    text-align: center;

}


.footer-logo img {

    width: 75px;

    height: 75px;

    object-fit: contain;

    margin-bottom: 15px;

}


.site-footer p {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}


.site-footer small {

    display: block;

    margin-top: 10px;

    color: #7e918b;

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {


    .main-nav {

        position: absolute;

        top: 82px;

        left: 0;

        right: 0;

        background: white;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        gap: 18px;

        box-shadow:
            0 15px 30px rgba(0,0,0,0.08);

    }


    .main-nav.active {

        display: flex;

    }


    .mobile-menu {

        display: block;

    }


    .hero-inner {

        padding-top: 80px;

        padding-bottom: 80px;

    }


    .hero-logo {

        display: none;

    }


    .media-stage {

        height: 500px;

    }


}


@media (max-width: 600px) {


    .header-inner {

        height: 72px;

    }


    .brand img {

        width: 47px;

        height: 47px;

    }


    .brand-name strong {

        font-size: 12px;

    }


    .brand-name span {

        font-size: 7px;

    }


    .main-nav {

        top: 72px;

    }


    .hero {

        min-height: 650px;

    }


    .hero h1 {

        font-size: 46px;

        letter-spacing: -1px;

    }


    .hero p {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }


    .section-heading h2 {

        font-size: 34px;

    }


    .media-section {

        padding: 80px 0;

    }


    .media-stage {

        height: 430px;

        border-radius: 3px;

    }


    .carousel-button {

        width: 42px;

        height: 42px;

        font-size: 17px;

    }


    .carousel-button.previous {

        left: 10px;

    }


    .carousel-button.next {

        right: 10px;

    }


    .media-type {

        left: 15px;

        top: 15px;

    }


    .media-controls {

        gap: 10px;

    }


    .placeholder-section {

        padding: 80px 0;

    }


    .placeholder-section h2 {

        font-size: 34px;

    }

}/* =========================================
   ABOUT SECTION
========================================= */

.about-section {

    padding: 120px 0;

    background: #ffffff;

}


.about-grid {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items: center;

    gap: 90px;

}


.about-image {

    position: relative;

}


.about-image-frame {

    height: 520px;

    overflow: hidden;

    position: relative;

}


.about-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,70,60,0.25),
            transparent 50%
        );

}


.about-image-frame img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s ease;

}


.about-image:hover
.about-image-frame img {

    transform: scale(1.04);

}


.about-badge {

    position: absolute;

    right: -25px;

    bottom: 30px;

    width: 170px;

    padding: 22px;

    background:
        var(--green);

    color: white;

    display: flex;

    align-items: center;

    gap: 14px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.12);

}


.about-badge strong {

    font-size: 25px;

    font-weight: 800;

}


.about-badge span {

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

}


.about-content h2 {

    font-size:
        clamp(38px, 4vw, 52px);

    line-height: 1.12;

    margin:
        12px 0 25px;

}


.about-content > p {

    color: var(--grey);

    margin-bottom: 18px;

    max-width: 650px;

}


.about-points {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;

}


.about-point {

    display: flex;

    align-items: center;

    gap: 10px;

}


.about-point span {

    width: 25px;

    height: 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--soft-green);

    color:
        var(--dark-green);

    font-size: 12px;

    font-weight: 800;

}


.about-point p {

    color: var(--black);

    font-size: 13px;

    font-weight: 600;

}



/* =========================================
   MISSION & VISION
========================================= */

.mission-section {

    padding: 120px 0;

    background:
        var(--soft-green);

}


.mission-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

}


.mission-card {

    background: white;

    padding: 45px;

    min-height: 360px;

    position: relative;

    border:
        1px solid var(--border);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

}


.mission-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);

}


.mission-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 40px;

}


.mission-number {

    color:
        var(--green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.mission-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--soft-green);

    color:
        var(--dark-green);

    font-size: 18px;

    font-weight: 800;

}


.mission-card h3 {

    font-size: 28px;

    margin-bottom: 15px;

}


.mission-card p {

    color:
        var(--grey);

    max-width: 560px;

}


.mission-line {

    width: 55px;

    height: 3px;

    background:
        var(--green);

    position: absolute;

    bottom: 35px;

    left: 45px;

}



/* =========================================
   OPERATIONS INTRO
========================================= */

.operations-intro {

    padding: 110px 0;

    background:
        var(--deep-green);

    color: white;

}


.operations-intro-inner {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.operations-intro h2 {

    font-size:
        clamp(40px, 5vw, 60px);

    line-height: 1.08;

    margin-top: 12px;

}


.operations-intro .eyebrow {

    color:
        #a7dfd2;

}


.operations-intro p {

    color:
        #c6d7d2;

    max-width: 560px;

    font-size: 16px;

}



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-image {

        max-width: 650px;

        margin: auto;

    }


    .mission-grid {

        grid-template-columns: 1fr;

    }


    .operations-intro-inner {

        grid-template-columns: 1fr;

        gap: 30px;

    }

}


@media (max-width: 600px) {

    .about-section,
    .mission-section {

        padding: 80px 0;

    }


    .about-image-frame {

        height: 400px;

    }


    .about-badge {

        right: 10px;

        bottom: 20px;

    }


    .about-points {

        grid-template-columns: 1fr;

    }


    .mission-card {

        padding: 30px;

        min-height: 390px;

    }


    .mission-line {

        left: 30px;

        bottom: 25px;

    }


    .operations-intro {

        padding: 80px 0;

    }

}/* =========================================
   KEY OPERATIONAL AREAS
========================================= */

.operations-section {

    padding: 120px 0;

    background: #ffffff;

}


.operations-heading {

    margin-bottom: 65px;

}


.operations-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.operation-card {

    min-height: 350px;

    padding: 32px;

    position: relative;

    background: #ffffff;

    border: 1px solid var(--border);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

}


.operation-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--green);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);

}


.operation-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;

}


.operation-top > span {

    color:
        var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.operation-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--soft-green);

    color:
        var(--dark-green);

    font-size: 17px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


.operation-card:hover
.operation-icon {

    background:
        var(--green);

    color:
        white;

}


.operation-card h3 {

    font-size: 23px;

    line-height: 1.2;

    margin-bottom: 15px;

}


.operation-card p {

    color:
        var(--grey);

    font-size: 14px;

    line-height: 1.7;

}


.operation-card a {

    position: absolute;

    left: 32px;

    bottom: 28px;

    color:
        var(--dark-green);

    font-size: 12px;

    font-weight: 800;

}


.operation-card a span {

    display: inline-block;

    margin-left: 7px;

    transition:
        transform 0.3s ease;

}


.operation-card:hover
a span {

    transform:
        translateX(5px);

}


.operations-bottom {

    margin-top: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

}


.operations-bottom-line {

    width: 50px;

    height: 2px;

    background:
        var(--green);

}


.operations-bottom p {

    color:
        var(--grey);

    font-size: 13px;

    font-weight: 600;

}



/* =========================================
   OPERATIONS RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .operations-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .operations-section {

        padding: 80px 0;

    }


    .operations-grid {

        grid-template-columns: 1fr;

    }


    .operation-card {

        min-height: 330px;

    }


    .operations-bottom {

        flex-direction: column;

        text-align: center;

    }

}/* =========================================
   FOUNDER'S MESSAGE
========================================= */

.founder-section {

    padding: 130px 0;

    background:
        var(--soft-green);

}


.founder-grid {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 90px;

    align-items: center;

}


/* =========================================
   FOUNDER IMAGE
========================================= */

.founder-visual {

    position: relative;

    max-width: 500px;

}


.founder-image {

    height: 600px;

    overflow: hidden;

    background:
        #d7e9e4;

}


.founder-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;

}


.founder-visual:hover
.founder-image img {

    transform:
        scale(1.035);

}


.founder-label {

    position: absolute;

    right: -25px;

    bottom: 35px;

    padding: 20px 25px;

    min-width: 190px;

    background:
        var(--deep-green);

    color: white;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.15);

}


.founder-label span {

    display: block;

    color:
        #a7dfd2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 5px;

}


.founder-label strong {

    display: block;

    font-size: 13px;

    letter-spacing: 0.5px;

}



/* =========================================
   FOUNDER CONTENT
========================================= */

.founder-content h2 {

    font-size:
        clamp(40px, 4.5vw, 58px);

    line-height: 1.08;

    margin:
        12px 0 30px;

}


.founder-content > p {

    max-width: 650px;

    color:
        var(--grey);

    margin-bottom: 17px;

}


.founder-quote {

    position: relative;

    padding:
        25px 30px 25px 55px;

    margin-bottom: 25px;

    background:
        white;

    border-left:
        3px solid var(--green);

}


.quote-mark {

    position: absolute;

    left: 17px;

    top: 15px;

    color:
        var(--green);

    font-family:
        Georgia,
        serif;

    font-size: 48px;

    line-height: 1;

}


.founder-quote p {

    color:
        var(--dark-green);

    font-size: 17px;

    font-weight: 600;

    line-height: 1.65;

}


.founder-signature {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

}


.signature-line {

    width: 65px;

    height: 2px;

    background:
        var(--green);

    margin-bottom: 12px;

}


.founder-signature strong {

    color:
        var(--dark);

    font-size: 13px;

}


.founder-signature span {

    color:
        var(--grey);

    font-size: 11px;

    margin-top: 3px;

}



/* =========================================
   FOUNDER RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .founder-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .founder-visual {

        margin: auto;

        width: 100%;

    }


    .founder-image {

        height: 550px;

    }

}


@media (max-width: 600px) {

    .founder-section {

        padding: 80px 0;

    }


    .founder-image {

        height: 450px;

    }


    .founder-label {

        right: 10px;

        bottom: 20px;

    }


    .founder-quote {

        padding:
            22px 20px 22px 48px;

    }


    .founder-quote p {

        font-size: 15px;

    }

}/* =========================================
   ADMINISTRATIVE EXECUTIVES
========================================= */

.executives-section {

    padding: 125px 0;

    background: #d2fade;

}


.executives-heading {

    margin-bottom: 65px;

}


.executives-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px 24px;

}


/* =========================================
   EXECUTIVE CARD
========================================= */

.executive-card {

    background: white;

   
    opacity: 0;

    transform:
        translateY(45px);

    animation:
        executiveReveal 0.8s ease forwards;

}


.executive-card:nth-child(1) {
    animation-delay: 0.1s;
}


.executive-card:nth-child(2) {
    animation-delay: 0.2s;
}


.executive-card:nth-child(3) {
    animation-delay: 0.3s;
}


.executive-card:nth-child(4) {
    animation-delay: 0.4s;
}


.executive-card:nth-child(5) {
    animation-delay: 0.5s;
}


.executive-card:nth-child(6) {
    animation-delay: 0.6s;
}


.executive-image {

    height: 410px;

    border-radius: 50px;

    position: relative;

    overflow: hidden;

    background:
        var(--soft-green);

}


.executive-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18,62,53,0.25),
            transparent 40%
        );

    opacity: 0;

    transition:
        opacity 0.5s ease;

}


.executive-card:hover
.executive-image::after {

    opacity: 1;

}


.executive-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;

}


.executive-card:hover
.executive-image img {

    transform:
        scale(1.045);

}


.executive-number {

    position: absolute;

    left: 18px;

    top: 18px;

    z-index: 3;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        white;

    color:
        var(--dark-green);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================
   EXECUTIVE INFORMATION
========================================= */

.executive-info {

    padding:
        15px 2px 3px;
    
        margin-left: 
    
    50px;
    
    position:

    center;

}


.executive-info > span {

    display: block;

    color:
        var(--green);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 7px;

}


.executive-info h3 {

    font-size: 19px;

    line-height: 1.2;

    margin-bottom: 5px;

}


.executive-info p {

    color:
        var(--grey);

    font-size: 15px;

}


@keyframes executiveReveal {

    from {

        opacity: 0;

        transform:
            translateY(45px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}



/* =========================================
   EXECUTIVES RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .executives-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .executives-section {

        padding: 80px 0;

    }


    .executives-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .executive-image {

        height: 450px;

    }

}/* =========================================
   CONTACT / GET INVOLVED
========================================= */

/* =========================================
   GET INVOLVED — PREMIUM CTA
========================================= */

.contact-section {
    position: relative;
    padding: 130px 0;
    background: #0a2822;
    color: white;
    overflow: hidden;
}


/* BACKGROUND DECORATION */

.contact-section::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    top: -260px;
    right: -180px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.035);

    pointer-events: none;
}


.contact-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -200px;
    left: -120px;

    border-radius: 50%;

    background:
        rgba(92, 184, 92, 0.05);

    pointer-events: none;
}


.contact-wrapper {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 75px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.contact-content {
    position: relative;
}


.contact-content .eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-content .eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: var(--green);
}


.contact-content h2 {
    max-width: 700px;

    margin-top: 20px;
    margin-bottom: 25px;

    color: white;

    font-size: clamp(
        42px,
        5vw,
        70px
    );

    line-height: 1.02;

    letter-spacing: -1.5px;
}


.contact-intro {
    max-width: 560px;

    color:
        rgba(255,255,255,0.65);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 38px;
}


.contact-item {
    padding: 17px;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.08);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.contact-item:hover {
    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,0.075);
}


.contact-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,0.08);

    color: var(--green);

    font-size: 15px;
}


.contact-item span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,0.38);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.contact-item strong {
    display: block;

    color: white;

    font-size: 12px;

    font-weight: 500;

    word-break: break-word;
}


/* =========================================
   CTA BUTTONS
========================================= */

.contact-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;
}


.contact-actions .btn {
    position: relative;

    overflow: hidden;

    min-width: 155px;

    padding: 15px 25px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-actions .btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18);
}


/* =========================================
   RIGHT — GET INVOLVED CARD
========================================= */

.contact-card {
    position: relative;

    padding: 45px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.11),
            rgba(255,255,255,0.035)
        );

    border:
        1px solid rgba(255,255,255,0.13);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.20);

    overflow: hidden;
}


/* CARD ACCENT */

.contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        var(--green);
}


/* LARGE DECORATIVE NUMBER */

.contact-card::after {
    content: "∞";

    position: absolute;

    right: 25px;
    top: 5px;

    color:
        rgba(255,255,255,0.035);

    font-size: 150px;

    font-weight: 800;

    line-height: 1;

    pointer-events: none;
}


.contact-card-top {
    position: relative;
    z-index: 2;

    padding-bottom: 28px;

    border-bottom:
        1px solid rgba(255,255,255,0.10);
}


.contact-card-top > span {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-card-top h3 {
    max-width: 400px;

    margin-bottom: 12px;

    color: white;

    font-size: 34px;

    line-height: 1.1;
}


.contact-card-top p {
    max-width: 430px;

    color:
        rgba(255,255,255,0.58);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   INVOLVEMENT OPTIONS
========================================= */

.involvement-list {
    position: relative;
    z-index: 2;

    padding-top: 5px;
}


.involvement-item {
    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 18px;

    padding: 22px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    transition:
        transform 0.3s ease;
}


.involvement-item:hover {
    transform:
        translateX(7px);
}


.involvement-item:last-child {
    border-bottom: none;
}


.involvement-number {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.14);

    color: var(--green);

    font-size: 9px;

    font-weight: 800;
}


.involvement-item h4 {
    margin-bottom: 5px;

    color: white;

    font-size: 15px;
}


.involvement-item p {
    color:
        rgba(255,255,255,0.48);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-wrapper {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-content h2 {
        max-width: 650px;
    }

}


@media (max-width: 700px) {

    .contact-details {
        grid-template-columns: 1fr;
    }


    .contact-card {
        padding: 32px 25px;
    }


    .contact-card-top h3 {
        font-size: 29px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 90px 0;
    }


    .contact-content h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }


    .contact-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .contact-actions .btn {
        width: 100%;
    }

}

/* =========================================
   CONTACT CONTENT
========================================= */

.contact-content .eyebrow {

    color:
        var(--green);

}


.contact-content h2 {

    max-width: 650px;

    margin-top: 18px;

    margin-bottom: 22px;

    color: white;

    font-size: clamp(
        38px,
        5vw,
        65px
    );

    line-height: 1.05;

}


.contact-intro {

    max-width: 580px;

    color:
        rgba(255,255,255,0.72);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-top: 42px;

}


.contact-item {

    display: flex;

    align-items: center;

    gap: 17px;

}


.contact-icon {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.12);

    color:
        var(--green);

    font-size: 18px;

}


.contact-item span {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,0.48);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-item strong {

    display: block;

    color: white;

    font-size: 14px;

    font-weight: 500;

}


/* =========================================
   CONTACT BUTTONS
========================================= */

.contact-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 42px;

}


.contact-actions .btn {

    text-decoration: none;

}


/* =========================================
   INVOLVEMENT CARD
========================================= */

.contact-card {

    padding: 42px;

    background:
        rgba(255,255,255,0.055);

    border:
        1px solid rgba(255,255,255,0.1);

}


.contact-card-top {

    padding-bottom: 30px;

    border-bottom:
        1px solid rgba(255,255,255,0.1);

}


.contact-card-top > span {

    display: block;

    margin-bottom: 13px;

    color:
        var(--green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.contact-card-top h3 {

    margin-bottom: 13px;

    color: white;

    font-size: 29px;

    line-height: 1.2;

}


.contact-card-top p {

    color:
        rgba(255,255,255,0.62);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================
   INVOLVEMENT ITEMS
========================================= */

.involvement-list {

    padding-top: 10px;

}


.involvement-item {

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 18px;

    padding: 25px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

}


.involvement-item:last-child {

    border-bottom:
        none;

}


.involvement-number {

    color:
        var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.involvement-item h4 {

    margin-bottom: 7px;

    color: white;

    font-size: 16px;

}


.involvement-item p {

    color:
        rgba(255,255,255,0.55);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;

    }

}


@media (max-width: 600px) {

    .contact-section {

        padding: 85px 0;

    }


    .contact-content h2 {

        font-size: 40px;

    }


    .contact-card {

        padding: 28px 22px;

    }


    .contact-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .contact-actions .btn {

        text-align: center;

    }

}/* =====================================================
   PHOEBE & PARTNERS — CLEAN COMPACT FOOTER
===================================================== */

.site-footer {
    background: #163f3a;
    color: #ffffff;
    padding: 55px 0 0;
    font-family: "Roboto", sans-serif;
}

/* MAIN FOOTER */

.site-footer .footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
    gap: 45px;
    padding-bottom: 45px;
}

/* BRAND */

.site-footer .footer-brand {
    max-width: 320px;
}

/* REMOVE / HIDE FOOTER LOGO */

.site-footer .footer-logo {
    display: none !important;
}

.site-footer .footer-brand p {
    margin: 0 0 20px;
    color: #c5d3d0;
    font-size: 25px;
    line-height: 1.7;
    font-weight: 400;
}

/* SOCIAL ICONS */

.site-footer .footer-socials {
    display: flex;
    gap: 9px;
}

.site-footer .footer-socials a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);

    color: #dce7e4;
    background: transparent;

    font-size: 18px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.site-footer .footer-socials a:hover {
    background: #d9a441;
    border-color: #d9a441;
    color: #f6f8f8;
    transform: translateY(-3px);
}

/* FOOTER COLUMNS */

.site-footer .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer .footer-column h3 {
    margin: 0 0 18px;

    color: white;

    font-size: 22px;
    font-weight: 500;

    letter-spacing: 0.7px;
    text-align: left;
}

.sponsor-head {
    color: rgb(196, 253, 213)
    
}
    

.site-footer .footer-column a,
.site-footer .footer-column p {
    margin: 0 0 10px;

    color: #b9cbc6;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.5;

    text-decoration: none;

    transition: all 0.25s ease;
}

.site-footer .footer-column a:hover {
    color: #d9a441;
    transform: translateX(3px);
}

/* CONTACT */

.site-footer .footer-contact p {
    margin-bottom: 10px;
}

.site-footer .footer-contact a {
    color: #c9d7d3;
}

.site-footer .footer-contact a:hover {
    color: #d9a441;
}

/* BOTTOM BAR */

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 5px 0;

    border-top: 1px solid rgba(255,255,255,0.12);
}

.site-footer .footer-bottom p {
    
    color: #8fa7a1;
   margin-left: 250;

    font-size: 14px;
    font-weight: 200;

    line-height: 1.5;
    
}

.site-footer .footer-bottom span {
    color: #849b95;

    font-size: 9px;
    font-weight: 500;

    text-align: center;
}

/* TABLET */

@media (max-width: 900px) {

    .site-footer .footer-main {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

/* MOBILE */

@media (max-width: 650px) {

    .site-footer {
        padding-top: 45px;
    }

    .site-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px 25px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .site-footer .footer-bottom span {
        text-align: center;
    }
}

/* SMALL PHONES */

@media (max-width: 420px) {

    .site-footer .footer-main {
        grid-template-columns: 1fr;
    }
}.mission-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--soft-green);
    color: var(--green);

    font-size: 21px;

    border: 1px solid rgba(22, 63, 58, 0.08);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--green);
    color: #ffffff;

    transform: rotate(-5deg) scale(1.08);
}
