/* ----------------------------------
   Footer
---------------------------------- */
.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--hb-white);
    background:
        radial-gradient(circle at 12% 0%, rgba(194, 165, 107, 0.14), transparent 28rem),
        linear-gradient(180deg, #171714 0%, var(--hb-nav-premium) 100%);
}

.site-footer::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.04));
    opacity: 0.5;
}

.site-footer__inner,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.8fr);
    gap: clamp(3rem, 7vw, 6rem);
    padding-top: clamp(4.5rem, 8vw, 6.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.site-footer__brand {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.35rem;
}

.site-footer__logo {
    width: 4.0625rem;
    height: 4.0625rem;
    transition: transform 220ms ease, filter 220ms ease;
}

.site-footer__logo--original {
    width: 5rem;
    height: auto;
    aspect-ratio: 66 / 65;
}

.site-footer__logo:hover,
.site-footer__logo:focus-visible {
    transform: translateY(-0.15rem);
    filter: drop-shadow(0 0 18px rgba(194, 165, 107, 0.28));
}

.site-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__brand-copy h2 {
    margin: 0;
    color: var(--hb-white);
    font-size: clamp(1.45rem, 3vw, 1.65rem);
    font-weight: 800;
    line-height: 1.12;
}

.site-footer__brand-copy p {
    max-width: 22rem;
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
}

.site-footer__socials {
    display: flex;
    gap: 0.65rem;
}

.site-footer__socials a {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(194, 165, 107, 0.34);
    border-radius: 50%;
    color: var(--hb-gold);
    background: rgba(255, 255, 255, 0.04);
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    color: var(--hb-dark);
    border-color: var(--hb-gold);
    background: var(--hb-gold);
    transform: translateY(-0.12rem);
}

.site-footer__socials svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.6rem);
}

.site-footer__column h3 {
    margin: 0 0 1.25rem;
    color: var(--hb-gold);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.site-footer__column ul {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__column a,
.site-footer__column strong,
.site-footer__column p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.55;
}

.site-footer__column a {
    display: inline-flex;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
    color: var(--hb-gold);
    transform: translateX(0.2rem);
}

.site-footer__contact li,
.site-footer__hours li {
    display: grid;
    gap: 0.22rem;
}

.site-footer__contact li > span,
.site-footer__hours li > span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer__contact a {
    display: inline-block;
}

.site-footer__line-break {
    display: block;
}

.site-footer__hours strong {
    font-weight: 600;
}

.site-footer__hours p {
    margin: 1rem 0 0;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p,
.site-footer__bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.site-footer__bottom a {
    transition: color 180ms ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
    color: var(--hb-gold);
}

@media (max-width: 1199.98px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        max-width: 36rem;
    }
}

@media (max-width: 991.98px) {
    .site-footer {
        margin-bottom: 0;
    }

    .site-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .site-footer__inner {
        gap: 2.4rem;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .site-footer__columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 5.9rem;
    }
}

