/* Supporting Organizations */
.supporting-orgs {
    background-color: #E9F3F8;
    padding: 70px 0 140px;
}

.supporting-orgs__title {
    text-align: center;
    margin: 0 0 30px;
    color: #242424;
}

.supporting-orgs__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 100px;
}

.supporting-orgs__logo img {
    max-height: 140px;
    width: auto;
}

/* Footer */
#site-footer {
    padding: 0;
    margin-top: -80px;
    overflow: hidden;
}

.site-footer__inner {
    display: flex;
    min-height: 500px;
}

.site-footer__left {
    position: relative;
    flex: 1;
    padding: 53px 520px 24px 0;
    background-color: #F8F8F8;
    border-top-right-radius: 80px;
}

.site-footer__left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1px;
    transform: translateX(-100%);
    width: 9999px;
    height: 100%;
    background-color: #F8F8F8;
    pointer-events: none;
}

.site-footer__left {
    display: flex;
    flex-direction: column;
}

.site-footer__branding {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.site-footer__logo {
    width: 117px;
    height: 106px;
    object-fit: contain;
}

.site-footer__org-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #242424;
    max-width: 25em;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: auto;
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 20px;
    line-height: 36px;
    color: #3D3D3D;
}

.site-footer__contact-item--address {
    align-items: flex-start;
}

.site-footer__contact-item a {
    color: #3D3D3D;
    text-decoration: none;
}

.site-footer__contact-item a:hover {
    color: #166592;
}

.site-footer__contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    transform: translateY(10%);
}

.site-footer__legal {
    margin-top: 40px;
}

.site-footer__legal ul {
    display: flex;
    gap: 50px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__legal ul li {
    padding-left: 0;
}

.site-footer__legal ul li a {
    font-size: 21px;
    font-weight: 300;
    line-height: 36px;
    color: #3D3D3D;
    text-decoration: none;
}

.site-footer__legal ul li a:hover {
    color: #166592;
}

/* Footer Right */
.site-footer__right {
    position: relative;
    width: 58%;
    background: #E2E3E4;
    padding: 80px 0 24px 120px;
    margin: 80px 0 0 -500px;
}

.site-footer__right::before {
    content: "";
    position: absolute;
    top: 0;
    right: 1px;
    transform: translateX(100%);
    width: 9999px;
    height: 100%;
    background-color: #E2E3E4;
    pointer-events: none;
}

.site-footer__right-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.site-footer__nav {
    flex: 1;
}

.site-footer__menu {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 0 40px;
    max-width: 766px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__menu > li {
    padding-left: 0;
}

/* About PPRC and Projects share first column */
.site-footer__menu > li:nth-child(1),
.site-footer__menu > li:nth-child(2) {
    grid-column: 1;
}

.site-footer__menu > li:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.site-footer__menu > li:nth-child(4) {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.site-footer__menu > li > a {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #242424;
    text-decoration: none;
    display: block;
    margin-bottom: 13px;
}

.site-footer__menu > li.menu-item-has-children > a {
    cursor: default;
}

.site-footer__menu > li:not(.menu-item-has-children) > a:hover {
    color: #166592;
}

/* Level 2 items */
.site-footer__menu > li > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.site-footer__menu > li > ul > li {
    padding-left: 0;
}

.site-footer__menu > li > ul > li > a {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    color: #3D3D3D;
    text-decoration: none;
}

.site-footer__menu > li > ul > li > a:hover {
    color: #166592;
}

/* Hide level 3 */
.site-footer__menu > li > ul > li > ul {
    display: none;
}

.site-footer__copyright {
    font-size: 21px;
    font-weight: 300;
    line-height: 36px;
    color: #3D3D3D;
    margin-top: auto;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1.5px solid #3D3D3D;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    transition: opacity 0.3s;
}

.scroll-top:hover {
    border-color: #166592;
}

.scroll-top:hover svg path {
    stroke: #166592;
}

/* Footer Bottom (tablet/mobile only) */
.site-footer__bottom {
    display: none;
}

@media (max-width: 1680px) {
    .site-footer__right {
        width: 55%;
        padding: 60px 0 24px 60px;
    }
}

/* Tablet: <= 1280px */
@media (max-width: 1280px) {
    .supporting-orgs__title {
        margin-bottom: 50px;
    }

    .supporting-orgs__logos {
        gap: 30px 64px;
    }

    .supporting-orgs__logo img {
        max-height: 95px;
    }

    #site-footer > .container {
        padding: 0;
    }

    .site-footer__inner {
        flex-direction: column;
        min-height: auto;
    }

    .site-footer__left {
        padding: 53px 58px 50px;
    }

    .site-footer__left::before {
        display: none;
    }

    .site-footer__right {
        display: none;
    }

    .site-footer__right::before {
        display: none;
    }

    .site-footer__legal {
        display: none;
    }

    .site-footer__bottom {
        display: block;
        background: #E2E3E4;
        padding: 22px 58px;
        text-align: center;
    }

    .site-footer__bottom-legal ul {
        display: flex;
        justify-content: center;
        gap: 40px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .site-footer__bottom-legal ul li {
        padding-left: 0;
    }

    .site-footer__bottom-legal ul li a {
        font-size: 21px;
        font-weight: 300;
        line-height: 36px;
        color: #3D3D3D;
        text-decoration: none;
    }

    .site-footer__bottom-legal ul li a:hover {
        color: #166592;
    }

    .site-footer__bottom-copyright {
        font-size: 21px;
        font-weight: 300;
        line-height: 36px;
        color: #3D3D3D;
        text-align: center;
        margin-top: 10px;
    }
}

/* Mobile: <= 768px */
@media (max-width: 768px) {
    .supporting-orgs {
        padding: 100px 0 120px;
    }

    .supporting-orgs__title {
        margin-bottom: 30px;
    }

    .supporting-orgs__logos {
        justify-content: space-evenly;
        gap: 10px 70px;
    }

    .supporting-orgs__logo img {
        max-height: 82px;
    }

    #site-footer {
        margin-top: -40px;
    }

    .site-footer__left {
        padding: 50px 18px 40px;
        border-top-right-radius: 40px;
    }

    .site-footer__logo {
        width: 87px;
        height: 79px;
    }

    .site-footer__org-name {
        font-size: 18px;
        line-height: 27px;
    }

    .site-footer__bottom {
        padding: 20px 18px;
    }

    .site-footer__bottom-copyright {
        white-space: pre-line;
    }
}
