/* ── HERO RETRAITE ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg-ph {
  width: 100%; height: 100%; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.hero-bg-ph .ph-icon  { font-size: 56px; opacity: 0.4; }
.hero-bg-ph .ph-label { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.hero-bg-ph .ph-name  { font-size: 12px; color: rgba(255,255,255,0.3); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 40%, rgba(26,0,16,0.85) 75%, rgba(26,0,16,0.97) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 56px 0 60px; }

.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-pill {
  background: rgba(247,172,186,0.2); color: var(--pink);
  border: 1px solid rgba(247,172,186,0.3);
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius);
}
.hero-sep { color: rgba(255,255,255,0.2); }
.hero-date-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; }

.hero h1 { font-family: var(--serif); font-size: clamp(36px, 6vw, 68px); color: #fff; line-height: 1.1; margin-bottom: 18px; max-width: 800px; }
.hero h1 em { font-style: italic; color: var(--pink); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.7; margin-bottom: 36px; }
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-hero {
  background: var(--hot); color: #fff; border: none; border-radius: var(--radius);
  padding: 15px 32px; font-family: var(--font); font-size: 16px; font-weight: 800;
  cursor: pointer; box-shadow: 0 4px 24px rgba(241,5,96,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(241,5,96,0.5); }

.hero-places { display: flex; align-items: center; gap: 10px; }
.places-bar-wrap { width: 100px; height: 6px; background: rgba(255,255,255,0.15); border-radius: var(--radius); overflow: hidden; }
.places-bar-fill { height: 100%; width: 60%; background: var(--hot); border-radius: var(--radius); }
.places-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 700; }
.places-label strong { color: #fff; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 8px 16px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9);
}

/* ── BANDEAU CHIFFRES ── */
.bandeau-chiffres { background: var(--hot); padding: 28px 0; }
.chiffres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 640px; margin: 0 auto; }
.chiffre-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.chiffre-item:last-child { border-right: none; }
.chiffre-num   { font-family: var(--serif); font-size: 36px; color: #fff; font-weight: 700; }
.chiffre-label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 2px; }

