.site-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(180deg, #001a74 0%, #00145f 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.site-footer-content {
    width: 100%;
    max-width: 100%;
    padding: 0 5rem;
    margin: 0 auto;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1.3fr) minmax(220px, 1fr) minmax(200px, 0.9fr) minmax(200px, 0.9fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-brand-title {
    margin: 0;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(2rem, 2.4vw, 3.1rem);
    line-height: 1.1;
    font-weight: 800;
}

.site-footer-brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    flex-direction: column;
    cursor: pointer;
}

.site-footer-brand-link:hover .site-footer-brand-title,
.site-footer-brand-link:focus-visible .site-footer-brand-title {
    color: #33d2ff;
}

.site-footer-brand-subtitle {
    margin: 1.6rem 0 0;
    max-width: 28rem;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.55rem);
    line-height: 1.35;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.site-footer-heading {
    margin: 0 0 1.4rem;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(1.4rem, 1.8vw, 2.3rem);
    line-height: 1.1;
    font-weight: 800;
}

.site-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(1.1rem, 1.2vw, 1.75rem);
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.site-footer-contact-icon-wrap {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer-contact-icon-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0) saturate(100%) invert(76%) sepia(78%) saturate(1974%) hue-rotate(152deg) brightness(98%) contrast(96%);
}

.site-footer-links,
.site-footer-documents,
.site-footer-contact {
    display: flex;
    flex-direction: column;
}

.site-footer-links a,
.site-footer-documents a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(1.1rem, 1.2vw, 1.72rem);
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 1rem;
}

.site-footer-bottom {
    margin-top: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer-copy,
.site-footer-credit {
    margin: 0;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: clamp(1rem, 1.05vw, 1.35rem);
    line-height: 1.3;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer a {
    transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #33d2ff;
}

.site-footer-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

@media (max-width: 1200px) {
    .site-footer-content {
        padding: 0 2rem;
    }

    .site-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.8rem 0 1.5rem;
    }

    .site-footer-content {
        padding: 0 1rem;
    }

    .site-footer-top {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding-bottom: 1.6rem;
    }

    .site-footer-brand-title {
        font-size: 2rem;
    }

    .site-footer-brand-subtitle {
        margin-top: 0.9rem;
        font-size: 1.15rem;
    }

    .site-footer-heading {
        margin-bottom: 0.7rem;
        font-size: 1.7rem;
    }

    .site-footer-contact-link,
    .site-footer-links a,
    .site-footer-documents a {
        font-size: 1.25rem;
        margin-bottom: 0.65rem;
    }

    .site-footer-bottom {
        margin-top: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .site-footer-copy,
    .site-footer-credit {
        font-size: 1rem;
    }
}