/* =============================================================================
   footer.css — Site footer + sticky-footer-bar
   ============================================================================= */

/* ── Site footer ───────────────────────────────────────────────────────────── */
.site-footer {
    padding-top: var(--space-section);
    padding-bottom: 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.site-footer__brand img {
    margin-bottom: 16px;
}

.site-footer__tagline {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 240px;
}

/* Nav column */
.site-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__nav-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    transition: color 0.15s ease;
}

.site-footer__nav-list a:hover {
    color: var(--color-accent);
}

/* Contact column */
.site-footer__col-title {
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.8);
}

.site-footer__contact-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.15s ease;
}

.site-footer__contact-list a:hover {
    color: var(--color-accent);
}

/* Bottom bar */
.site-footer__bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding-block: 16px;
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
        padding: 10px 12px;
        font-size: var(--fs-sm);
    }
}
