/* === Footer styles === */
#social-icons img {
    width:32px;
    height:32px;
    margin-right:8px;
}

footer {
    padding-top: 20px;
}
#site-footer {
    background: var(--header-background-color, #fff);
    color: var(--color-brand-primary, #4F6F73);
    margin-top: 60px;
    font-size: 1rem;
    border-top: 1px solid #ececec;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 0 24px;
    gap: 32px;
}
.footer-col {
    /* flex: 1 1 220px; */
    min-width: 100px;
    margin-bottom: 32px;
}
.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo-img {
    height: 48px;
    margin-bottom: 10px;
}
.footer-brand {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 4px;
    color: var(--color-brand-primary, #4F6F73);
}
.footer-tagline {
    font-size: 1rem;
    color: var(--color-brand-primary, #C9A57A);
    margin-bottom: 12px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav a {
    color: var(--color-brand-primary, #4F6F73);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: var(--color-brand-accent, #2F8F6B);
}
.footer-contact-title {
    font-weight: bold;
    margin-bottom: 8px;
}
@media (max-width: 650px) {
    .footer-inner {
        flex-direction: column;
        gap: 0;
        padding: 0 8px;
        margin:4vw;
    }
    .footer-col {
        margin-bottom: 18px;
    }
}