.jr-reservation-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 24px;
    border-radius: 24px;
    background: #fffaf4;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.jr-reservation-header {
    margin-bottom: 24px;
}

.jr-reservation-kicker {
    margin-bottom: 8px;
    color: #c0392b;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.jr-reservation-header h2 {
    margin: 0 0 12px;
    color: #1f1f1f;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.jr-reservation-header p,
.jr-reservation-notice,
.jr-reservation-message {
    font-size: 1rem;
    line-height: 1.7;
}

.jr-reservation-notice {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-left: 4px solid #c0392b;
    border-radius: 12px;
    background: #fff;
}

.jr-reservation-message {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 12px;
}

.jr-reservation-message p {
    margin: 0 0 8px;
}

.jr-reservation-message ul {
    margin: 0;
    padding-left: 20px;
}

.jr-reservation-message-success {
    background: #edf8ef;
    color: #1f6d31;
}

.jr-reservation-message-error {
    background: #fdeeee;
    color: #9e2d20;
}

.jr-reservation-form {
    display: grid;
    gap: 20px;
}

.jr-reservation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.jr-field {
    display: grid;
    gap: 8px;
}

.jr-field-full {
    grid-column: 1 / -1;
}

.jr-field label,
.jr-checkbox {
    color: #232323;
    font-weight: 600;
}

.jr-field input,
.jr-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9d3ca;
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
    font: inherit;
}

.jr-field input:focus,
.jr-field textarea:focus {
    border-color: #c0392b;
    outline: 2px solid rgba(192, 57, 43, 0.15);
    outline-offset: 1px;
}

.jr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.jr-checkbox input {
    margin-top: 4px;
}

.jr-submit-button {
    justify-self: start;
    padding: 15px 28px;
    border: 0;
    border-radius: 999px;
    background: #c0392b;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.jr-submit-button:hover,
.jr-submit-button:focus {
    background: #982d22;
    transform: translateY(-1px);
}

.jr-reservation-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .jr-reservation-wrapper {
        padding: 28px 18px;
    }

    .jr-reservation-grid {
        grid-template-columns: 1fr;
    }

    .jr-submit-button {
        width: 100%;
        justify-self: stretch;
    }
}
