/* =========================
   FOOTER
========================= */

.site-footer {
  padding-top: 12px;
  background: #0b0a08;
  color: #f6f1eb;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.2rem;
  padding: 0 4%;
  padding-top: 6px;
}

.footer-column {
  width: 22%;
  min-width: 220px;
  flex: 1;
  text-align: center;
}

.footer-column h3 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.footer-logo {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-column p {
  margin: 0;
  color: #d8cabc;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-list {
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.35rem;
  color: #d8cabc;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}
.footer-social-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #d8cabc;
  font-size: 0.9rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-socials a:hover {
  background-color: #a06a42;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-column:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding: 0.9rem 4%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #bda998;
  font-size: 0.84rem;
  line-height: 1.4;
}

@media (max-width: 64rem) {
  .footer-container {
    gap: 1.5rem;
  }

  .footer-column {
    width: calc(50% - 0.75rem);
    min-width: 0;
  }
}

@media (max-width: 48rem) {
  .site-footer {
    padding-top: 1.25rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 0 1rem;
    padding-top: 0;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column h3 {
    margin-bottom: 0.65rem;
  }

  .footer-bottom {
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
  }
}
