/* ─────────────────────────────────────────────
   UNIFIED FOOTER — all HealHolistic pages
   Overrides any page-specific footer styles
───────────────────────────────────────────── */

footer.site-footer {
    background: linear-gradient(160deg, #1A0520 0%, #30112E 60%, #1A0520 100%);
    color: #e4aef2;
    font-family: 'Quicksand', sans-serif;
    padding: 0;
    margin-top: 0;
    border-top: 1px solid rgba(242,218,145,0.15);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* ── Brand column ── */
.footer-brand .footer-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #b88ab8;
    max-width: 260px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(242,218,145,0.1);
    border: 1px solid rgba(242,218,145,0.2);
    transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover {
    background: rgba(242,218,145,0.22);
    border-color: #F2DA91;
}

.footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* ── Nav columns ── */
.footer-col h4 {
    font-family: 'Poltawski Nowy', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #F2DA91;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #c8a0c8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #F2DA91;
}

/* ── Contact items ── */
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-row img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(20%) hue-rotate(260deg);
    flex-shrink: 0;
}

.footer-contact-row span,
.footer-contact-row a {
    font-size: 14px;
    color: #c8a0c8;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
}

.footer-contact-row a:hover { color: #F2DA91; }

/* ── Divider ── */
.footer-divider {
    max-width: 1180px;
    margin: 0 auto;
    height: 1px;
    background: rgba(242,218,145,0.15);
}

/* ── Bottom bar ── */
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom span {
    font-size: 13px;
    color: #8a5a8a;
}

.footer-tagline {
    font-style: italic;
    color: #b88ab8 !important;
    letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 48px 20px 36px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-brand p { max-width: 100%; }
}

@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 16px 20px 24px;
    }
}
