// Brand Partners — interactive, editorial presentation const Partners = () => { const [active, setActive] = React.useState(0); const brands = [ { name: 'Hilton', since: '2011', projects: 9, flags: ['Curio Collection', 'Tapestry', 'Canopy', 'Embassy Suites'], note: 'Approved GC for full-service + soft-brand PIPs across FL & SC. Brand QA accreditation current.', }, { name: 'Marriott', since: '2013', projects: 12, flags: ['Autograph Collection', 'Tribute Portfolio', 'Westin', 'JW Marriott'], note: 'Delivered six PIPs and two ground-ups across the luxury and lifestyle tiers.', }, { name: 'IHG', since: '2014', projects: 6, flags: ['Kimpton', 'Hotel Indigo', 'Vignette Collection'], note: 'Boutique repositionings and historic-property conversions in Charleston and Savannah.', }, { name: 'Hyatt', since: '2016', projects: 4, flags: ['Thompson', 'The Unbound Collection', 'Destination by Hyatt'], note: 'Oceanfront amenity buildouts and two independent-to-soft-brand conversions.', }, { name: 'Four Seasons', since: '2019', projects: 2, flags: ['Four Seasons Hotels & Resorts'], note: 'Spa and residence additions at existing resort properties. NDA references only.', }, { name: 'Rosewood', since: '2020', projects: 2, flags: ['Rosewood Hotels'], note: 'Pre-opening construction on one estate-scale Gulf property; amenity program on a second.', }, { name: 'Auberge', since: '2021', projects: 3, flags: ['Auberge Resorts Collection'], note: 'Two coastal estate resorts and one wellness pavilion across GA Golden Isles.', }, { name: 'Independents', since: '2006', projects: 28, flags: ['Private owners', 'Ownership groups', 'Family offices'], note: 'Boutique, independent, and owner-operated properties remain the largest share of our work.', }, ]; const b = brands[active]; return (
── (07) · Brand Partners

Approved across
the major flags.

{/* Left — brand list */}
{brands.map((brand, i) => { const isActive = active === i; return ( ); })}
{/* Right — brand detail */}
Brand · 0{active + 1} of {brands.length}
Partner since {b.since}

{b.name}

{b.note}

Flags delivered
{b.flags.map(f => ( {f} ))}
Projects delivered
{String(b.projects).padStart(2, '0')}
Accreditation
Current through 2027
Hover or focus a brand to open its record Full franchise documentation available under NDA
); }; window.Partners = Partners;