/* ============================================================
   Trophées Sport — Footer
   Reprise du footer DCR (fond noir, filet horizontal or,
   grid 4 colonnes, perks, social pill, contact stacké).
   ============================================================ */

.site-footer {
  padding: clamp(72px, 8vw, 110px) clamp(20px, 4vw, 48px) 40px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold-line),
    var(--gold),
    var(--gold-line),
    transparent);
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -180px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

/* ─── Colonne 1 : Brand ─── */
.footer-brand-block .ts-logo {
  color: var(--paper);
  margin-bottom: 18px;
}
.footer-brand-block .ts-logo .ts-mono,
.footer-brand-block .ts-logo .ts-name,
.footer-brand-block .ts-logo .ts-tag {
  text-shadow: none;
}
.footer-about {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-perks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 165, 90, 0.08);
  border: 1.5px solid rgba(201, 165, 90, 0.28);
  padding: 6px 12px;
  border-radius: var(--r-full);
}
.footer-perk-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: transform 200ms var(--ease), background 200ms var(--ease),
              border-color 200ms var(--ease), color 200ms var(--ease),
              box-shadow 200ms var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 0 rgba(255, 255, 255, 0.15);
}
.footer-social svg { width: 16px; height: 16px; }

/* ─── Colonnes de nav ─── */
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a,
.footer-col ul .footer-contact-static {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-block;
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}
.footer-col ul a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

/* ─── Colonne Contact (stackée label + value) ─── */
.footer-col-contact ul { gap: 16px; }
.footer-col-contact li > a,
.footer-col-contact li > .footer-contact-static {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-col-contact li > a:hover { transform: none; }
.footer-contact-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.footer-contact-value {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--paper);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.footer-col-contact li > a:hover .footer-contact-value {
  color: var(--gold);
}
.footer-contact-value .todo {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  font-style: italic;
}

/* ─── Footer bottom ─── */
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
}
.footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a,
.footer-legal .agency {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal .agency b { color: rgba(255, 255, 255, 0.7); font-weight: 600; }

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding-top: 60px; }
}
