@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Prompt:ital,wght@1,600&display=swap');

/* Site footer — Figma 336:220 */
.site-footer {
    background: #444342;
    color: #efefef;
    width: 100%;
    min-height: 508px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    min-height: 508px;
    max-width: 1728px;
    margin: 0 auto;
    padding: 72px 39px 0;
    box-sizing: border-box;
}

.site-footer__columns {
display: flex;
justify-content: space-evenly;
    gap: 32px 48px;
    align-items: start;
    flex-wrap: wrap;
}

.site-footer__column {
    margin: 0;
    font-style: normal;
    min-width: 0;
}

.site-footer__heading {
    margin: 0;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.6px;
    color: #efefef;
    position: relative;
    padding-bottom: 22px;
}

.site-footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 71px;
    height: 2px;
    background: #fbc927;
}

.site-footer__body {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.48px;
    color: #efefef;
    margin-top: 25px;
}

.site-footer__body a {
    color: #efefef;
    text-decoration: none;
}

.site-footer__body a:hover {
    text-decoration: underline;
}

.site-footer__brand {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0 40px;
}

.site-footer__logo {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.site-footer__logo img {
    display: block;
    width: 302px;
    max-width: min(302px, 100%);
    height: auto;
    object-fit: contain;
}

.site-footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(239, 239, 239, 0.25);
    margin-top: auto;
    margin-bottom: 48px;
    flex-shrink: 0;
}

/* Legacy footer markup (custom footer_address from settings) */
footer:not(.site-footer) .footer-columns,
.site-footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px 48px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

footer:not(.site-footer) .footer-column,
.site-footer .footer-column {
    flex: 0 1 auto;
    min-width: 0;
    padding-left: 0;
}

footer:not(.site-footer) .footer-column p,
.site-footer .footer-column p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.48px;
    color: #efefef;
    white-space: normal;
}

footer:not(.site-footer) .footer-column p strong,
.site-footer .footer-column p strong {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.6px;
    margin: 0 0 22px;
    padding-bottom: 22px;
    position: relative;
    border: none;
}

footer:not(.site-footer) .footer-column p strong::after,
.site-footer .footer-column p strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 71px;
    height: 2px;
    background: #fbc927;
}

footer:not(.site-footer) .footer-column a,
.site-footer .footer-column a {
    color: #efefef;
    text-decoration: none;
}

footer:not(.site-footer) .footer-column a:hover,
.site-footer .footer-column a:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .site-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 40px;
    }
}

@media (max-width: 700px) {
    .site-footer {
        min-height: auto;
    }

    .site-footer__inner {
        min-height: auto;
        padding: 48px 24px 0;
    }

    .site-footer__columns {
        grid-template-columns: 1fr;
        gap: 0px;
        justify-content: space-between;
    }
    .site-footer__columns > *:nth-last-child(-n+2) {
  display: none;
}

    .site-footer__brand {
        padding: 36px 0 28px;
    }

    .site-footer__logo img {
        width: 240px;
    }

    .site-footer__divider {
        margin-bottom: 32px;
    }
}
