/* =====================================================
   PAGE — QUI SOMMES-NOUS
   Objectifs :
   - crédibilité
   - lisibilité
   - SEO-friendly
   - cohérent Murino
===================================================== */

.page.about{
  padding-top: 120px;
  padding-bottom: 160px;

  background:
    radial-gradient(1200px 500px at 50% -200px, #f4f4f4 0%, #ffffff 65%);
}
/* ================= FULL WIDTH BACKGROUND (ABOUT) ================= */

.page.about{
  max-width: none;                 /* casse la limite globale */
  width: 100vw;
  margin-left: calc(50% - 50vw);   /* full bleed */
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;

  background: #e4caec; /* couleur ABOUT (à ajuster) */
}

/* ================= CONTAINER ================= */

.page.about > section{
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* ================= TITRES ================= */

.page.about h1{
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.page.about h2{
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  position: relative;
}

/* petit accent Murino */
.page.about h2::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 3px;
  background: #000;
}

/* ================= TEXTE ================= */

.page.about p{
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* mots forts */
.page.about strong{
  font-weight: 700;
}

/* ================= LISTES ================= */

.page.about ul{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.page.about ul li{
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #222;
}

.page.about ul li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 28px;
  line-height: 1;
  color: #000;
}

/* ================= SECTIONS SPÉCIALES ================= */

/* sections centrales un peu plus respirantes */
.page.about section:nth-of-type(2),
.page.about section:nth-of-type(4){
  padding-top: 40px;
}

/* ================= BLOC MISE EN VALEUR ================= */

.page.about section:nth-of-type(3){
  background: rgba(0,0,0,0.03);
  border-radius: 24px;
  padding: 48px 48px 56px;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){

  .page.about{
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .page.about section{
    margin-bottom: 64px;
  }

  .page.about section:nth-of-type(3){
    padding: 36px 28px 44px;
  }

}

@media (max-width: 600px){

  .page.about h1{
    font-size: 32px;
  }

  .page.about h2{
    font-size: 22px;
  }

  .page.about p{
    font-size: 15px;
  }

}
