.footer__list--details i,
.footer__top i {
  line-height: 1;
}

.footer[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.footer__list--details i {
  margin-right: 8px;
  color: var(--color-mulberry);
}

.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-revolver);
  color: white;
  padding: 91.2px 0 54.72px;
}

.footer::after {
  content: "美好共享";
  position: absolute;
  right: -201px;
  bottom: -60px;
  font-family: var(--font-serif);
  font-size: 240px;
  line-height: 240px;
  font-weight: 500;
  letter-spacing: 24px;
  color: rgba(252, 250, 249, 0.05);
  white-space: nowrap;
}

.footer__grid {
  position: relative;
  z-index: 1;
  padding-bottom: 73.96px;
  border-bottom: 1px solid rgba(252, 250, 249, 0.1);
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo {
  width: auto;
  height: 44px;
  display: block;
  object-fit: contain;
}

.footer__copy {
  margin-top: 27.4px;
  max-width: 437.75px;
  font-size: 15.5px;
  line-height: 31px;
  font-weight: 500;
  letter-spacing: 0.638px;
  color: rgba(234, 210, 207, 0.8);
}

.footer__quote {
  margin-top: 27.4px;
  padding-left: 13.67px;
  border-left: 1px solid var(--color-new-york-pink);
  font-family: var(--font-serif);
  font-size: 15.5px;
  color: rgba(224, 125, 126, 0.9);
}

.footer__heading {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 20.67px;
  letter-spacing: 3.876px;
  text-transform: uppercase;
}

.footer__list {
  list-style: none;
  margin: 17.23px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14.9px;
  color: rgba(234, 210, 207, 0.8);
  font-family: var(--font-mono);
  font-size: 15.5px;
  line-height: 20.67px;
  letter-spacing: 0.638px;
}

.footer__list--details {
  font-family: var(--font-sans);
  line-height: 20.67px;
  gap: 15.9px;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 36.48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  color: rgba(234, 210, 207, 0.6);
  font-size: 15.5px;
  letter-spacing: 0.638px;
}

.footer__top {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234, 210, 207, 0.2);
  border-radius: 50%;
  color: rgba(234, 210, 207, 0.8);
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
}

.footer__top:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 125, 126, 0.55);
}

@media (max-width: 1024px) {
  .footer__bottom {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 64px;
  }

  .footer__logo {
    height: 34px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer[data-reveal] {
    opacity: 1;
    transform: none;
  }
}
