// Contact + RFP form (interactive, multi-step feel) const Contact = () => { const [form, setForm] = React.useState({ projectType: '', budget: '', location: '', timeline: '', name: '', org: '', email: '', notes: '', }); const [submitted, setSubmitted] = React.useState(false); const update = (k, v) => setForm(f => ({ ...f, [k]: v })); const projectTypes = ['Ground-up hotel / resort', 'Renovation / PIP', 'F&B / Amenity buildout', 'Master-plan or feasibility']; const budgets = ['$500K – $2M', '$2M – $10M', '$10M – $50M', '$50M+']; const timelines = ['Breaking ground < 6 mo', '6 – 12 months', '12 – 24 months', 'Early stage / feasibility']; const onSubmit = (e) => { e.preventDefault(); setSubmitted(true); }; return (
── (09) · Start a Project

Tell us about
the work.

{/* Left — offices */}

We respond to every qualified inquiry within two business days. Project minimum is $500K construction value.

{[ { city: 'Savannah, GA', role: 'Headquarters', addr: '402 Factors Walk · Savannah, GA 31401', tel: '+1 912.555.0118', email: 'savannah@palmettobuild.co' }, { city: 'Naples, FL', role: 'Regional Office', addr: '3280 Gulf Shore Blvd · Naples, FL 34103', tel: '+1 239.555.0146', email: 'naples@palmettobuild.co' }, { city: 'Hilton Head, SC', role: 'Regional Office', addr: '18 Executive Park Rd · Hilton Head, SC 29928', tel: '+1 843.555.0172', email: 'hiltonhead@palmettobuild.co' }, ].map(o => (
{o.city}
{o.role}
{o.addr}
{o.tel}
{o.email}
))}
{/* Right — form */}
{submitted ? (

Inquiry received.

A principal will be in touch within two business days. We will send you our project intake checklist in the same email.

) : (
{projectTypes.map(t => ( update('projectType', t)}>{t} ))}
{budgets.map(b => ( update('budget', b)}>{b} ))}
{timelines.map(t => ( update('timeline', t)}>{t} ))}
update('location', v)} />
update('name', v)} /> update('org', v)} />
update('email', v)} />