It's not wrong if you want to do it that way and it suits your requirements. I do it all time and there is no issue with it at all. I understand your point of course, and that is another way of doing it. Set it up however you desire, but there is nothing inherently wrong with it.
No, it is not really debatable. Pat is correct. The fact that it may work "kind of" for you is not a good reason to suggest a novice should adopt this.
Sure you can make a non-normal database design work "sort of ". But you open up problems with data integrity. Maybe not that big of a case here, but it is in other cases. I would not suggest this to a novice as a viable solution.
I know you would not do the same thing in a regular child table and duplicate data from the parent. So why do it here? There are times when it makes sense to denormalize your data, but no need or benefit in this case. There are no benefits because it is not really easier, but there are drawbacks
Your design should simply be this.
You can do the exact same thing with out violating normalization.
Maybe not a big deal in this case but here is where data integrity gets violated.
Ben's Company get renamed to ACME Company. Now John Smith should show up in ACME but instead on this form and in the table he shows in the old Ben's Company.
Pam Brown gets Married and now is Pam Smith but on this form and table has Pam Brown. Or worse, Mark can now a days decide he wants to be Jessica. You have now created a hostile work environment because on this form "she" is still shown as Mark.
If those fields where instead things like cost values, item quantities, or contact emails/phones then you have created big problems.