Field Bar + Bottle Shop · Tacoma WA

Join the club.

Natural wine, curated monthly. Pickup on the first Wednesday.

1 Your details
2 Payment

Choose your membership

How many bottles per month?

Your preferences

Tell us what you love. We’ll handle the rest.

Your details

Enter your card on the next step. Cancel anytime from your member portal.

// ── PAY BUTTON ──────────────────────────────────────────────────────────────── document.getElementById('pay-btn').addEventListener('click', function() { hideErr('payment-error'); if (!elementsInst || !stripeInst) return; var btn = document.getElementById('pay-btn'); btn.textContent = 'Processing\u2026'; btn.disabled = true; stripeInst.confirmPayment({ elements: elementsInst, confirmParams: { return_url: window.location.origin + '/join/return' } }).then(function(result) { if (result.error) { btn.textContent = 'Start membership \u2192'; btn.disabled = false; showErr('payment-error', result.error.message || 'Payment failed. Please try again.'); } }); });