#hero {
  background: var(--cream);
  padding: 48px 0 44px;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

#hero .hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

#hero .hero-text .lead {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

#hero .hero-text p {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tent-svg-wrap {
  background: radial-gradient(ellipse 80% 60% at 50% 60%, #e8e0d0 0%, transparent 70%);
  border-radius: 50%;
  padding: 12px;
  max-width: 380px;
  margin: 0 auto;
  animation: fadeInUp 1s ease both;
}

.tent-svg-wrap svg {
  max-height: 320px;
  width: 100%;
  height: auto;
}

/* Desktop: fixed hero height */
@media (min-width: 992px) {
  #hero {
    height: 660px;
    min-height: 660px;
    max-height: 660px;
    padding: 0;
  }

  #hero > .container {
    height: 100%;
    display: flex;
    align-items: center;
  }

  #hero .row {
    width: 100%;
  }

  .tent-svg-wrap svg {
    max-height: 340px;
  }
}
