/* Footer (isolated) */

.site-footer {
    background: #F3F5F0;
    padding: 30px 0 50px;
}

.site-footer .footer-inner {
    /* padding: 0 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer .footer-links {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
}

.site-footer .footer-links a {
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    font-family: 'TASA Orbiter Regular', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.35);
    padding: 30px;
    border-radius: 999px;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a[aria-current="page"] {
    color: #00B0A9;
}

.site-footer .footer-wordmark {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.site-footer .footer-wordmark-logo {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 659px;
    min-height: 261px;
    padding: 25px;
}

.site-footer .footer-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #00000099;
    margin: 20px 0;
}

.site-footer .footer-bottom {
    width: 100%;
}

.site-footer .footer-legal-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.site-footer .footer-legal-links a,
.site-footer .footer-copyright {
    font-family: 'TASA Orbiter Regular', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #000;
    text-decoration: none;
    margin: 0;
    opacity: 40%;
}

.site-footer .footer-legal-links a:hover {
    color: rgba(0, 0, 0, 0.55);
}

.site-footer .footer-copyright {
    margin-top: 10px;
}

/* Tablet / small desktop — keep nav on one row until mobile stack at 900px */
@media screen and (min-width: 901px) and (max-width: 1200px) {
    .site-footer .footer-links {
        gap: clamp(12px, 2.2vw, 28px);
    }

    .site-footer .footer-links a {
        font-size: clamp(20px, 2.5vw, 28px);
        padding: clamp(10px, 1.4vw, 16px) clamp(12px, 1.8vw, 20px);
    }
}

@media screen and (max-width: 1200px) {
    .site-footer .footer-wordmark-logo {
        min-height: 0;
        width: min(720px, 100%);
        padding: 16px;
    }

    .site-footer .footer-divider {
        margin: 16px 0 12px;
    }
}

/* Mobile */
@media screen and (max-width: 900px) {
    .site-footer {
        padding: 24px 0 32px;
    }

    .site-footer .footer-inner {
        /* padding: 0 20px; */
        align-items: flex-start;
    }

    .site-footer .footer-links {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
    }

    .site-footer .footer-links a {
        flex-shrink: 1;
        white-space: normal;
        font-size: 20px;
        line-height: 1.2;
        padding: 0;
        border-radius: 0;
        display: block;
        margin-bottom: 20px;
    }

    .site-footer .footer-links a:last-child {
        margin-bottom: 0;
    }

    .site-footer .footer-wordmark {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .site-footer .footer-wordmark-logo {
        min-height: 0;
        max-height: none;
        width: min(100%, 280px);
        height: auto;
        margin: 0;
        padding: 0;
        display: block;
    }

    .site-footer .footer-divider {
        width: 100%;
        margin: 20px 0 16px;
    }

    .site-footer .footer-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .site-footer .footer-legal-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 16px 24px;
        width: 100%;
    }

    .site-footer .footer-legal-links a,
    .site-footer .footer-copyright {
        font-size: 14px;
        line-height: 1.3;
    }

    .site-footer .footer-copyright {
        margin-top: 12px;
        width: 100%;
        text-align: left;
    }
}

