/* ============================================================
   BENSIS — footer.css
   Site footer
   ============================================================ */

.site-footer {
  background: var(--navy-deeper);
  padding: 52px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

/* Brand column */
.footer-brand {}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  max-width: 240px;
}

/* Link columns */
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Association tags */
.footer-assoc {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.assoc-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}
