.rsvp {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    overflow: hidden;
}

.rsvp__deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--color-primary);
}

.rsvp__deco--leaf {
    top: 5%;
    left: 3%;
    width: 100px;
    height: auto;
    transform: rotate(-15deg);
}

.rsvp__deco--flower {
    bottom: 5%;
    right: 3%;
    width: 110px;
    height: auto;
    transform: rotate(15deg) scaleX(-1);
}

.rsvp__deco--sun {
    top: 10%;
    right: 8%;
    width: 85px;
    height: auto;
    transform: rotate(10deg);
}

.rsvp__deco--bush {
    bottom: 8%;
    left: 8%;
    width: 120px;
    height: auto;
    transform: rotate(-5deg) scaleX(-1);
}

.rsvp__bg {
    display: none;
}

.rsvp__overlay {
    display: none;
}

.rsvp__container {
    position: relative;
    z-index: 3;
    padding: var(--space-2xl) var(--container-padding);
}

.rsvp__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-xl);
    position: relative;
}

.rsvp__subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-sm);
    position: relative;
    z-index: 1;
}

.rsvp__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.8vw, 3.25rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-heading);
    margin: 0 0 var(--space-md);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.rsvp__description {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.rsvp__deadline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.rsvp__deadline .material-symbols-outlined {
    font-size: 1.25rem;
}

.rsvp__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-heading);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1;
}

.rsvp__btn::before {
    content: '';
    position: absolute;
    inset: -1px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'%3E%3Cpath d='M5,4 C20,2 50,5 80,3 S140,4 175,3 C190,2 196,5 197,10 C199,18 198,28 198,38 S198,52 196,56 C188,59 160,57 120,58 S50,57 15,58 C8,58 4,57 3,52 C1,42 2,32 2,22 S2,10 5,4 Z' fill='none' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'%3E%3Cpath d='M5,4 C20,2 50,5 80,3 S140,4 175,3 C190,2 196,5 197,10 C199,18 198,28 198,38 S198,52 196,56 C188,59 160,57 120,58 S50,57 15,58 C8,58 4,57 3,52 C1,42 2,32 2,22 S2,10 5,4 Z' fill='none' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.rsvp__btn:hover::before {
    opacity: 0.7;
}

.rsvp__btn .material-symbols-outlined {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .rsvp__deco {
        display: none;
    }
}