/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-logo {
  margin-bottom: 26px;
  display: inline-block;
  filter: drop-shadow(0 0 34px rgba(201, 168, 106, 0.28));
  animation: heroLogoFloat 5s ease-in-out infinite;
}

.hero-logo .logo-mark--xl {
  width: 132px;
}

.hero-title {
  color: var(--text);
  text-shadow: 0 0 60px rgba(201, 168, 106, 0.22);
  animation: heroTitleGlow 5s ease-in-out infinite;
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(20px, 3.2vw, 30px);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
}

.typed {
  color: var(--gold-bright);
}

.typed-caret {
  display: inline-block;
  color: var(--gold);
  margin-left: 2px;
  animation: caretBlink 0.9s steps(1) infinite;
  font-style: normal;
}

.hero-desc {
  margin: 22px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 54px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.scroll-hint:hover {
  color: var(--gold);
}

.scroll-hint-arrow {
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes heroTitleGlow {
  0%, 100% { text-shadow: 0 0 60px rgba(201, 168, 106, 0.22); }
  50% { text-shadow: 0 0 90px rgba(201, 168, 106, 0.42); }
}

@keyframes caretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}
