/* ══════════════════════════════════════════════════════
   INDEX-NEW.CSS — Page d'accueil hub
   Chargé après base.css
   ══════════════════════════════════════════════════════ */

/* ── HERO 2 COLONNES ── */
.home-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1fr;
  height: 100vh;
  padding: 5rem 8vw 0;
  position: relative;
  overflow: hidden;
}

.home-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4vw;
  position: relative;
  z-index: 2;
}

.home-eyebrow {
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: .8rem;
  opacity: 0;
  animation: fadeUp .7s .1s both;
}
.home-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.home-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--charcoal);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .85s .22s both;
}
.home-title em { font-style: italic; color: var(--gold); }

.home-subtitle {
  font-size: .88rem;
  color: var(--gray);
  max-width: 30rem;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .8s .38s both;
}

/* ── HERO DROITE (photo duo) ── */
.home-hero-right {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.home-hero-right-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 30% 60%, rgba(168,132,74,.08) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(168,132,74,.05) 0%, transparent 50%);
  pointer-events: none;
}
/* picture en block : sans ça, height:100% sur l'img ne se propage pas correctement. */
.home-hero-right picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(15%);
  opacity: .88;
  mix-blend-mode: luminosity;
}
.home-hero-quote {
  position: absolute;
  bottom: 2.5rem;
  left: 1.8rem;
  right: 1.8rem;
  z-index: 2;
  background: rgba(30,37,53,.88);
  backdrop-filter: blur(10px);
  padding: 1.4rem 1.8rem;
  border-left: 2px solid var(--gold);
}
.home-hero-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
}

/* ── EN-TÊTES DE SECTION (partagé) ── */
.home-section-hd { text-align: center; margin-bottom: 3rem; }

.home-section-eyebrow {
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.home-section-eyebrow::before,
.home-section-eyebrow::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.home-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}

/* ── CARDS ── */
.home-cards-section {
  padding: 5rem 8vw;
  background: var(--cream);
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-card {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--ivory);
  text-decoration: none;
  padding: 2.4rem 2rem;
  min-height: 270px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168,132,74,.1);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
}
.home-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(168,132,74,.1) 0%, transparent 60%);
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s;
}
.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,.25);
  border-color: rgba(168,132,74,.3);
}
.home-card:hover::before { opacity: 2; }

.card-num {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.card-body {
  flex-grow: 1;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: .6rem;
}
.card-desc {
  font-size: .75rem;
  color: rgba(250,247,242,.55);
  line-height: 1.6;
  font-weight: 300;
}
.card-arrow {
  font-size: 1.1rem;
  color: rgba(250,247,242,.35);
  transition: color .25s, transform .25s;
  display: inline-block;
}
.home-card:hover .card-arrow {
  color: var(--gold);
  transform: translateX(5px);
}

/* ── AVIS ── */
.home-avis-section {
  padding: 5rem 8vw;
  background: var(--ivory);
}

.home-avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.home-avis-card {
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border: 1px solid var(--border-l);
}
.avis-stars-home {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}
.avis-txt-home {
  font-size: .84rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.avis-auth-home {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

.home-rating-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-l);
}
.rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}
.rating-meta { display: flex; flex-direction: column; gap: .3rem; }
.rating-stars { color: var(--gold); font-size: .75rem; }
.rating-label {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── CTA FINAL ── */
.home-cta-section {
  padding: 5rem 8vw;
  background: var(--navy);
  text-align: center;
}
.home-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: .7rem;
  line-height: 1.2;
}
.home-cta-sub {
  font-size: .8rem;
  color: rgba(250,247,242,.45);
  margin-bottom: 2rem;
  letter-spacing: .06em;
}
.home-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  font-size: .73rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background .25s, transform .15s;
}
.home-cta-btn:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
}

/* ══════════════
   RESPONSIVE
   ══════════════ */
@media(max-width:900px) {
  .home-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .home-hero-right {
    order: -1;
    min-height: 52vw;
    max-height: 64vw;
  }
  .home-hero-quote { display: none; }
  .home-hero-left {
    padding: 2.5rem 5vw 3rem;
  }

  .home-cards-section,
  .home-avis-section,
  .home-cta-section {
    padding: 3.5rem 5vw;
  }
  .home-cards-grid,
  .home-avis-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .home-card { min-height: 180px; }
}

@media(max-width:480px) {
  .home-hero-right {
    min-height: 66vw;
    max-height: 78vw;
  }
  .home-cards-section,
  .home-avis-section,
  .home-cta-section {
    padding: 3rem 5vw;
  }
}
