/* ============================================
   FOOTER GLOBAL IEROS — source unique partagée
   Chargé à l'identique par la home, les mentions et les pages blog (SSR).
   ============================================ */
.site-footer {
  background: var(--nuit, #1A243E);
  color: var(--creme, #F2EEE6);
  font-family: var(--f-body, 'Livvic', system-ui, sans-serif);
  position: relative;
  z-index: 80;
}
.site-footer__inner {
  max-width: var(--maxw, 1340px);
  margin-inline: auto;
  padding: 4rem var(--gutter, 1.75rem) 2.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.site-footer__mark {
  width: 34px; height: 34px;
  background: var(--or, #B89570);
  color: var(--nuit, #1A243E);
  display: grid; place-items: center;
  font-family: var(--f-display, 'Cormorant Garamond', serif);
  font-style: italic; font-weight: 600; font-size: 1.3rem; line-height: 1;
  border-radius: 6px;
}
.site-footer__brand-name {
  font-family: var(--f-display, 'Cormorant Garamond', serif);
  font-size: 1.3rem; color: var(--blanc, #FBF9F4);
}
.site-footer__tag {
  color: rgba(251,249,244,0.66);
  font-size: 0.95rem; line-height: 1.6; max-width: 340px;
}
.site-footer__col h4 {
  font-family: var(--f-mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--or, #B89570); margin-bottom: 1.1rem; font-weight: 500;
}
.site-footer__col a {
  display: block;
  color: rgba(251,249,244,0.82);
  font-size: 0.95rem; padding: 0.32rem 0;
  transition: color 0.2s;
}
.site-footer__col a:hover { color: var(--or, #B89570); }
.site-footer__cta p {
  color: rgba(251,249,244,0.66);
  font-size: 0.9rem; line-height: 1.55; margin-bottom: 1rem;
}
.site-footer__btn {
  display: inline-block;
  border: 1px solid var(--or, #B89570);
  color: var(--or, #B89570) !important;
  padding: 0.7rem 1.4rem; border-radius: 999px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  transition: background 0.25s, color 0.25s;
}
.site-footer__btn:hover { background: var(--or, #B89570); color: var(--nuit, #1A243E) !important; }
.site-footer__bottom {
  max-width: var(--maxw, 1340px);
  margin-inline: auto;
  padding: 1.4rem var(--gutter, 1.75rem);
  border-top: 1px solid rgba(251,249,244,0.14);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem;
  justify-content: space-between;
  font-size: 0.8rem; color: rgba(251,249,244,0.55);
}
.site-footer__bottom a { color: rgba(251,249,244,0.78); }
.site-footer__bottom a:hover { color: var(--or, #B89570); }

@media (max-width: 860px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
}
