/* Palmerston-style site footer (lifted from /assets/shared.css with vars
   resolved). Loaded after home.css so it wins on the <footer> block, while
   home.css still styles the BCC pet sections above it. */

footer {
  background: #040e1f !important;
  border-top: 1px solid rgba(69, 70, 77, 0.4);
  padding: 56px 0 28px;
  margin-top: 64px;
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #d8e3fb;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffb95f, transparent);
}

footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: block;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

footer .footer-col h4 {
  color: #ffb95f;
  margin-bottom: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

footer .footer-col a {
  display: block;
  color: #8a93a8;
  padding: 4px 0;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
footer .footer-col a:hover {
  color: #ffb95f;
}

footer .footer-bottom {
  border-top: 1px solid rgba(69, 70, 77, 0.4);
  padding-top: 24px;
  text-align: center;
}
footer .footer-bottom p {
  font-size: 0.78rem;
  color: #8a93a8;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

footer .footer-disclaimer {
  font-size: 0.72rem;
  color: #8a93a8;
  max-width: 800px;
  margin: 16px auto 0;
  line-height: 1.7;
  opacity: 0.85;
}

footer .age-badge {
  background: #93000a;
  color: #ffb4ab;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin-right: 8px;
  display: inline-block;
}

@media (max-width: 968px) {
  footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  footer .footer-grid { grid-template-columns: 1fr; }
}
