/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1.5rem 5rem;
}

/* ─── Meta labels top-left / top-right ─── */
.hero-meta {
  position: absolute;
  top: clamp(5rem, 10vh, 7rem);
  font-size: clamp(.72rem, 1.2vw, .85rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.hero-meta--left  { left:  clamp(1.5rem, 5vw, 4rem); text-align: left; }
.hero-meta--right { right: clamp(1.5rem, 5vw, 4rem); text-align: right; }

#live-clock {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--accent);
}

/* ─── Name row ─── */
.hero-center { position: relative; z-index: 1; width: 100%; }

.hero-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  flex-wrap: nowrap;
}

.hero-first,
.hero-last {
  font-size: clamp(3rem, 9.5vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp .7s .9s ease forwards;
}
.hero-last { animation-delay: 1s; }

/* ─── Photo card placeholder (layout only — floating-card overlays this) ─── */
.hero-photo-card {
  width: clamp(110px, 13vw, 210px);
  aspect-ratio: 3/4;
  flex-shrink: 0;
  visibility: hidden;     /* keeps space, invisible */
  pointer-events: none;
}

/* ─── Scroll hint ─── */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  opacity: 0;
  animation: fadeUp .6s 1.8s ease forwards;
}
.hero-scroll-hint:hover { color: var(--accent); }

.scroll-dot { animation: scrollBob 1.5s ease-in-out infinite; }
@keyframes scrollBob {
  0%, 100% { cy: 6; opacity: 1; }
  50%       { cy: 13; opacity: .4; }
}

/* ─── Shared fade-up ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  #hero { padding-bottom: 6rem; justify-content: flex-end; }
  .hero-meta { position: static; text-align: center; order: -1; margin-bottom: .5rem; }
  .hero-meta--left, .hero-meta--right { position: static; }
  .hero-center { order: 1; }
  .hero-name-row { gap: .6rem; }
  .hero-first, .hero-last { font-size: clamp(2.2rem, 11vw, 4rem); }
  .hero-photo-card { width: clamp(80px, 20vw, 130px); }
}
