.contact-hero {
  position: relative;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 64px;
  text-align: center;
  overflow: hidden;
  font-family: "Nunito", sans-serif;
}

.contact-hero__eyebrow-wrap {
  margin-bottom: 24px;
}

.contact-hero__eyebrow {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ffd2d9 0%, #cce7ef 100%);
  font-size: 14px;
  font-weight: 500;
  color: #1d2939;
  letter-spacing: 0.01em;
  text-decoration: none;
}

a.contact-hero__eyebrow:hover {
  filter: brightness(0.98);
}

a.contact-hero__eyebrow:focus-visible {
  outline: 3px solid #a5b4fc;
  outline-offset: 2px;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 900px;
}

.contact-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  color: #101828;
}

.contact-hero__subtitle {
  margin: 0;
  max-width: 871px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #4a5565;
}

/* Decorative puzzle — bottom-right */
.contact-hero__puzzle {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: clamp(160px, 20vw, 320px);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.contact-hero__puzzle img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .contact-hero {
    padding: 72px 20px 48px;
  }

  .contact-hero__puzzle {
    right: -40px;
    bottom: -20px;
    opacity: 0.05;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 56px 16px 40px;
  }
}
