:root{
  /* ---------- Couleurs · primitifs ---------- */
  --rose-pale:#FDE8EC;
  --rose-bebe:#F9C6D0;
  --rose-deep:#F0A8B8;
  --rose-accent: #FE4F9E;
  --blanc:#FFFFFF;
  --noir:#1A1A18;

  /* ---------- Typographie ---------- */
  --font-heading:'Mulish', sans-serif;
  --font-body:'Roboto', sans-serif;
  --font-script: 'Reenie Beanie', cursive;

  /* ---------- Layout ---------- */
  --maxw:1440px;
  --pad:clamp(20px, 5vw, 80px);
}

*{margin:0;
  padding:0;
  box-sizing:border-box;
}

html{scroll-behavior:smooth;
}

/* NOTE : le token surface/bg = rose-pale. La maquette montrant des sections
   majoritairement claires, on garde ici le blanc comme fond dominant et le
   rose-pâle est réservé à la section « c'est quoi ? ». Pour un canvas rose,
   remplacer var(--surface-card) par var(--surface-bg) ci-dessous. */
body{
  font-family:var(--font-body);
  font-weight:400;
  background:var(--surface-card);
  color:var(--text-primary);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
   margin: 0;
  width:100%;
}
img{
  display:block;
  max-width:100%;}

a{
  color:inherit;
  text-decoration:none;}

ul{
  list-style:none;}

/* Typo utilitaires d'après les tokens */
.script{
  font-family:var(--font-script);
  font-weight:400;
  line-height:1;
}
h1,h2,h3,h4{
  font-family:var(--font-heading);
  letter-spacing:-.02em;}

/* ----- Placeholders d'images (à remplacer par tes assets) ----- */
.ph{
  position:relative;
  background:
    linear-gradient(135deg, rgba(0,0,0,.04) 25%, transparent 25%) -8px 0/16px 16px,
    #f0eae6;
  display:flex;align-items:center;justify-content:center;text-align:center;
  color:#b6aaa3;
  font-family:var(--font-heading);
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;font-weight:700;
}
.ph span{padding:0 1rem;line-height:1.7;}

/* Images produit : ratio naturel, coins légèrement arrondis */
.slot-img{display:block;width:100%;height:auto;}

/* La fleur Maison Lua (asset SVG réel) */
.flower{pointer-events:none;user-select:none;z-index:1;}

/* ====================================================================
   NAV
   ==================================================================== */
.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px var(--pad);
  color:var(--noir);
  transition:background .4s ease, color .4s ease, padding .4s ease, box-shadow .4s ease;
}
.nav.scrolled{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  color:var(--text-primary);
  padding:14px var(--pad);
  box-shadow:0 1px 0 rgba(26,26,24,.07);
}
.nav__logo{
  font-family:var(--font-heading);
  font-weight:600;
  font-size:1.4rem;
  line-height:.85;
  display:flex;
  flex-direction:column;
}
.nav__logo b{
  font-weight:800;
}
.nav__logo small{
  font-size:.62em;
  letter-spacing:.18em;
  font-weight:500;
}
.nav__links{
  display:flex;
  gap:38px;
}
.nav__links a{
  position:relative;
  padding:4px 0;
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.nav__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1.5px;
  background:currentColor;
  transition:width .3s ease;
}
.nav__links a:hover::after{
  width:100%;
}
/* CTA Soutenir à droite */
.nav__cta{
  grid-column:3;
  justify-self:end;
  border:1.5px solid currentColor;
  padding:11px 24px;
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:inherit;
  transition:background .3s ease, color .3s ease, border-color .3s ease;
}
.nav__cta:hover{
  background:var(--rose-deep);
  border-color:var(--rose-deep);
  color:var(--blanc);
}
.nav.scrolled .nav__cta:hover{
  background:var(--rose-deep);
  border-color:var(--rose-deep);
  color:var(--blanc);
}

