.aramis-booking-wrap {
  max-width: 80%;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e7e2d9;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: #2a2620;
}

.aramis-booking-form {
  display: block;
}

.aramis-booking-header {
  margin-bottom: 20px;
}

.aramis-booking-header h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #201c17;
}

.aramis-booking-header p {
  margin: 0;
  color: #6e6a63;
  font-size: 0.98rem;
  line-height: 1.5;
}

.aramis-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.aramis-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aramis-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.aramis-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2a2620;
}

.aramis-field input,
.aramis-field select,
.aramis-field textarea {
  width: 90%;
  min-height: 25px;
  padding: 12px 14px;
  border: 1px solid #d9d3c8;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.4;
  color: #2a2620;
  background: #fcfbf9;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.aramis-field textarea {
  min-height: 120px;
  resize: vertical;
}

.aramis-field input::placeholder,
.aramis-field textarea::placeholder {
  color: #8a857d;
}

.aramis-field input:focus,
.aramis-field select:focus,
.aramis-field textarea:focus {
  outline: none;
}

.aramis-field input:focus-visible,
.aramis-field select:focus-visible,
.aramis-field textarea:focus-visible {
  border-color: #01696f;
  box-shadow: 0 0 0 3px rgba(1, 105, 111, 0.14);
  background: #ffffff;
}

.aramis-field input:disabled,
.aramis-field select:disabled,
.aramis-field textarea:disabled {
  background: #f2eee8;
  color: #7f7a73;
  cursor: not-allowed;
}

.aramis-help {
  margin: 2px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #6e6a63;
}

.aramis-actions {
  margin-top: 8px;
}

.aramis-submit-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: #01696f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 14px 22px;
  min-height: 48px;
  cursor: pointer;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.aramis-submit-btn:hover {
  background: #0c4e54;
}

.aramis-submit-btn:focus {
  outline: none;
}

.aramis-submit-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(1, 105, 111, 0.18);
}

.aramis-submit-btn:active {
  transform: translateY(1px);
}

.aramis-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.aramis-response {
  margin-top: 16px;
  min-height: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.aramis-response.is-success {
  color: #2f6f1e;
}

.aramis-response.is-error {
  color: #a12c7b;
}

@media (max-width: 700px) {
  .aramis-grid-2 {
    grid-template-columns: 1fr;
  }

  .aramis-booking-wrap {
    padding: 18px;
    border-radius: 16px;
  }

  .aramis-submit-btn {
    width: 100%;
  }
}