/* ── Skeleton placeholder ── */
@keyframes sk {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skel {
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: sk 1.4s ease-in-out infinite;
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
}

/* ── Animations de révélation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Ticker ── */
.ticker {
  background: var(--bd);
  color: white;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 0;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  gap: 56px;
  animation: tick 30s linear infinite;
  will-change: transform;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-track i {
  color: #ffb347;
}

@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* ── Hero Vidéo ── */
.hero-video-section {
  position: relative;
  height: clamp(400px, 65vh, 700px);
  overflow: hidden;
  background: #000;
}

.hero-video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7));
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--o);
  margin-bottom: 12px;
}

.hero-text h1 {
  font-family: var(--fh);
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text h1 span {
  color: var(--o);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: .9;
  max-width: 600px;
}
