/* Savory Reservations & Contact forms */
.savory-res-wrap, .savory-contact-form { max-width: 780px; margin: 0 auto; }
.savory-res-intro { text-align: center; color: var(--savory-text-light, #6f665b); margin-bottom: 28px; }
.savory-res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.savory-field { display: flex; flex-direction: column; }
.savory-field--full { grid-column: 1 / -1; }
.savory-field label { font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--savory-secondary, #1f1b16); }
.savory-field input, .savory-field select, .savory-field textarea {
  padding: 12px 14px; border: 1px solid var(--savory-border, #e5ddd0);
  border-radius: var(--savory-radius, 10px); font: inherit; font-size: .95rem;
  background: #fff; color: var(--savory-text, #2b2620); transition: border-color .2s, box-shadow .2s;
}
.savory-field input:focus, .savory-field select:focus, .savory-field textarea:focus {
  outline: none; border-color: var(--savory-primary, #b5432a);
  box-shadow: 0 0 0 3px rgba(181,67,42,.12);
}
.savory-res-submit, .savory-contact-form .savory-btn { margin-top: 22px; width: 100%; }
.savory-contact-form .savory-field { margin-bottom: 16px; }
.savory-res-message, .savory-contact-message { margin-top: 16px; padding: 0; text-align: center; font-weight: 500; }
.savory-res-message.is-success, .savory-contact-message.is-success { color: #2e7d32; }
.savory-res-message.is-error, .savory-contact-message.is-error { color: #c0392b; }
.savory-res-form.is-loading, .savory-contact-form.is-loading { opacity: .6; pointer-events: none; }
@media (max-width: 600px) { .savory-res-grid { grid-template-columns: 1fr; } }
