/* ===== HERO ===== */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  gap: 2rem;
}

.hero-content { flex: 1 1 auto; }

.hero-visual { display: none; }

@media (min-width: 900px) {
  .hero {
    min-height: 100vh;
    flex-direction: row;
    align-items: center;
    padding: 6rem 2rem 4rem;
    gap: 4rem;
  }
  .hero-content { flex: 1 1 500px; }
  .hero-visual { flex: 0 0 320px; display: flex; align-items: center; justify-content: center; }
}

.hero-eyebrow {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-descriptor {
  font-family: "DM Mono", monospace;
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}

.hero-bio {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-svg-wrap { width: 280px; height: 280px; }
.hero-svg-wrap svg { width: 100%; height: 100%; }
