.footer {
    position: relative;
    padding: 70px 0 34px;
    margin-top: 170px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 16, 0.55);
}

.footer__inner{
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer__brand{
  border-radius: 16px;
  padding: 16px;
  color: rgba(244,244,246,0.9);
}

.footer__logo{
  display: inline-flex;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 14px 44px rgba(0,0,0,0.35);
}
.footer__logo:hover{
  transform: scale(1.05);
}

.footer__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}

.footer__tagline{
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 40ch;
}


.footer__col{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.14);
  padding: 16px;
}

.footer__h{
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(244,244,246,0.9);
}

.footer__h--space{
  margin-top: 14px;
}

.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer__link{
  text-decoration: none;
  color: rgba(244,244,246,0.88);
  font-weight: 750;
  transition: color 160ms ease, opacity 160ms ease;
}

.footer__link:hover{
  color: #fff;
}

.footer__link--muted{
  color: rgba(244,244,246,0.62);
  font-weight: 700;
}

.footer__small{
  color: rgba(244,244,246,0.62);
  line-height: 1.5;
  font-size: 13px;
}

.footer__bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__legal{
  display: flex;
  gap: 12px;
}


.footer__meta{
  display: grid;
  gap: 8px;
}

.footer__madeby{
  width: fit-content;
  text-decoration: none;
  color: rgba(244,244,246,0.72);
  font-weight: 750;
  transition: color 160ms ease, opacity 160ms ease;
}
.footer__madeby:hover{
  color: #fff;
}
.footer__top{
  text-decoration: none;
  opacity: 0.72;
  transition: color 160ms ease, opacity 160ms ease;
}
.footer__top:hover{
  opacity: 1;
}








/* Responsive */
@media (max-width: 950px){
  .footer{
    padding: 120px 0 52px;
    margin-top: 0;
  }

  .footer__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }


  .footer__bottom{
    flex-direction: column;
    align-items: flex-start;
    margin-left: 12px;
  }

  .footer__legal{
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 520px){
  .footer{
    padding: 110px 0 48px;
  }

  .footer__brand,
  .footer__col{
    padding: 14px;
  }

  .footer__logo{
    width: 64px;
    height: 64px;
  }

  .footer__h{
    font-size: 13px;
  }

  .footer__small{
    font-size: 12.5px;
  }
}
