.hero {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--clr-primary);
  color: var(--clr-cream);
  min-height: 480px;
  display: flex;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #1e4d34 0%,
    rgba(30, 77, 52, 0.94) 35%,
    rgba(30, 77, 52, 0.53) 55%,
    rgba(30, 77, 52, 0.13) 78%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  padding: 60px 64px;
  max-width: 720px;
}

.hero-welcome {
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-title {
  font-weight: 800;
  font-size: 64px;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 6px 0 0;
  color: var(--clr-cream);
}
.hero-church {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--clr-cream);
  margin-top: 6px;
}
.hero-city {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.18em;
  color: var(--clr-accent);
  margin-top: 4px;
}

.hero-verse { margin-top: 30px; }
.hero-verse-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--clr-cream);
}
.hero-verse-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--clr-cream);
  opacity: 0.85;
  margin-top: 2px;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
