footer {
    background: linear-gradient(180deg, #f7ede1 0%, #e0c8aa 100%);
    color: #3f352a;
    padding: 3rem 0;
    border-top: 1px solid rgba(117, 95, 72, 0.16);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a,
.footer-links .btn {
    color: rgba(63, 53, 42, 0.88);
    font-size: 0.95rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(117, 95, 72, 0.14);
    box-shadow: 0 12px 30px rgba(57, 45, 33, 0.08);
}

.footer-links a:hover,
.footer-links .btn:hover {
    color: #312b24;
    background: rgba(255, 255, 255, 1);
}

.footer-links .btn {
    min-width: auto;
    height: auto;
}

