/* Shared site footer — marketing pages */

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e8e6e1;
    padding: 0;
}

.site-footer .container {
    max-width: 100%;
    width: 100%;
    padding: 56px 80px 36px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 40px 48px;
    align-items: start;
}

.footer-col--brand {
    min-width: 0;
}

.footer-brand__link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-brand__link:hover {
    opacity: 0.92;
}

.footer-brand__link img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 13px;
    color: #9e9b94;
    line-height: 1.55;
    letter-spacing: 0.01em;
    max-width: 280px;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 13px;
    color: #4a4845;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #0c1f3f;
}

.footer-contact {
    font-family: "Inter", system-ui, sans-serif;
    line-height: 1.5;
    min-width: 0;
}

.footer-email {
    margin: 0 0 14px;
}

.footer-email a {
    font-size: 14px;
    color: #9e9b94;
    text-decoration: none;
}

.footer-email a:hover {
    color: #0c1f3f;
    text-decoration: underline;
}

.footer-legal {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-legal li {
    margin: 0;
}

.footer-legal a {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: #9e9b94;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #0c1f3f;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: #9e9b94;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer .container {
        padding: 40px 24px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