/* ── L'EXPÉRIENCE ── */
.experience { padding: 80px 0; background: #fff; }
.experience-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.experience-text h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 38px); color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.experience-text h2 em { font-style: italic; color: var(--hot); }
.experience-text p  { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.experience-photo { border-radius: var(--card-r); overflow: hidden; }
.experience-photo img { width: 100%; height: 480px; object-fit: cover; }

/* Carrousel lieu */
.lieu-carousel-wrap  { position: relative; border-radius: var(--card-r); overflow: hidden; height: 480px; }
.lieu-carousel-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.lieu-slide          { min-width: 100%; flex-shrink: 0; height: 100%; }
.lieu-slide img      { width: 100%; height: 100%; object-fit: cover; }
.lieu-carousel-nav   { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.lieu-dot            { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; padding: 0; }
.lieu-dot.active     { background: #fff; transform: scale(1.3); }
.exp-ph {
  width: 100%; height: 480px; background: var(--blush);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--card-r);
}
.exp-ph .ph-icon  { font-size: 44px; }
.exp-ph .ph-label { font-size: 11px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; }
.exp-ph .ph-name  { font-size: 11px; color: var(--gray); }

/* ── PROGRAMME ── */
.programme { background: var(--dark); padding: 40px 0 80px; }
.programme h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); color: var(--cream); text-align: center; margin-bottom: 8px; }
.programme-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.programme-intro p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 8px; }
.programme-intro p:last-child { margin-bottom: 0; color: rgba(255,255,255,0.45); font-style: italic; }
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.jour-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(247,172,186,0.15); border-radius: var(--card-r); padding: 28px; }
.jour-label { font-size: 11px; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.jour-title { font-family: var(--serif); font-size: 22px; color: var(--cream); margin-bottom: 20px; line-height: 1.2; }
.jour-items { display: flex; flex-direction: column; gap: 14px; }
.jour-item  { display: flex; gap: 14px; align-items: flex-start; }
.jour-heure { font-size: 12px; font-weight: 800; color: var(--pink); min-width: 44px; padding-top: 2px; }
.jour-desc h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.jour-desc p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ── GALERIE ── */
.galerie { padding: 40px 0 80px; background: #fff; }
.galerie h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 36px); color: var(--dark); text-align: center; margin-bottom: 36px; }
.galerie-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 12px; }
.galerie-item     { border-radius: 16px; overflow: hidden; }
.galerie-item.big { grid-row: span 2; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; }
.galerie-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.gph1 { background: var(--blush); } .gph2 { background: var(--cream); } .gph3 { background: #fce4f3; }
.gph4 { background: #e8f4fd; }     .gph5 { background: #f0fce8; }
.galerie-ph .ph-icon  { font-size: 28px; }
.galerie-ph .ph-label { font-size: 10px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; }
.galerie-ph .ph-name  { font-size: 10px; color: var(--gray); }

/* ── CE QUI EST INCLUS ── */
.inclus-section { background: var(--cream); padding: 40px 0 80px; }
.inclus-section h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 36px); color: var(--dark); text-align: center; margin-bottom: 40px; }
.inclus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.inclus-card { background: #fff; border-radius: var(--card-r); padding: 24px 20px; text-align: center; border: 1.5px solid rgba(247,172,186,0.3); }
.inclus-card .ic-icon { font-size: 32px; margin-bottom: 10px; }
.inclus-card h3 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.inclus-card p  { font-size: 13px; color: var(--gray); line-height: 1.4; }

/* ── RÉSERVATION ── */
.resa-section { background: var(--ink); padding: 80px 0; }
.resa-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
.resa-content h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 42px); color: var(--cream); line-height: 1.2; margin-bottom: 14px; }
.resa-content h2 em { font-style: italic; color: var(--pink); }
.resa-content p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.7; margin-bottom: 28px; }
.resa-details { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.resa-chip { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.07); border: 1px solid rgba(247,172,186,0.2); border-radius: var(--radius); padding: 7px 14px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); }
.resa-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(241,5,96,0.3); border-radius: 24px; padding: 32px 36px; text-align: center; min-width: 220px; }
.resa-prix       { font-family: var(--serif); font-size: 52px; color: var(--cream); line-height: 1; }
.resa-prix-label { font-size: 13px; color: var(--pink); margin-top: 4px; margin-bottom: 20px; }
.resa-places-bar { background: rgba(255,255,255,0.1); border-radius: var(--radius); height: 6px; margin-bottom: 8px; overflow: hidden; }
.resa-places-fill { background: var(--hot); height: 100%; width: 60%; border-radius: var(--radius); }
.resa-places-text { font-size: 12px; color: var(--pink); margin-bottom: 20px; }
.btn-resa {
  width: 100%; background: var(--hot); color: #fff;
  border: none; border-radius: var(--radius); padding: 14px;
  font-family: var(--font); font-size: 15px; font-weight: 800;
  cursor: pointer; box-shadow: 0 4px 20px rgba(241,5,96,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-resa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(241,5,96,0.5); }
.resa-note { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 10px; }
.resa-prix-sublabel { font-size: 12px; color: var(--pink); margin-bottom: 2px; }
.resa-remboursement { display: block; font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 8px; text-decoration: underline; }
.resa-remboursement:hover { color: rgba(255,255,255,0.7); }
.resa-conditions { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 18px; margin-top: 8px; display: inline-block; }
.resa-conditions-title { font-size: 12px; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.resa-conditions p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 4px; line-height: 1.5; }
.resa-conditions p:last-child { margin-bottom: 0; }

/* ── TÉMOIGNAGES ── */
.temoignages { background: var(--blush); padding: 40px 0 80px; }
.temoignages h2 { font-family: var(--serif); font-size: clamp(24px, 3.5vw, 34px); color: var(--dark); text-align: center; margin-bottom: 40px; }
.temoignages-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.temoignage-card   { background: #fff; border-radius: var(--card-r); padding: 28px 24px; }
.temoignage-stars  { font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.temoignage-card p { font-size: 15px; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.temoignage-auteure { display: flex; align-items: center; gap: 10px; }
.temoignage-avatar  { width: 36px; height: 36px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 16px; border: 2px solid var(--pink); }
.temoignage-nom  { font-size: 13px; font-weight: 800; color: var(--dark); }
.temoignage-date { font-size: 12px; color: var(--gray); }

/* ── FAQ ── */
.faq { padding: 40px 0 80px; background: #fff; }
.faq h2 { font-family: var(--serif); font-size: clamp(24px, 3.5vw, 34px); color: var(--dark); text-align: center; margin-bottom: 40px; }
.faq-accordion { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--blush); border-radius: var(--card-r); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; text-align: left; }
.faq-question span { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.faq-question:hover span { color: var(--hot); }
.faq-arrow { color: var(--dark); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 14px; color: #555; line-height: 1.7; padding: 0 24px 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .experience-inner { grid-template-columns: 1fr; }
  .programme-grid   { grid-template-columns: 1fr; }
  .resa-inner       { grid-template-columns: 1fr; }
  .galerie-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie-item.big { grid-row: span 1; }
  .chiffres-grid    { grid-template-columns: 1fr 1fr; gap: 20px; }
  .chiffre-item     { border-right: none; }
  .faq-grid         { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .galerie-grid { grid-template-columns: 1fr; }
}
