/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  min-height: 620px; /* avant 680px */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-green);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  padding: 60px 28px; /* avant 72px 28px */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-light);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px; /* avant 28px */
}

.site-footer__logo {
  width: 220px; /* avant 200px */
  height: 220px; /* avant 200px */
  display: grid;
  place-items: center;
  margin-bottom: 14px; /* avant 18px */
  overflow: hidden;
  flex-shrink: 0;
}

.site-footer__logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1.5);
}

.site-footer__name {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 3.2rem); /* légèrement réduit */
  line-height: 1.02;
  font-weight: 500;
  color: var(--color-white);
}

.site-footer__stars {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.26em;
  color: rgba(243, 239, 231, 0.92);
}

.site-footer__infos {
  display: flex;
  flex-direction: column;
  gap: 8px; /* avant 10px */
}

.site-footer__line {
  margin: 0;
  font-size: 1rem; /* avant 1.05rem */
  line-height: 1.7;
  color: rgba(243, 239, 231, 0.95);
}

/* =========================
   SOCIAL ICONS
========================= */
.site-footer__socials {
  margin-top: 24px; /* avant 30px */
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 1.15rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-white);
  color: var(--color-green);
  transform: translateY(-3px) scale(1.05);
}

/* =========================
   RESPONSIVE FOOTER
========================= */
@media (max-width: 900px) {
  .site-footer {
    min-height: 500px; /* avant 560px */
  }

  .site-footer__inner {
    padding: 50px 18px; /* avant 64px 18px */
  }

  .site-footer__logo {
    width: 140px; /* avant 120px */
    height: 140px; /* avant 120px */
  }

  .site-footer__name {
    font-size: clamp(1.5rem, 4.8vw, 2.2rem);
  }

  .site-footer__stars {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .site-footer__line {
    font-size: 0.9rem; /* plus petit */
    line-height: 1.6;
  }

  .site-footer__socials {
    margin-top: 20px;
    gap: 14px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    min-height: 440px; /* avant 500px */
  }

  .site-footer__inner {
    padding: 42px 14px; /* avant 56px 14px */
  }

  .site-footer__logo {
    width: 125px;
    height: 125px;
    margin-bottom: 10px;
  }

  .site-footer__name {
    font-size: clamp(1.3rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .site-footer__stars {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .site-footer__line {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .site-footer__socials {
    margin-top: 18px;
    gap: 12px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.92rem;
  }
}