/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Photo de fond */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.03);
  will-change: transform;
}

/* Vignette — bords sombres, centre qui laisse respirer la photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 0%, rgba(14,14,16,0.6) 100%),
    linear-gradient(to bottom, rgba(14,14,16,0.6) 0%, rgba(14,14,16,0.08) 38%, rgba(14,14,16,0.8) 100%);
}

/* Bloc titre — centré */
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 10vw, 160px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--color-text);
  white-space: nowrap;
}

.hero__title .mirror-title__reflect {
  margin-top: 4px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
  transition: color 0.25s, border-color 0.25s;
}

.hero__cta:hover {
  color: var(--color-text);
  border-color: var(--color-border-hover);
}

.hero__cta svg {
  transition: transform 0.25s;
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

/* Identité — bas droite */
.hero__identity {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  right: 40px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.hero__role {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

/* Nav logo SVG */
.site-nav__logo svg {
  height: 40px;
  width: 40px;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .hero__identity {
    bottom: 28px;
    right: 24px;
  }

  .hero__bg {
    background-position: 65% center;
  }
}
