/* =====================================================
   CR Global — Homologation footer + shared vars
   Loaded on WP-BeTheme pages WITHOUT the sprint4 reset
   so it does NOT break BeTheme layout.
   All selectors are prefixed .cr-footer-section to isolate.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@300;400;500;600;700;900&display=swap');

/* ---------- Global footer (drop-in) ---------- */
.cr-footer-section {
  background: #050508;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 10;
  -webkit-font-smoothing: antialiased;
}
.cr-footer-section,
.cr-footer-section * {
  box-sizing: border-box;
}
.cr-footer-section .cr-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 780px) { .cr-footer-section .cr-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cr-footer-section .cr-footer-grid { grid-template-columns: 1fr; } }

.cr-footer-section h5 {
  font-family: "Anton", "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1.3;
}
.cr-footer-section p {
  margin: 0 0 14px 0;
  padding: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
}
.cr-footer-section p:last-child { margin-bottom: 0; }
.cr-footer-section p.cr-footer-address {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.cr-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.cr-footer-section li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cr-footer-section a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s ease;
  background: none;
  border: 0;
}
.cr-footer-section a:hover {
  color: #ff7c8f;
  text-decoration: none;
}
.cr-footer-section strong {
  color: #fff;
  font-weight: 700;
}

.cr-footer-section .cr-footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 24px clamp(20px, 4vw, 48px) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.cr-footer-section .cr-footer-bottom span { display: inline-block; }
