.site-footer {
    background: var(--footer-bg, #6d3d00);
    color: rgba(255,255,255,.85);
    padding: 2.5rem 1.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
}
.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.3);
    margin-bottom: 1rem;
}
.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-contact {
    list-style: none;
    font-size: .9rem;
    line-height: 2;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: .5rem;
}
.footer-contact a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}
.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-social {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: wrap;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.footer-social a:hover {
    background: rgba(255,255,255,.24);
    transform: translateY(-2px);
}
.footer-links {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.footer-links a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .8rem;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-links span {
    color: rgba(255,255,255,.3);
    font-size: .8rem;
}
.footer-bottom {
    margin-top: .75rem;
    font-size: .75rem;
    color: rgba(255,255,255,.35);
}
