/* === FOOTER === */
.site-footer {
    background-color: #766B5D; /* primary */
    color: #fff;
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.site-footer__col--brand {
    display: flex;
    flex-direction: column;
}

.site-footer__logo {
    width: 28px;
    height: auto;
    margin-bottom: 1rem;
}

.site-footer__logo-svg {
    margin-bottom: 1rem;
    color: #fff;
}

.site-footer__brand-text {
    margin-bottom: 1.25rem;
}

.site-footer__brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.site-footer__brand-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
}

.site-footer__description {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.55;
    max-width: 24rem;
}

.site-footer__col-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    margin-bottom: 1.25rem;
}

.site-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__menu a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__menu a:hover {
    color: #fff;
}

.site-footer__text-block {
    font-size: 0.875rem;
    opacity: 0.55;
    line-height: 1.6;
}

.site-footer__location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__location-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.55;
}

.site-footer__location-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.site-footer__location-item a {
    color: inherit;
    text-decoration: none;
}

.site-footer__location-item a:hover {
    color: #fff;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer__bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .site-footer__bottom-inner {
        flex-direction: row;
    }
}

.site-footer__copyright,
.site-footer__license {
    font-size: 0.75rem;
    opacity: 0.3;
    margin: 0;
}