/* ─── Variables footer ───────────────────────────────────────────────────── */
:root {
  --rigo-orange-dark:  #D97617;
  --rigo-muted-dark:   #B8B9BC;
  --rigo-border-dark:  #2A2C32;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.rigo-footer {
  background: var(--rigo-black);
  color: var(--rigo-muted-dark);
  padding: 64px 0 32px;
}
.rigo-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Grid ───────────────────────────────────────────────────────────────── */
.rigo-footer-grid {
  display: grid !important;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr !important;
  gap: 48px;
  margin-bottom: 48px;
}

/* ─── Brand ──────────────────────────────────────────────────────────────── */
.rigo-footer-brand .footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
}
.rigo-footer-brand .footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.rigo-footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--rigo-muted-dark);
  max-width: 340px;
}

/* ─── Colonnes ───────────────────────────────────────────────────────────── */
.rigo-footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rigo-orange);
  font-weight: 500;
  margin-bottom: 20px;
}
.rigo-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rigo-footer-col li { margin-bottom: 10px; }
.rigo-footer-col a {
  color: var(--rigo-muted-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.rigo-footer-col a:hover { color: #FFF; }

/* ─── CTA encart ─────────────────────────────────────────────────────────── */
.rigo-footer-cta {
  background: rgba(232, 135, 40, 0.08);
  border: 1px solid rgba(232, 135, 40, 0.25);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rigo-footer-cta-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 6px;
  line-height: 1.2;
}
.rigo-footer-cta-text h3 em {
  font-style: italic;
  color: var(--rigo-orange);
}
.rigo-footer-cta-text p {
  font-size: 14px;
  color: var(--rigo-muted-dark);
  margin: 0;
}
.rigo-footer-cta-btn {
  padding: 14px 26px;
  background: var(--rigo-orange);
  color: var(--rigo-black) !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.rigo-footer-cta-btn:hover { background: var(--rigo-orange-dark); }

/* ─── Bottom ─────────────────────────────────────────────────────────────── */
.rigo-footer-bottom {
  border-top: 0.5px solid var(--rigo-border-dark);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.rigo-footer-copyright { font-size: 13px; color: var(--rigo-muted-dark); }
.rigo-footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.rigo-footer-legal a {
  color: var(--rigo-muted-dark);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.rigo-footer-legal a:hover { color: #FFF; }

/* ─── Colonne Contact ────────────────────────────────────────────────────── */
.rigo-footer-col--contact li { color: var(--rigo-muted-dark); font-size: 14px; }

.footer-partner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--rigo-border-dark);
}
.footer-partner img { height: 40px !important; width: auto !important; opacity: 0.75; display: block; }
.footer-partner span { font-size: 12px; color: var(--rigo-muted-dark); line-height: 1.3; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .rigo-footer .container { padding: 0 24px; }
  .rigo-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rigo-footer-brand { grid-column: 1 / -1; }
  .rigo-footer-bottom { flex-direction: column; text-align: center; }
  .rigo-footer-legal { justify-content: center; }
  .rigo-footer-cta { flex-direction: column; text-align: center; padding: 24px; }
  .rigo-footer-cta-btn { width: 100%; text-align: center; }
}
@media (max-width: 768px) {
  .rigo-footer .rigo-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .rigo-footer .rigo-footer-brand { grid-column: auto; }
}
