/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 0;
    font-size: 0.95rem;
}

/* ── Top band ──────────────────────────────────────────── */

.footer-top {
    background: #d8cbbd;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
}

/* ── Brand ─────────────────────────────────────────────── */

.footer-brand a {
    display: inline-block;
    transition: opacity 0.18s ease;
}

.footer-brand a:hover {
    opacity: 0.8;
}

.footer-brand img {
    height: 36px;
    width: auto;
    display: block;
    opacity: 0.9;
}

/* ── Contact items ─────────────────────────────────────── */

.footer-contact {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    opacity: 0.75;
}

.footer-item a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.18s ease;
}

.footer-item a:hover {
    opacity: 0.7;
}

/* ── Social links ──────────────────────────────────────── */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social-link img {
    width: 16px;
    height: 16px;
    display: block;
}

/* ── Bottom band ───────────────────────────────────────── */

.footer-bottom {
    background: #fffdf8;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom-inner {
    padding: 14px 32px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.5);
}

.footer-bottom strong {
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 768px) {
    .footer-top-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 20px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }

    .footer-brand img {
        height: 32px;
    }

    .footer-bottom-inner {
        padding: 14px 20px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}