/* ════════════════════════════════════════
   HERO — section principale + boutons CTA
════════════════════════════════════════ */

/* ── Section ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--d900);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 65% at 68% 50%,
    rgba(201, 150, 26, .08) 0%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 10; }

/* ── Colonne gauche : texte ─────────────────────────────────── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  opacity: 0; /* animé par GSAP */
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-heading {
  font-size: clamp(3.2rem, 5.5vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 2.8rem;
  opacity: 0;
}
.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-lt);
  display: block;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 2.6rem;
  opacity: 0;
}

.hero-cta {
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;

  div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-lt);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Colonne droite : bouteille + vague ─────────────────────── */
.hero-right {
  position: relative;
  height: 620px;
  user-select: none;
}

/* Gouttes flottantes */
.hero-drops {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Bouteille */
.hero-bottle-wrap {
  max-width: 380px;
  margin: 0 auto;
}
.hero-bottle-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  filter:
    drop-shadow(0 16px 50px rgba(201, 150, 26, .30))
    drop-shadow(0 0 80px rgba(201, 150, 26, .10));
}

/* ── Indicateur de scroll ───────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.15); }
}

/* ── Boutons CTA ────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--accent);
  color: #0B0B08;
  border: none;
  padding: 0.9rem 2.1rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--t), gap var(--t), box-shadow var(--t);
}
.btn-gold:hover {
  background: var(--accent-lt);
  color: #0B0B08;
  gap: 1rem;
  box-shadow: 0 0 28px rgba(201, 150, 26, .35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.9rem 2.1rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-lt);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  #hero            { min-height: auto; padding: 5rem 0 3rem; }
  .hero-heading    { font-size: 3rem; }
  .hero-right      { height: 380px; }
  .hero-bottle-wrap { width: 55%; max-width: 200px; bottom: 22%; }
}
@media (max-width: 575.98px) {
  .hero-heading { font-size: 2.4rem; }
}
