/* Site-wide legal footer */

.site-footer {
    margin-top: auto;
    padding: 36px 56px 40px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.site-footer__brand {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--text);
    text-decoration: none;
}

.site-footer__brand span {
    color: var(--gold);
}

.site-footer__tag {
    margin: 10px 0 0;
    max-width: 280px;
    font-size: 13px;
    line-height: 1.55;
}

.site-footer__faq {
    display: inline-block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
}

.site-footer__faq:hover,
.site-footer__faq[aria-current="page"] {
    color: var(--gold-light);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
    max-width: 720px;
}

.site-footer nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
}

.site-footer nav a:hover,
.site-footer nav a[aria-current="page"] {
    color: var(--gold-light);
}

.site-footer__note {
    margin: 22px auto 0;
    max-width: 1280px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(169, 173, 180, .72);
}

@media (max-width: 1000px) {
    .site-footer {
        padding: 32px 24px 36px;
    }

    .site-footer__inner {
        flex-direction: column;
        gap: 20px;
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}

.consergeria-page .site-footer {
    flex-shrink: 0;
    padding: 12px 56px 14px;
}

.consergeria-page .site-footer__tag,
.consergeria-page .site-footer__note {
    display: none;
}

.consergeria-page .site-footer__inner {
    align-items: center;
}

@media (max-width: 1000px) {
    .consergeria-page .site-footer {
        padding: 12px 24px 14px;
    }

    .consergeria-page .site-footer__inner {
        align-items: flex-start;
    }
}
