/* Shared footer styles. */

.site-footer {
    background: var(--color-dark);
    color: #d9c9be;
    padding: 5rem 0 1.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.brand--footer { color: #fff; }
.brand--footer:hover { color: #fff; }

.site-footer__brand-column p {
    margin: 1rem 0 1.25rem;
    font-size: 1.08rem;
}

.site-footer__return {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 180, 63, 0.28);
    border-radius: 999px;
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 750;
}

.site-footer__column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer__column h2 {
    margin-bottom: 0.55rem;
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 0;
}

.site-footer__column p { margin: 0; }

.site-footer__column a,
.site-footer__bottom a {
    color: #d9c9be;
    text-decoration: none;
}

.site-footer__column a:hover,
.site-footer__bottom a:hover {
    color: var(--color-gold);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.site-footer__bottom p { margin: 0; }
.site-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.1rem; }

@media (max-width: 991.98px) {
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Public imported-page footer. */
.public-footer {
    margin-top: 0;
    padding: 72px clamp(24px, 6vw, 96px) 24px;
    background: var(--brown-dark);
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-brand .brand {
    color: #fff;
    text-decoration: none;
}

.footer-brand p {
    margin: 17px 0 0;
    color: var(--amber);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-top h4 {
    margin: 7px 0 17px;
    font-family: "Baloo 2";
    font-size: 18px;
}

.footer-top > div:not(.footer-brand) > a {
    width: fit-content;
    margin: 9px 0;
    display: block;
    color: #ffffffa3;
    font-size: 14px;
    text-decoration: none;
}

.footer-top > div:not(.footer-brand) > a:hover {
    color: var(--amber);
}

.footer-top > div > p {
    color: #fff9;
    font-size: 14px;
}

.footer-email {
    border-bottom: 1px solid #ffffff38;
    align-items: center;
    gap: 8px;
    padding: 11px 0;
    color: var(--amber) !important;
    display: flex !important;
}

.footer-email svg {
    width: 18px;
    height: 18px;
}

.footer-legal-links {
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    border-top: 1px solid #ffffff1f;
    border-bottom: 1px solid #ffffff1f;
}

.footer-legal-links a {
    color: #ffffff9e;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--amber);
}

.public-footer .footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: #ffffff6b;
    border-top: 0;
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .public-footer .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
.brand>span:last-child>span {
    color: var(--orange);
}