/* ──────────────────────────────────────────
   hero.css — Hero section
   ────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--sp-20)) var(--sp-12) var(--sp-20);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
  opacity: 0;
  animation: fadeUp var(--duration-l) var(--ease-out) 0.2s forwards;
}

.hero__eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero__eyebrow-text {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
  /* Prevent the name from breaking */
  white-space: nowrap;
}

.hero__title-ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  display: block;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-16);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.55s forwards;
}

.hero__desc {
  max-width: 520px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.65s forwards;
}

.hero__desc strong {
  color: var(--color-text);
  font-weight: 400;
}

/* ── Shared animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding-left: var(--sp-6);
    padding-right: var(--sp-6);
    padding-bottom: var(--sp-16);
  }
  .hero__title { white-space: normal; }
}
