: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(--blanc);
  color:var(--noir);
  -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;}



/* ====================================================================
   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);
  }
}

/* ===================== HERO — NOTRE HISTOIRE ===================== */
.story-hero{
  padding:clamp(90px,11vw,140px) 0 clamp(30px,4vw,50px) var(--pad);
}

.story-hero__inner{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:clamp(24px,4vw,60px);
  align-items:center;
}

.story-hero__title{
  font-weight:800;
  font-size:clamp(2.6rem,6vw,5rem);
  line-height:1;
  opacity:0;
  transform:translateX(-24px);
  animation:storyTitleIn .9s cubic-bezier(.2,.7,.2,1) .1s forwards;
}
@keyframes storyTitleIn{
  to{
    opacity:1;
    transform:none;
  }
}
.story-hero__media{
  position:relative;    
  transform:rotate(10deg);
  padding-bottom: 200px;
}    


.story-hero__line{
  width: 100%;
  height: auto;
  display:block;
  padding-top: -200px;
}

.story-hero__bag{
  position:absolute;
  top:12%;                    /* hauteur du sac sur le fil */
  left:35%;                   /* position horizontale */
  width:30%;                  /* taille du sac */
  transform-origin:top center;/* pivot au point d'accroche (haut) */
  animation:swing 3.5s ease-in-out infinite;
}
@keyframes swing{
  0%,100%{transform:rotate(-6deg);}
  50%{transform:rotate(6deg);}
}
/* Respecte ceux qui coupent les animations */
@media (prefers-reduced-motion:reduce){
  .story-hero__title,
  .story-hero__bag{
    animation:none;
    opacity:1;
    transform:none;
  }
}
/* Mobile */
@media (max-width:768px){
  .story-hero__inner{
    grid-template-columns:1fr;
    gap:20px;
  }
}


/* ===================== COLLAGE ÉDITORIAL ===================== */
.collage{
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(20px,3vw,40px) var(--pad) clamp(50px,7vw,100px);
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:clamp(60px,7vw,110px);
  gap:12px;
}
.collage img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.c1{
  grid-column:1/4;
  grid-row:1/3;
}
.c2{
  grid-column:1/4;
  grid-row:3/6;
}
.c3{
  grid-column:4/8;
  grid-row:1/6;
}
.c4{
  grid-column:8/11;
  grid-row:1/4;
}
.c5{
  grid-column:11/13;
  grid-row:1/4;
}
.c6{
  grid-column:8/10;
  grid-row:4/6;
}
.c7{
  grid-column:10/13;
  grid-row:4/6;
}

/* Mobile : mosaïque simple 2 colonnes */
@media (max-width:768px){
  .collage{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:140px;
  }
  .collage img{
    grid-column:auto !important;
    grid-row:auto !important;
  }
}

/* ===================== POURQUOI LUA ? ===================== */
.pourquoi{
  padding:clamp(50px,7vw,110px) var(--pad);
}
.pourquoi__inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,72px);
  align-items:center;
}
.pourquoi__title{
  font-weight:800;
  font-size:clamp(2.4rem,5vw,4rem);
  margin-bottom:24px;
}
.pourquoi__text p{
  font-size:18px;
  line-height:1.75;
}
.pourquoi__text p + p{
  margin-top:16px;
}
.pourquoi__visual{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}
.pourquoi__img{
  width:100%;
  height:auto;
  display:block;
}
.pourquoi__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  color:var(--noir);
  border: solid 1px var(--noir);
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:background .3s ease;
}

.pourquoi__cta span{
  transition:transform .3s ease;
}

.pourquoi__cta:hover{
  background:var(--rose-deep);
  color:var(--blanc);
  border-color: var(--rose-deep);
  transition:background .3s ease, border-color .3s ease;
}

.pourquoi__cta:hover span{
  transform:translateX(4px);
}

/* Mobile */
@media (max-width:768px){
  .pourquoi__inner{
    grid-template-columns:1fr;
    gap:32px;
  }
}

.pourquoi__logo{
  width:92%;
  height:auto;
  display:block;
}
.pourquoi__bag{
  width:68%;
  height:auto;
  display:block;
}

/* ===================== L'IDENTITÉ DE MARQUE ===================== */

.identity{
  padding:clamp(50px,7vw,110px) var(--pad);
  background-color: var(--rose-pale);
}

.identity__inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,80px);
  align-items:center;
}

.identity__eyebrow{
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent-hover);
  margin-bottom:16px;
}

