/* ── Hero section ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* ── Background: photo or placeholder ────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Warm placeholder shown until a real photo is set */
.hero__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 30%, #5C3020 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, #3A1E10 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #2A1408 0%, transparent 80%),
    linear-gradient(155deg, #1E0E06 0%, #3D2010 35%, #2A1408 70%, #0F0804 100%);
}

/* ── Gradient overlay (text readability) ──────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(28, 26, 23, 0.80) 0%,
    rgba(28, 26, 23, 0.30) 50%,
    transparent 100%
  );
}

/* ── Content ──────────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-xl);
  max-width: 720px;
}

/* ── Small portrait above label ──────────────────────── */
.hero__portrait {
  display: block;
  width: 220px;
  height: 140px;
  object-fit: cover;
  object-position: center 30%;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(176, 138, 62, 0.4);
}

@media (max-width: 768px) {
  .hero__portrait {
    width: 160px;
    height: 105px;
  }
}

.hero__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: var(--space-sm);
}

.hero__name {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--color-white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ── Scroll hint ──────────────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(4px); }
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    height: 100svh;
  }

  .hero__name {
    font-size: var(--text-3xl);
  }

  .hero__content {
    padding-bottom: var(--space-lg);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
