.footer {
    padding: 80px 5% 40px 5%;
    background-color: var(--bg-creme);
    border-top: 1px solid #eee;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-brand .footer-logo {
    width: 200px;
    margin-bottom: 5px;
}

.footer-brand p {
    letter-spacing: 5px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-dark);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-legal a {
    color: var(--text-dark);
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer {
        padding: 64px 5% 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand .footer-logo {
        width: 180px;
    }

    .footer-bottom {
        margin-top: 44px;
    }
}

@media (max-width: 620px) {
    .footer {
        padding: 56px 6% 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-brand .footer-logo {
        width: 168px;
    }

    .footer h4 {
        margin-bottom: 14px;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
    }

    .footer-bottom {
        margin-top: 34px;
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .footer-legal {
        margin-top: 8px;
    }
}