/* ============================================================
   footer.css — hotel-manosque.fr
============================================================ */

.hm-footer {
  background: #2C2416;
  margin-top: 0;
}

.hm-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 40px 28px;
}

.hm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.hm-footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #C8924A;
  margin-bottom: 14px;
}

.hm-footer__tagline {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.55);
  line-height: 1.7;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
}

.hm-footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8924A;
  margin-bottom: 14px;
  font-family: 'Source Sans 3', sans-serif;
}

.hm-footer__link {
  display: block;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  font-family: 'Source Sans 3', sans-serif;
  transition: color 0.2s;
}

.hm-footer__link:hover {
  color: #FAF7F2;
}

.hm-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(250,247,242,0.1);
}

.hm-footer__copy {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.35);
  font-family: 'Source Sans 3', sans-serif;
}

.hm-footer__legal {
  display: flex;
  gap: 20px;
}

.hm-footer__legal-link {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.4);
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  transition: color 0.2s;
}

.hm-footer__legal-link:hover {
  color: rgba(250,247,242,0.75);
}

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

  .hm-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hm-footer__inner {
    padding: 40px 24px 24px;
  }
}
