/* HERO SECTION */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(15, 30, 15, 0.8) 0%, rgba(26, 46, 26, 0.8) 40%, rgba(45, 64, 32, 0.8) 100%);
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(74, 124, 89, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184, 92, 56, 0.1) 0%, transparent 60%);
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 92, 56, 0.2);
  border: 1px solid rgba(184, 92, 56, 0.4);
  color: var(--terra-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--green-light);
  font-style: normal;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 300;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.20;
  mix-blend-mode: luminosity;
}
/* ========================
   MOBILE HERO
   ======================== */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 100px 5% 60px;
    background-attachment: scroll;
    overflow-x: hidden;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 52px);
    letter-spacing: -0.5px;
  }

  .hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-stats {
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 28px;
  }

  .hero-bg-img {
    width: 100%;
    left: 0;
    right: 0;
  }

  .hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
