/* ============================================
   RESPONSIVE OVERRIDES
   ============================================ */

@media (max-width: 992px) {
    .rsvp-modal-card {
        max-width: 100%;
        border-radius: 16px;
        padding: 2rem 1.5rem;
    }

    .plus-one-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Contact: cards stack vertically on mobile */
    .contact-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-wax-seal {
        order: -1;
        margin: 0;
    }

    .contact-card-name {
        font-size: 1.2rem;
    }

    .contact-vine {
        width: 70px;
        height: 130px;
    }

    .contact-crown-svg {
        width: 160px;
    }

    .faq-heading,
    .story-heading,
    .contact-heading {
        font-size: 1.8rem;
    }

    /* Story card: full-width on mobile */
    .story-scroll {
        max-width: 100%;
        width: 95%;
        height: 60vh;
        padding: 1.5rem 1rem 2.5rem;
    }

    .story-wreath {
        width: 220px;
        height: 100px;
    }

    .story-text {
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .chapter-numeral {
        font-size: 1.2rem;
    }

    .chapter-numeral::before,
    .chapter-numeral::after {
        width: 20px;
    }

    .rsvp-modal-card {
        border-radius: 12px;
        padding: 1.5rem 1rem;
        max-height: 95vh;
    }

    .rsvp-title {
        font-size: 1.5rem;
    }

    .rsvp-radio-group {
        flex-direction: column;
    }

    .song-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .song-remove {
        right: -20px;
    }

    .login-title {
        font-size: 2.8rem;
    }

    .login-card {
        padding: 2rem 1.5rem;
    }

}

