/* Zone de reservation (bouton Zenchef externe) - fond shader-or derriere. */
.rdv {
  position: relative;
  overflow: hidden;
  padding: var(--espace-xl) var(--espace-m);
  background: var(--noir);
}
.rdv__inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--espace-l);
  align-items: center;
}
.rdv__sur {
  color: var(--or);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.rdv__titre {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--creme);
}
.rdv__texte {
  color: var(--gris);
  margin-top: var(--espace-s);
  line-height: 1.7;
  max-width: 46ch;
}
.rdv__widget {
  padding: var(--espace-m);
  border-radius: 16px;
  background: rgba(13, 13, 13, 0.82);
  border: 1px solid rgba(201, 162, 75, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
/* Marge basse : detache le texte du bouton Zenchef juste en dessous. */
.rdv__fallback { color: var(--gris); font-size: 0.9rem; line-height: 1.6; margin-bottom: var(--espace-m); }

@media (max-width: 900px) {
  .rdv__inner { grid-template-columns: 1fr; gap: var(--espace-m); }
}
