/* ===== Footer ===== */
.bf-footer{
  background:var(--color-navy);
  color:rgba(255,255,255,.7);
  padding:var(--space-2xl) 0 var(--space-xl);
}
.bf-footer__grid{display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:var(--space-xl)}
.bf-footer h4{
  color:#fff; font-family:var(--font-body);
  font-size:.78rem; letter-spacing:.16em; text-transform:uppercase;
  font-weight:700; margin-bottom:var(--space-md);
}
.bf-footer p{margin:0 0 .5rem; font-size:.92rem}
.bf-footer ul{list-style:none; padding:0; margin:0}
.bf-footer li{margin-bottom:.5rem; font-size:.92rem}
.bf-footer a{color:rgba(255,255,255,.75); transition:color .15s; text-decoration:none}
.bf-footer a:hover{color:var(--color-rose)}
.bf-footer__brand{font-family:var(--font-display); color:#fff; font-size:1.4rem; margin-bottom:.6rem}
.bf-footer__tagline{font-size:.88rem}
.bf-footer__nap{margin-top:1rem; font-size:.88rem; line-height:1.7}
.bf-footer__bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:var(--space-xl); padding-top:var(--space-md);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:var(--space-sm);
  font-size:.78rem; color:rgba(255,255,255,.5);
}

/* ===== Sticky mobile CTA ===== */
.bf-mobile-cta{
  display:none;
  position:fixed; left:16px; right:16px; bottom:16px;
  height:56px; z-index:900;
  background:var(--color-rose); color:#fff;
  border-radius:var(--radius-pill);
  align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--font-body); font-weight:600; font-size:1rem;
  box-shadow:0 8px 24px rgba(234,81,131,.45);
  text-decoration:none;
}
.bf-mobile-cta:hover{background:var(--color-rose-dark); color:#fff}

/* ===== Sticky desktop CTA "Réserver" (bas-droite, apparaît après scroll) ===== */
.bf-desktop-cta{
  position:fixed; right:24px; bottom:24px; z-index:900;
  display:none; align-items:center; gap:.5rem;
  background:var(--color-rose); color:#fff;
  padding:.95rem 1.6rem;
  border-radius:var(--radius-pill);
  font-family:var(--font-body); font-weight:600; font-size:.95rem;
  letter-spacing:.04em;
  box-shadow:0 12px 32px rgba(234,81,131,.4);
  text-decoration:none;
  transition:transform .2s, background .2s, box-shadow .2s, opacity .25s;
  opacity:0; pointer-events:none;
}
.bf-desktop-cta.is-visible{opacity:1; pointer-events:auto}
.bf-desktop-cta:hover{
  background:var(--color-rose-dark); color:#fff;
  transform:translateY(-2px); box-shadow:0 16px 40px rgba(234,81,131,.5);
}
.bf-desktop-cta svg{width:16px; height:16px}
@media (min-width:769px){ .bf-desktop-cta{display:inline-flex} }

@media (max-width:980px){
  .bf-footer__grid{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .bf-mobile-cta{display:flex}
}
@media (max-width:480px){
  .bf-footer__grid{grid-template-columns:1fr}
  .bf-footer__bottom{flex-direction:column; gap:.4rem; text-align:center}
}
