/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer {
    background: linear-gradient(135deg, #ab7870 0%, #7a4f48 100%);
    width: 100%;
    box-sizing: border-box;
    padding: 48px 40px 24px;
    color: #fff;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.footer-brand-tagline {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.75;
    letter-spacing: 0.04em;
}

/* Divider */
.footer-divider {
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Nav links */
.footer-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-nav-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Bottom copyright */
.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .footer {
        padding: 36px 24px 20px;
    }

    .footer-brand-name {
        font-size: 18px;
    }

    .footer-brand-tagline {
        font-size: 12px;
    }

    .footer-nav a {
        font-size: 12px;
        padding: 5px 12px;
    }

    .footer-bottom {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 28px 16px 16px;
    }

    .footer-nav {
        gap: 6px;
    }

    .footer-nav-dot {
        display: none;
    }

    .footer-brand-name {
        font-size: 16px;
    }

    .footer-brand-tagline {
        font-size: 11px;
    }

    .footer-nav a {
        font-size: 11px;
        padding: 5px 10px;
    }

    .footer-bottom {
        font-size: 10px;
    }
}