
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO CONTENT (kept exactly as original)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  padding: 70px 0 30px;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 7;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  min-height: 0;
}

.hero-content .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  font-size: var(--text-2xs);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
}
.hero .eyebrow {
  color: #a9b8ff;
}

.hero-subtitle {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: #a9b8ff;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: var(--heading-hero);
  color: #fff;
  line-height: var(--lh-snug);
  margin-bottom: clamp(0.75rem, 0.5rem + 0.8vw, 1.25rem);
  text-wrap: balance;
}

.hero-lead,
.hero-desc {
  font-size: var(--text-md);
  color: #c8d2f5;
  line-height: var(--lh-relaxed);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  margin: 0 auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
  max-height: 520px;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl) var(--radius) var(--radius-xl) var(--radius);
  overflow: hidden;
  transform: rotate(-1deg);
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero {
    padding: 50px 0 20px;
  }
  .hero-content {
    padding: 60px 0 80px;
    text-align: center;
  }
  .hero-lead,
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-img {
    max-width: 380px;
    margin-top: 2.5rem;
  }
}

@media (max-width: 575px) {
  .hero-content {
    padding: 40px 0 60px;
  }
  .hero-img {
    max-width: 280px;
  }
}