/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem 0 1.5rem;
    position: relative;
    z-index: 10;
    border-top: 2px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 -4px 20px rgba(255, 182, 193, 0.2);
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #5a3e36;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(90, 62, 54, 0.1);
}

.footer-tagline {
    font-size: 0.9rem;
    color: #7d5a50;
    margin-bottom: 0;
    font-style: italic;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin: 0;
    color: #5a3e36;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #5a3e36;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6b6b;
}

.footer-divider {
    color: #c9a094;
    font-size: 0.8rem;
}

/* ── Footer — Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0 0.75rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}
