/* =========================================================
   LE MOULIN PRODUCTIONS — who.css
   ========================================================= */

body.who-page{
  background-color: #dedad2;
  color: #1a1a1a;
}

.who-page .top-bar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--header-pad);
}

.who-page .home-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  padding: 4px 2px;
}
.who-page .home-btn:hover,
.who-page .home-btn:focus-visible{
  color: #111;
  transform: translateX(-2px);
}

.who-page .home-btn-icon{
  height: clamp(20px, 2.6vw, 28px);
  width: auto;
  max-width: 28px;
  display: block;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.who-page .home-btn:hover .home-btn-icon,
.who-page .home-btn:focus-visible .home-btn-icon{
  opacity: 1;
}

.who-page .lang-item{
  color: rgba(20,20,20,0.4);
}
.who-page .lang-item:hover,
.who-page .lang-item:focus-visible{
  color: #111;
}
.who-page .lang-item.is-active{
  color: #111;
}

/* ---------- Contenu central ---------- */

.who-main{
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 40px;
}

.who-logo{
  width: clamp(140px, 16vw, 220px);
  height: auto;
  filter: invert(1);
  opacity: 0.32;
  margin-bottom: 48px;
}

.who-text{
  max-width: 760px;
}

.who-text p{
  font-size: clamp(14px, 1.7vw, 19px);
  line-height: 1.8;
  margin: 0 0 28px;
  color: rgba(20,20,20,0.85);
  text-wrap: balance;
}

.who-text p:last-child{
  margin-bottom: 0;
}

.who-text strong{
  font-weight: 600;
}

.who-footer{
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(20,20,20,0.35);
}

@media (max-width: 640px){
  .who-main{
    padding: 110px 20px 40px;
  }
  .who-text p{
    line-height: 1.7;
    margin-bottom: 22px;
  }
}
