/* ============================================
   Manifesto — typographie XXL plein écran
   Statement visuel qui arrête le scroll
   ============================================ */

.manifesto {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0;
  background-color: #0d0d0d;
  position: relative;
  overflow: hidden;
}

/* Lueur radiale subtile derrière le texte */
.manifesto::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, rgba(13, 13, 13, 0) 70%);
  pointer-events: none;
}

/* Motif en grille subtile */
.manifesto::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.02) 1px, rgba(13, 13, 13, 0) 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.02) 1px, rgba(13, 13, 13, 0) 1px);
  background-size: 120px 120px;
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Texte principal — taille spectaculaire */
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.manifesto__text em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(
    105deg,
    var(--color-gold-dark) 0%,
    var(--color-gold) 28%,
    #f7eba0 48%,
    var(--color-gold-light) 56%,
    var(--color-gold) 72%,
    var(--color-gold-dark) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 5s linear infinite;
}

/* Décoration ── losange ── */
.manifesto__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.manifesto__deco-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0) 0%, rgba(201, 168, 76, 0.4) 100%);
}

.manifesto__deco-line:last-child {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.4) 0%, rgba(201, 168, 76, 0) 100%);
}

.manifesto__deco-diamond {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50%      { opacity: 1; box-shadow: 0 0 20px 4px rgba(201, 168, 76, 0.2); }
}

/* Responsive */
@media (max-width: 600px) {
  .manifesto {
    min-height: 50vh;
    padding: var(--space-2xl) 0;
  }
  .manifesto__text {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
