/* =====================
   FOOTER
   ===================== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--green-deep, #102418);
  color: #fff;
  font-family: 'Jost', 'DM Sans', sans-serif;
  border-top: 1px solid rgba(200, 169, 122, 0.18);
}

/* Halos lumineux, comme les sections about / stats */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 12% 0%, rgba(61, 122, 90, 0.35), transparent 60%),
    radial-gradient(ellipse 45% 70% at 88% 100%, rgba(200, 169, 122, 0.12), transparent 60%);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px 56px;
}

/* ── Colonne marque ── */
.footer-brand .footer-logo {
  display: inline-flex;
  margin-bottom: 26px;
  transition: transform var(--t, 0.45s ease);
}
.footer-brand .footer-logo:hover {
  transform: translateY(-3px);
}
.footer-brand .footer-logo img {
  height: 92px;
  width: auto;
  display: block;
}
.footer-brand .brand-divider {
  width: 40px;
  height: 1px;
  background: var(--beige, #c8a97a);
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  margin-bottom: 30px;
}

/* ── Réseaux sociaux ── */
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  text-decoration: none;
  transition: border-color var(--t, 0.3s ease), background var(--t, 0.3s ease), transform var(--t, 0.3s ease);
}
.footer-social a:hover {
  border-color: var(--beige, #c8a97a);
  background: rgba(200, 169, 122, 0.14);
  transform: translateY(-3px);
}
.footer-social a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity var(--t, 0.3s ease);
}
.footer-social a:hover img {
  opacity: 1;
}

/* ── Titres de colonne ── */
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: var(--fs-label, 11px);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--beige-light, #e2d0b0);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 16px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--beige, #c8a97a);
}

/* ── Navigation ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}
.footer-nav a {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--t, 0.25s ease), padding-left var(--t, 0.25s ease);
  display: inline-flex;
  align-items: center;
}
.footer-nav a:hover {
  color: #fff;
  padding-left: 8px;
}

/* ── Contact ── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.footer-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-contact-list .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-contact-list .contact-icon img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.footer-contact-list .contact-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 6px;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--t, 0.25s ease);
}
.footer-contact-list a:hover {
  color: var(--beige-light, #e2d0b0);
}

/* ── Bas de footer ── */
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom .copy {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}
.footer-bottom .copy span {
  color: var(--beige, #c8a97a);
  font-weight: 400;
}
.footer-bottom .footer-legal {
  display: flex;
  gap: 26px;
}
.footer-bottom .footer-legal a {
  font-size: var(--fs-label, 11px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--t, 0.25s ease);
}
.footer-bottom .footer-legal a:hover {
  color: var(--beige-light, #e2d0b0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 60px 28px 44px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 28px;
    gap: 14px;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}
