/* ── Footer ─────────────────────────────────────────────────────────────────── */
.hbr-footer {
    background: #0b0e14;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 48px 60px 40px;
    margin-top: auto;
    font-family: 'Figtree', 'Inter', sans-serif;
}
.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}
.footer-brand { flex-shrink: 0; }
.footer-brand .footer-logo {
    font-size: 22px;
    font-weight: 950;
    font-style: italic;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: #fff;
}
.footer-brand .footer-logo span { color: var(--brand-primary); }
.footer-brand .footer-tagline {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}
.footer-links-wrap {
    display: flex;
    gap: 60px;
    flex: 1;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col a {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: color .2s;
    line-height: 1;
}
.footer-col a:hover { color: #fff; }
.footer-text-btn {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    transition: color .2s;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}
.footer-text-btn:hover { color: #fff; }
.footer-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.footer-socials { display: flex; gap: 10px; align-items: center; }
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.footer-social-link:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.footer-social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-copy {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2a2a2a;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .hbr-footer { padding: 40px 24px 32px; }
    .footer-inner { flex-direction: column; gap: 40px; }
    .footer-right { align-items: flex-start; }
    .footer-links-wrap { gap: 40px; }
}
@media (max-width: 500px) {
    .footer-links-wrap { flex-direction: column; gap: 28px; }
}