/* ----- Burger : caché en desktop ----- */
.nav__burger{
  display:none;
}

/* "Soutenir" du menu : caché en desktop (le bouton de la barre suffit) */
.nav__links-cta{
  display:none;
}

/* ----- Mobile : burger + menu déroulant ----- */
@media (max-width:768px){
  .nav__burger{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:30px;
    height:30px;
    padding:0;
    background:none;
    border:none;
    cursor:pointer;
    color:inherit;
    z-index:1001;
  }
  .nav__burger span{
    display:block;
    width:26px;
    height:2px;
    background:currentColor;
    transition:transform .3s ease, opacity .3s ease;
  }
  .nav__links{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:center;
    gap:26px;
    padding:36px 20px;
    background:var(--noir);
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
    transition:opacity .3s ease, transform .3s ease;
  }
  .nav__links a{
    color:#fff;
    font-size:1.25rem;
  }
  .nav__cta{
    display:none;
  }

  .nav__links-cta{
    display:block;
    margin-top:8px;
  }
  .nav__links-cta a{
    display:inline-block;
    padding:12px 28px;
    border:1.5px solid #fff;
    font-size:1rem;
  }
  .nav.open .nav__links{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav.open .nav__burger span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  .nav.open .nav__burger span:nth-child(2){
    opacity:0;
  }
  .nav.open .nav__burger span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
}

/* ===================== VOUS AVEZ DIT SYNDERME ? ===================== */
.histoire-synderme{
  padding:clamp(60px,8vw,120px) var(--pad);
}
.hs__inner{
  max-width:1000px;
  margin:0 auto;
}
.hs__eyebrow{
  font-size:clamp(1.4rem,2.4vw,1.9rem);
  color:var(--rose-accent);
  margin-bottom:6px;
}
.hs__title{
  font-weight:800;
  font-size:clamp(2rem,4.4vw,3.4rem);
  margin-bottom:clamp(28px,4vw,48px);
}
.hs__cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(28px,4vw,56px);
}
.hs__col p{
  font-size:20px;
  line-height:1.8;
}
.hs__col p + p{
  margin-top:18px;
}
.hs__why{
  margin-top:clamp(36px,5vw,64px);
  padding-top:clamp(28px,3vw,40px);
  border-top:1px solid rgba(26,26,24,.12);
  max-width:760px;
}
.hs__subtitle{
  font-weight:800;
  font-size:clamp(1.4rem,2.6vw,2rem);
  margin-bottom:14px;
}
.hs__why p{
  font-size:1.05rem;
  line-height:1.8;
}

/* Mobile : une colonne */
@media (max-width:768px){
  .hs__cols{
    grid-template-columns:1fr;
    gap:18px;
  }
}

/* ===================== SAVOIR-FAIRE — HERO (façon home) ===================== */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  display:flex;
  align-items:center;
  padding:0 var(--pad);
  color:var(--blanc);
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.08);
  transition:opacity 1.2s ease, transform 6s ease;
}
.hero__img.is-active{
  opacity:1;
  transform:scale(1);
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(105deg, rgba(20,18,16,.55) 0%, rgba(20,18,16,.15) 45%, transparent 70%);
}
.hero__content{
  position:relative;
  z-index:2;
  max-width:700px;
}
.hero__eyebrow{
  font-size:clamp(1.6rem,3vw,2.2rem);
  color:var(--rose-bebe);
  margin-bottom:8px;
}
.hero h1{
  font-weight:800;
  font-size:clamp(3.2rem,8vw,6.4rem);
  line-height:.95;
}
.hero__sub{
  font-size:clamp(1.4rem,2.6vw,2.2rem);
  margin-top:22px;
  line-height:1.1;
  opacity:.97;
}

