/* =========================
   DÉROULEMENT DES SÉANCES — HERO FULL WIDTH
   ========================= */

.ds-hero{
  width: 100%;
  position: relative;
}

/* Media plein écran */
.ds-hero__media{
  position: relative;
  width: 100%;
  height: clamp(360px, 70vh, 760px);
  overflow: hidden;
  background: #0b0b0b;
}

.ds-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay pour lisibilité texte */
.ds-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 15% 35%, rgba(0,0,0,0.75), rgba(0,0,0,0.18) 70%, rgba(0,0,0,0.20)),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.30) 70%, rgba(0,0,0,0.55));
}

/* Texte par dessus */
.ds-hero__content{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.ds-hero__inner{
  padding-top: clamp(18px, 4vh, 60px);
  padding-bottom: clamp(18px, 5vh, 70px);
  color: #fff;
}

.ds-hero__title{
  margin: 0;
  color: #fff;
  font-weight: 950;
  line-height: 1.05;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  max-width: 20ch;
}

.ds-hero__lead{
  margin: 1rem 0 0;
  max-width: 62ch;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.ds-hero__actions{
  margin-top: 1.35rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Main */
.ds-main{
  padding: clamp(26px, 4vw, 64px) 0;
}

/* =========================
   RESPONSIVE - TABLETTE
   ========================= */

@media (min-width: 641px) and (max-width: 1024px){
  .ds-hero__media{
    height: clamp(360px, 62vh, 640px);
  }

  .ds-hero__title{
    max-width: 24ch;
  }
}

/* =========================
   RESPONSIVE - MOBILE
   ========================= */

@media (max-width: 640px){
  .ds-hero__media{
    height: 520px;
  }

  .ds-hero__title{
    font-size: 2.05rem;
    max-width: 22ch;
  }

  .ds-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .ds-hero__actions a{
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   RESPONSIVE - GRAND ÉCRAN
   ========================= */

@media (min-width: 1600px){
  .ds-hero__media{
    height: 860px;
  }

  .ds-hero__title{
    font-size: 3.6rem;
  }

  .ds-hero__lead{
    font-size: 1.2rem;
  }
}

/* =========================
   BOUTON RÉSERVATION — DÉROULEMENT DES SÉANCES
   ========================= */

.ds-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;

  padding: .9rem 1.35rem;
  border-radius: 999px;

  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;

  transition:
    transform .15s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

/* Bouton principal */
.ds-btn--primary{
  background: var(--couleur-principale);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}

.ds-btn--primary:hover{
  transform: translateY(-2px);
  background: #178f8a;
  box-shadow: 0 22px 55px rgba(0,0,0,0.32);
}

/* =========================
   DÉROULEMENT DES SÉANCES
   ========================= */

.ds-process{
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  max-width: 900px;
  margin: 0 auto;
}

.ds-process__block{
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(20,20,20,0.85);
}

.ds-process__title{
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
}

.ds-process__block p{
  margin-bottom: 1rem;
}

/* Photo séparation */
.ds-process__photo{
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.ds-process__photo img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* =========================
   TARIFS
   ========================= */

.ds-pricing{
  margin-top: clamp(50px, 8vw, 100px);
  padding: clamp(40px, 6vw, 80px) 1rem;
  position: relative;
  overflow: hidden;
}

/* Image de fond */
.ds-pricing::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-tarifs);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay pour lisibilité */
.ds-pricing::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,182,193,0.35), rgba(255,255,255,0.75));
  z-index: 1;
}

.ds-pricing__inner{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ds-pricing__title{
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 2.5rem;
}

.ds-pricing__cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ds-pricecard{
  background: rgba(255,255,255,0.95);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  backdrop-filter: blur(10px);
}

.ds-pricecard h3{
  margin: 0 0 .6rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.ds-pricecard__duration{
  color: rgba(20,20,20,0.70);
}

.ds-pricecard__price{
  font-size: 2.4rem;
  font-weight: 950;
  margin: 1rem 0 .4rem;
  color: var(--couleur-principale);
}

.ds-pricecard__note{
  font-size: .95rem;
  color: rgba(20,20,20,0.65);
}

.ds-pricing__footnote{
  margin-top: 1.5rem;
  font-size: .95rem;
  color: rgba(20,20,20,0.65);
}

.ds-pricing__cta{
  margin-top: 2.5rem;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px){
  .ds-process__photo img{
    height: 300px;
  }

  .ds-pricing__cards{
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1600px){
  .ds-process__photo img{
    height: 520px;
  }
}