const BASE_PRICE = 2650;
const ITEM_PRICE = 350;
function calc() {
const price = Array.prototype.reduce.call(
document.querySelectorAll('.field-item__input input'),
(acc, n) => acc + n.value * ITEM_PRICE,
BASE_PRICE
);
document.querySelector('#result').innerText = `${price} руб.`;
}
document.querySelector('.form-fields__items').addEventListener('input', calc);
calc();