/* Footer simplifié pour la preview locale — voir note dans nav.css */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 64px 32px 32px;
}

.footer-grid {
  max-width: var(--wrap-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.footer-logo {
  height: 26px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  color: #fffefbb8;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-icon {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.social-icon-w:hover .social-icon {
  opacity: 1;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-col-title {
  margin-bottom: 14px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}

.footer-list-item {
  margin-bottom: 10px;
}

.footer-list-item a {
  color: #fffefbb8;
  font-family: var(--font-sans);
  font-size: 13.5px;
  transition: color 0.15s ease;
}

.footer-list-item a:hover {
  color: var(--color-white);
}

.footer-col-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  color: var(--color-black);
  background-color: var(--color-cyan);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s ease;
}

.footer-col-cta:hover {
  transform: translateY(-1px);
}

.footer-bottom {
  max-width: var(--wrap-max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #ffffff26;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #fffefb80;
  font-family: var(--font-sans);
  font-size: 12.5px;
}

.footer-bottom a {
  color: #fffefb80;
}

.footer-bottom a:hover {
  color: var(--color-white);
}
