/*
 * ════════════════════════════════════════════════
 *  Belle Epoque — Page Accueil
 *  page-accueil.css
 *  Chargé UNIQUEMENT sur page-accueil.php
 * ════════════════════════════════════════════════
 */

/* ──────────────────────────────────────────────
   VARIABLES RESPONSIVE
────────────────────────────────────────────── */
:root {
  --pad-x: 22px;
  --pad-y: 80px;
}
@media (min-width: 768px) {
  :root { --pad-x: 48px; --pad-y: 100px; }
}
@media (min-width: 1100px) {
  :root { --pad-x: 80px; --pad-y: 120px; }
}

/* ──────────────────────────────────────────────
   RESET PAGE
────────────────────────────────────────────── */
.page-template-page-accueil body {
  background: var(--noir) !important;
  overflow-x: hidden !important;
}

/* ──────────────────────────────────────────────
   ANIMATIONS SCROLL (REVEAL)
────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ──────────────────────────────────────────────
   EYEBROW (élément récurrent)
────────────────────────────────────────────── */
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--or);
}
.home-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--or);
  display: inline-block;
  flex-shrink: 0;
}
.home-eyebrow.center {
  justify-content: center;
}
.home-eyebrow.center::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--or);
  display: inline-block;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   TYPOGRAPHIE EM (Cormorant Garamond italique)
────────────────────────────────────────────── */
body em,
h1 em, h2 em, h3 em, h4 em, p em,
.hero-home-title em,
.home-selection-title em,
.home-process-title em,
.home-cibles-title em,
.home-faq-title em,
.home-cta-title em,
.home-vision-item-title em {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  color: var(--or) !important;
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero-home-page {
  background: var(--noir) !important;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px var(--pad-x) 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Texture noise discrète */
.hero-home-page::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 0;
}

/* Canvas particules dorées */
#heroCanvasHome {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Contenu hero */
.hero-home-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
}

.hero-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  padding: 7px 16px;
  border: 1px solid rgba(201,169,110,0.28);
  background: rgba(201,169,110,0.07);
}
.hero-home-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--or);
  border-radius: 50%;
}

.hero-home-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.8rem, 10vw, 6rem) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  color: var(--blanc) !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
}
.hero-home-title em {
  font-style: italic !important;
  color: var(--or) !important;
  display: inline !important;
}

.hero-home-subtitle {
  font-size: 0.75rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.35) !important;
}

.hero-home-desc {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,0.5) !important;
  max-width: 560px !important;
}

.hero-home-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-top: 16px;
}
@media (min-width: 480px) {
  .hero-home-btns {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
}

/* Boutons hero */
.btn-home-or {
 background: var(--or) !important; color: var(--noir) !important;
  padding: 16px 36px !important; font-size: 0.82rem !important;
  font-weight: 500 !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; border: none !important;
  text-decoration: none !important; border-radius: 0 !important;
  position: relative !important; overflow: hidden !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;

}
.btn-home-or::after {
  content: '' !important; position: absolute !important; inset: 0 !important;
  background: rgba(255,255,255,0.18) !important;
  transform: translateX(-100%) !important; transition: transform 0.4s ease !important;
}
.btn-home-or:hover::after {
transform: translateX(0) !important; 
}

.btn-home-ghost {
  background: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  padding: 14px 32px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btn-home-ghost:hover {
  border-color: var(--or) !important;
  color: var(--or) !important;
}

/* Scroll indicator */
.hero-home-scroll {
  display: none;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
@media (min-width: 768px) {
  .hero-home-scroll {
    display: flex;
  }
}
.home-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: homePulse 2s ease-in-out infinite;
}
@keyframes homePulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.5); }
}


/* ══════════════════════════════════════════════
   REASSURANCE
══════════════════════════════════════════════ */
.home-reassurance {
  background: var(--noir-doux);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.home-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-reassurance-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(32px, 5vw, 64px);
  }
}

