/* === Site Footer === */
.site-footer {
    background: var(--color-white, #fff);
    padding: 60px 0 32px;
    border-top: 1px solid #eee;
}

.site-footer__logo {
    text-align: center;
    margin-bottom: 32px;
}

.site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-footer__logo-img {
    height: 46px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.site-footer__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black, #1A1A1A);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__nav-link:hover {
    color: var(--color-red, #C8102E);
}

.site-footer__divider {
    border: none;
    border-top: 1px solid #E5E5E5;
    margin: 0 0 24px;
}

.site-footer__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.site-footer__contact-item {
    font-size: 13px;
    color: var(--color-gray-dark, #333);
}

.site-footer__contact-sep {
    font-size: 13px;
    color: #ccc;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-footer__copy {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    flex: 1;
    line-height: 1.4;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.site-footer__legal a,
.site-footer__legal a:link,
.site-footer__legal a:visited {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #999 !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
}

.site-footer__legal a:hover {
    color: var(--color-red, #C8102E) !important;
}

.site-footer__legal span {
    font-size: 12px !important;
    color: #999 !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.site-footer__dev {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    flex: 1;
    text-align: right;
    line-height: 1.4;
}

.site-footer__dev a {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-footer__dev a:hover {
    color: var(--color-red, #C8102E);
}

/* === Responsive === */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 24px;
    }

    .site-footer__logo-img {
        height: 36px;
    }

    .site-footer__nav {
        flex-direction: column;
        gap: 16px;
    }

    .site-footer__contact {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
    }

    .site-footer__contact-sep {
        display: none;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .site-footer__copy,
    .site-footer__dev {
        font-size: 12px !important;
        font-weight: 400 !important;
        color: #999 !important;
        text-align: center;
        flex: none;
        line-height: 1.4;
    }

    .site-footer__legal {
        flex: none;
        order: 0;
    }

    .site-footer__legal a,
    .site-footer__legal a:link,
    .site-footer__legal a:visited {
        font-size: 12px !important;
        color: #999 !important;
    }
}

@media (max-width: 480px) {
    .site-footer__legal-link,
    .site-footer__legal-link:link,
    .site-footer__legal-link:visited {
        font-size: 12px !important;
        font-weight: 400 !important;
        color: #999 !important;
        text-decoration: none !important;
    }

    .site-footer__legal span {
        font-size: 12px !important;
        color: #999 !important;
    }
}
