/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(236, 212, 190, 0.2) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: clip;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: var(--green-lt);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 10%;
  width: 150px;
  height: 150px;
  background: var(--peach);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Text */
.hero-text {
  text-align: right;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 4px;
}

.hero-title-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Photo */
.hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-photo {
    order: -1;
  }

  .hero-photo img {
    max-width: 280px;
  }
}
