.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 58, 74, 0.55) 0%, rgba(26, 26, 26, 0.75) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-bottom: 2.5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero p {
  margin: 0 0 1.25rem;
  max-width: 36ch;
  font-size: 1.0625rem;
  opacity: 0.95;
}
