.hero {
  padding-top: 4rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}
.hero-lead {
  font-size: 1.25rem;
  color: hsl(var(--text-muted));
  margin-bottom: 2.5rem;
}
.image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(var(--primary), 0.2), transparent);
  pointer-events: none;
}