/* The Barber Shop — W Broadway. VERBATIM brief data. */

const SHOP = {
  name: "The Barber Shop",
  area: "W Broadway",
  street: "950 W Broadway #103",
  city: "Vancouver, BC",
  cityShort: "Vancouver BC",
  postal: "V5Z 1K7",
  phone: "(604) 620-7811",
  phoneTel: "+16046207811",
  hours: [
    ["Hours", "Owner to confirm"],
    ["Walk-ins", "Welcome"],
  ],
  lede:
    "Walk-in friendly. Booked-out regulars. Hot towel finish if you ask. 4.6★ on 376 Google reviews. W Broadway's barber.",
};

// THE CUTS — exactly three
const CUTS = [
  { id: "cut",   name: "The Cut",     desc: "Skin fade, scissor, taper — your call.", price: "?", mins: 25, icon: "clipper" },
  { id: "beard", name: "Beard Trim",  desc: "Lined up, oiled, sent out clean.",       price: "?", mins: 20, icon: "razor"   },
  { id: "lot",   name: "The Lot",     desc: "Full cut + beard + hot towel.",          price: "?", mins: 50, icon: "towel"   },
];

// THE NUMBERS band — verbatim segments
const NUMBERS = [
  ["4.6★", "Google"],
  ["376", "Reviews"],
  ["Walk-ins", "Welcome"],
  ["Hot towel", "On ask"],
  ["—", "W Broadway"],
];

const WALKIN =
  "Booking through Booksy is easiest, but the door is open. If we've got a chair, we'll take you. Best chance: mid-afternoon weekdays. Worst chance: Saturday morning.";

Object.assign(window, { SHOP, CUTS, NUMBERS, WALKIN });
