/* ── Hero ── */
.hero {
  padding-top: 80px;
  padding-bottom: var(--section-pad);
}

.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: center;
}

/* Text side */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.hero__name {
  margin-bottom: 0.75rem;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero__bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Photo side */
.hero__photo {
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  width: clamp(240px, 100%, 360px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200, 185, 165, 0.4);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(27, 43, 75, 0.12),
    0 2px 0px rgba(255, 255, 255, 0.8) inset;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 60px rgba(27, 43, 75, 0.2),
    0 2px 0px rgba(255, 255, 255, 0.8) inset;
  border-color: rgba(200, 185, 165, 0.7);
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) contrast(1.02) brightness(1.02);
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  border-radius: 16px;
}

/* Hero fade-in stagger */
.hero__label,
.hero__name,
.hero__tagline,
.hero__bio,
.hero__buttons,
.hero__photo {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.6s ease forwards;
}

.hero__label     { animation-delay: 0ms; }
.hero__name      { animation-delay: 100ms; }
.hero__tagline   { animation-delay: 200ms; }
.hero__bio       { animation-delay: 300ms; }
.hero__buttons   { animation-delay: 400ms; }
.hero__photo     { animation-delay: 200ms; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding-top: 48px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__photo {
    order: -1;
  }

  .photo-frame {
    width: 200px;
    margin: 0 auto;
  }
}