/* ===================== VOUS AVEZ DIT SYNDERME ? ===================== */
.histoire-synderme{
  padding:clamp(60px,8vw,120px) var(--pad);
  font-size: 20px;
}
.hs__inner{
  max-width:1000px;
  margin:0 auto;
}
.hs__eyebrow{
  font-size:clamp(1.4rem,2.4vw,1.9rem);
  color:var(--rose-accent);
  margin-bottom:6px;
}
.hs__title{
  font-weight:800;
  font-size:clamp(2rem,4.4vw,3.4rem);
  margin-bottom:clamp(28px,4vw,48px);
}
.hs__cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(28px,4vw,56px);
}
.hs__col p{
  font-size:20px;
  line-height:1.8;
}
.hs__col p + p{
  margin-top:18px;
}
.hs__why{
  margin-top:clamp(36px,5vw,64px);
  padding-top:clamp(28px,3vw,40px);
  border-top:1px solid rgba(26,26,24,.12);
  max-width:760px;
}
.hs__subtitle{
  font-weight:800;
  font-size:clamp(1.4rem,2.6vw,2rem);
  margin-bottom:14px;
}
.hs__why p{
  font-size:1.05rem;
  line-height:1.8;
}

/* Mobile : une colonne */
@media (max-width:768px){
  .hs__cols{
    grid-template-columns:1fr;
    gap:18px;
  }
}

/* ===================== PROCÉDÉ SYNDERME ===================== */
.procede{
  background:var(--rose-pale);
  padding:clamp(60px,10vw,140px) var(--pad);
}
.procede__intro{
  max-width:var(--maxw);
  margin:0 auto clamp(50px,8vw,100px);
  text-align:center;
}
.procede__eyebrow{
  font-family:var(--font-script);
  font-size:clamp(30px,4vw,35px);
  color:var(--rose-accent);
  margin-bottom:6px;
}
.procede__title{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:clamp(40px,7vw,48px);
  line-height:.95;
}
.procede__steps{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:clamp(45px,7vw,100px);
}
.procede__step{
  width:100%;
  max-width:760px;
  margin:0 auto;
  position:relative;
}
.procede__media{
  width:100%;
  overflow:hidden;
  border-radius:6px;
}
.procede__media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
  transform:scale(1.07);
  transition:transform .9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.procede__step.is-visible .procede__media img{
  transform:scale(1);
}
.procede__text{
  position:relative;
  z-index:2;
  background:none;
  box-shadow:none;
  padding:30px 34px;
  max-width:420px;
  margin-top:-80px;
  text-align:left;
}
.procede__text::before{
  content:"";
  position:absolute;
  z-index:-1;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:clamp(260px,32vw,400px);
  height:clamp(260px,32vw,400px);
  background:url("assets/fleur.svg") center / contain no-repeat;
  opacity:.2;
  pointer-events:none;
  animation:flowerBounce 3.5s ease-in-out infinite;
}
@keyframes flowerBounce{
  0%, 100%{
    transform:translate(-50%,-50%) translateY(0);
  }
  50%{
    transform:translate(-50%,-50%) translateY(-14px);
  }
}
.procede__step:nth-child(odd) .procede__text{
  margin-right:auto;
  margin-left:-40px;
}
.procede__step:nth-child(even) .procede__text{
  margin-left:auto;
  margin-right:-40px;
}
.procede__num{
  display:block;
  font-family:var(--font-script);
  font-weight:800;
  font-size:clamp(44px,6vw,150px);
  line-height:1;
  color:var(--rose-deep);
  margin-bottom:4px;
}
.procede__text h3{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:clamp(24px,3vw,40px);
  line-height:1.05;
  text-transform:uppercase;
  margin-bottom:12px;
}
.procede__text p{
  font-family:var(--font-body);
  font-size:clamp(15px,1.4vw,18px);
  line-height:1.6;
}
@media(max-width:768px){
  .procede__text{
    max-width:88%;
    margin-top:-50px;
  }
  .procede__step:nth-child(odd) .procede__text,
  .procede__step:nth-child(even) .procede__text{
    margin-left:auto;
    margin-right:auto;
  }
}

