/* ════════════════════════════════════════════════════════════
   BluCruise Design System — footer.css
   Identical footer on every page. Never add variations.
   Requires: variables.css, navigation.css (for bc-logo)
════════════════════════════════════════════════════════════ */

.bc-footer {
  background: var(--navy);
  padding: 52px var(--sp-4) 24px;
}

.bc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: var(--sp-4);
}

.bc-footer__brand {
  /* Logo lives here */
}

.bc-footer__brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  margin-top: 9px;
}

.bc-footer__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 14px;
}

.bc-footer__col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 9px;
  transition: color var(--trans);
}

.bc-footer__col a:hover { color: var(--coral); }

.bc-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bc-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

.bc-footer__disc {
  font-size: 11.5px;
  color: rgba(255,255,255,.22);
  max-width: 600px;
  line-height: 1.6;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .bc-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
