/* ============================================================
   hero.css — full-viewport hero section
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 2px;
  background: var(--accent);
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.hero-rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  max-width: 520px;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding: 0 1.5rem 3.5rem;
  }
}