/* ============================================
   INVITATION (CTA) — Tanjung Bayu
   ============================================ */

.invitation {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.invitation__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.invitation__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invitation__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26, 60, 64, 0.40) 0%,
    rgba(26, 60, 64, 0.70) 100%
  );
}

.invitation__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg);
  max-width: 600px;
}

.invitation__content .overline {
  margin-bottom: var(--sp-lg);
}

.invitation__title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.3px;
  color: var(--c-white);
  margin-bottom: var(--sp-lg);
}

.invitation__text {
  font-size: 18px;
  line-height: 1.60;
  color: var(--c-white-80);
  margin-bottom: var(--sp-2xl);
}

.invitation__note {
  margin-top: var(--sp-lg);
  font-size: 14px;
  color: var(--c-white-50);
}

.invitation__note a {
  color: var(--c-white-80);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast) var(--ease-out);
}

.invitation__note a:hover {
  color: var(--c-white);
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .invitation {
    min-height: 70svh;
  }

  .invitation__content {
    padding: var(--sp-2xl) var(--sp-md);
  }
}
