/* Shared Footer — GhettoScape concrete slab (self-contained: defines its own layout
   so it works on pages that don't load styles.css) */
.footer {
  background: #16181C;
  border-top: 1px solid #2b3038;
  padding: 2.6rem 0 1.8rem;
  color: #8A9099;
  margin-top: 3rem;
  flex-shrink: 0;
  position: relative;
}
/* hairline gold topline */
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 197, 61, .35), transparent);
}
.footer .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.footer .grid.grid-3 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.footer h4 {
  font-family: "Arial Black", "Archivo Black", Impact, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #FFC53D;
  font-size: .82rem;
  margin: 0 0 12px;
}
.footer p { font-size: .9rem; margin: 0; max-width: 38ch; }
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li { margin-bottom: 0.4rem; }
.footer ul li a {
  color: #8A9099;
  text-decoration: none;
  font-size: .9rem;
  transition: color .15s;
}
.footer ul li a:hover { color: #FFC53D; }
.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid #2b3038;
  text-align: center;
  color: #8A9099;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0 auto; max-width: none; }
.footer-disclaimer {
  margin-top: 0.4rem !important;
  font-size: 0.74rem !important;
  opacity: 0.75;
}

@media (max-width: 768px) {
  .footer { padding: 1.8rem 0 1.4rem; margin-top: 2rem; }
  .footer .grid.grid-3,
  .footer .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom { margin-top: 1.5rem; }
}
