/* ======================================================
   HERO — fullscreen video background
   ====================================================== */
.hero {
  position: relative;
  width: 100cqw;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #1b1711 url("../images/hero/woman-dancing-poster.jpg?v=1") center center / cover no-repeat;
}

/* Video layer */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero__video--active.hero__video--ready { opacity: 1; }

/* Gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(10, 7, 5, 0.74) 0%, rgba(10, 7, 5, 0.38) 55%, rgba(10, 7, 5, 0.1) 100%),
    linear-gradient(to top, rgba(10, 7, 5, 0.55) 0%, transparent 55%);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--section-pad) + 2.5rem) var(--pad) var(--section-pad);
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.hero__title {
  font-family: var(--serif-display);
  font-size: clamp(2.1rem, 4.8cqw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.008em;
  color: #f4ecd8;
  margin-bottom: 1.75rem;
  max-width: 1040px;
  font-weight: 400;
}
.hero__title .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.5cqw, 1.4rem);
  color: #d9cdb2;
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

/* Ligne brevet sous le sous-titre du hero */
.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.3cqw, 1.25rem);
  color: var(--gold-bright);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.5;
}


.hero__meta {
  display: flex;
  gap: clamp(1.5rem, 4cqw, 3.5rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(242, 233, 215, 0.2);
  max-width: 720px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero__meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #b3a588;
}
.hero__meta-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #f4ecd8;
}

/* Scroll cue — subtle, editorial */
.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(242, 233, 215, 0.55);
  z-index: 2;
}
.hero__scroll-line {
  width: 56px;
  height: 1px;
  background: rgba(242, 233, 215, 0.22);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollPulse 2.8s var(--ease-smooth) infinite;
}
@keyframes scrollPulse {
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Video navigation arrow — right side, horizontal */
.hero__video-nav {
  position: absolute;
  right: clamp(1.5rem, 3cqw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(242, 233, 215, 0.08);
  border: 1px solid rgba(242, 233, 215, 0.25);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(242, 233, 215, 0.7);
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__video-nav:hover {
  background: rgba(242, 233, 215, 0.14);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}
.hero__video-nav svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 700px) {
  .hero__video-nav {
    width: 42px;
    height: 42px;
    right: 1rem;
  }
  .hero__video-nav svg {
    width: 18px;
    height: 18px;
  }
}

/* ======================================================
   HERO mobile — le hero ne contient que le titre (le reste
   est passé dans la section « intro » juste après).
   ====================================================== */
@media (max-width: 768px) {
  .hero__content { padding-block: 0; }
  .hero__title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
