.footer {
  background: var(--c-black);
  padding: 80px 24px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__nav-group { display: flex; gap: 160px; }
.footer__company { margin-bottom: 40px; }

.footer__company-name {
  font-family: var(--f-aeonik);
  font-size: 13px;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 10px;
}
.footer__company-name span { color: rgba(255,255,255,.35); }

.footer__address {
  font-family: var(--f-aeonik);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}

.footer__socials { display: flex; align-items: center; gap: 8px; margin-top: 40px; }

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .3s var(--ease);
}
.footer__social:hover { opacity: .5; }
.footer__social img { width: 40px; height: 40px; filter: brightness(0) invert(1); }

.footer__nav-label {
  font-family: var(--f-nohemi);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  display: block;
  margin-bottom: 28px;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav-list a {
  font-family: var(--f-aeonik);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  transition: color .25s var(--ease);
}
.footer__nav-list a:hover { color: var(--c-white); }

.footer__bottom { position: relative; padding-top: 48px; overflow: hidden; margin-top: auto; }
.footer__logo-wrap { display: block; margin-bottom: -8px; cursor: none; }
.footer__logo-big {
  width: 60vw;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
  transition: opacity .4s var(--ease);
}
.footer__logo-wrap:hover .footer__logo-big { opacity: 1; }

.footer__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 0 32px;
}
.footer__bar-right { display: flex; align-items: flex-end; gap: 40px; }
.footer__bar-left { display: flex; align-items: center; gap: 20px; }

.footer__bar-link {
  font-family: var(--f-aeonik);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.3);
  transition: color .25s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
}
.footer__bar-link:hover { color: rgba(255,255,255,.7); }

.footer__back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-aeonik);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-white);
  transition: opacity .25s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
}
.footer__back-top:hover { opacity: .6; }

@media (max-width: 900px) {
  .footer__nav-group { gap: 48px; flex-wrap: wrap; }
  .footer__top { flex-direction: column; }
}
@media (max-width: 600px) {
  .footer__bar { flex-wrap: wrap; gap: 16px; }
}