.procede__step{
  opacity:0;
  transform:translateY(45px);
  transition:opacity .9s ease, transform .9s ease;
}
.procede__step.is-visible{
  opacity:1;
  transform:translateY(0);
}
.procede__media img{
  transform:scale(1.07);
  transition:transform 1.1s ease;
}
.procede__step.is-visible .procede__media img{
  transform:scale(1);
}

/* ===================== POURQUOI ===================== */

.hs__why{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:clamp(30px,5vw,80px);
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(50px,8vw,110px) var(--pad);
}
.hs__subtitle{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:clamp(26px,3.5vw,48px);
  margin-bottom:20px;
}
.hs__why-text p{
  font-family:var(--font-body);
  font-size:clamp(16px,1.4vw,19px);
  line-height:1.7;
  max-width:48ch;
}
.hs__why-media{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.hs__why-video__media{
  width:100%;
  max-width:340px;
  height:auto;
  margin:0 auto;
  display:block;
}

.hs__why{
  position:relative;
}
.hs__why-annot{
  position:absolute;
  z-index:3;
  top:82%;
  left:46%;
  display:flex;
  align-items:center;
  gap:10px;
  transform:rotate(-5deg);
  pointer-events:none;
}
.hs__why-annot__word{
  font-size:clamp(26px,3vw,40px);
  color:var(--rose-accent);
  white-space:nowrap;
}
.hs__why-annot__arrow{
  width:clamp(46px,5vw,72px);
  margin-top:60px;
  transform:rotate(-20deg);
}
@media (max-width:768px){
  .hs__why-annot{
    display:none;
  }
}

.hs__why-media img
.hs__why-media video{
  max-width:240px;
}
.hs__why-media > *:nth-child(2){
  margin-top:40px;
}
@media(max-width:768px){
  .hs__why{
    grid-template-columns:1fr;
    gap:28px;
  }
  @media(max-width:768px){
  .hs__why-media > *:nth-child(2){
    margin-top:0;
  }
  }
}

/* ===================== LE VOYAGE D'UN LUA ===================== */
.voyage{
  padding:clamp(60px,8vw,120px) var(--pad);
}
.voyage__inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:clamp(32px,5vw,72px);
  align-items:center;
}
.voyage__eyebrow{
  font-size:clamp(1.4rem,2.4vw,1.9rem);
  color:var(--rose-accent);
  margin-bottom:6px;
}
.voyage__title{
  font-weight:800;
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:16px;
}
.voyage__lead{
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:clamp(24px,3vw,40px);
  max-width:42ch;
}
.voyage__list{
  list-style:none;
  margin:0;
  padding:0;
  position:relative;
}
.voyage__list::before{
  content:"";
  position:absolute;
  left:7px;
  top:6px;
  bottom:6px;
  width:2px;
  background:var(--rose-bebe);
}
.voyage__step{
  position:relative;
  display:flex;
  gap:18px;
  padding:12px 0;
}
.voyage__pin{
  flex:0 0 auto;
  width:16px;
  height:16px;
  margin-top:4px;
  border-radius:50%;
  background:var(--rose-deep);
  border:3px solid var(--blanc);
  box-shadow:0 0 0 1px var(--rose-bebe);
  z-index:1;
}
.voyage__place{
  font-weight:800;
  font-size:1.05rem;
  margin-bottom:2px;
}
.voyage__step p{
  font-size:.95rem;
  line-height:1.55;
  opacity:.8;
}
.voyage__img{
  width:100%;
  height:auto;
  display:block;
}

/* Mobile : carte au-dessus, puis les étapes */
@media (max-width:768px){
  .voyage__inner{
    grid-template-columns:1fr;
    gap:32px;
  }
  .voyage__map{
    order:-1;
  }
}

