/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-clusier);
  border-top: 0.5px solid var(--border);
  padding: 40px 64px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social a {
  color: var(--gray);
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--gold);
}
.footer-contact {
  text-align: right;
}
.footer-contact address {
  font-family: var(--serif-reg);
  font-style: normal; font-size: 13px;
  color: var(--white); line-height: 1.9;
}
.footer-contact a {
  color: var(--white);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--gray-clusier);
}
.footer-contact ul {
  margin: 0.6rem 0 1.3rem;
  list-style: none;
  padding: 0;
}
.footer-contact ul li {
  margin-bottom: 6px;
}
.footer-contact-section {
  color: var(--white) !important;
  font-family: var(--serif-reg);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-contact-links {
  color: var(--white);
  font-family: var(--serif-reg);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-contact-links:hover {
  color: var(--gray-clusier);
}
.footer-email {
  display: block; margin-top: 6px;
  font-family: var(--serif-reg);
  font-size: 13px; color: var(--white);
  transition: color 0.2s;
}
.footer-email:hover {
  color: var(--gray-clusier);
}

/* ── Signature Gentologie ── */
.footer-credit {
  max-width: 1400px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: flex-end;
}
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gray-clusier);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit-link:hover {
  color: var(--white);
}
.footer-credit-link img {
  display: block;
  width: 60px !important;
  height: auto !important;
  object-fit: contain;
}

.footer-credit-link svg {
  display: block;
  width: 60px !important;
  height: auto !important;
  fill: currentColor;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-social {
    order: -1;
    width: 100%;
    justify-content: flex-start;
  }
  .footer-contact {
    text-align: left;
    width: 100%;
  }
  .footer-credit {
    margin-top: 20px;
    padding-top: 16px;
  }
}