@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600&display=swap');

.site-footer {
    background: #234B3E;
    color: #fff;
    font-family: inherit;
}

.site-footer__inner {
    max-width: 1224px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── BRAND ── */
.footer-brand__title {
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}
.footer-brand__text {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 12px;
}

/* ── SOCIAL ── */
.footer-social {
    display: flex;
    gap: 16px;
    margin: 24px 0 28px;
    flex-wrap: wrap;
}
.footer-social__link {
    color: #ffffff;
    transition: color .15s;
    display: flex;
    align-items: center;
}
.footer-social__link:hover { color: rgba(255,255,255,.7); }

/* ── ANBI ── */
.footer-anbi {
    margin-top: 8px;
}
.footer-anbi img {
    display: block;
    max-width: 80px;
    height: auto;
}

/* ── NAV COLUMNS ── */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}
.footer-nav__heading {
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
    line-height: 18px;
}
.footer-nav__heading a {
    color: inherit;
    text-decoration: none;
}
.footer-nav__heading a:hover { text-decoration: underline; }

.footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav__list li a {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    text-decoration: none;
    transition: color .15s;
}
.footer-nav__list li a:hover { color: rgba(255,255,255,.75); }

/* ── BOTTOM BAR ── */
.footer-bottom {
    background: #19352B;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom__inner {
    max-width: 1224px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    flex-wrap: wrap;
    gap: 8px;
    color: #fff;
}
.footer-bottom__inner a {
    color: #fff;
    text-decoration: none;
}
.footer-bottom__inner a:hover { color: #fff; }
.footer-bottom__links { display: flex; gap: 8px; align-items: center; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
    }
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }
    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}