.voyage__map{
  position:relative;
}
.voyage__img{
  width:100%;
  height:auto;
  display:block;
}
.voyage__bike{
  position:absolute;
  width:18%;
  top:6%;
  left:2%;
  animation:rideEurope 9s ease-in-out infinite;
}
@keyframes rideEurope{
  0%   { top:6%;  left:2%;  opacity:0; }   /* départ (apparaît) */
  8%   { opacity:1; }
  35%  { top:50%; left:26%; }              /* France */
  65%  { top:78%; left:12%; }              /* Espagne */
  92%  { opacity:1; }
  100% { top:52%; left:70%; opacity:0; }   /* Italie (disparaît) */
}

/* Respect des préférences d'accessibilité */
@media (prefers-reduced-motion:reduce){
  .voyage__bike{
    animation:none;
  }
}

.voyage__pin--end{
  background:var(--rose-accent); 
  border-color:var(--rose-accent);
  width:16px;
  height:16px;
}
.voyage__step--end .btn{
  margin-top:12px;
}

.btn-nav{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1.5px solid var(--noir);
  padding:11px 24px;
  margin-top: 20px;
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--noir);
  transition:background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-nav:hover{
  background:var(--rose-deep);
  border-color:var(--rose-deep);
  color:var(--blanc);
}

/* ===================== FOOTER ===================== */
.footer{
  padding:40px var(--pad) 28px;
}
.footer__main{
  max-width:var(--maxw);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;   /* liens · image · liens */
  align-items:center;
  gap:40px;
}
.footer__col{
  display:flex;
  flex-direction:column;
  gap:20px;
  font-family:var(--font-heading);
  font-weight:700;
  font-size:24px;
  width:fit-content;
}

.footer__col.right{
  align-items:flex-end;
  text-align:right;
}
.footer__col a{
  position:relative;
  text-decoration:none;
  color:inherit;
}
.footer__col a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:1px;
  background:currentColor;
  transition:width .3s ease;
}
.footer__col a:hover::after{
  width:100%;
}

.footer__hero{
  position:relative;
  width:clamp(360px,52vw,720px);   /* taille de l'image — monte le 720 pour plus grand */
}
.footer__img{
  width:100%;
  height:auto;
  display:block;
}

.script contact__title {
color: var(--blanc);
}

.contact{
  position:absolute;
  left:45%;
  top:45%;                  /* position du formulaire sur l'image — à ajuster */
  transform:translateX(-50%);
  width:42%;
  text-align:center;
  color:var(--blanc);
}
.contact__title{
  font-weight:400;
  font-size:clamp(1.5rem,2.6vw,2.1rem);
  margin-bottom:12px;
}
.contact__form{
  display:flex;
  align-items:stretch;
  background:var(--blanc);
  box-shadow:inset 0 0 0 1px var(--noir);
}
.contact__form input{
  flex:1;
  min-width:0;
  border:none;
  background:transparent;
  padding:12px 14px;
  font-family:var(--font-body);
  font-size:.85rem;
}
.contact__form input:focus{
  outline:none;
}
.contact__form button{
  border:none;
  background:var(--noir);
  color: var(--blanc);
  width:46px;
  font-size:1.1rem;
  cursor:pointer;
  transition:background .25s ease;
}
.contact__arrow{
  display:inline-block;             /* nécessaire pour pouvoir le déplacer */
  transition:transform .25s ease;
}
.contact__form button:hover .contact__arrow{
  transform:translateX(3px);        /* la flèche avance */
}

.footer__bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:12px 28px;
  max-width:var(--maxw);
  margin:32px auto 0;
  font-size:.8rem;
}
.footer__legal{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
}
.footer__bottom a{
  color:inherit;
  text-decoration:none;
}
.footer__bottom a:hover{
  text-decoration:underline;
}

.field{
  margin-top:14px;
}

.rgpd-label{
  display:flex;
  align-items:flex-start;      
  gap:6px;
  text-align:left;
  font-family:var(--font-body);
  font-size:10px;
  color:var(--blanc);      
}
.rgpd-label input{
  flex:none;                  
  margin-top:2px;         
  accent-color:var(--rose-pale);    
  cursor:pointer;
}
.rgpd-label a{
  color:inherit;
  text-decoration:underline;
}
.rgpd-label .req{
  color:var(--rose-deep);       
}

