/* ═══════════════════════════════════════════════════════════════════════════
   Site Footer
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
  display: block;
  clear: both;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  border-top: 1px solid #1e1e28;
  margin-top: 80px;
  padding: 52px 28px 32px;
  background: #08080b;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ─── Brand column ─── */
.footer-brand {}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.footer-tagline {
  color: #6b6b7a;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 260px;
}

/* ─── Link columns ─── */
.footer-col {
  text-align: center;
}

.footer-col-title {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: #e5e5e5;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #6b6b7a;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  display: inline-block;
}

.footer-links a:hover {
  color: #ff9d00;
}

/* ─── Bottom bar ─── */
.footer-bottom {
  max-width: 960px;
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid #14141c;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  color: #444454;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-copy a {
  color: #555568;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-copy a:hover {
  color: #ff9d00;
}

.footer-mojang {
  color: #333342;
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  text-align: right;
  line-height: 1.5;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-mojang {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
