/* ═══════════════════════════════════════════════════════════════
   FOOTER RICHE · landing publique Hyvirtus
   Brand + Produit + Ressources + bottom bar légale
   ═══════════════════════════════════════════════════════════════ */
.lp-footer {
  border-top: 1px solid var(--border-divider);
  margin-top: 40px;
}
.lp-footer-inner {
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: 64px 28px 32px;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

/* Brand block */
.lp-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.lp-footer-brand-sigil {
  width: 36px;
  height: 36px;
  color: #c9a36a; /* champagne charte */
  filter: none;
  flex: 0 0 auto;
}
.lp-footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  color: #0b1426; /* navy charte */
  letter-spacing: 0.01em;
}
.lp-footer-brand-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 300px;
}

/* Col title (mono uppercase) */
.lp-footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}

/* Links list */
.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 0;
}
.lp-footer-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mid);
  transition: color 200ms ease;
}
.lp-footer-links a:hover {
  color: var(--text-strong);
}

/* Social icons (réseaux sociaux, langue-aware via partials.js) */
.lp-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.lp-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--text-mid);
  transition: color 200ms ease;
}
.lp-footer-social a:hover {
  color: #c9a36a; /* champagne charte */
}
.lp-footer-social svg {
  width: 19px;
  height: 19px;
  display: block;
}

/* Bottom bar */
.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-divider);
  flex-wrap: wrap;
}
.lp-footer-copyright {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-mute);
}
.lp-footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.lp-footer-legal a {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-mid);
  transition: color 200ms ease;
}
.lp-footer-legal a:hover {
  color: var(--text-main);
}

@media (max-width: 960px) {
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .lp-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .lp-footer-inner { padding: 48px 24px 28px; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* ─── Tap targets ≥ 44×44 (Apple HIG / Material 48dp)
     S'applique sur landing principale ET pages produits. */
  .lp-footer-social a { width: 44px; height: 44px; }
  .lp-footer-links { gap: 0; }
  .lp-footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 6px 0;
  }
  .lp-footer-legal { gap: 16px; row-gap: 4px; }
  .lp-footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 4px;
  }
}
