/* ══════════════════════════════════════
   AURA AESTHETIC — Footer
   Mobile-first → Desktop @1024px
   Pencil: Mobile 390x116, Desktop 1440x80
   ══════════════════════════════════════ */

/* ══════════════════════════════════
   MOBILE (390px frame, 116px tall, centered)
   Logo: centered at y:24
   Links: centered at y:55
   Copyright: centered at y:81
   ══════════════════════════════════ */

/* ── Section ── */
.footer {
  background: var(--c-bg-dark);
  padding: 24px 0;
}

/* ── Inner Container: column, centered ── */
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Left: Logo ── */
.footer__left {
  display: flex;
  align-items: center;
}

/* ── Logo: Playfair 14px ── */
.footer__logo {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ── Right: Social + Copyright ── */
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Social Links ── */
.footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.footer__social-link {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.27);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--t-fast);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  cursor: pointer;
}

.footer__social-link:active {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Copyright ── */
.footer__copy {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}


/* ══════════════════════════════════════
   DESKTOP — 1440x80, bg #0C0C0C
   Logo "Aura Aesthetic": x:64 (Playfair 16px, #FFFFFF66)
   Right group: x:950 (Instagram, WhatsApp, 小红书 11px #FFFFFF44 + © text)
   Row layout, space-between
   ══════════════════════════════════════ */
@media (min-width: 1024px) {

  .footer {
    padding: 0;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 0;
  }

  .footer__logo {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
  }

  .footer__right {
    flex-direction: row;
    gap: 32px;
  }

  .footer__social {
    gap: 32px;
  }

  .footer__social-link {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.27);
    letter-spacing: 3px;
  }

  .footer__social-link:hover {
    color: rgba(255, 255, 255, 0.6);
  }

  .footer__copy {
    font-size: 10px;
  }
}
