/* ── Road2Luxe — components.css ────────────────────────────────
   Composants DA validés (§11 CLAUDE.md).
   Itération section par section dans le styleguide vivant.
   ──────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════
   SIGNATURE ATMOSPHÉRIQUE
   Recette : photo + voile charbon dégradé + grain + min-height ~88vh
   Texte : Cabinet italic, centré, taille signature
   ═══════════════════════════════════════════════════════════ */

.r2l-signature {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--r2l-charbon);

  /* TODO DA: art-direction à finaliser ensemble */
}

/* Photo de fond */
.r2l-signature__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Voile dégradé charbon */
.r2l-signature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--r2l-voile-signature);
  z-index: 1;
}

/* Grain texture (~3% opacity) */
.r2l-signature::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Contenu texte */
.r2l-signature__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--r2l-s-16) var(--r2l-container-pad) var(--r2l-s-12);
  text-align: center;
  max-width: var(--r2l-container-max);
  margin-inline: auto;
}

.r2l-signature__eyebrow {
  display: block;
  font-family: var(--r2l-font-corps);
  font-size: var(--r2l-text-eyebrow);
  font-weight: var(--r2l-fw-eyebrow);
  letter-spacing: var(--r2l-ls-eyebrow);
  text-transform: uppercase;
  color: rgba(247,243,238,.7);
  margin-bottom: var(--r2l-s-3);
}

/* Cabinet italic — le moment "statement" */
.r2l-signature__titre {
  font-family: var(--r2l-font-titres);
  font-size: var(--r2l-text-signature);
  font-weight: var(--r2l-fw-signature);
  font-style: italic;
  line-height: 1.08;
  color: var(--r2l-blanc);
  margin: 0 0 var(--r2l-s-4);
  text-wrap: balance;
}

.r2l-signature__sous-titre {
  font-family: var(--r2l-font-corps);
  font-size: var(--r2l-text-h3);
  font-weight: 400;
  color: rgba(247,243,238,.82);
  margin: 0 0 var(--r2l-s-6);
  text-wrap: balance;
  max-width: 60ch;
  margin-inline: auto;
}

.r2l-signature__cta {
  display: inline-flex;
  gap: var(--r2l-s-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--r2l-s-6);
}


/* ── Prix (base partagée — les tailles sont surchargées dans card-destination.css) ── */

.r2l-prix {
  display: flex;
  flex-direction: column;
}
.r2l-prix__montant {
  font-family: var(--r2l-font-titres);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--r2l-charbon);
  line-height: 1;
}
.r2l-prix__label {
  font-size: var(--r2l-text-caption);
  color: var(--r2l-terre-sec);
  line-height: 1.2;
}
.r2l-prix__unite {
  font-size: var(--r2l-text-meta);
  color: var(--r2l-terre-corps);
  line-height: 1.1;
}



/* ═══════════════════════════════════════════════════════════
   SECTION WRAPPER COMMUNE
   ═══════════════════════════════════════════════════════════ */

.r2l-section {
  padding-block: var(--r2l-s-12);
}
.r2l-section--lg {
  padding-block: var(--r2l-s-16);
}
.r2l-section--sable {
  background: var(--r2l-sable-1);
}
.r2l-section--sable-2 {
  background: var(--r2l-sable-3);
}

.r2l-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--r2l-s-3);
  margin-bottom: var(--r2l-s-8);
}
.r2l-section__titre {
  font-size: var(--r2l-text-h2);
  font-weight: var(--r2l-fw-h2);
  color: var(--r2l-charbon);
  margin: 0;
}
.r2l-section__lien {
  font-size: var(--r2l-text-meta);
  font-weight: 500;
  color: var(--r2l-terre-corps);
  text-decoration: none;
  white-space: nowrap;
}
.r2l-section__lien:hover { color: var(--r2l-flamingo); }
