/* global React, PageHeader, PageShell, SectionHead */ /* ========================================================= Why Us — differentiation. Comparison vs alternatives, what we won't do, what makes an engagement work. ========================================================= */ const COMPARISON = [ { label: "Whose interests they serve", bspoke: "Yours, exclusively. We are paid by the owner, period.", brand: "Their brand standards and royalty stream.", operator: "Their management fee and incentive structure.", consult: "Whoever signed the engagement letter — usually not the owner.", }, { label: "How they're compensated", bspoke: "Flat or retainer. No deal-based fees, no referrals.", brand: "Percentage of revenue, royalty fees, marketing levies.", operator: "Base fee (% of revenue) + incentive (% of GOP).", consult: "Hourly or project; bigger deck wins more billable hours.", }, { label: "Who shows up to the property", bspoke: "Founder + senior advisor. Same two faces, every visit.", brand: "Rotating regional reps. Quarterly at best.", operator: "GM and corporate, but they live there — and answer to corporate.", consult: "Senior on the pitch, juniors on the work.", }, { label: "What they're optimizing for", bspoke: "Asset value at the end of your hold period.", brand: "Brand consistency and royalty maximization.", operator: "GOP this quarter (because that's the incentive trigger).", consult: "The next engagement.", }, { label: "Engagement length", bspoke: "8 weeks to 5+ years. We stay as long as the work needs us.", brand: "10–20 year licensing agreement (locked in).", operator: "5–10 year HMA, often hard to exit.", consult: "8–12 weeks, then they're gone.", }, ]; const WONTS = [ ["Take operator referral fees.", "Not from brands. Not from PMS vendors. Not from designers. Not ever."], ["Sell you a deck and disappear.", "Every engagement is structured around an outcome the owner can audit, not a binder on a shelf."], ["Compete with your operator.", "If you have a good operator, we make them better. If you don't, we say so and help you find one."], ["Accept work outside our circle.", "We don't take engagements where we can't show up in person within 90 minutes."], ["Hide behind 'industry standard.'", "Every recommendation is reasoned from your asset's economics, not a benchmark deck."], ]; function WhyUsSection() { return ( {/* Comparison table */}
{/* Header row */}
{[ ["", null], ["BSpoke", true], ["Brand", false], ["3rd-party Operator", false], ["Big-4 Consultant", false], ].map(([label, isUs], i) => (
{label}
))}
{/* Body rows */} {COMPARISON.map((row, idx) => (
{row.label}
{row.bspoke}
{row.brand}
{row.operator}
{row.consult}
))}
{/* What we won't do */}
{WONTS.map(([h, b], i) => (
{String(i + 1).padStart(2, "0")}

{h}

{b}

))}
{/* Right-fit / wrong-fit */}
Right fit
    {[ "You own an independent or boutique-flagged hotel in South Florida.", "You're a family office or developer with one or two hotel assets in the portfolio — not enough to justify a full-time in-house team.", "You're holding the asset for 5+ years and care about value at exit, not just this quarter.", "You suspect your operator or brand isn't optimizing for your interests, but you don't have the operating literacy to prove it.", "You want a single, accountable voice in the room — not a 12-person consulting team.", ].map((x) => (
  • {x}
  • ))}
Probably not the right fit
    {[ "You own a flagged hotel in a 20-year HMA and have no intent or ability to revisit the agreement.", "You're flipping the asset within 18 months and need a story rather than a result.", "You're looking for a service-level agreement with KPIs and a procurement team to manage us through. (We are too small and too senior for that workflow.)", "You want an advisor whose first move is a 60-slide opening deck. Ours is a site visit.", "You believe brand consistency is the highest value an asset can offer. We do not ; operations, pricing, labor discipline and revenue strategy drive asset value. ", ].map((x) => (
  • {x}
  • ))}
); } window.WhyUsSection = WhyUsSection;