footer {
    background: #faf0e6;
    color: #000;
    font-size: 1em;
    border-top: 1px solid #e3ddd4;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    font-family: var(--font-B), serif;
}
.footer-contact, .footer-legal, .footer-social {
    flex: 1 1 250px;
    min-width: 220px;
    margin-bottom: 20px;
    margin-left: 20px;
}

.footer h4{
    font-size: 1em;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-legal li { margin-bottom: 7px; }
.footer-legal a {
    color: #000;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-legal a:hover { text-decoration: underline; }
.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.social-icons svg {
    height: 1.6em;
    width: 1.6em;
    vertical-align: -0.2em;
    transition: filter 0.2s;
    filter: grayscale(0.55);
}

.social-icons svg:hover {
    filter: none;
}

.footer-bottom{
    display: flex;
    flex-basis: 100%;
    width: 100vw;
    justify-content: space-between;
    border-top: 1px solid #e3ddd4;
    padding: 0 0 12px 10px;
    font-size: 0.9em;
    color: #88826e;
    font-family: var(--font-B), serif;
    background: #fff;
}

.footer-bottom .love{
    color: #ed9745;
    margin-right: 20px;
}
@media (max-width: 900px) {
    .footer{
        justify-content: space-around;
        align-items: stretch;
    }
    .footer-bottom {
        font-size: 0.98em;
    }
}
@media (max-width: 760px) {
    .footer {
        padding: 0;
    }
    .footer-bottom {
        padding-left: 10px;
        font-size: 0.9em;
    }
}
@media (max-width: 570px) {
    .footer-bottom .love {
        display: none;
    }
}