.identity__title{
  font-weight:800;
  font-size:clamp(2.4rem,5vw,4rem);
  line-height:1;
  margin-bottom:24px;
}

.identity__lead{
  font-size:18px;
  font-weight:700;
  line-height:1.55;
  margin-bottom:18px;
}

.identity__lead em{
  font-family:var(--font-script);
  font-style:normal;
  font-size:1.4em;
  color:var(--accent-hover);
}

.identity__sub{
  font-size:18px;
  line-height:1.7;
  margin-bottom:40px;
}

.identity__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  color:var(--noir);
  border: solid 1px var(--noir);
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:background .3s ease;
}

.identity__cta span{
  transition:transform .3s ease;
}

.identity__cta:hover{
  background:var(--rose-deep);
  color: var(--blanc);
  border-color: var(--rose-deep);
  transition:background .3s ease, border-color .3s ease;
}

.identity__cta:hover span{
  transform:translateX(4px);
}

.identity__media{
  position:relative;
}

.identity__img{
  width:100%;
  height:auto;
  display:block;
}

.identity__doodle{
  position:absolute;
  pointer-events:none;
  color:var(--rose-deep);
}

.identity__doodle--1{          /* la fleur, en haut à gauche */
  width:80px;
  top:100px;
  left:150px;
}

/* Mobile */
@media (max-width:768px){
  .identity__inner{
    grid-template-columns:1fr;
    gap:32px;
  }
  .identity__title{
    font-size:clamp(2rem,8vw,2.8rem);
  }
}

/* ===================== L'HISTOIRE DE MAISON LUA ===================== */
.histoire{
  padding:clamp(50px,7vw,110px) var(--pad);
  overflow: hidden;
}
.histoire__inner{
  max-width:none;
  padding-right: 0;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,72px);
  align-items:center;
}
.histoire__title{
  font-weight:800;
  font-size:clamp(2.4rem,5vw,4rem); 
  line-height:1.05;
  margin-bottom:22px;
}
.histoire__text p{
  font-size:18px;
  line-height:1.75;
}
.histoire__text p + p{
  margin-top:18px;
}
.histoire__float{
  position:relative;
  display:flex;
  justify-content:center;
}

.histoire__float{
  position:relative;
  min-height:clamp(360px,40vw,560px);
}
.histoire__card{
  display:block;            /* (flex sur une image ne sert à rien) */
  position:relative;        /* ← LA ligne qui débloque tout */
  width:85%;
  margin-left:auto; 
  top:-40px;        /* collée à droite de la colonne */
  right:-180px;              /* déborde de 70px au-delà du bord — ajuste à ta guise */
  transform:rotate(20deg);
}

.histoire__sketch{
  position:absolute;
  bottom:0;
  left:0;
  width:46%;
  display:block;
}

.histoire__bag{
  display:block;
  width:72%;
  animation:float 5s ease-in-out infinite;
}

/* Mobile : on empile proprement */
@media (max-width:768px){
  .histoire__card{
    width:78%;
  }
  .histoire__sketch{
    position:relative;
    width:55%;
    margin-top:-24px;
  }
}

/* Mobile : une colonne */
@media (max-width:768px){
  .histoire__inner{
    grid-template-columns:1fr;
    gap:32px;
  }
  .histoire__bag{
    width:60%;
  }
}

