/* Footer - Shock Music */

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 32px;
  background: linear-gradient(135deg, #edf2f3 0%, #dfe6e8 45%, #d4dde0 100%);
  color: var(--blue-primary);
  border-top: 1px solid rgba(47, 63, 70, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 240px at 18% -20%, rgba(143, 174, 163, 0.35), transparent 60%),
    radial-gradient(460px 240px at 90% 10%, rgba(47, 63, 70, 0.12), transparent 60%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  opacity: 0.75;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(143, 174, 163, 0.2), rgba(47, 63, 70, 0.35), rgba(143, 174, 163, 0.2));
  opacity: 0.6;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER - Brand
   ======================================== */

.footer-brand {
  flex: 0 0 auto;
  max-width: 260px;
}

.footer-title {
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--blue-primary);
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   FOOTER - Links
   ======================================== */

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links > div {
  min-width: 140px;
}

.footer-heading {
  font-weight: 600;
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-heading::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(47, 63, 70, 0.35);
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--green-accent);
  transform: translateX(2px);
}

/* ========================================
   FOOTER - Meta
   ======================================== */

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(47, 63, 70, 0.16);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-meta span {
  position: relative;
  padding-right: 18px;
}

.footer-meta span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 6px;
  color: rgba(47, 63, 70, 0.4);
}

/* ========================================
   RESPONSIVE - Tablette
   ======================================== */

@media (max-width: 900px) {
  .footer-inner {
    gap: 32px;
  }

  .footer-links {
    gap: 28px;
  }

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

/* ========================================
   RESPONSIVE - Mobile
   ======================================== */

@media (max-width: 720px) {
  .site-footer {
    padding: 40px 0 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-links > div {
    min-width: 120px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
  }

  .footer-meta span {
    padding-right: 0;
  }

  .footer-meta span:not(:last-child)::after {
    content: "";
  }
}

/* ========================================
   RESPONSIVE - Petit mobile
   ======================================== */

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links > div {
    min-width: 100%;
  }
}
