/* ════════════════════════════════════════
   FOOTER — ArtKeyz
   ════════════════════════════════════════ */

#site-footer {
  background: #050505;
  border-top: 1px solid rgba(201,169,110,0.18);
  color: var(--white, #f5f0e8);
  font-family: 'Montserrat', sans-serif;
  margin-top: 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 0;
}

/* ── TOP ── */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

/* ── BRAND ── */
.footer-brand {}
.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: -12px;
  display: block;
}
.footer-tagline {
  font-family: "corner-store-jf", cursive;
  font-size: 11px;
  color: rgba(201,169,110,0.8);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(232,213,163,0.4);
  letter-spacing: 0.04em;
  max-width: 260px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,169,110,0.5);
  text-decoration: none;
  transition: border-color .3s, color .3s, background .3s;
}
.footer-social-btn:hover {
  border-color: var(--gold, #c9a96e);
  color: var(--gold, #c9a96e);
  background: rgba(201,169,110,0.06);
}
.footer-social-btn svg { display: block; }

/* ── COLONNES ── */
.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold, #c9a96e);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(232,213,163,0.45);
  text-decoration: none;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '';
  display: inline-block;
  width: 12px; height: 1px;
  background: rgba(201,169,110,0.3);
  transition: width .3s, background .3s;
  flex-shrink: 0;
}
.footer-col ul a:hover { color: rgba(232,213,163,0.9); }
.footer-col ul a:hover::before { width: 18px; background: var(--gold, #c9a96e); }

/* ── CONTACT ── */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(232,213,163,0.45);
  margin-bottom: 14px;
}
.footer-contact-item svg { color: rgba(201,169,110,0.5); flex-shrink: 0; }
.footer-contact-item a {
  color: rgba(232,213,163,0.45);
  text-decoration: none;
  transition: color .3s;
}
.footer-contact-item a:hover { color: var(--gold, #c9a96e); }

/* ── BADGES QUALITÉ ── */
.footer-badges {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  justify-content: center;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,213,163,0.35);
}
.footer-badge svg { color: rgba(201,169,110,0.4); }

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
}
.footer-copyright {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(232,213,163,0.25);
}
.footer-copyright span { color: rgba(201,169,110,0.5); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,213,163,0.2);
  text-decoration: none;
  transition: color .3s;
}
.footer-bottom-links a:hover { color: rgba(201,169,110,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-badges { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 600px) {
  .footer-inner { padding: 32px 24px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .footer-badges { flex-direction: column; align-items: center; }
}