/* ===================== HISTOIRE — VIDÉO PLEIN ÉCRAN ===================== */
.histoire-video{
  position:relative;
  width:100%;
  height:clamp(420px,80vh,820px);
  overflow:hidden;
}
.histoire-video__media{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.histoire-video__flower{
  position:absolute;
  top:24px;
  right:24px;
  width:90px;
  opacity:.9;
  animation:spin 32s linear infinite;
  z-index:2;
}

/* Tablette : la carte déborde moins */
@media (max-width:1024px){
  .histoire__card{
    right:-60px;
    width:80%;
  }
}

/* Mobile : une seule colonne, tout revient dans le flux */
@media (max-width:768px){
  .histoire__inner{
    grid-template-columns:1fr;
    gap:32px;
  }
  .histoire__float{
    min-height:0;
  }
  .histoire__card{
    position:relative;
    width:72%;
    top:0;
    right:0;
    margin:0 auto;
    transform:rotate(6deg);
  }
  .histoire__sketch{
    position:relative;
    width:55%;
    left:0;
    bottom:auto;
    margin:-20px auto 0;
    display:block;
  }
}
/* ===================== LES 3 CRÉATRICES ===================== */
.crea{
  position:relative;
  overflow:hidden;
  padding:clamp(60px,8vw,120px) var(--pad);
  text-align:center;
}
.crea__eyebrow{
  font-size:clamp(1.3rem,2.4vw,1.8rem);
  color:var(--rose-accent);
  margin-bottom:8px;
}
.crea__title{
  font-weight:800;
  font-size:clamp(2rem,4.4vw,3.4rem);
  margin-bottom:clamp(30px,5vw,60px);
}
.crea__camera{
  position:relative;
  max-width:560px;
  margin:0 auto clamp(40px,6vw,80px);
}

.video-intro__title{
  font-weight:800;
  font-size:20px;
  padding-bottom: 16px;
  padding-left: 80px;
}

.crea__cam{
  position:relative;
  width:100%;
  height:auto;
  display:block;
  z-index:0;
  animation:float 5s ease-in-out infinite;
}
.crea__flower{
  position:absolute;
  top:-30px;
  right:-12%;
  width:55%;
  opacity:.2;
  z-index:0;
  pointer-events:none;
}
.crea__grid{
  max-width:var(--maxw);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(16px,2.5vw,32px);
  perspective:1400px;
}
.crea__flip{
  position:relative;
  aspect-ratio:3/4;
  transform-style:preserve-3d;
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.crea__card:hover .crea__flip{
  transform:rotateY(180deg);
}
.crea__face{
  position:absolute;
  inset:0;
  overflow:hidden;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
.crea__face--front img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.crea__face--back{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column; 
  padding:clamp(18px,2vw,28px);
  background:var(--blanc);
  color:var(--noir);
  font-size:18px;
  text-align:left;
  transform:rotateY(180deg);
}
.crea__name{
  margin-top:22px;
  font-size:clamp(1.3rem,2.4vw,1.8rem);
  font-family: var(--font-script);
}
.crea__role{
  margin-top:4px;
  font-family:var(--font-body);
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--rose-accent);
}

.crea__flower{
  position:absolute;
  z-index: 3;
  top:-150px;
  right:-80px;
  width:60%;
  animation:spin 32s linear infinite;
}

.crea__quote-mark{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:200px;
  line-height:.5;
  color:var(--rose-bebe);   /* visible sur le fond rose foncé */
  display:block;
  margin-bottom:4px;
}

.crea__quote{
  font-size:.92rem;
  line-height:1.6;
  font-style:italic;
}
.crea__sign{
  align-self:flex-end;
  margin-top:8px;
  font-size:2.2rem;
  color:var(--rose-accent);
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
}
@keyframes spin{
  to{transform:rotate(360deg);}
}
@media (prefers-reduced-motion:reduce){
  .crea__flower{
    animation:none;
  }
}

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

/* ===================== CTA VIDEO YOUTUBE ===================== */
.brand-video{
  position:relative;
  overflow:hidden;
  background:var(--rose-pale);
  padding:clamp(70px,9vw,130px) var(--pad);
}
.brand-video__inner{
  position:relative;
  z-index:1;
  max-width:860px;
  margin:0 auto;
  text-align:center;
}

/* fleur qui bounce à droite */
.brand-video__flower{
  position:absolute;
  right:15%;
  top: 100px;
  width:clamp(80px,10vw,150px);
  opacity: 20%;
  z-index:0;
  pointer-events:none;
  animation:floatBounce 2.6s ease-in-out infinite;
}
@keyframes floatBounce{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-22px);
  }
}
.brand-video__hand{
  color:var(--rose-accent);
  font-size:2rem;
  margin-bottom:6px;
}
.brand-video__title{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.05;
  margin-bottom:14px;
}
.brand-video__desc{
  max-width:46ch;
  margin:0 auto 36px;
  font-size:18px;
}
.video-card{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}
.video-card__poster{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.video-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.18);
  transition:background .3s ease;
}
.video-card:hover::after{
  background:rgba(0,0,0,.30);
}
.video-card__play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:78px;
  height:78px;
  border:none;
  border-radius:50%;
  background:var(--rose-accent);
  color:var(--blanc);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
  transition:transform .25s ease, background .25s ease;
}
.video-card__play svg{
  width:34px;
  height:34px;
  margin-left:3px;
}
.video-card:hover .video-card__play{
  transform:translate(-50%,-50%) scale(1.08);
}
.video-card iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* ===================== 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;                  /* trait invisible au repos */
  height:1.5px;
  background:currentColor;
  transition:width .3s ease;
}
.footer__col a:hover::after{
  width:100%;               /* le trait se déploie au survol */
}

.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; }
}