/* =========================================================
   VARIABLES
========================================================= */

:root{
  --black:rgba(20,43,70,1);
  --white:#fff;
  --grey-1:rgba(242,243,247,.15);
  --grey-2:rgba(242,243,247,.65);
  --or:rgba(214,168,105,.85);

  --container:1200px;
  --padX:5vw;
  --radius:10px;

  --hero:clamp(3.8rem, 6vw, 6rem);
  --h1:clamp(3.4rem, 6vw, 6rem);
  --h2:clamp(1.5rem, 5vw, 5.875rem);
  --h3:clamp(1.2rem, 2vw, 3rem);
  --p:clamp(1rem, 1.2vw, 1.7rem);
}

/* =========================================================
   RESET / BASE
========================================================= */

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


html, body{
  height:100%;
}

body{
/*	Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif */
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size:16px;
  line-height:1.6;
  font-weight:lighter;
  color:var(--black);
  background:var(--white);
}

a{
  color:var(--black);
  text-decoration:none;
}
a:hover{ opacity:.85; }

.center{ text-align: center; }


/* =========================================================
   LAYOUT GLOBAL
========================================================= */

.container{
  max-width:var(--container);
  margin:0 auto;
  padding-inline:var(--padX);
}

.container--wide{
  max-width: 90vw;
	padding:0px;
}

.section{
  padding:96px 0;
}

.section--light{
  background:var(--white);
  color:var(--black);
  padding:clamp(64px, 8vw, 100px) 0;
}

.section.dark{
  background:var(--black);
  color:var(--white);
}
.section.dark.cta-final {
}
.section.dark.cta-final .container.center-text {
    width: 50%;
}

.section-title{
  text-align:center;
  font-size:var(--h2);
  max-width:28ch;
  margin:0 auto;
  letter-spacing:-0.02em;
  line-height:1.15;
}

.section-subtitle{
    font-size: var(--h3);
    text-align: center;
    font-weight: 100;
    line-height: 1.5;
}

/* =========================================================
   TYPO & UI
========================================================= */

or{
  color:var(--or);
	font-weight: 400;
	letter-spacing:0.04em;
}

.brand{
  font-weight:600;
  letter-spacing:.02em;
}

.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  border-radius:999px;
  border:1px solid white;
  font-weight:300;
  font-size:larger;
  transition:transform .15s ease, opacity .15s ease, background .2s ease, color .2s ease;
}

.btn:hover{ transform:translateY(-1px); }

.btn.primary{
  background:var(--or);
  color:var(--white);
}
.btn.primary:hover{
  background:var(--black);
  color:var(--white);
}
.section.section--light .btn.primary {
    background-color: var(--black);
    margin: 30px;
    color: var(--white);
}
.section.section--light .btn.primary:hover{
    background-color: var(--or);
 
}
.big-quote {
    padding: 50px 0px 0px 0px;
    font-size: var(--p);
}
.centered {
    text-align: center;
}

.btn.ghost{
  color:var(--white);
}
.btn.ghost:hover{
  background:var(--black);
}

.cta-final .container{
  text-align:center;
}

.manifesto{
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 80px;
    max-width: 18ch;   /* largeur agréable */
}

.word-cloud{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:24px 48px;
  margin-bottom:60px;
}

.word-cloud span{
  white-space:nowrap;
}

.w1{ font-size:1.2rem; opacity:.6; }
.w2{ font-size:1.6rem; opacity:.8; }
.w3{ font-size:2rem; font-weight:500; }




.story{
  max-width: 64ch;
  margin: 64px auto 0;
  padding-left: 28px;
  border-left: 2px solid rgba(255,255,255,.15);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.8;
	 text-align: justify;
}

.story p{
  margin: 0 0 1.25em 0;
}

/*
.story p:last-child{
	text-align: center;
  margin-bottom: 0;
	margin-top: 2em;
}
*/

.story p:first-child{
  font-size: 1.08em;
}

/* =========================================================
   HERO + VIDEO
========================================================= */

.hero{
  min-height:80vh;
  display:flex;
  align-items:center;
}


.hero--media{
  position:relative;
  min-height:100vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}

