.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2.5rem) 0 4.5rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
}

.hero-title {
  font-size: clamp(3.6rem, 11vw, 8.2rem);
  margin: 0.4rem 0 0.6rem;
  letter-spacing: -0.015em;
  font-feature-settings: "kern" 1;
}

.hero-rule {
  width: 72px;
  height: 3px;
  background: var(--lane);
  margin: 0.4rem 0 1.4rem;
}

.hero-lead {
  max-width: 32rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: var(--fog);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-aside {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 0.4rem;
}

.hero-meta {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.hero-meta span {
  display: block;
  color: var(--fog);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}