.home-reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}
.home-reassurance-item:hover {
  transform: translateY(-4px);
  transform: rotate(8deg) scale(1.08)
}

.home-reassurance-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.4s ease;
}
.home-reassurance-item:hover .home-reassurance-icon {
  background: rgba(201,169,110,0.1);
  border-color: var(--or);
  box-shadow: 0 0 24px rgba(201,169,110,0.2);
  transform: scale(1.08);
}

.home-reassurance-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-reassurance-item:hover .home-reassurance-text {
  color: var(--or);
}


/* ══════════════════════════════════════════════
   VISION — EXACT COPY de style.css original
   (renommé avec préfixe home-)
══════════════════════════════════════════════ */
.home-vision {
  position: relative !important;
  background: var(--creme) !important;
  padding: 60px 8% !important;
  overflow: hidden !important;
}

#visionCanvas {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 1;
}

.home-vision-inner {
  position: relative;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  gap: 56px !important;
}

.home-vision-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--or) !important;
}

.home-vision-eyebrow::before {
  content: '' !important;
  width: 28px;
  height: 1px;
  background: var(--or);
  display: inline-block;
}

.home-vision-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 40px !important;
}

.home-vision-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(201,169,110,0.3) !important;
  transition: border-color 0.4s ease !important;
}

.home-vision-item:hover {
  border-color: var(--or) !important;
}

.home-vision-item-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: var(--noir) !important;
  line-height: 1.3 !important;
  transition: color 0.4s ease !important;
}

.home-vision-item:hover .home-vision-item-title {
  color: var(--or) !important;
}

.home-vision-item-text {
  font-size: 0.82rem !important;
  line-height: 1.7 !important;
  color: var(--texte-doux) !important;
  font-weight: 300 !important;
}

/* ══════════════════════════════════════════════
   SÉLECTION PRODUITS — EXACT COPY de style.css original
   (renommé avec préfixe home-)
   TOUS LES EFFETS : image zoom 3D, overlay dark, transitions séquencées
══════════════════════════════════════════════ */
.home-selection {
  background: var(--blanc) !important;
  padding: 100px 8% !important;
}

.home-selection-header {
  text-align: center !important;
  margin-bottom: 64px !important;
}

.home-selection-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--or) !important;
  margin-bottom: 20px !important;
}

.home-selection-eyebrow::before,
.home-selection-eyebrow::after {
  content: '' !important;
  width: 28px;
  height: 1px;
  background: var(--or);
  display: inline-block;
}

.home-selection-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 300 !important;
  color: var(--noir) !important;
  line-height: 1.2 !important;
}

.home-selection-title em {
  font-style: italic !important;
  color: var(--or) !important;
  font-family: 'Cormorant Garamond', serif !important;
}

.home-selection-line {
  width: 48px;
  height: 1px;
  background: var(--or);
  margin: 24px auto 0 !important;
}

.home-selection-link-wrap {
  text-align: right !important;
  margin-bottom: 40px !important;
}

.home-selection-link {
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--texte-doux) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: color 0.3s ease !important;
}

.home-selection-link::after {
  content: '' !important;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease !important;
}

.home-selection-link:hover {
  color: var(--or) !important;
}

.home-selection-link:hover::after {
  width: 36px !important;
}

.home-selection-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  align-items: start !important;
}

/* Wrapper layout-neutral (les voisines ne bougent pas au hover) */
.home-selection-card-wrapper {
  position: relative !important;
  padding: 16px !important;
  margin: -16px !important;
  pointer-events: none !important;
}

.home-selection-card {
  position: relative !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  background: radial-gradient(ellipse 85% 70% at 50% 42%, rgba(232,213,176,0.45) 0%, rgba(245,240,232,0.7) 45%, var(--creme) 100%) !important;
  border: 1px solid rgba(201,169,110,0.18) !important;
  height: 580px !important;
  overflow: hidden !important;
  transition: transform 0.55s cubic-bezier(0.34,1.2,0.64,1), border-color 0.5s ease, box-shadow 0.5s ease !important;
  z-index: 1 !important;
}

