/* ============================================
   Footer styles
   ============================================ */
footer {
    max-width: 1240px;
    margin: 0 auto;
}

.footer {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #E1A4A0 0%, #000000 28%, #000000 80%, #E1A4A0 100%);
    padding: 30px 64px;
    border-radius: 30px;
    margin: 20px;
}

/* Logo placeholder (WordPress version) */
.footer-logo-placeholder {
    width: 221px;
    height: 221px;
    background: #F5F5F5;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-social-buttons {
    display: flex;
    align-self: center;
    gap: 10px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.3em;
    margin-bottom: 6px;
}

.nav-column a,
.nav-column span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14.79px;
    line-height: 1.5em;
}

.footer-bottom {
    margin-top: 32px;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2em;
    letter-spacing: -0.04em;
}

.text-tiny-extra-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.3em;
}

.style-27juox {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14.79px;
    line-height: 1.5em;
}

.style-ecr3t7 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.04em;
    line-height: 1.2em;
    padding-bottom: 30px;
}

/* ============================================
   Tablet (769px – 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    footer { max-width: 100%; }

    .footer {
        padding: 40px 30px;
        margin: 0 16px 16px;
        border-radius: 24px;
    }

    .footer .container {
        flex-direction: column;
        gap: 32px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-logo-placeholder {
        width: 160px;
        height: 160px;
    }
}

/* ============================================
   Mobile (≤ 768px)
   Figma layout_AB2L9B: column, padding 60px 20px
   ============================================ */
@media (max-width: 768px) {
    footer { max-width: 100%; margin-top: 10px;}

    .footer {
        padding: 60px 20px;
        border-radius: 20px;
        margin: 0 20px;
    }

    .footer .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }

    .footer-social-buttons {
        justify-content: center;
        align-self: center;
    }

    .footer-logo-placeholder {
        width: 120px;
        height: 120px;
    }

    .footer-bottom {
        margin-top: 24px;
        text-align: center;
        width: 100%;
    }
}
