/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 60px;
  border-radius: 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  animation: heroReveal 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: absolute;
  z-index: 10;
  bottom: 80px;
  left: 80px;
  max-width: 525px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  filter: blur(3px);
  animation: textReveal 0.8s ease forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.15s; }
.hero-title span:nth-child(3) { animation-delay: 0.2s; }
.hero-title span:nth-child(4) { animation-delay: 0.25s; }
.hero-title span:nth-child(5) { animation-delay: 0.3s; }
.hero-title span:nth-child(6) { animation-delay: 0.35s; }
.hero-title span:nth-child(7) { animation-delay: 0.4s; }
.hero-title span:nth-child(8) { animation-delay: 0.45s; }
.hero-title span:nth-child(9) { animation-delay: 0.5s; }

.hero-description {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--color-cream);
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 16px;
  background: var(--color-cream);
  border-radius: 999px;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding-right: 24px;
}

.hero-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #2a2a2a;
  border-radius: 999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover .hero-cta-icon {
  background-color: #58ba6f;
  transform: translateX(10px);
}

.hero-cta-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-cream);
}

@keyframes heroReveal {
  from {
    opacity: 0.001;
    transform: scale(2) rotate(6deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes textReveal {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-bg img {
    object-position: center 33%;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-top: 72px;
  }

  .hero-content {
    bottom: 40px;
    right: 40px;
    left: 40px;
  }

  .hero-title {
    font-size: clamp(24px, 8vw, 40px);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 66vh;
  }

  .hero-bg img {
    object-position: center 33%;
  }
}
