/* Hero — black, still, confident. The wordmark is the visual; the h1 carries semantics. */

.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-inner { max-width: 56rem; margin: 0 auto; }

.hero-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 11vw, 6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 var(--sp-4);
}
.hero-mark span { color: var(--orange); }

.hero h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-mute);
}
.hero h1 .accent { font-weight: 600; }

.hero-sub {
  margin: var(--sp-6) auto 0;
  max-width: 44ch;
}

.hero-cta {
  margin-top: var(--sp-12);
  display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap;
}