.home-selection-card:hover {
  transform: scale(1.05) !important;
  border-color: rgba(201,169,110,0.5) !important;
  box-shadow: 0 40px 90px rgba(0,0,0,0.22) !important;
  z-index: 10 !important;
}

.home-selection-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(160deg, rgba(8,6,4,0.97) 0%, rgba(12,9,6,0.95) 100%) !important;
  opacity: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  transition: opacity 0.5s ease 0s !important;
}

.home-selection-card:hover .home-selection-card-overlay {
  opacity: 1 !important;
  transition: opacity 0.5s ease 0.28s !important;
}

.home-selection-card-line {
  position: absolute !important;
  bottom: 0;
  left: 0 !important;
  width: 0;
  height: 2px !important;
  background: var(--or) !important;
  z-index: 6 !important;
  pointer-events: none !important;
  transition: width 0.7s ease 0s !important;
}

.home-selection-card:hover .home-selection-card-line {
  width: 100% !important;
  transition: width 0.7s ease 0.32s !important;
}

.home-selection-card-tag {
  position: absolute !important;
  top: 20px;
  left: 20px !important;
  font-size: 0.57rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--or) !important;
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(201,169,110,0.28) !important;
  padding: 5px 13px !important;
  z-index: 4 !important;
  transition: background 0.4s ease 0.28s, color 0.4s ease 0.28s, border-color 0.4s ease 0.28s !important;
}

.home-selection-card:hover .home-selection-card-tag {
  background: rgba(201,169,110,0.12) !important;
  border-color: rgba(201,169,110,0.4) !important;
  color: var(--or-clair) !important;
}

.home-selection-card-img-wrap {
  position: absolute !important;
  top: 52px;
  left: 0;
  right: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 220px !important;
  z-index: 3 !important;
  perspective: 600px !important;
}

.home-selection-card-img-wrap img {
  max-width: 65% !important;
  max-height: 170px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  transform: translateZ(0) scale(1) !important;
  transition: transform 0.52s cubic-bezier(0.34,1.4,0.64,1), filter 0.4s ease !important;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.10)) !important;
}

.home-selection-card:hover .home-selection-card-img-wrap img {
  transform: translateZ(80px) scale(1.26) !important;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,0.38)) brightness(1.06) !important;
}

.home-selection-card-rest {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0 !important;
  z-index: 4 !important;
  padding: 0 26px 26px !important;
  transition: opacity 0.18s ease 0s !important;
}

.home-selection-card:hover .home-selection-card-rest {
  opacity: 0 !important;
  pointer-events: none !important;
}

.home-selection-card-divider {
  width: 28px;
  height: 1px;
  background: rgba(201,169,110,0.35);
  margin-bottom: 10px !important;
}

.home-selection-card-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--texte) !important;
  line-height: 1.2 !important;
  margin-bottom: 6px !important;
}

.home-selection-card-subtitle {
  font-size: 0.65rem !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  color: var(--texte-doux) !important;
  margin-bottom: 16px !important;
}

.home-selection-card-price-rest {
  padding-top: 14px !important;
  border-top: 1px solid rgba(201,169,110,0.14) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.home-selection-price-from-rest {
  font-size: 0.54rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--texte-doux) !important;
}

.home-selection-price-val {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
  font-weight: 300 !important;
  color: var(--or) !important;
  line-height: 1 !important;
}

.home-selection-price-unit-rest {
  font-size: 0.67rem !important;
  color: var(--texte-doux) !important;
}

.home-selection-card-hover {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0 !important;
  z-index: 5 !important;
  padding: 24px 26px 26px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease 0s !important;
}

.home-selection-card:hover .home-selection-card-hover {
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: opacity 0.35s ease 0.42s !important;
}

.home-selection-hover-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  color: var(--blanc) !important;
  line-height: 1.15 !important;
  margin-bottom: 10px !important;
}

