/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: var(--space-3xl);
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-3xl);
  align-items: center;
  min-height: calc(100dvh - var(--nav-height) - var(--space-3xl));
}

/* ===== TEKST KANT ===== */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xl);
}

.hero-title {
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-6xl));
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--color-text);
  max-width: 14ch;
}

.hero-title mark {
  background: none;
  color: var(--color-primary-darker);
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 44ch;
}

.hero-subtitle mark {
  background: none;
  color: var(--color-primary-darker);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* ===== AFBEELDING KANT ===== */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 12.5rem;
  height: 12.5rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 7.5rem;
  height: 7.5rem;
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.4;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 32.5rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 64rem) {
  .hero-image img {
    height: 27.5rem;
  }
}

@media (max-width: 48rem) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-3xl);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    min-height: auto;
  }

  .hero-text {
    order: 1;
    align-items: flex-start;
  }

  .hero-image {
    order: 2;
  }

  .hero-image::before {
    width: 7.5rem;
    height: 7.5rem;
    top: -1rem;
    right: -0.5rem;
  }

  .hero-image::after {
    width: 5rem;
    height: 5rem;
    bottom: -1rem;
    left: -0.5rem;
  }

  .hero-image img {
    height: 17.5rem;
  }
}

@media (max-width: 30rem) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
