/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero__content {
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.hero__title {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-text);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.hero__image {
  position: relative;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: heroImageReveal 1.2s ease forwards;
  animation-delay: 0.2s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 2rem 0 0;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    height: 50vh;
    min-height: 320px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .hero__image {
    height: 40vh;
    min-height: 280px;
  }
}
