.site-footer {
    width: 100%;
    overflow: hidden;
    color: var(--footer-text, #aebfcd);
    background: var(--footer-background, #081d31);
    font-family: "Chivo", Arial, sans-serif;
}

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

.site-footer-inner {
    width: min(calc(100% - clamp(2rem, 8vw, 8rem)), 78rem);
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6.5rem) 0 1.5rem;
}

.site-footer-main {
    display: grid;
    grid-template-columns: minmax(14rem, 0.9fr) minmax(18rem, 1.35fr) minmax(10rem, 0.65fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.site-footer-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 1rem;
    color: var(--footer-heading, #f8fafc);
    text-decoration: none;
}

.site-footer-logo {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 auto;
    overflow: hidden;
    background: transparent;
}

.site-footer-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer-brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.site-footer-brand-copy strong {
    color: var(--footer-heading, #f8fafc);
    font-size: 1.1rem;
    line-height: 1.15;
    font-weight: 700;
}

.site-footer-brand-copy small {
    margin-top: 0.35rem;
    color: var(--footer-text, #aebfcd);
    font-size: 0.76rem;
    line-height: 1.45;
}

.site-footer-message {
    display: grid;
    gap: 1rem;
}

.site-footer-kicker {
    color: var(--footer-link-active, #fff);
    font-size: var(--footer-kicker-size, 0.7rem);
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-footer-message h2 {
    max-width: 34rem;
    margin: 0;
    color: var(--footer-heading, #f8fafc);
    font-size: var(--footer-heading-size, clamp(1.9rem, 3vw, 3.2rem));
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.site-footer-message p {
    max-width: 36rem;
    margin: 0;
    color: var(--footer-text, #aebfcd);
    font-size: var(--footer-description-size, 1rem);
    line-height: 1.75;
    white-space: pre-line;
}

.site-footer-navigation {
    display: grid;
    gap: 1rem;
}

.site-footer-navigation > strong {
    color: var(--footer-heading, #f8fafc);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-footer-navigation > div {
    display: grid;
    gap: 0.3rem;
}

.site-footer-navigation a,
.site-footer-navigation span {
    display: flex;
    width: fit-content;
    position: relative;
    align-items: center;
    padding: 0.45rem 0;
    color: var(--footer-link, #c6d5e1);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer-navigation a::after,
.site-footer-navigation span::after {
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    background: var(--footer-link-active, #fff);
    content: "";
    transition: width 180ms ease;
}

.site-footer-navigation a:hover,
.site-footer-navigation a:focus-visible,
.site-footer-navigation .is-active {
    outline: 0;
    color: var(--footer-link-active, #fff);
    transform: translateX(0.25rem);
}

.site-footer-navigation a:hover::after,
.site-footer-navigation a:focus-visible::after,
.site-footer-navigation .is-active::after {
    width: 100%;
}

.site-footer-location {
    display: grid;
    grid-template-columns: minmax(14rem, 0.55fr) minmax(22rem, 1.45fr);
    align-items: stretch;
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid color-mix(in srgb, var(--footer-text, #aebfcd) 22%, transparent);
}

.site-footer-location.is-map-disabled {
    grid-template-columns: 1fr;
}

.site-footer-location-copy {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0.9rem;
}

.site-footer-location-copy > span:first-child {
    color: var(--footer-link-active, #fff);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.site-footer-location-copy address {
    max-width: 28rem;
    margin: 0;
    color: var(--footer-heading, #f8fafc);
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    line-height: 1.25;
    font-style: normal;
    font-weight: 650;
    letter-spacing: -0.025em;
    white-space: pre-line;
}

.site-footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--footer-link, #c6d5e1);
    font-size: 0.76rem;
    font-weight: 650;
    text-decoration: none;
}

.site-footer-map-link > span {
    transition: transform 180ms ease;
}

.site-footer-map-link:hover,
.site-footer-map-link:focus-visible {
    outline: 0;
    color: var(--footer-link-active, #fff);
}

.site-footer-map-link:hover > span,
.site-footer-map-link:focus-visible > span {
    transform: translate(0.12rem, -0.12rem);
}

.site-footer-map {
    min-height: 17rem;
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--footer-text, #aebfcd) 24%, transparent);
    border-radius: 0.9rem;
    background: color-mix(in srgb, var(--footer-background, #081d31) 76%, #fff);
}

.site-footer-map[hidden],
.site-footer-map iframe[hidden],
.site-footer-map-placeholder[hidden],
.site-footer-map-consent[hidden],
.site-footer-map-link[hidden] {
    display: none;
}

.site-footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 17rem;
    border: 0;
    filter: grayscale(0.72) saturate(0.7) contrast(0.92);
    transition: filter 220ms ease;
}

.site-footer-map:hover iframe {
    filter: grayscale(0.15) saturate(0.9) contrast(0.96);
}

.site-footer-map-placeholder {
    display: grid;
    min-height: 17rem;
    place-items: center;
    align-content: center;
    gap: 0.8rem;
    padding: 2rem;
    color: var(--footer-text, #aebfcd);
    text-align: center;
    font-size: 0.75rem;
}

.site-footer-map-consent {
    display: grid;
    min-height: 17rem;
    place-items: center;
    align-content: center;
    gap: 0.85rem;
    padding: 2rem;
    color: var(--footer-text, #aebfcd);
    text-align: center;
}

.site-footer-map-consent > i {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid color-mix(in srgb, var(--footer-link, #c6d5e1) 42%, transparent);
    border-radius: 50%;
    background: radial-gradient(circle, var(--footer-link, #c6d5e1) 0 18%, transparent 20%);
}

.site-footer-map-consent p {
    max-width: 23rem;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.55;
}

.site-footer-map-consent button {
    min-height: 2.55rem;
    padding: 0.65rem 1rem;
    border: 1px solid color-mix(in srgb, var(--footer-link, #c6d5e1) 45%, transparent);
    border-radius: 0.45rem;
    color: var(--footer-heading, #f8fafc);
    background: transparent;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.site-footer-map-consent button:hover,
.site-footer-map-consent button:focus-visible {
    outline: 0;
    border-color: var(--footer-link-active, #fff);
    background: color-mix(in srgb, var(--footer-heading, #f8fafc) 8%, transparent);
}

.site-footer-map-placeholder > i {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    position: relative;
    border: 1px solid color-mix(in srgb, var(--footer-link, #c6d5e1) 38%, transparent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.site-footer-map-placeholder > i::after {
    width: 0.55rem;
    height: 0.55rem;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: var(--footer-link, #c6d5e1);
    content: "";
    transform: translate(-50%, -50%);
}

.site-footer-bottom {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--footer-text, #aebfcd) 22%, transparent);
}

.site-footer-bottom p {
    margin: 0;
    color: var(--footer-text, #aebfcd);
    font-size: var(--footer-copyright-size, 0.75rem);
}

.site-footer-legal {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
}

.site-footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--footer-link, #c6d5e1);
    font-size: 0.76rem;
    font-weight: 650;
    text-decoration: none;
}

.site-footer-back-top span {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--footer-link, #c6d5e1) 35%, transparent);
    border-radius: 50%;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer-back-top:hover,
.site-footer-back-top:focus-visible {
    outline: 0;
    color: var(--footer-link-active, #fff);
}

.site-footer-back-top:hover span,
.site-footer-back-top:focus-visible span {
    border-color: var(--footer-link-active, #fff);
    transform: translateY(-0.18rem);
}

.site-footer--preview {
    pointer-events: none;
}

.site-footer-legal-strip {
    width: 100%;
    border-top: 1px solid color-mix(in srgb, var(--footer-text, #aebfcd) 18%, transparent);
    color: var(--footer-legal-link, var(--footer-link, #c6d5e1));
    background: var(--footer-legal-background, var(--footer-background, #081d31));
}

.site-footer-legal-strip .site-footer-legal-link {
    color: var(--footer-legal-link, var(--footer-link, #c6d5e1));
}

.site-footer-legal-strip-inner {
    width: min(calc(100% - clamp(2rem, 8vw, 8rem)), 78rem);
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    margin: 0 auto;
}

.site-footer-legal-link {
    padding: 0;
    border: 0;
    color: var(--footer-link, #c6d5e1);
    background: transparent;
    font: inherit;
    font-size: 0.66rem;
    line-height: 1.3;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease;
}

.site-footer-legal-link:hover,
.site-footer-legal-link:focus-visible,
.site-footer-legal-link[aria-current="page"] {
    outline: 0;
    color: var(--footer-link-active, #fff);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

@media (max-width: 60rem) {
    .site-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-navigation {
        grid-column: 1 / -1;
    }

    .site-footer-navigation > div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer-location {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

}

@media (max-width: 42rem) {
    .site-footer-inner {
        width: calc(100% - 2rem);
        padding-top: 3rem;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .site-footer-navigation {
        grid-column: auto;
    }

    .site-footer-navigation > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 1.25rem 0;
    }

    .site-footer-legal-strip-inner {
        width: calc(100% - 2rem);
        min-height: 2.8rem;
        justify-content: flex-start;
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer-navigation a,
    .site-footer-navigation a::after,
    .site-footer-back-top span,
    .site-footer-map-link > span,
    .site-footer-map iframe,
    .site-footer-legal-link {
        transition: none;
    }
}
