/* =========================================================
   LE MOULIN PRODUCTIONS — access.css (page "entrez votre email")
   ========================================================= */

body.access-page{
  color: #fff;
}

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

.access-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(255,255,255,0.6);
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  padding: 4px 2px;
}

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

.access-page .home-btn:hover .home-btn-icon,
.access-page .home-btn:focus-visible .home-btn-icon{
  opacity: 1;
}
.access-page .home-btn:hover,
.access-page .home-btn:focus-visible{
  color: #fff;
  transform: translateX(-2px);
}

.access-page .lang-item{
  color: rgba(255,255,255,0.45);
}
.access-page .lang-item:hover,
.access-page .lang-item:focus-visible{
  color: #fff;
}
.access-page .lang-item.is-active{
  color: #fff;
}

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

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

.access-title{
  font-size: clamp(15px, 1.9vw, 22px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.55;
  margin: 0 0 22px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

.access-project-name{
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Panneau central (email / société / message) ---------- */

.access-panel{
  position: relative;
  width: min(94%, 680px);
  min-height: min(74vh, 620px);
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 34px);
  gap: 16px;
}

.access-field{
  width: 100%;
  background: rgba(255,255,255,0.3);
  border: none;
  border-radius: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: clamp(13px, 1.6vw, 16px);
  padding: 14px 16px;
  outline: none;
  box-sizing: border-box;
  transition: background 0.25s ease;
}

.access-field::placeholder{
  color: rgba(255,255,255,0.7);
}

.access-field:focus{
  background: rgba(255,255,255,0.4);
}

.access-field--message{
  flex: 1;
  min-height: 160px;
  resize: none;
}

.access-panel-footer{
  display: flex;
  justify-content: flex-end;
}

.access-submit{
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 4px;
  transition: opacity 0.25s ease;
}

.access-submit:hover,
.access-submit:focus-visible{
  opacity: 0.7;
}

.access-project-note{
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  min-height: 16px;
}

.access-copyright{
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 480px){
  .access-title{
    font-size: 14px;
  }
}
