/* ============================================================
   blocs/contact-cta.css — bloc standard "contact_cta"
   Section vidéo de fond + overlay + 2 CTA.
   Extrait fidèlement de la maquette 2026-06-10 (style.css).
   ============================================================ */

/* ============================================================
   SECTION 09 CONTACT — Vidéo de fond loop + overlay + CTA
   ============================================================ */
.contact {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg-deep);
}
.contact__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Fond vidéo externe (embed Vimeo/YouTube) : une iframe ne supporte pas
   object-fit. On sur-dimensionne l'embed en 16:9 et on le centre pour qu'il
   couvre toujours toute la zone (le conteneur masque le débordement). */
.contact__video--embed { overflow: hidden; }
.contact__embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;       /* 100vw en 16:9 */
  min-width: 177.78vh;   /* 100vh en 16:9 → couvre les écrans hauts/étroits */
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 38, 0.65) 0%, rgba(10, 22, 38, 0.85) 100%);
  z-index: 2;
}
.contact__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 40px);
  color: #fff;
}
.contact__inner .section-num {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
}
.contact__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  max-width: 18ch;
}
.contact__title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--c-copper);
  letter-spacing: -0.01em;
}
.contact__lead {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
  margin: 0;
}
.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(12px, 2vh, 24px);
}
/* Les boutons section Contact utilisent .btn .btn--primary/--ghost-light .btn-shape — pas de styles spécifiques */

/* ----- Responsive (< 1024px) ----- */
@media (max-width: 1024px) {
  .contact__cta { flex-direction: column; align-items: flex-start; }
  .contact__btn { width: 100%; justify-content: space-between; }
}
