.site-footer {
    background: var(--aloha-dark);
    color: rgba(255, 255, 255, 0.82);
    padding: 3.5rem clamp(1rem, 4vw, 3rem) 2rem;
    margin-top: 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.site-footer__brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.site-footer__brand span {
    color: var(--aloha-red);
}

.site-footer__tagline {
    margin: 0.75rem 0 1.25rem;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    font-size: 0.92rem;
}

.site-footer__social {
    display: flex;
    gap: 0.65rem;
}

.site-footer__social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.site-footer__social a:hover {
    background: var(--aloha-red);
    color: #fff;
}

.site-footer h5 {
    margin: 0 0 1rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.55rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color var(--transition);
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--aloha-border);
    box-shadow: 0 -8px 24px rgba(15, 15, 15, 0.08);
}

.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.35rem;
    color: var(--aloha-text-muted);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-bottom-nav a i {
    font-size: 1.05rem;
}

.mobile-bottom-nav a.is-active,
.mobile-bottom-nav a:hover {
    color: var(--aloha-red);
}

@media (max-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    body.has-bottom-nav {
        padding-bottom: 72px;
    }
}

@media (max-width: 520px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}
