
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: 'Poppins', sans-serif;
}

.footer--loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__inner {
  display: grid;
  grid-template-columns: 400px 1fr 1fr 270px;
  gap: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 6% 52px;
  align-items: start;
}

.footer__brand,
.footer__nav,
.footer__contact {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.footer__brand      { transition-delay: 0s;     }
.footer__nav:nth-of-type(1) { transition-delay: 0.12s; }
.footer__nav:nth-of-type(2) { transition-delay: 0.22s; }
.footer__contact    { transition-delay: 0.32s;  }

.footer.is-visible .footer__brand,
.footer.is-visible .footer__nav,
.footer.is-visible .footer__contact {
  opacity: 1;
  transform: translateY(0);
}

.footer__bar {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.45s ease, transform 0.6s 0.45s ease;
}
.footer.is-visible .footer__bar {
  opacity: 1;
  transform: translateY(0);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 22px;

}

.footer__logo-link {
  display: inline-block;
  width: fit-content;
}

.footer__logo {
  height: 30px;
  width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.footer__logo:hover {
  opacity: 0.75;
}

.footer__desc {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.85;
  margin: 0;
  text-align: justify;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer__social-link:hover {
  border-color: rgba(199, 189, 170, 0.6);
  background: rgba(199, 189, 170, 0.08);
  transform: translateY(-2px);
}
.footer__social-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.footer__social-link:hover .footer__social-icon-img {
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(82%) sepia(10%)
          saturate(400%) hue-rotate(5deg) brightness(95%) contrast(90%);
}

.footer__nav {
  padding-top: 0;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__nav-link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  transition: color 0.2s ease;
}
.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C7BDAA;
  transition: width 0.25s ease;
}

.footer__nav-link:hover {
  color: #C7BDAA;
}

.footer__nav-link:hover::after {
  width: 100%;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 2px;
}

.footer__contact-label {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1px;
}

.footer__contact-value {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer__contact-link {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-all;
}

.footer__contact-link:hover {
  color: #C7BDAA;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 6%;
}

.footer__copy {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.1px;
}

.footer__powered {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.1px;
}

@media (max-width: 1200px) {
  .footer__inner {
    grid-template-columns: 260px 1fr 1fr 220px;
    gap: 0 36px;
  }
}

@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px 40px;
    padding: 52px 6% 44px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    margin-top: 0;
    flex-direction: column;
    gap: 18px;
  }

  .footer__desc {
    max-width: 100%;
  }

  .footer__contact {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 48px;
  }
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 5% 36px;
  }

  .footer__contact {
    grid-column: auto;
    flex-direction: column;
    gap: 14px;
  }

  .footer__bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 5%;
  }

  .footer__nav-link {
    white-space: normal;
  }
}