.site-footer {
    --sf-navy: #091e42;
    --sf-ink: #07162c;
    --sf-blue: #0b5ea8;
    --sf-muted: rgba(255, 255, 255, 0.68);
    --sf-line: rgba(255, 255, 255, 0.12);
    margin-top: 0;
}

.site-footer-identity {
    background: #fff;
    border-top: 3px solid var(--sf-blue);
}

.site-footer-identity-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px 40px;
    padding: 28px 0;
}

.site-footer-logo {
    display: block;
    flex: 0 1 auto;
    max-width: min(280px, 100%);
}

.site-footer-logo img {
    display: block;
    max-height: 72px;
    width: auto;
    max-width: 100%;
}

.site-footer-cta {
    display: flex;
    align-items: center;
    gap: 18px 28px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer-cta-label {
    color: var(--sf-navy);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 16em;
}

.site-footer-body {
    background: var(--sf-navy);
    padding: 56px 0 48px;
}

.site-footer-lede {
    color: var(--sf-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 38em;
    margin: 0 0 42px;
}

.site-footer-lede p {
    margin: 0;
    color: inherit;
}

.site-footer-dirs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px 48px;
}

.site-footer-col h3 {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.site-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-col li + li {
    margin-top: 10px;
}

.site-footer-col a {
    color: var(--sf-muted);
    text-decoration: none;
    font-size: 0.98rem;
    line-height: 1.45;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: color 0.25s ease, background-size 0.25s ease;
}

.site-footer-col a:hover,
.site-footer-col a:focus-visible {
    color: #fff;
    background-size: 100% 1px;
}

.site-footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-image: none;
}

.site-footer-contact a:hover,
.site-footer-contact a:focus-visible {
    background-size: 0;
}

.site-footer-contact i {
    flex-shrink: 0;
    width: 1.1em;
    margin-top: 0.28em;
    color: #7eb8e4;
    font-size: 0.92rem;
    text-align: center;
}

.site-footer-contact a:hover i,
.site-footer-contact a:focus-visible i {
    color: #fff;
}

.site-footer-contact span {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size 0.25s ease;
}

.site-footer-contact a:hover span,
.site-footer-contact a:focus-visible span {
    background-size: 100% 1px;
}

[dir="rtl"] .site-footer-contact span {
    background-position: 100% 100%;
}

.site-footer-social-label {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 28px 0 14px;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.site-footer-social li {
    margin-top: 0 !important;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer-social i {
    font-size: 0.85rem;
}

.site-footer-bar {
    background: var(--sf-ink);
    padding: 18px 0;
}

.site-footer-bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    text-align: center;
}

.site-footer-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.site-footer-bar a:hover,
.site-footer-bar a:focus-visible {
    color: #7eb8e4;
}

[dir="rtl"] .site-footer-cta {
    justify-content: flex-start;
}

[dir="rtl"] .site-footer-col a {
    background-position: 100% 100%;
}

@media (min-width: 768px) {
    .site-footer-dirs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .site-footer-identity-inner {
        padding: 32px 0;
    }

    .site-footer-logo img {
        max-height: 80px;
    }

    .site-footer-body {
        padding: 64px 0 56px;
    }

    .site-footer-dirs {
        grid-template-columns: minmax(140px, 0.9fr) minmax(180px, 1.2fr) minmax(220px, 1.3fr);
    }
}

@media (max-width: 767px) {
    .site-footer-identity-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 0;
    }

    .site-footer-cta {
        width: 100%;
        justify-content: flex-start;
    }

    .site-footer-body {
        padding: 40px 0 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer-col a {
        transition: none;
    }
}
