.footer {
  background: #020617;
  border-top: 1px solid #27272a;
  padding: 2rem 1rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-emoji {
  font-size: 2rem;
}

.footer-brand-title {
  font-weight: 900;
  color: #fff;
}

.footer-brand-sub {
  font-size: 0.85rem;
  color: #6b7280;
}

/* social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.footer-social-link:hover {
  background: #fbbf24;
}

.footer-social-link span {
  font-size: 1.2rem;
}

/* admin */
.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-admin-link:hover {
  color: #fbbf24;
}

/* bottom */
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #27272a;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}
