/* ── hero-site-footer ────────────────────────────────────────────────────── */
.hero-site-footer { background: var(--hero-dark-bg); color: var(--hero-dark-text); }
.hero-site-footer a { color: inherit; }
.hero-site-footer__map iframe { display: block; width: 100%; height: 260px; border: 0; }
.hero-site-footer__inner { display: grid; gap: clamp(1.5rem, 4vw, 3rem); padding-block: clamp(2.5rem, 5vw, 4rem); }
.hero-site-footer__logo { max-height: 3.5rem; width: auto; margin-bottom: 1rem; }
.hero-site-footer__nap { font-style: normal; display: flex; flex-direction: column; gap: .2rem; }
.hero-site-footer__name { font-weight: 700; }
.hero-site-footer__phone { font-weight: 700; text-decoration: none; }
.hero-site-footer__license { font-size: var(--hero-text-small); opacity: .75; }

.hero-site-footer__columns { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); }
.hero-site-footer__column-title { margin: 0 0 .6rem; font-weight: var(--hero-heading-weight); }
.hero-site-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; font-size: var(--hero-text-label); }
.hero-site-footer__menu a { text-decoration: none; opacity: .88; }
.hero-site-footer__menu a:hover { opacity: 1; text-decoration: underline; }

@media (min-width: 768px) {
  .hero-site-footer[data-hero-layout="columns"] .hero-site-footer__inner,
  .hero-site-footer[data-hero-layout="service-list"] .hero-site-footer__inner,
  .hero-site-footer[data-hero-layout="map-strip"] .hero-site-footer__inner {
    grid-template-columns: minmax(14rem, 1fr) 2fr;
  }
  .hero-site-footer[data-hero-columns="2"] .hero-site-footer__columns { grid-template-columns: repeat(2, 1fr); }
  .hero-site-footer[data-hero-columns="3"] .hero-site-footer__columns { grid-template-columns: repeat(3, 1fr); }
  .hero-site-footer[data-hero-columns="4"] .hero-site-footer__columns { grid-template-columns: repeat(4, 1fr); }
  .hero-site-footer[data-hero-columns="5"] .hero-site-footer__columns { grid-template-columns: repeat(5, 1fr); }
}

.hero-site-footer[data-hero-layout="centered"] .hero-site-footer__inner { justify-items: center; text-align: center; }
.hero-site-footer[data-hero-layout="centered"] .hero-site-footer__nap { align-items: center; }

.hero-site-footer__legal { border-top: 1px solid var(--hero-hairline); font-size: var(--hero-text-small); }
.hero-site-footer__legal .hero-block__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem; padding-block: 1rem;
}
.hero-site-footer__copyright { margin: 0; opacity: .8; }
.hero-site-footer__legal-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-site-footer__legal-menu a { text-decoration: none; opacity: .8; }
