Try using this pattern:
^[a-zA-Z-—’'` ]{1,250}$
Key part: a-zA-Z
a-zA-Z
Reason: as stated by Dmitrii Bychenko, A-z pattern includes additional ASCII characters, you need an explicit a-z + A-Z.
A-z
a-z
A-Z
Test:
John // match John[ // no match