.site-footer {
    position: relative;
    overflow: hidden;
    padding: 44px 0 36px;
    color: var(--arme-text);
    background: var(--arme-footer-bg);
}

.site-footer__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 1.15fr);
    gap: 0;
    align-items: stretch;
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
    margin: 0 auto;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 4px 32px;
}

.site-footer__col--brand {
    padding-left: 0;
    justify-content: flex-start;
}

.site-footer__col--nav {
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--arme-footer-divider);
    border-right: 1px solid var(--arme-footer-divider);
}

.site-footer__col--contact {
    padding-right: 0;
    justify-content: space-between;
    gap: 20px;
}

.site-footer__brand {
    display: inline-flex;
    width: fit-content;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: 40px;
    filter: drop-shadow(var(--arme-logo-glow));
    transition: filter 220ms ease;
}

[data-theme="dark"] .site-footer__logo {
    filter: brightness(100) drop-shadow(var(--arme-logo-glow));
}

.site-footer__accent {
    display: block;
    width: 48px;
    height: 3px;
    margin: 12px 0 14px;
    background: var(--arme-blue);
}

.site-footer__tagline {
    max-width: 260px;
    margin: 0;
    color: var(--arme-text-soft);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.45;
}

.site-footer__copyright {
    margin: auto 0 0;
    padding-top: 28px;
    color: var(--arme-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.site-footer__nav-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
}

.site-footer__nav-row + .site-footer__nav-row {
    margin-top: 12px;
}

.site-footer__nav-link {
    color: var(--arme-footer-link);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.site-footer__nav-link:hover {
    color: var(--arme-footer-link-hover);
}

.site-footer__nav-pipe {
    color: var(--arme-footer-divider);
    font-weight: 400;
    user-select: none;
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer__contact-icon-wrap {
    display: grid;
    flex: 0 0 22px;
    width: 22px;
    height: calc(0.84rem * 1.35);
    place-items: center;
}

.site-footer__contact-icon {
    display: block;
    color: var(--arme-blue);
    font-size: 18px;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
    line-height: 1;
}

.site-footer__contact-text {
    flex: 1;
    min-width: 0;
    color: var(--arme-footer-link);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.35;
    transition: color 180ms ease;
}

a.site-footer__contact-text:hover {
    color: var(--arme-footer-link-hover);
}

.site-footer__contact-divider {
    width: 100%;
    height: 1px;
    background: var(--arme-footer-divider);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__social-link {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--arme-blue);
    transition: color 180ms ease;
}

.site-footer__social-link:hover {
    color: var(--arme-blue-light);
}

.site-footer__social-icon {
    display: block;
    width: 34px;
    height: 34px;
}

/* Optical balance — WhatsApp glyph is rounder / has more padding */
.site-footer__social-icon--instagram {
    width: 32px;
    height: 32px;
}

.site-footer__social-icon--whatsapp {
    width: 36px;
    height: 36px;
}

.site-footer__social-icon--facebook {
    width: 34px;
    height: 34px;
}
