/* =============================================================
   BASECAMP BEND — FOOTER
   ============================================================= */

.site-footer {
  overflow: clip;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

/* ----- Brand column ----- */
.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}

.footer-brand h2 span {
  color: var(--amber);
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 300px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.social-btn:hover {
  border-color: var(--amber);
  background: rgba(232, 121, 10, 0.08);
}

.social-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0.7);
  transition: filter 0.2s ease;
}

.social-btn:hover img {
  filter: brightness(1);
}

/* ----- Nav / info columns ----- */
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-col ul li a.hours-special {
  color: var(--amber);
}

/* ----- Bottom bar ----- */
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

/* Sasquatch easter egg */
.footer-squatch {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 0.05em;
  user-select: none;
  transition: color 0.3s ease;
}

.footer-squatch:hover {
  color: rgba(232, 121, 10, 0.3);
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