.home-selection-hover-desc {
  font-size: 0.78rem !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 16px !important;
}

.home-selection-hover-benefits {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 20px !important;
}

.home-selection-hover-benefits li {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.68) !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  opacity: 0 !important;
  transform: translateX(-10px) !important;
  transition: opacity 0.36s ease, transform 0.36s ease !important;
}

.home-selection-hover-benefits li:nth-child(1) {
  transition-delay: 0.46s !important;
}

.home-selection-hover-benefits li:nth-child(2) {
  transition-delay: 0.54s !important;
}

.home-selection-hover-benefits li:nth-child(3) {
  transition-delay: 0.62s !important;
}

.home-selection-card:hover .home-selection-hover-benefits li {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.home-selection-hover-benefits li::before {
  content: '' !important;
  flex-shrink: 0 !important;
  width: 18px;
  height: 1px;
  background: var(--or);
}

.home-selection-hover-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(201,169,110,0.22) !important;
  opacity: 0 !important;
  transition: opacity 0.36s ease 0.68s !important;
}

.home-selection-card:hover .home-selection-hover-footer {
  opacity: 1 !important;
}

.home-selection-hover-price {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.home-selection-price-from-hover {
  font-size: 0.53rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.3) !important;
}

.home-selection-price-val-hover {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
  font-weight: 300 !important;
  color: var(--or) !important;
  line-height: 1 !important;
}

.home-selection-price-unit-hover {
  font-size: 0.67rem !important;
  color: rgba(255,255,255,0.33) !important;
}

.home-selection-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--noir) !important;
  background: var(--or) !important;
  padding: 11px 22px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  border-radius: 0 !important;
  transition: background 0.3s ease !important;
}

.home-selection-cta:hover {
  background: var(--or-clair) !important;
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.home-process {
  background: var(--noir);
  padding: var(--pad-y) var(--pad-x);
}

.home-process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}

.home-process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--blanc);
  margin: 20px 0;
}

.home-process-divider {
  width: 60px;
  height: 2px;
  background: var(--or);
  margin: 24px auto 0;
}

.home-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-process-step {
  text-align: center;
}

.home-process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--or);
  opacity: 0.4;
  margin-bottom: 20px;
}

.home-process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blanc);
  margin-bottom: 12px;
}

.home-process-step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}


/* ══════════════════════════════════════════════
   CIBLES
══════════════════════════════════════════════ */
.home-cibles {
  background: var(--creme);
  padding: var(--pad-y) var(--pad-x);
}

.home-cibles-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}

.home-cibles-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--noir);
  margin: 20px 0;
}

.home-cibles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-cibles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-cible-card {
  background: var(--blanc);
  border: 1px solid rgba(201,169,110,0.2);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  transition: all 0.4s ease;
}

.home-cible-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--or);
}

.home-cible-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.home-cible-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 16px;
}

.home-cible-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--texte-doux);
  margin-bottom: 24px;
}

.home-cible-link {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  transition: opacity 0.3s;
}

.home-cible-link:hover {
  opacity: 0.7;
}


/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.home-faq {
  background: var(--noir);
  padding: var(--pad-y) var(--pad-x);
}

.home-faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}

.home-faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--blanc);
  margin: 20px 0;
}

.home-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.home-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}

.home-faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--blanc);
  padding: 24px 48px 24px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-faq-question:hover {
  color: var(--or);
}

.home-faq-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--or);
  transition: transform 0.3s;
}

.home-faq-item.open .home-faq-toggle {
  transform: translateY(-50%) rotate(45deg);
}

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.home-faq-item.open .home-faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}


/* ══════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════ */
.home-cta {
  background: var(--noir-doux);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.home-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--blanc);
  margin: 20px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-cta-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
}

.home-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 480px) {
  .home-cta-btns {
    flex-direction: row;
  }
}

.home-cta-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  justify-content: center;
  align-items: center;
  opacity: 0.6;
}

.home-cta-rea-item {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}