.site-footer {
    flex: 0 0 auto;
    padding-top: 14px;
    padding-bottom: 14px;
    border-top: 1px solid rgba(201, 177, 118, 0.12);
}

.site-footer-inner {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 14px;
    line-height: 1.2;
    color: #9f937f;
}

.site-footer-copy {
    white-space: nowrap;
}

.site-footer-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.site-footer-nav a {
    color: #9f937f;
    text-decoration: none;
}

.site-footer-nav a:hover {
    color: #d6bb63;
}

@media (max-width: 760px) {
    .site-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .site-footer-copy {
        white-space: normal;
    }

    .site-footer-nav {
        gap: 16px;
    }
}