/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  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 top; }
.hero-bg-placeholder {
  width: 100%; height: 100%;
  background: var(--blush);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.hero-bg-placeholder .ph-icon { font-size: 52px; }
.hero-bg-placeholder .ph-label { font-size: 13px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 1px; }
.hero-bg-placeholder .ph-name { font-size: 12px; color: var(--gray); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,0,16,0) 0%, rgba(26,0,16,0.15) 40%, rgba(26,0,16,0.72) 75%, rgba(26,0,16,0.88) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 60px 0 52px; }
.hero-content { max-width: 680px; }

.hero-tag { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.hero-tag-dot { width: 8px; height: 8px; background: var(--pink); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-tag span { font-size: 13px; font-weight: 700; color: var(--pink); }

.hero h1 { font-family: var(--serif); font-size: clamp(36px, 6vw, 64px); color: #fff; line-height: 1.1; margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: var(--pink); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; align-items: center; gap: 10px; }
.hero-trust-avatars { display: flex; }
.avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 14px; margin-left: -8px; }
.avatar:first-child { margin-left: 0; }
.av1 { background: var(--blush); } .av2 { background: #fce4f3; } .av3 { background: var(--cream); } .av4 { background: #e8f4fd; }
.hero-trust-text { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; }
.hero-trust-text strong { color: #fff; }

/* ── BANDEAU ── */
.bandeau { background: var(--hot); padding: 14px 0; overflow: hidden; }
.bandeau-track { display: flex; align-items: center; gap: 40px; animation: scroll-x 20s linear infinite; width: max-content; }
.bandeau-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.bandeau-dot { width: 6px; height: 6px; background: var(--pink); border-radius: 50%; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── UNIVERS ── */
.univers { padding: 80px 0; background: #fff; }
.univers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.univers-card { border-radius: var(--card-r); padding: 32px 24px; position: relative; overflow: hidden; transition: transform 0.2s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.univers-card:hover { transform: translateY(-4px); }
.univers-card.u1 { background: var(--blush); } .univers-card.u2 { background: var(--cream); } .univers-card.u3 { background: #fce4f3; } .univers-card.u4 { background: #e8f4fd; }
.univers-icon { font-size: 40px; margin-bottom: 16px; }
.univers-card h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.univers-card p { font-size: 14px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.univers-link { font-size: 13px; font-weight: 700; color: var(--hot); display: inline-flex; align-items: center; gap: 4px; }
.univers-link::after { content: '→'; transition: transform 0.15s; }
.univers-card:hover .univers-link::after { transform: translateX(4px); }
.univers-num { position: absolute; top: 16px; right: 20px; font-size: 48px; font-weight: 800; color: rgba(131,0,48,0.06); line-height: 1; }

/* ── ATELIERS (accueil) ── */
.ateliers-section { background: var(--blush); padding: 80px 0; }
.ateliers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 320px)); gap: 20px; }
.atelier-card { background: #fff; border-radius: var(--card-r); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.atelier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(131,0,48,0.12); }
.atelier-thumb { height: 200px; position: relative; overflow: hidden; flex-shrink: 0; }
.atelier-thumb img { width: 100%; height: 100%; object-fit: cover; }
.atelier-dispo { position: absolute; bottom: 10px; left: 10px; background: #fff; border-radius: var(--radius); padding: 3px 10px; font-size: 11px; font-weight: 700; color: #2d8a4e; z-index: 2; }
.atelier-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.atelier-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.atelier-tag { font-size: 11px; font-weight: 700; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; }
.atelier-date { font-size: 12px; color: var(--gray); }
.atelier-body h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.atelier-body p { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.atelier-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.atelier-prix { font-size: 20px; font-weight: 800; color: var(--hot); }
.atelier-prix span { font-size: 12px; color: var(--gray); font-weight: 400; }
.btn-reserver { background: var(--hot); color: #fff; border: none; border-radius: var(--radius); padding: 9px 18px; font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.btn-reserver:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(241,5,96,0.3); }

/* Carte "bientôt" */
.atelier-bientot { border: 2px dashed rgba(247,172,186,0.6); background: #fff; }
.atelier-thumb-bientot {
  height: 200px; background: #f9c0cf;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.atelier-thumb-bientot span { font-size: 36px; }
.atelier-thumb-bientot p { font-size: 12px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* ── RETRAITE + CARROUSEL ── */
.retraite-section { background: var(--dark); padding: 80px 0; position: relative; overflow: hidden; }
.retraite-section::before { content: none; }
.retraite-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.retraite-content .pill { background: rgba(247,172,186,0.15); color: var(--pink); }
.retraite-content h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); color: var(--cream); margin-bottom: 14px; line-height: 1.2; }
.retraite-content h2 em { font-style: italic; color: var(--pink); }
.retraite-content p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 480px; margin-bottom: 28px; line-height: 1.7; }
.retraite-details { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.detail-chip { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(247,172,186,0.2); border-radius: var(--radius); padding: 7px 14px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.btn-retraite { background: var(--hot); color: #fff; border: none; border-radius: var(--radius); padding: 14px 28px; font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 20px rgba(241,5,96,0.4); transition: transform 0.15s; }
.btn-retraite:hover { transform: translateY(-2px); }
.retraite-mentions { font-size: 10px; font-style: italic; color: rgba(255,255,255,0.25); line-height: 1.7; margin-top: 16px; max-width: 420px; transform: scale(0.55); transform-origin: left top; }

/* Carrousel */
.carousel-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-slide { min-width: 100%; flex-shrink: 0; position: relative; }
.carousel-duo { display: flex; gap: 8px; height: 340px; }
.carousel-photo { flex: 1; height: 100%; object-fit: cover; object-position: center; border-radius: 12px; }
.carousel-nav { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.carousel-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; }
.carousel-dot.active { background: #fff; transform: scale(1.3); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 16px; cursor: pointer; z-index: 3; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* ── BOUTIQUE ── */
.boutique-section { background: #fff; padding: 80px 0; }
.boutique-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 320px)); gap: 20px; }
.kit-card { border: 1.5px solid rgba(247,172,186,0.5); border-radius: var(--card-r); overflow: hidden; transition: transform 0.2s, border-color 0.2s; background: #fff; display: flex; flex-direction: column; }
.kit-card:hover { transform: translateY(-3px); border-color: var(--pink); }
.kit-thumb { height: 200px; overflow: hidden; position: relative; flex-shrink: 0; }
.kit-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kit-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.kit-body h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.kit-body p { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.kit-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.kit-prix { font-size: 20px; font-weight: 800; color: var(--hot); }
.btn-panier { background: var(--blush); color: var(--dark); border: none; border-radius: var(--radius); padding: 9px 14px; font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.15s, color 0.15s; }
.btn-panier:hover { background: var(--hot); color: #fff; }

/* ── BLOG ── */
.blog-section { background: var(--cream); padding: 80px 0; }
.blog-une-label { font-size: 12px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.blog-une-label::after { content: ''; flex: 1; height: 1px; background: rgba(241,5,96,0.15); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 320px)); gap: 20px; }
.blog-card { background: #fff; border-radius: var(--card-r); overflow: hidden; transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-3px); }
.blog-thumb { height: 180px; overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 18px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.blog-body h3 { font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.35; margin-bottom: 10px; }
.blog-meta { font-size: 12px; color: #aaa; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-inner { padding: 48px 0 40px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .retraite-inner { grid-template-columns: 1fr; }
  .boutique-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
