/* Sitewide footer — linked on every page alongside that page's own stylesheet.
   Colors are hardcoded (not var()) on purpose: index.css, minecraft.css, and
   appeal.css each define their own custom property names, so hardcoding here
   means this file works identically no matter which page it's loaded on. */

.site-footer {
  background: #0c0b0a;
  border-top: 1px solid #221f1b;
  padding: 3.5rem 1.5rem 2rem;
}

.site-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #f3ede4;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-brand .dot {
  width: 8px;
  height: 8px;
  background: #ff7a1f;
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #9c9088;
  max-width: 32ch;
  margin: 0;
}

.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6f6653;
  margin: 0 0 0.9rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #9c9088;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #ff9a4d;
}

.footer-bottom {
  max-width: 1040px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #221f1b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #6f6653;
}

@media (max-width: 720px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .site-footer-inner { grid-template-columns: 1fr; }
}