.site-footer{
  background: var(--color-primary);
  border-top: 1px solid var(--color-border);
  margin-top: auto; /* на всякий случай прижимает вниз */
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo{
  display: inline-block;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--color-text);
}

.footer-text{
  margin-top: 10px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 320px;
}

.footer-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-nav a{
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover{
  color: var(--color-text);
}

.footer-contacts{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-phone,
.footer-mail{
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
}

.footer-lang{
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

/* bottom line */
.footer-bottom{
  border-top: 1px solid var(--color-border);
}

.footer-bottom-inner{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.footer-made a{
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-made a:hover{
  color: var(--color-text);
}


body > footer > div.container.footer-inner > div.footer-col.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

body > footer > div.container.footer-inner > div.footer-col.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 25px;
  }
