/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--emerald-dark) 0%,
    var(--emerald) 40%,
    var(--emerald-light) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(212, 132, 154, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.btn-hero {
  display: inline-block;
  padding: 14px 42px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn-hero:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 576px) {
  .hero {
    min-height: 80vh;
    padding: 80px 0 60px;
  }

  .hero-desc {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .btn-hero {
    width: 100%;
    max-width: 260px;
  }
}
