/* ================= SHARED FOOTER ================= */

.site-footer {
    width: 100%;
    display: block !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(143, 163, 107, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(247, 243, 234, 1) 100%);
    border-top: 1px solid rgba(95, 112, 73, 0.14);
    padding: 58px 0 46px;
}

.footer-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 42px;

    display: grid !important;
    grid-template-columns: 0.88fr 0.95fr 1.18fr !important;
    gap: 86px;
    align-items: start;
}

/* force all 3 columns visible */
.footer-brand,
.footer-hours,
.footer-location {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #22201d;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: inherit;
    text-decoration: none;
}

.footer-brand-icon {
    width: 58px;
    height: 58px;
    color: #8fa36b;
    flex: 0 0 auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #22201d;
}

.footer-logo-text span {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.24em;
    color: #8fa36b;
    text-transform: uppercase;
}

.footer-brand > p {
    max-width: 290px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
    color: #6d6a61;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
}

.footer-socials a {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #63675c;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-socials a:hover {
    color: #8fa36b;
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 21px;
    height: 21px;
}

.footer-copy {
    font-family: "Manrope", sans-serif;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #7b7d72 !important;
    margin: 0 !important;
}

.footer-hours h3,
.footer-location h3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #6f8059;
    margin-bottom: 24px;
}

.footer-hours ul {
    display: grid !important;
    list-style: none;
    gap: 13px;
    max-width: 350px;
    margin: 0;
    padding: 0;
}

.footer-hours li {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 42px;
    align-items: center;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: #6d6a61;
}

.footer-hours li span {
    display: block !important;
    font-weight: 650;
}

.footer-hours li strong {
    display: block !important;
    font-size: 15px;
    font-weight: 800;
    color: #5f6757;
    white-space: nowrap;
}

.footer-location p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
    color: #6d6a61;
    margin-bottom: 18px;
}

.footer-map {
    position: relative;
    display: block !important;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(95, 112, 73, 0.14);
    background: rgba(255, 250, 246, 0.72);
    box-shadow: 0 18px 44px rgba(73, 88, 56, 0.07);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.88) contrast(0.96) brightness(1.04);
}

/* ================= FOOTER IMAGE LOGO ================= */

.footer-image-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 26px;
}

.footer-logo-img {
    width: 300px;
    height: auto;
    display: block;
    object-fit: contain;

    filter:
        drop-shadow(0 10px 18px rgba(73, 88, 56, 0.15))
        drop-shadow(0 2px 4px rgba(143, 163, 107, 0.16));

    transition:
        transform 0.22s ease,
        filter 0.22s ease;
}

.footer-image-link:hover .footer-logo-img {
    transform: translateY(-1px);
    filter:
        drop-shadow(0 14px 24px rgba(73, 88, 56, 0.2))
        drop-shadow(0 3px 6px rgba(143, 163, 107, 0.2));
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1080px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 48px;
    }

    .footer-location {
        grid-column: 1 / -1;
    }

    .footer-map {
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 46px 0 38px;
    }

    .footer-inner {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
        gap: 38px;
    }

    .footer-brand-icon {
        width: 48px;
        height: 48px;
    }

    .footer-logo-text strong {
        font-size: 27px;
    }

    .footer-brand > p {
        max-width: 100%;
        margin-bottom: 22px;
    }

    .footer-socials {
        margin-bottom: 28px;
    }

    .footer-hours li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .footer-map {
        height: 190px;
        max-width: 100%;
    }

    .footer-logo-img {
        width: 190px;
    }

    .footer-image-link {
        margin-bottom: 22px;
    }
}