#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 4rem 5rem;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  margin-bottom: 0.3rem;
}
.hero-title span {
  color: var(--accent);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 0.75em;
  font-weight: 400;
  text-transform: none;
  display: block;
  letter-spacing: 0;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  margin: 2rem 0 2.5rem;
  max-width: 420px;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44,49,53,0.1);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--anthracite);
  line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--steel);
  margin-top: 0.25rem;
}

/* ── Hero right image ── */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-full {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-img-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-img-full:hover img { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,49,53,0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Hero left — visible immédiatement ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-enter-1 { animation: heroFadeUp 0.5s ease 0.05s both; }
.hero-enter-2 { animation: heroFadeUp 0.5s ease 0.15s both; }
.hero-enter-3 { animation: heroFadeUp 0.5s ease 0.25s both; }
.hero-enter-4 { animation: heroFadeUp 0.5s ease 0.35s both; }
.hero-enter-5 { animation: heroFadeUp 0.5s ease 0.45s both; }

/* ── Geometric accent ── */
.hero-geo {
  position: absolute;
  top: 50%; left: -60px;
  transform: translateY(-50%);
  width: 120px; height: 120px;
  border: 1px solid var(--accent);
  opacity: 0.3;
  z-index: 3;
  animation: rotate-geo 20s linear infinite;
}
@keyframes rotate-geo { to { transform: translateY(-50%) rotate(360deg); } }