.hero h1{
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  font-size:var(--hero);
  line-height:.8;
  margin-bottom:90px;
  letter-spacing:-.02em;
  color:var(--white);
}

.hero p{
    font-size: clamp(1.2rem, 3vw, 2rem);
    max-width: 52ch;
    margin-bottom: 32px;
    line-height: 1.2;
    font-weight: 200;
    color: var(--white);
    opacity: .9;
}

.hero-media{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:#000;
}

.hero-media iframe{
  position:absolute;
  top:50%;
  left:50%;
  width:102vw;
  height:67.5vw;
  min-width:177.78vh;
  min-height:100vh;
  transform:translate(-50%, -50%);
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(0,0,0,1);
}


.hero-overlay.is-visible{
  transition:background 3.2s ease;
  background:rgba(0,0,0,.5);
}

.hero-content{
    position: relative;
    z-index: 3;
    width: 50%;
    margin: 0 auto 0 0;
    padding-inline: var(--padX);
}

.hero-fade{
  position:absolute;
  inset:0;
  background:#000;
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  z-index:2; /* au-dessus de l’iframe */
}

.hero.is-switching .hero-fade{
  opacity:1;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav{
    position: fixed;
    top: 16px;
    width: 100%;
    z-index: 50;
    background: transparent;
}

.nav-inner{
  width:min(100% - 2*var(--padX), 1100px);
  margin:auto;
  display:block;
  align-items:center;
  font-size:larger;
}

.nav-inner-back{
  width:min(100% - 2*var(--padX), 1100px);
    width: 100%;
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    font-size: larger;
    font-weight: 100;
}

.nav.is-scrolled .nav-inner-back{
  background:rgba(255,255,255,.65);
	  
  border-color:rgba(255,255,255,.16);
}

.nav.is-scrolled .nav-mobile{
  background:rgba(255,255,255,.65);
  border-color:rgba(255,255,255,.16);
}

.nav-links{
  display:flex;
  gap:18px;
	font-size: 0.9em;
}

/* burger */
.nav-burger{
  display:none;
  background:none;
  border:0;
  width:28px;
  height:18px;
  position:relative;
  cursor:pointer;
}

.nav-burger span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#000;
  transition:transform .25s ease, opacity .2s ease, top .25s ease;
}

.nav-burger span:nth-child(1){ top:0; }
.nav-burger span:nth-child(2){ top:8px; }

/* état ouvert */
.nav.is-open .nav-burger span:nth-child(1){
  top:8px; transform:rotate(45deg);
}
.nav.is-open .nav-burger span:nth-child(2){
  opacity:0; transform:translateX(6px);
}

/* menu mobile fermé */
.nav-mobile{
  width: fit-content;
  margin: 1px 0px 0px auto;
  padding: 16px 24px;
visibility:collapse;
  display: flex;
  flex-direction: column;
  gap: 14px;
	text-align: right;

  background:rgba(255,255,255,1);
  backdrop-filter: blur(10px);
  border-radius: 30px;

  opacity: 1;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
	align-self: flex-end;
}

/* ouvert */
.nav.is-open .nav-mobile{
	visibility:collapse;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-link{
    
	text-align: right;
	display: block;
	width: auto;
	margin: 0 0 0 auto;
	}

/* liens */
.nav-mobile a{
	
  font-size: 1.2rem;
  font-weight: 300;
  text-align: right;

}


.nav-inner-back .brand{
  display:flex;
  align-items:center;
}

.nav-inner-back .brand img{
  height: 100%;
min-height: 50px;
  max-height: 50px;  /* limite visivo */
  width:auto;
}



/* mobile only */
@media (max-width:900px){
	.nav{
		width: 100%;
		top: 0px;
		
	}
	.nav-inner{
		width: 100%;
		
	}
	.nav-inner-back{
 
 
    border-radius: 0px;
  
}
  .nav-links{ display:none; }
  .nav-burger{ display:block; margin-left:auto; }
	.nav.is-open .nav-mobile{
	visibility:visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
}

.nav,
.nav-inner,
.nav-inner-back{
  transition:
    top .25s ease,
    width .25s ease,
    border-radius .25s ease,
    background .25s ease,
    padding .25s ease;
}


/* =========================================================
   LOGOS STRIP
========================================================= */

.hero-logos{
  position:absolute;
  left:0;
  right:0;
  bottom:24px;
  z-index:2;
  overflow:hidden;
}

.logos-track{
  display:flex;
	width:max-content;
  gap:56px;
  align-items:center;
  animation:logos-scroll 40s linear infinite;
  opacity:.75;
}

.logos-track img{
  height:32px;
  filter:grayscale(1) brightness(1.2);
}



@keyframes logos-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 28px)); }
}



