/* ====================================================================
   MAISON LUA — Feuille de styles
   Design tokens d'après le fichier Figma « Design Tokens — Maison LUA »
   ==================================================================== */

: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(--blanc);
  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 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%;
}
.nav__cta{
  border:1px solid currentColor;
  padding:11px 24px;
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:.3s ease;
}
.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:var(--blanc);
    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 var(--blanc);
  }
  .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
   ==================================================================== */
.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;
}

/* Les 3 images se superposent et se fondent (+ léger zoom) */
.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);
}

/* Cadrage propre par image */
.hero__img:nth-child(1){
  object-position:center 26%;
}
.hero__img:nth-child(2){
  object-position:center 42%;
}
.hero__img:nth-child(3){
  object-position:center 28%;
}

/* Voile sombre pour la lisibilité du texte */
.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 h1{
  font-weight:800;
  font-size:clamp(3.2rem, 8vw, 6.4rem);
  line-height:.95;
}

.hero__sub{
  font-size:clamp(1.8rem, 3.4vw, 2.9rem);
  margin-top:22px;
  line-height:.95;
  opacity:.97;
  max-width:none;
}

.hero__flower{
  position:absolute;
}
.hero__flower--1{
  width:46px;
  top:24%;
  left:31%;
  transform:rotate(-12deg);
}
.hero__flower--2{
  width:96px;
  bottom:23%;
  right:13%;
  transform:rotate(14deg);
}
.hero__flower--3{
  width:38px;
  top:46%;
  right:30%;
  transform:rotate(8deg);
}

.hero__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:28px;
  padding:13px 30px;
  border:1px solid var(--blanc);
  color:var(--blanc);
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:background .3s ease, color .3s ease, border-color .3s ease;
}
.hero__cta:hover{
  background:var(--rose-deep);
  border-color:var(--rose-deep);
  color:var(--blanc);
}
.hero__cta .btn__arrow{
  display:inline-block;
  transition:transform .3s ease;
}
.hero__cta:hover .btn__arrow{
  transform:translateX(4px);
}

/* ====================================================================
   GESTE · FRANÇAIS · MAROQUINERIE
   ==================================================================== */
.wording{
  padding:clamp(70px,9vw,120px) var(--pad) clamp(50px,6vw,80px);
  text-align:center;}

.wording__title{
  font-weight:800;
  font-size:clamp(2rem,4.5vw,3.4rem);
  line-height:1.06;
}

.wording__row{
  margin-top:clamp(40px,5vw,70px);
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:clamp(10px,2.4vw,34px);
  flex-wrap:wrap;
}

.wording__script{
  font-family:var(--font-script);  
  font-weight: 400;
  font-style: normal; 
  font-size: 100px;                 
}

/* ----- Marquee  ----- */

.marquee{
  width:100%;    
  overflow:hidden;
  padding-top:80px;
  padding-bottom:80px;
}

.marquee__track{
  display:flex;
  align-items:center;
  width:max-content;
  gap:80px; 
  animation:marquee-scroll 38s linear infinite;
}

.marquee__item{
  height: 111px;
  width: 128px;
  display:block;}

@keyframes marquee-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}   /* la piste contient 2 moitiés identiques */
}
@media (prefers-reduced-motion:reduce){
  .marquee__track{animation:none;}
}

/* ====================================================================
   À PROPOS (section rose)
   ==================================================================== */
