/* Reusable footer. Loaded after page-specific styles. */
:root {
    --footer-navy: #10253f;
    --footer-blue: #2f6fed;
    --footer-text: #b8c5d5;
    --footer-muted: #8296ad;
    --footer-border: rgba(255, 255, 255, 0.11);
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: 72px 0 0;
    border: 0;
    background: radial-gradient( circle at 86% 4%, rgba(47, 111, 237, 0.2), transparent 30% ), var(--footer-navy);
    color: #ffffff;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

    .site-footer,
    .site-footer *,
    .site-footer *::before,
    .site-footer *::after {
        box-sizing: border-box;
    }

        .site-footer .site-footer-container {
            width: min(1180px, calc(100% - 40px));
            max-width: 1180px;
            margin: 0 auto;
            padding: 0;
        }

        .site-footer .site-footer-top {
            margin: 0;
            padding: 0 0 54px;
            display: grid;
            grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.7fr));
            gap: 42px;
            align-items: start;
        }

        .site-footer .site-footer-brand-column,
        .site-footer .site-footer-links-column {
            min-width: 0;
            margin: 0;
            padding: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
        }

        .site-footer .site-footer-logo {
            margin: 0 0 18px;
            padding: 0;
            display: inline-flex;
            align-items: baseline;
            border: 0;
            background: transparent;
            color: #ffffff;
            font-family: "Playfair Display", Georgia, serif;
            font-size: 30px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.04em;
            text-decoration: none;
            box-shadow: none;
        }

            .site-footer .site-footer-logo:hover,
            .site-footer .site-footer-logo:focus {
                color: #ffffff;
                text-decoration: none;
            }

            .site-footer .site-footer-logo span {
                color: #ffffff;
                font: inherit;
            }

        .site-footer .site-footer-brand-column > p {
            max-width: 430px;
            margin: 0 0 22px;
            padding: 0;
            color: var(--footer-text);
            font-family: "DM Sans", Arial, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.8;
            text-align: left;
        }

        .site-footer .site-footer-contact {
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px;
        }

            .site-footer .site-footer-contact a,
            .site-footer .site-footer-contact span {
                margin: 0;
                padding: 0;
                border: 0;
                background: transparent;
                color: var(--footer-muted);
                font-family: "DM Sans", Arial, sans-serif;
                font-size: 13px;
                font-weight: 400;
                line-height: 1.6;
                text-decoration: none;
                box-shadow: none;
            }

                .site-footer .site-footer-contact a:hover,
                .site-footer .site-footer-contact a:focus {
                    color: #ffffff;
                    text-decoration: underline;
                }

        .site-footer .site-footer-links-column h2 {
            margin: 0 0 18px;
            padding: 0;
            border: 0;
            background: transparent;
            color: #ffffff;
            font-family: "DM Sans", Arial, sans-serif;
            font-size: 12px;
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: 0.11em;
            text-align: left;
            text-transform: uppercase;
        }

        .site-footer .site-footer-links-column ul {
            margin: 0;
            padding: 0;
            display: grid;
            gap: 12px;
            list-style: none;
        }

        .site-footer .site-footer-links-column li {
            margin: 0;
            padding: 0;
            border: 0;
            background: transparent;
            list-style: none;
        }

            .site-footer .site-footer-links-column li::before,
            .site-footer .site-footer-links-column li::after {
                display: none;
                content: none;
            }

        .site-footer .site-footer-links-column a {
            margin: 0;
            padding: 0;
            display: inline;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: var(--footer-text);
            font-family: "DM Sans", Arial, sans-serif;
            font-size: 13px;
            font-weight: 400;
            line-height: 1.6;
            text-decoration: none;
            text-transform: none;
            letter-spacing: normal;
            box-shadow: none;
            transition: color 0.2s ease;
        }

            .site-footer .site-footer-links-column a:hover,
            .site-footer .site-footer-links-column a:focus {
                border: 0;
                background: transparent;
                color: #ffffff;
                text-decoration: underline;
                transform: none;
                box-shadow: none;
            }

        .site-footer .site-footer-bottom {
            min-height: 76px;
            margin: 0;
            padding: 21px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-top: 1px solid var(--footer-border);
            color: var(--footer-muted);
            font-family: "DM Sans", Arial, sans-serif;
            font-size: 11px;
            font-weight: 400;
            line-height: 1.6;
            text-align: left;
        }

            .site-footer .site-footer-bottom span {
                margin: 0;
                padding: 0;
                color: inherit;
                font: inherit;
            }

@media (max-width: 900px) {
    .site-footer .site-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer .site-footer-brand-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .site-footer {
        padding-top: 52px;
    }

        .site-footer .site-footer-container {
            width: min(100% - 28px, 1180px);
        }

        .site-footer .site-footer-top {
            grid-template-columns: 1fr;
            gap: 32px;
            padding-bottom: 40px;
        }

        .site-footer .site-footer-brand-column {
            grid-column: auto;
        }

        .site-footer .site-footer-bottom {
            min-height: auto;
            padding: 22px 0;
            align-items: flex-start;
            flex-direction: column;
            gap: 8px;
        }
}
