#reservation-form-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reservation-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.reservation-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.reservation-form {
    width: 100%;
}

.reservation-form .field {
    margin-bottom: 16px;
}

.reservation-form input,
.reservation-form textarea,
.reservation-form select {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.reservation-form textarea {
    min-height: 140px;
    resize: vertical;
}

.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
    outline: none;
    border-color: #111;
}

.reservation-form button {
    width: 100%;
    min-height: 56px;
    border: none;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

#reservation-message {
    margin-top: 16px;
    text-align: center;
}

#reservation-message .success {
    color: green;
}

#reservation-message .error {
    color: red;
}

@media (max-width: 600px) {
    #reservation-form-section {
        padding: 32px 16px;
    }

    .reservation-title {
        font-size: 30px;
    }

    .reservation-subtitle {
        font-size: 16px;
    }
}