.mai-footer {
    background-color: #141313;
    color: #f2f2f2;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    padding: 3rem 1.5rem 2rem;
    font-size: 0.95rem;
}

.mai-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mai-footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.mai-footer__col--brand {
    flex: 1 1 260px;
    min-width: 250px;
}

.mai-footer__company {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.mai-footer__address {
    opacity: 0.85;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.mai-footer__social {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mai-footer__social a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 1rem;
    transition: color .2s ease;
}
.mai-footer__social a:hover {
    color: #d4b066; /* optional gold Akzent */
}

.mai-footer__col--contacts {
    flex: 2 1 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-end;
}

.mai-footer__contact {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 240px;
}

.mai-footer__avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}


.mai-footer__avatar {
    width: 64px;
    height: 64px;
    background: #2a2929;
    border-radius: 50%;
    overflow: hidden;
}


.mai-footer__contact-body {
    line-height: 1.4;
}

.mai-footer__contact-name {
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.mai-footer__contact-role {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.mai-footer__contact-body a {
    color: #f2f2f2;
    text-decoration: none;
}
.mai-footer__contact-body a:hover {
    text-decoration: underline;
}

.mai-footer__contact-phone {
    font-size: 0.9rem;
    opacity: 0.85;
}

.mai-footer__divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 2rem 0 1.5rem;
}

.mai-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.mai-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mai-footer__legal a {
    color: #f2f2f2;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity .2s;
}
.mai-footer__legal a:hover {
    opacity: 1;
    text-decoration: underline;
}

.mai-footer__copy {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .mai-footer__top { gap: 1.25rem; }
    .mai-footer__col--contacts { gap: 1.25rem; }
}

@media (max-width: 720px) {
    .mai-footer__top { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .mai-footer__col--contacts { flex-direction: column; justify-content: flex-start; gap: 1rem; }
    .mai-footer__contact { gap: .6rem; }
}

}

