/* ────────────────────────────── * Footer * ────────────────────────────── */
.site-footer {
    background: #f3f4f6;
    color: #333;
    padding: 28px 16px;
    padding-bottom: 120px;
}

.site-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* 상단 로고 영역 */
.site-footer .footer-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.site-footer .footer-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.site-footer .footer-logo-text {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: .5px;
    color: #b98a57;
}

/* 주소/사업자/카피라이트 */
.site-footer .footer-info p {
    margin: 2px 0;
    font-size: 0.7rem;
    line-height: 1.6;
}
.site-footer .footer-info .copyright {
    margin-top: 6px;
    font-size: 0.6rem;
    color: #666;
}

/* SNS 아이콘: 동글, 작게, 외곽선 */
.site-footer .footer-sns {
    display: flex;
    gap: 8px;
    margin: 30px 0;
}

.site-footer .sns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #2e2e2e;
    padding: 0;
    text-decoration: none;
    line-height: 1;
    transition: transform .08s ease, opacity .15s ease;
}

.site-footer .sns-btn img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.site-footer .sns-btn:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.site-footer .sns-btn:active {
    transform: translateY(0);
}

.site-footer .sns-btn:focus-visible {
    outline: 2px solid #b98a57;
    outline-offset: 2px;
}

/* 반응형 */
@media (min-width: 768px) {
    .site-footer {
        padding: 36px 20px 44px;
    }

    .site-footer .footer-info p {
        font-size: 14px;
    }

    .site-footer .footer-sns {
        gap: 10px;
    }
}

@media (min-width: 992px) {
    .site-footer .sns-btn {
        width: 32px;
        height: 32px;
    }

    .site-footer .sns-btn img {
        width: 19px;
        height: 19px;
    }
}