.site-footer {
  background: #00314c;
  color: rgba(255,255,255,.95);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 32px; 
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.footer-heading{
  font-size: 19px;
  font-weight: 500;
  color: #ff7a18;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-bottom: 16px;
  letter-spacing: .2px;
}

.footer-heading::after{
  display: none;
}


.footer-text {
  margin: 8px 0 0;
  opacity: .88;
  line-height: 1.4;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}

.footer-link{
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;  
  line-height: 1.35;
}


.footer-link:hover,
.footer-link:focus-visible{
  text-decoration: underline;
  text-decoration-color: #ff7427; 
}

.footer-social{
  margin-bottom: 15px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 10px;
}


.footer-contact {
 font-style: normal;
  line-height: 1.6;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible{
  text-decoration: none !important;
  color: #ff7a18; 
}



.footer-bottom { /* date du bas de page */
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 16px 20px;
  text-align: center;
  opacity: .9;
}


/* 🔒 FORCE suppression underline liens contact footer */
.site-footer .footer-contact a,
.site-footer .footer-contact a:visited,
.site-footer .footer-contact a:hover,
.site-footer .footer-contact a:focus,
.site-footer .footer-contact a:focus-visible{
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}


/* ===================== */
/*      RESPONSIVE       */
/* ===================== */

@media (max-width: 768px) {

  /* Footer en 1 colonne + centrage global */
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-main ul { padding-left: 0; }
  .footer-main li { list-style: none; }

  /* ✅ socials (liste de liens produits/utiles si tu as une classe .socials ailleurs) */
  .footer-main .socials {
    display: flex;
    justify-content: center;
  }

  /* ✅ Side bloc (Instagram + contact) */
  .footer-side {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centre l’icône + le texte */
    text-align: center;
  }

  /* ✅ Centre l’icône Instagram */
  .footer-social {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
  }

  .footer-social .social {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* ✅ Contact : surtout PAS en flex + anti-césures */
  .footer-main .footer-contact {
    display: block;              /* override */
    text-align: center;
    margin: 0 auto;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  /* empêcher la casse sur tel / mail */
  .footer-main .footer-contact a[href^="tel"],
  .footer-main .footer-contact a[href^="mailto"] {
    display: inline-block;
    white-space: nowrap;
  }
}

/* Petit mobile */
@media (max-width: 520px) {
  .footer-main {
    gap: 2rem;
  }
}