/* ==========================================================================
   Footer — deep plum
   ========================================================================== */
.hcg-footer { background: var(--hcg-primary-deep); color: rgba(255,255,255,.80); margin-top: clamp(48px, 8vw, 96px); }
.hcg-footer a { color: rgba(255,255,255,.80); transition: color var(--hcg-transition); }
.hcg-footer a:hover { color: #fff; }

.hcg-footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  padding-block: clamp(40px, 6vw, 72px);
}
.hcg-footer__brand img, .hcg-footer__brand .custom-logo { height: 64px; width: auto; border-radius: var(--hcg-radius-sm); margin-bottom: 16px; background: #fff; padding: 6px; }
.hcg-footer__tagline { max-width: 34ch; color: rgba(255,255,255,.62); }

.hcg-footer__heading { color: #fff; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1em; }
.hcg-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .55em; }

.hcg-footer__social { list-style: none; display: flex; gap: 10px; margin: 18px 0 0; padding: 0; }
.hcg-footer__social a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.10); color: #fff; transition: background var(--hcg-transition), transform var(--hcg-transition);
}
.hcg-footer__social a:hover { background: var(--hcg-primary); transform: translateY(-2px); }

.hcg-footer__bar { border-top: 1px solid rgba(255,255,255,.14); padding-block: 18px; font-size: .82rem; color: rgba(255,255,255,.60); }
.hcg-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 6px 24px; justify-content: space-between; align-items: center; }
.hcg-footer__credit a { color: var(--hcg-action); text-decoration: none; }
.hcg-footer__credit a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 900px) { .hcg-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .hcg-footer__grid { grid-template-columns: 1fr; }
  .hcg-footer__bar-inner { justify-content: center; text-align: center; }
}
