/* Intro overlay */
#intro {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1000;
  display: grid;
  place-items: center;
  transition: opacity 1.8s ease;
  font-family: "ExposureTrial", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
}

#intro.hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  width: min(92vw, 900px);
  padding: 0 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.intro-title {
  margin: 0 0 0.5rem 0;
  color: rgb(200, 0, 0);
  font-weight: 400;
  font-size: clamp(30px, 12vw, 90px);
  line-height: 1.05;
}

.intro-subtitle {
  margin: 0 0 1.2rem 0;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: clamp(20px, 6.2vw, 32px);
  line-height: 1.05;
  text-align: center;
  font-family: "ExposureTrial", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
}

.nom {
  font-weight: bold;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: clamp(20px, 6.2vw, 32px);
  margin-top: 30px;
}

.intro-names {
  line-height: 1.08;
}

.intro-names li + li {
  margin-top: 0.55em;
}

.role {
  font-size: clamp(17px, 2.1vw, 22px);
  list-style: none;
  color: gray;
  font-style: italic;
  text-align: center;
}

@media (max-width: 480px) {
  .intro-title {
    font-size: clamp(28px, 10vw, 120px);
    margin-bottom: 1rem;
  }
}
