/* Shared footer: one layout for backend content and all three languages. */
.site-footer {
    --footer-text: #c6d1e0;
    --footer-line: #ffffff26;
    background: var(--ink);
    color: var(--footer-text);
    border-top: 3px solid var(--accent);
    padding: 64px 0 24px;
}
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.45fr .7fr 1.2fr;
    align-items: start;
    gap: 36px;
}
.site-footer .footer-grid > * { min-width: 0; }
.site-footer .footer-brand {
    display: inline-block;
    margin-bottom: 24px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.035em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    overflow-wrap: anywhere;
}
.site-footer h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.015em;
}
.site-footer p { margin: 0 0 18px; font-size: 14px; line-height: 1.8; }
.site-footer .footer-company-name { color: #fff; font-weight: 700; line-height: 1.65; overflow-wrap: anywhere; }
.site-footer a { color: inherit; }
.site-footer .footer-company-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    color: #a9c8ff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.site-footer .footer-company-link svg { width: 18px; height: 18px; }
.site-footer .footer-menu { margin: 0; padding: 0; list-style: none; }
.site-footer .footer-menu li { margin: 0 0 14px; font-size: 14px; line-height: 1.65; overflow-wrap: anywhere; }
.site-footer .footer-menu a { display: inline-block; padding-block: 2px; }
.site-footer .footer-menu .sub-menu { margin: 10px 0 0; padding-left: 16px; list-style: none; border-left: 1px solid var(--footer-line); }
.site-footer .footer-menu a:hover, .site-footer .footer-company-link:hover, .site-footer .footer-brand:hover { color: #fff; text-decoration: underline; }
.site-footer a:focus-visible { outline: 2px solid #a9c8ff; outline-offset: 4px; }
.site-footer .footer-site-intro .footer-contact-buttons { margin-top: 24px; }
.site-footer .footer-contact-buttons { display: flex; flex-direction: column; align-items: stretch; width: max-content; max-width: 100%; gap: 8px; }
.site-footer .footer-contact-button {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid #7c91ac;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color .15s, border-color .15s;
}
.site-footer .footer-contact-button svg { width: 18px; height: 18px; }
.site-footer .footer-contact-button__text { display: block; min-width: 0; overflow-wrap: anywhere; }
.site-footer .footer-contact-button__label { margin-right: 5px; font-size: 12px; font-weight: 400; }
.site-footer .footer-contact-button__label::after { content: ':'; }
.site-footer .footer-contact-button strong { min-width: 0; font-size: 13px; font-weight: 600; overflow-wrap: anywhere; }
.site-footer .footer-contact-button--email { background: var(--accent); border-color: var(--accent); }
.site-footer .footer-contact-button--whatsapp { background: #25d366; border-color: #25d366; color: #073b25; }
.site-footer .footer-contact-button:hover { background: #243d5b; border-color: #a9c8ff; text-decoration: none; }
.site-footer .footer-contact-button--email:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.site-footer .footer-contact-button--whatsapp:hover { background: #46df7f; border-color: #46df7f; }
/* The address column uses the same backend value for the map and external link. */
.site-footer .footer-map { display: block; width: 100%; height: 220px; border: 0; border-radius: 4px; background: #e8edf3; }
.site-footer .footer-map:focus-visible { outline: 2px solid #a9c8ff; outline-offset: 4px; }
.site-footer .footer-company-address { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 0; font-style: normal; font-size: 13px; line-height: 1.8; overflow-wrap: anywhere; }
.site-footer .footer-company-address svg { width: 18px; height: 18px; margin-top: 3px; color: #fff; }
.site-footer .footer-company-address a { min-width: 0; }
.site-footer .footer-map-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: #a9c8ff; font-size: 13px; line-height: 1.6; text-decoration: underline; text-underline-offset: 4px; }
.site-footer .footer-map-link svg { width: 16px; height: 16px; }
.site-footer .footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--footer-line); text-align: center; }
.site-footer .footer-bottom .container { margin-inline: auto; }
.site-footer .footer-copyright { margin: 0; font-size: 12px; line-height: 1.8; overflow-wrap: anywhere; }
.site-footer .footer-copyright a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1200px) {
    .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}
@media (max-width: 600px) {
    .site-footer { padding-top: 44px; }
    .site-footer .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .site-footer .footer-grid > * + * { border-top: 1px solid var(--footer-line); padding-top: 28px; }
    .site-footer .footer-brand { font-size: 28px; margin-bottom: 20px; }
    .site-footer h2 { margin-bottom: 18px; }
    .site-footer .footer-grid p:last-child { margin-bottom: 0; }
    .site-footer .footer-menu li { margin-bottom: 10px; }
    .site-footer .footer-menu li:last-child { margin-bottom: 0; }
    .site-footer .footer-bottom { margin-top: 36px; padding-top: 20px; }
}
