/* ========================================
   Homepage — Footer
   ======================================== */

.hp-footer {
    border-radius: var(--hp-radius-section) var(--hp-radius-section) 0 0;
    padding: 24px 16px;
    text-align: center;
}

/* Mobile: stacked vertically */
.hp-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hp-footer__tagline {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--hp-text-secondary);
}

.hp-footer__links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.hp-footer__link {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--hp-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hp-footer__link:hover {
    opacity: 0.7;
}

.hp-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hp-footer__brand-name {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--hp-dark);
}

.hp-footer__copyright {
    font-family: 'Heebo', sans-serif;
    font-size: 10px;
    line-height: 15px;
    color: var(--hp-copyright);
}

/* Tablet+: single horizontal row */
@media (min-width: 800px) {
    .hp-footer__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .hp-footer__brand {
        align-items: flex-end;
    }

    .hp-footer__tagline {
        text-align: right;
    }
}