@media (max-width:768px){
  .footer__main{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }
  .footer__col,
  .footer__col.right{
    align-items:center;
    text-align:center;
  }
  .footer__bottom{
    justify-content:center;
    text-align:center;
  }
}

  /* Newsletter au-dessus de l'image rose */
  .footer__hero{
    display:flex;
    flex-direction:column-reverse;
    width:100%;
    max-width:480px;
    margin:0 auto;
  }
  .contact{
    position:static;
    transform:none;
    width:100%;
    left:auto;
    top:auto;
    margin:0 0 18px;
    color:var(--noir);
  }
  .contact__title{
    color:var(--noir);
  }
  .rgpd-label{
    color:var(--noir);
  }

/* ====================================================================
   ANIMATIONS
   ==================================================================== */
/* Apparition pilotée par le scroll (scrubbing) */
.reveal{
  opacity:1;            /* visible par défaut (sécurité) */
  transform:none;
}
@supports (animation-timeline: view()){
  .reveal{
    animation:revealScrub linear both;
    animation-timeline:view();
    animation-range:entry 0% entry 75%;   /* s'anime pendant que la section entre */
  }
  @keyframes revealScrub{
    from{ opacity:0; transform:translateY(40px); }
    to{   opacity:1; transform:none; }
  }
}

.hero h1,.hero__sub{opacity:0;transform:translateY(24px);animation:rise .9s cubic-bezier(.2,.7,.2,1) forwards;}
.hero h1{animation-delay:.15s;}
.hero__sub{animation-delay:.4s;}
@keyframes rise{to{opacity:1;transform:none;}}

@media (prefers-reduced-motion:reduce){
  .js .reveal,.hero h1,.hero__sub{animation:none;transition:none;opacity:1;transform:none;}
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width:900px){
  .about__grid{grid-template-columns:1fr;}
  .editorial{display:flex;flex-direction:column;}
  .editorial > *{grid-column:auto !important;grid-row:auto !important;margin-top:0 !important;}
  .ed-label{font-size:1.6rem;}
  .line__items{flex-wrap:wrap;justify-content:center;}
}

/* ----- Logo "maison Lua" : lettres une par une ----- */
.js .pourquoi__logo path{
  opacity:0;
}
.js .pourquoi__logo.is-anim path{
  animation:letterIn .5s ease forwards;
}
.js .pourquoi__logo.is-anim path:nth-of-type(1){ animation-delay:.05s; }
.js .pourquoi__logo.is-anim path:nth-of-type(2){ animation-delay:.12s; }
.js .pourquoi__logo.is-anim path:nth-of-type(3){ animation-delay:.19s; }
.js .pourquoi__logo.is-anim path:nth-of-type(4){ animation-delay:.26s; }
.js .pourquoi__logo.is-anim path:nth-of-type(5){ animation-delay:.33s; }
.js .pourquoi__logo.is-anim path:nth-of-type(6){ animation-delay:.40s; }
.js .pourquoi__logo.is-anim path:nth-of-type(7){ animation-delay:.47s; }
.js .pourquoi__logo.is-anim path:nth-of-type(8){ animation-delay:.54s; }
.js .pourquoi__logo.is-anim path:nth-of-type(9){ animation-delay:.61s; }

@keyframes letterIn{
  from{ opacity:0; }
  to{ opacity:1; }
}
@media (prefers-reduced-motion:reduce){
  .js .pourquoi__logo path{ opacity:1; animation:none; }
}

.hs__col p,
.hs__why p,
.hs__why-text p,
.procede__text p,
.voyage__lead,
.voyage__step p{
  font-size:clamp(16px, 1.2vw + 9px, 20px);
  line-height:1.7;
}