/*
 * LifeHustleAI Footer — Normalized
 * Full width breakout for WordPress/Astra
 */

body.lh-site footer.lh-site-footer {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    box-sizing: border-box !important;
}

.lh-site-footer {
    margin-top: 72px;
    color: rgba(255,255,255,.78);
    background: linear-gradient(135deg, var(--lh-navy) 0%, var(--lh-navy-2) 100%);
    border-top: 1px solid rgba(45,212,191,.25);
}

.lh-footer-inner {
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto;
    padding: 64px 0 64px;          /* was 58px top / 42px bottom – now 64px both */
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 42px;
}

.lh-footer-brand {
    min-width: 0;
}
.lh-footer-logo-link {
    display: inline-flex;
    line-height: 0;
    text-decoration: none;
}
.lh-footer-logo {
    display: block;
    width: auto !important;
    height: 64px !important;
    max-width: 150px !important;
    object-fit: contain;
}
.lh-footer-tagline {
    margin: 16px 0 16px;
    color: rgba(255,255,255,.84);
    font-size: 15px;
}
.lh-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.lh-footer-trust span {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--lh-radius-pill);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.72);
    font-size: 11px;
}

.lh-footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.lh-footer-column h2 {
    margin: 0 0 9px;
    color: #fff;
    font-family: var(--lh-font-heading);
    font-size: 15px;
    font-weight: 700;              /* was 800 – reduced */
}
.lh-footer-column a {
    color: rgba(255,255,255,.70);
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.45;
}
.lh-footer-column a:hover,
.lh-footer-column a:focus-visible {
    color: var(--lh-teal);
}

.lh-footer-bottom {
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,.50);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .lh-footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 34px;
    }
    .lh-footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 767px) {
    .lh-site-footer {
        margin-top: 52px;
    }
    .lh-footer-inner {
        width: calc(100% - 28px);
        padding: 44px 0 32px;
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }
    .lh-footer-brand {
        grid-column: 1 / -1;
    }
    .lh-footer-logo {
        height: 57px !important;
        max-width: 135px !important;
    }
    .lh-footer-bottom {
        width: calc(100% - 28px);
        padding-block: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
@media (max-width: 390px) {
    .lh-footer-inner {
        width: calc(100% - 22px);
        grid-template-columns: 1fr;
    }
    .lh-footer-brand {
        grid-column: auto;
    }
    .lh-footer-bottom {
        width: calc(100% - 22px);
    }
}