.rsvp-promo-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  margin: 40px 0;
  padding: 64px 24px;
  background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
  text-align: center;
}

.rsvp-promo-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  box-sizing: border-box;
}

.rsvp-promo-banner__eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  padding: 6px 16px;
  border-radius: 999px;
  margin: 0 0 18px;
}

.rsvp-promo-banner__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 4.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: #fff;
  margin: 0 0 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.rsvp-promo-banner__title em {
  font-style: italic;
  font-weight: 400;
  color: #C9C9C9;
}

.rsvp-promo-banner__body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 30px;
  overflow-wrap: break-word;
}

.rsvp-promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.rsvp-promo-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  overflow-wrap: break-word;
  background: #fff;
  color: #0A0A0A;
  transition: transform 0.15s ease;
}

.rsvp-promo-banner__cta:hover {
  transform: translateY(-2px);
  color: #0A0A0A;
}

.rsvp-promo-banner__cta--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.rsvp-promo-banner__cta--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.rsvp-promo-banner__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.rsvp-promo-banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 128px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.rsvp-promo-banner__stat-num {
  font-family: "Inter", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.rsvp-promo-banner__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
  .rsvp-promo-banner {
    padding: 48px 18px;
    margin: 28px 0;
  }
  .rsvp-promo-banner__stat {
    min-width: 96px;
    padding: 12px 14px;
  }
}