/* ==========================================================================
   Hero plein cadre — pages Premium sans hero cinématique dédié (outils.html
   pour l'instant). Reprend le même langage visuel que le hero de
   l'Observatoire (assets/css/observatoire-cinematic.css) — image de fond,
   dégradé sombre, eyebrow/titre/texte centrés — en version statique (pas de
   vidéo ni de canvas de particules) : plus léger, adapté à une page outil
   plutôt qu'à une page d'atterrissage cinématique.
   Fichier isolé : ne modifie jamais style.css ni .page-hero partagé par les
   autres pages. S'applique uniquement aux éléments portant .premium-hero.
   ========================================================================== */

.page-hero.premium-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: -1px;
  min-height: min(52vh, 460px);
  display: flex;
  align-items: center;
  background: var(--navy-deep);
}

.premium-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 42%;
}

.premium-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 9, 20, 0.6) 0%, rgba(4, 9, 20, 0.32) 32%, rgba(4, 9, 20, 0.6) 100%),
    radial-gradient(circle at 50% 40%, rgba(4, 9, 20, 0.08), rgba(4, 9, 20, 0.55) 80%);
}

.premium-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  min-height: 100px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 14, 28, 0) 0%, #08090b 90%);
}

.premium-hero-inner {
  position: relative;
  z-index: 3;
  padding: 64px 0 44px;
  text-align: center;
}
.premium-hero-inner .eyebrow { color: var(--gold-light); justify-content: center; }
.premium-hero-inner h1 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3); }
.premium-hero-inner p { color: rgba(255, 255, 255, 0.78); text-shadow: 0 1px 14px rgba(0, 0, 0, 0.24); max-width: 620px; margin: 0 auto; }

@media (max-width: 760px) {
  .page-hero.premium-hero { min-height: 42vh; }
  .premium-hero-inner { padding: 52px 0 34px; }
  .premium-hero-fade { height: 16%; min-height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero-media { transition: none; }
}