.about{
  position:relative;
  background:var(--rose-pale);
  overflow:hidden;              /* coupe l'image qui dépasse en bas */
}
.about__grid{
  position:relative;            /* l'ancre pour l'image absolue */
  max-width:var(--maxw);
  margin:0 auto;
  padding:188px 80px 80px;      /* haut · côtés · bas */
  min-height:880px;             /* réserve la place pour l'image (ajuste à l'œil) */
}
.about__title{
  font-weight:800;
  font-size:clamp(2rem,3.6vw,3rem);
  line-height:1.05;
}
.about__text{
  position:relative;
  z-index:1;                    /* le texte passe au-dessus de l'image */
  text-align:left;
  max-width:628px;
  display:flex;
  flex-direction:column;
  gap:47px;                     /* ton Spacing Figma */
}
.about p{
  font-size:20px;
  line-height:1.75;
  font-weight:400;
}
.about strong{
  font-weight:700;
}
.about__visual{
  position:absolute;
  top:0;                        /* collée en haut */
  right:0;                      /* collée à droite */
  height:100%;                  /* suit la hauteur de la section */
}
.about__visual img{
  height:100%;
  width:auto;                   /* garde le ratio */
  object-fit:contain;
  display:block;
}
.scribble{
  position:absolute;
  left:-3%;
  bottom:6%;
  width:90px;
  height:auto;
  fill:none;
  stroke:var(--bag-camel);
  stroke-width:3.4;
  stroke-linecap:round;
  transform:rotate(-6deg);
}

/* ----- Bouton ----- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1.5px solid var(--noir);
  padding:13px 26px;
  font-family:var(--font-heading);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:.3s ease;
}
.btn:hover{
  background:var(--rose-deep);
  color:var(--blanc);
  border-color:var(--rose-deep);
}

.about__text .btn{
  align-self:flex-start;
}

.btn__arrow{
  transition:transform .3s ease;
}
.btn:hover .btn__arrow{
  transform:translateX(4px);
}

/* ----- Mobile : on repasse en flux normal ----- */
@media (max-width:768px){
  .about__grid{
    padding:60px var(--pad);
    min-height:auto;
  }
  .about__text{
    max-width:none;
    gap:24px;
  }
  .about__visual{
    position:static;
    height:auto;
    margin-top:40px;
  }
  .about__visual img{
    height:auto;
    width:100%;
  }
}

/* ====================================================================
   EDITORIAL (grille asymétrique)
   ==================================================================== */

.editorial{
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(70px,9vw,130px) var(--pad);
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:24px;
  align-items:start;
}

.ed-portrait{
  grid-column:1/7;}

.ed-strap{
  grid-column:2/6;
  margin-top:-200px;
  width: 440px;
  height: 260px;}

.ed-tulips{
  grid-column:8/12;
  grid-row:1/2;
  margin-top:600px;}

  .ed-tulips-top{
  grid-column:8/12;     /* même colonne que la colonne de droite */
  grid-row:1/2;
  margin-top:400px;    /* position en haut — ajuste */
}

.ed-label{
  font-size:2rem;
  color:var(--rose-accent);
  align-self:center;}

.ed-label--1{
  grid-column:8/12;
  grid-row:1/2;
  align-self:start;
  margin-top:36px;}

.ed-label--2{
  grid-row:3/4;}

.ed-cta{grid-column:8/12;
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:6px;}

.ed-cta__hand{font-size:1.9rem;
  color:var(--rose-accent);
  transform:rotate(-6deg);}

/* ====================================================================
   CLOTHESLINE 
   ==================================================================== */

.line{
  position:relative;
  overflow:hidden;
  top:120px;   
}
.line__inner{
  width:100%;       
}
.line__photo{
  display:block;
  width:100%;
  height:auto;
}
.line__flower{
  position:absolute;
  top:40%;
  left:1440px;
  width:600px;
  height: 904px;
  z-index:2;
  opacity:.2;
  pointer-events:none;
  transform:rotate(43deg);
}

.line{
  position:relative;
}
.line__bag{
  position:absolute;
  left:52%;
  top:50%;
  width:18%;
  transform:translate(-50%,-50%);
  z-index:5;           /* AU-DESSUS de la tulipe */
  pointer-events:none;
}
.fly-object{
  z-index:3;     
  width:200px;
}      /* EN DESSOUS du sac → la tulipe passe derrière */


.fly-object{
  position:absolute;
  top:0;
  left:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
  will-change:left, top, transform, opacity;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.12));
}