/* =========================================================
   CARDS / PUZZLE
========================================================= */

.cards3{
  margin-top:clamp(36px, 5vw, 64px);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:#fff;
  padding:32px 0 30px;
}

.card h3{
  text-align:center;
  margin-bottom:6px;
}
.card-specs h3 {
    font-style: italic;
    font-family: coursive;
    padding-top: 5px;
}

.card p{
  text-align:center;
  opacity:.75;
}

.card-illu{
  height:auto;
  margin-bottom:18px;
	margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card-illu img{
    width: 100%;
    height: 100%;
    object-fit: contain;
	padding:1vw;
}

.card--puzzle{
	text-align: center;
  position: relative;
  overflow:visible;         /* important: coupe le SVG aux bords */
  background: transparent;  /* le fond vient du SVG */
}


.card-content{
  position: relative;
  z-index: 1;
}

.puzzle-svg{
  position: absolute;
  inset: 0;                 /* prend toute la card */
  width: 100%;
  height: 100%;
  object-fit: contain;      /* ou "cover" si tu veux remplir */
  z-index: 0;
  pointer-events: none;
	margin: auto;
}

.card-specs {
    text-align: left;
	background: rgb(20,43,70,1);
	color: #fff;
	padding: 30px 10px;
	margin-top: 30px;
}
.card-specs p {
    text-align: center;
    font-weight: 300;
}


.card--puzzle .card-illu,
.card--puzzle .card-specs,
.card--puzzle h1,
.card--puzzle h3{
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.card--puzzle.is-visible h1,
.card--puzzle.is-visible h3{
  opacity: 1;
  transform: none;
}

.card--puzzle.is-visible .card-illu{
  opacity: 1;
  transform: none;
  transition-delay: .08s;
}

.card--puzzle.is-visible .card-specs{
  opacity: 1;
  transform: none;
  transition-delay: .16s;
}

/* décalage entre les 3 cards */
.cards3 .card--puzzle:nth-child(1){ transition-delay: 0s; }
.cards3 .card--puzzle:nth-child(2){ transition-delay: 0.3s; }
.cards3 .card--puzzle:nth-child(3){ transition-delay: 0.5s; }


/* =========================================================
   GALLERY
========================================================= */


.gallery-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(15px, 2vw, 25px);
  margin-top:clamp(32px, 4vw, 56px);
	 grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
	justify-content: center;
}


/*

@media (min-width: 720px){
  .gallery-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1140px){
  .gallery-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1480px){
  .gallery-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1800px){
  .gallery-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}
*/

.gallery-grid .item{
  position:relative;
  cursor:pointer;
  overflow:visible;
  opacity:0;
  transform:translateY(18px);
  transition:
    opacity .7s cubic-bezier(0.22, 1, 0.36, 1),
    transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid .item{
  font-size:clamp(1rem, 0.9vw, 1.5rem);;
	
}

.gallery-grid .item.is-visible{
  opacity:1;
  transform:none;
}

.item-thumb{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
  border-radius:0px;
  background:#111;
}

.item-thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}

.item:hover .item-thumb img{
  transform:scale(1.03);
}

.item-title{
  margin-top:12px;
  font-size:15px;
  font-weight:500;
  line-height:1.35;
  color:var(--or);
}

/* overlay */
.item-desc{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  color:#fff;
  background:rgba(0,0,0,.76);

  opacity:0;
  transform:translateY(8px);
  transition:
    opacity .28s ease,
    transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}

.item:hover .item-desc,
.item.is-active .item-desc{
  opacity:1;
  transform:none;
}

.desc-inner{
  width:100%;
  max-width:30ch;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.desc-line{
  font-size:1em;
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.desc-line strong{
  display:block;
  font-size:var(--h4);
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.68;
  margin-bottom:5px;
}

.item-private-badge{
  position:absolute;
  right:14px;
  top:14px;
  z-index:3;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(117,28,28,.72);
  color:#fff;
  font-size:12px;
  line-height:1;
}

.gallery-grid .item.is-private::after{
  content:none;
}

/* tactile */
@media (hover:none){
  .item-desc{
    opacity:0;
    transform:translateY(8px);
  }

  .item.is-active .item-desc{
    opacity:1;
    transform:none;
  }
}

.gallery-grid .item.is-hidden{
  display:none;
}

.gallery-more{
  text-align:center;
  margin-top:40px;
}


.gallery-grid .item{
  opacity:1;
  transform:translateY(0);
  transition:opacity .6s ease, transform .6s ease;
}

.gallery-grid .item.is-hidden{
  display:none;
}

.gallery-grid .item.is-revealing{
  opacity:0;
  transform:translateY(30px);
}



/* ===== overlay ===== */


.video-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.88);
  display:none;
  z-index:200;
  align-items:center;
  justify-content:center;
  padding: 24px;
}
.video-overlay.is-open{
  display:flex;
}

.overlay-player{
  width:min(90vw,1280px);
  aspect-ratio:16/9;
}

.overlay-player iframe{
  width:100%;
  height:100%;
  border:0;
}

.overlay-close{
  position:absolute;
  top:18px;
  right:18px;
  font-size:2.4rem;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
}

/* Overlay player (gallery) */
.video-overlay{
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-overlay::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.video-overlay.is-open{
  display: flex;
}

.overlay-close{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.overlay-player{
  position: relative;
  z-index: 2;
  width: min(980px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.overlay-player iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-grid .item{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.gallery-grid .item.is-visible{
  opacity: 1;
  transform: none;
}


.video-private{
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-private.is-open{
  display: flex;
}

.video-private::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.82);
}

.video-private-box{
  position: relative;
  z-index: 2;
  width: min(720px, 92vw);
  padding: 48px 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  text-align: center;
  color: #fff;
}

.video-private-kicker{
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 14px;
}

.video-private-box h3{
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.video-private-box p{
  max-width: 42ch;
  margin: 0 auto 24px;
  opacity: .86;
}

.private-close{
  position:absolute;
  top:18px;
  right:18px;
  z-index:3;
	background: transparent;
	border:none;
}



/* =========================================================
   CONTACT
========================================================= */


.contact-modal{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(8px);
}

.contact-modal.is-open{
  display:flex;
}


.contact-modal-box{
  position:relative;
  width:min(720px, 92vw);
  padding:44px 40px 36px;
  border-radius:28px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  color:var(--black);
  box-shadow:0 30px 80px rgba(0,0,0,.22);
}

.contact-modal-box:has(#contactSuccess:not([hidden])){
  width:auto;
  max-width:420px;
  align-items:center;
  justify-content:center;
}

.contact-modal-box:has(#contactFormView:not([hidden])){
  width:min(720px, 92vw);
}

.contact-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:rgba(20,43,70,.06);
  color:var(--black);
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.contact-view{
  width:100%;
}

.contact-head{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-bottom:26px;
}

.contact-logo{
  width:auto;
  height:42px;
  display:block;
  margin-bottom:14px;
}

.contact-head h4{
  margin:0 0 8px 0;
  font-size:clamp(1.4rem, 2.4vw, 2rem);
  line-height:1.1;
  font-weight:500;
}

.contact-intro{
  margin:0;
  font-size:1rem;
  line-height:1.5;
  opacity:.68;
  max-width:34ch;
}

.contact-form{
  display:grid;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px 18px;
  border:1px solid rgba(20,43,70,.10);
  border-radius:14px;
  font:inherit;
  color:var(--black);
  background:rgba(255,255,255,.9);
}

.contact-form textarea{
  resize:vertical;
  min-height:140px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--or);
}

.contact-view--success{
  display:flex;
  flex-direction:column;
  align-items:center;      /* centre horizontal */
  justify-content:center;  /* centre vertical */
  text-align:center;       /* centre le texte */
  gap:18px;
  min-height:260px;        /* pour donner un peu de présence */
}

.contact-view[hidden]{
  display:none !important;
}


.contact-success-kicker{
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.6;
  margin:0;
}

.contact-view--success h3{
  font-size:clamp(1.5rem, 3vw, 2.2rem);
  line-height:1.1;
  margin:0;
}

.contact-view--success p{
  margin:0;
  font-size:1rem;
  line-height:1.5;
  opacity:.72;
  max-width:34ch;
}



@media (max-width:767px){
  .contact-modal-box{
    padding:30px 20px 24px;
    border-radius:20px;
  }

  .contact-logo{
    height:34px;
  }
}


/* =========================================================
   ANIMATIONS
========================================================= */

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
  background: var(--white);
  color: var(--black);
  padding: 90px 0 32px;
}



.footer a{
  color: var(--black);
  opacity: .9;
}

.footer-grid{
  display:grid;
  grid-template-columns: 2fr 2fr;
  gap: 48px;
  align-items:start;
}

.footer-brand img{
  max-height: 42px;
  width: auto;
  display:block;
  margin-bottom: 18px;
}


.footer-brand p{
  margin-top:12px;
  opacity:.75;
  max-width:38ch;
	text-align: justify;
}

.footer-brand h4{
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 14px;
	margin-top:15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}

.footer-col h4{
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}


.footer-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-col p{
  opacity:.75;
	
}


.footer-affiliation{
  margin-top:10px;
  display:block;
  align-items:center;
  gap:8px;
  opacity:1;
}

.affiliation-label{
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  opacity:.6;
}

.footer-affiliation img{
 margin: 20px 5px 5px -10px;
  width:auto;
   opacity:1;
	text-align: left;
	transform: scale(0.9);
  transition:opacity .2s ease;
}

.footer-affiliation a:hover img{
  transform: scale(0.95);
}

.footer-grid-contact{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items:start;
}

.footer-col-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
	margin-top:20px;
}

.footer-col-contact h4{
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}


.footer-bottom{
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:.95rem;
  opacity:.7;
	
}

.btn-petit{
 line-height: 0.8em;
	max-width: 200px;
		padding:10px;
	margin-top: 20px;
	font-size:var(--p);
}


@media (max-width: 900px){
	
 .footer-brand p{
  margin-top:12px;
  opacity:.75;
  max-width:100%;
	 text-align: justify;

	
}
  }



@media (max-width: 767px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
.footer-brand p{
  margin-top:12px;
  opacity:.75;
  max-width:100%;
	
}
  .footer-bottom{
    flex-direction:column;
  }
}

@media (max-width: 990px){
  
.footer-grid-contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items:start;
}

.footer-col-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
	margin-top:20px;
}

.footer-col-contact h4{
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}
.btn-petit{
 line-height: 0.8em;
	max-width: 200px;
		padding:10px;
	margin-top: 20px;
	font-size:var(--p);
}

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){
  .section{ padding:72px 0; }
  .hero-content{ width:70%; }
  .cards3{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width:767px){
  .section{ padding:48px 0; }
  .hero-content{ width:100%; }
	.hero-overlay{ backdrop-filter: blur(10px); }
  .hero h1{ margin-bottom:28px; line-height:.9; }
  .cards3{ grid-template-columns:1fr; }
  .card-illu{ margin-right: 20vw; margin-left: 20vw; }
  .logos-track img{ height:24px; }
	
}

@media (max-width:568px){

}

@media (max-width:320px){
  
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}
.onlight {
}

.word-grid{
  display:grid;
  grid-template-columns: repeat(4, max-content);
  justify-content:center;
  gap:14px 48px;
  margin: 12px auto 56px;
  max-width: 1100px;
}

.word-grid span{
  font-size: clamp(.95rem, 1.1vw, 1.15rem);
  letter-spacing: .06em;
  text-transform: lowercase;
  opacity: .55;
}

.word-grid span:nth-child(3),
.word-grid span:nth-child(6){
  opacity:.9;
  font-weight:500;
}

@media (max-width: 900px){
  .word-grid{ grid-template-columns: repeat(2, max-content); gap:12px 34px; }
}

@media (max-width: 520px){
  .word-grid{ grid-template-columns: 1fr; justify-items:center; gap:10px; }
}
