/* ============================================================
   Section 1 — HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 148px clamp(20px, 4vw, 56px) 118px;
  overflow: hidden;
  color: var(--paper);
  background: #0d0d0e;
}

/* ─── Fond image (généré via Higgsfield · Soul 2 · intérieur boutique golden hour) ─── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../../img/hero-boutique.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.05) brightness(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.94) 0%, rgba(5, 7, 9, 0.78) 34%, rgba(5, 7, 9, 0.18) 64%, rgba(5, 7, 9, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
}

/* ─── "26" géant en arrière-plan (numéro maillot) ─── */
.hero-numeral {
  position: absolute;
  right: clamp(12px, 4vw, 70px);
  bottom: 4vh;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(260px, 35vw, 560px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 241, 234, 0.16);
  text-stroke: 1.5px rgba(245, 241, 234, 0.16);
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}

/* ─── Contenu ─── */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-full);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--paper);
  width: fit-content;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.2);
  animation: dotPulse 2.4s ease-in-out infinite;
}
.hero-eyebrow .live {
  padding: 2px 8px;
  background: var(--paper);
  color: var(--signal);
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: var(--fs-hero);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: var(--paper);
  max-width: 15ch;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.9), 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
  font-weight: 750;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1.18vw, 18px);
  line-height: 1.52;
  color: rgba(245, 241, 234, 0.84);
  max-width: 590px;
}
.hero-tagline strong {
  color: var(--paper);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 24px;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn .arrow { display: inline-block; transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--signal);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 0 rgba(90, 10, 15, 0.95);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 rgba(90, 10, 15, 0.95);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--paper);
}

.btn-target {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ─── Proof-bar collée au hero ─── */
.hero-proof {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.hero-proof-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 241, 234, 0.85);
}
.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.06em;
}
.hero-proof-item::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}
.hero-proof-item b {
  color: var(--paper);
  font-weight: 600;
}
.hero-proof-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero { padding-top: 128px; padding-bottom: 140px; }
  .hero-numeral { font-size: clamp(280px, 60vw, 480px); bottom: -6vh; }
  .hero-proof { padding: 12px 20px; }
  .hero-proof-sep { display: none; }
  .hero-proof-inner { gap: 12px 20px; justify-content: flex-start; }
}
@media (max-width: 560px) {
  .hero {
    min-height: 760px;
    padding: 112px 16px 176px;
    align-items: flex-end;
  }
  .hero-bg { background-position: 56% 42%; }
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(13, 13, 14, 0.68) 0%,
      rgba(13, 13, 14, 0.42) 34%,
      rgba(13, 13, 14, 0.9) 100%);
  }
  .hero-inner { gap: 24px; }
  .hero-eyebrow {
    max-width: 100%;
    gap: 8px;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.25;
  }
  .hero-eyebrow .live { display: none; }
  .hero-numeral {
    right: -34px;
    bottom: 78px;
    font-size: 230px;
    opacity: 0.5;
  }
  .hero-headline {
    max-width: 10ch;
    font-size: 54px;
    line-height: 0.96;
    letter-spacing: 0;
  }
  .hero-tagline {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn {
    justify-content: space-between;
    min-height: 58px;
    padding: 13px 18px;
    white-space: normal;
  }
  .hero-proof {
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  }
  .hero-proof-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-proof-item {
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (max-width: 380px) {
  .hero-headline { font-size: 48px; }
}