@media (max-width:768px){
  .fly-object{ 
     width: clamp(80px, 14vw, 200px);
  height: auto;
   }
}

@media (max-width: 768px) {
  .line {
    top: 0;
    margin-top: 40px;
    padding-bottom: 60px;  /* ← espace avant la section SEO */
  }
}

@media (max-width: 768px) {
  .line__bag {
    top: 45%;    /* ← remonte un peu, ajuste selon le rendu */
    width: 20%;  /* ← un peu plus large pour rester lisible */
  }
}

/* ====================================================================
SEO
   ==================================================================== */

.seo-intro{
  max-width:760px;
  margin:0 auto;
  padding:clamp(50px,8vw,100px) var(--pad);
  text-align:center;
}
.seo-intro__title{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:clamp(26px,3.5vw,44px);
  line-height:1.15;
  margin-bottom:24px;
}
.seo-intro p{
  font-family:var(--font-body);
  font-size:clamp(16px,1.4vw,18px);
  line-height:1.7;
  margin-bottom:16px;
}
.seo-intro a{
  color:var(--rose-accent);
  text-decoration:underline;
  text-underline-offset:3px;
}

/* ====================================================================
   WORDMARK ARQUÉ
   ==================================================================== */
.wordmark svg{width:118%;margin-left:-9%;display:block;}
.wordmark text{font-family:var(--font-heading);font-weight:800;fill:var(--text-primary);}

/* ====================================================================
   INSTAGRAM
   ==================================================================== */
.ig{
  position:relative;
  padding:clamp(64px,8vw,120px) var(--pad);
  background:var(--rose-pale);
  overflow:hidden;
}

.ig__head{
  text-align:center;
  margin-bottom:clamp(10px,4vw,52px);
}

.ig__eyebrow{
  font-family:var(--font-heading);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--camel);
  margin-bottom:14px;
}

.ig__handle{
  font-family:var(--font-heading);
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(2.2rem,5vw,3.8rem);
  line-height:1;
  display:inline-flex;
  align-items:center;
  gap:.4em;
}

.ig__handle img{
  width:.82em;
  height:.82em;
}
.ig__hand{
  font-size:clamp(1.5rem,2.6vw,2.1rem);
  color:var(--noir);
  margin-top:10px;
}

.ig__grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:clamp(8px,1vw,16px);
}

.ig__post{
  position:relative;
  display:block;
  aspect-ratio:4/5;
  overflow:hidden;
}

.ig__post > img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
}

.ig__post:hover > img{
  transform:scale(1.07);
}

.ig__ov{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(240,168,184,0);
  transition:background .35s ease;
}

.ig__ov img{
  width:34px;
  height:34px;
  opacity:0;
  transform:scale(.7);
  transition:opacity .35s ease, transform .35s ease;
}

.ig__post:hover .ig__ov{
  background:rgba(26,26,24,.42);
}

.ig__post:hover .ig__ov img{
  opacity:1;
  transform:scale(1);
}

.ig__post:focus-visible{
  outline:2px solid var(--noir);
  outline-offset:3px;
}

.ig__cta-wrap{
  text-align:center;
  margin-top:clamp(34px,4vw,54px);
}

.ig__cta{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:var(--noir);
  color:var(--blanc);
  border:1.5px solid var(--noir);
  padding:15px 30px;
  font-family:var(--font-heading);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:.3s ease;
}
.ig__cta img{
  width:18px;
  height:18px;
}
.ig__cta:hover{
  background:transparent;
  color:var(--noir);
}

/* ----- Mobile : Instagram en carrousel swipe ----- */
@media (max-width:768px){
  .ig__grid{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:12px;
    padding-bottom:14px;
    scroll-padding-left:var(--pad);
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .ig__grid::-webkit-scrollbar{
    display:none;
  }
  .ig__post{
    flex:0 0 72%;
    scroll-snap-align:center;
  }
}

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