/* footer.css */
.site-footer {
    margin-top: 5rem;
    padding: 3.75rem 0 3.5rem;
    background: #ffffff;
    border-top: 1px solid #ece7e1;
}

.container--footer-wide {
    width: min(100% - 2rem, 1520px);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: clamp(2rem, 2.4vw, 3rem);
    align-items: start;
}

.site-footer__content {
    display: grid;
    gap: 1.7rem;
}

.site-footer__brand {
    display: inline-flex;
    width: fit-content;
}

.site-footer__brand img {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.site-footer__policy-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.site-footer__policy-nav li {
    position: relative;
}

.site-footer__policy-nav li + li::before {
    content: "|";
    position: absolute;
    left: -0.48rem;
    top: 50%;
    color: #c8c1bb;
    transform: translateY(-52%);
}

.site-footer__policy-nav a {
    color: #22201e;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.18s ease;
}

.site-footer__policy-nav a:hover {
    color: #1f1a17;
}

.site-footer__company-info {
    display: grid;
    gap: 0.4rem;
    font-style: normal;
}

.site-footer__company-info p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    color: #7b756f;
    font-size: 14px;
    line-height: 1.65;
}

.site-footer__company-info strong {
    color: #47413b;
    font-weight: 700;
}

.site-footer__divider {
    margin: 0 0.1rem;
    color: #c8c1bb;
}

.site-footer__copyright {
    color: #aaa39c;
    font-size: 14px;
}

.site-footer__support {
    display: grid;
    justify-items: end;
    gap: 0.7rem;
    padding-top: clamp(0rem, 3.6vw, 3.4rem);
    text-align: right;
}

.site-footer__support-label {
    color: #3a3530;
    font-size: 16px;
    font-weight: 500;
}

.site-footer__support-phone {
    color: #111111;
    font-size: clamp(24px, 1.95vw, 30px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.site-footer__support-hours {
    color: #7b756f;
    font-size: 14px;
    line-height: 1.55;
}

.site-footer__support-hours strong {
    color: #4d4741;
    font-weight: 700;
}

@media (max-width: 767px) {
    .site-footer {
        margin-top: 4rem;
        padding: 2.5rem 0 2.4rem;
    }

    .site-footer__content {
        gap: 1.35rem;
    }

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

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__policy-nav ul {
        gap: 0.75rem 0.9rem;
    }

    .site-footer__policy-nav a,
    .site-footer__company-info p,
    .site-footer__support-hours {
        font-size: 14px;
    }

    .site-footer__support-phone {
        font-size: 30px;
    }

    .site-footer__support {
        justify-items: start;
        padding-top: 0;
        text-align: left;
    }
}
