/* ================================================
   HERO
   ================================================ */
.hero {
  background: linear-gradient(180deg, var(--clr-bg), #ffffff);
  padding: 100px 20px 140px;
  text-align: center;
  border-bottom-left-radius:  80px;
  border-bottom-right-radius: 80px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #EBDDD2 0%, transparent 70%);
  border-radius: 50%;
  top: -150px; left: -150px;
  z-index: -1;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin: 0 0 22px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: var(--clr-green-dark);
}

.hero-subtitle {
  color: var(--clr-text);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-family: var(--font-italic);
  font-style: italic; font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
