/** Office guides. Add sections freely – the page renders whatever is here. */
export interface OfficeGuide {
  slug: string;
  city: string;
  name: string;
  address: string[];
  mapUrl: string;
  timezone: string;
  lead: { name: string; title: string };
  phone: string;
  wifi: string;
  hero: string;
  sections: { title: string; body: string }[];
  nearby: { name: string; kind: string; note: string }[];
}

export const offices: OfficeGuide[] = [
  {
    slug: "dublin", city: "Dublin", name: "Dublin – Ballsbridge",
    address: ["59 Northumberland Road", "Ballsbridge", "Dublin 4, Ireland"],
    mapUrl: "https://maps.google.com/?q=59+Northumberland+Road+Dublin+4",
    timezone: "Europe/Dublin", lead: { name: "Vaunnie McDermott", title: "Managing Director" }, phone: "+353 87 685 6045",
    wifi: "Ask reception – network CP-Staff, password on the kitchen board.",
    hero: "A Georgian house with a studio's heart. Four floors, one very steep staircase, the best coffee on the road.",
    sections: [
      { title: "Getting in", body: "Fob access from 07:30 to 20:00. Buzz reception if you've forgotten your fob (again). Visitors sign in at the front desk on the ground floor." },
      { title: "Where things are", body: "Ground: reception, meeting rooms *Liffey* and *Dodder*. First: account and strategy. Second: creative and UX. Third: dev, analytics and the quiet room. Basement: CP Studios edit suite and the bike store." },
      { title: "Getting here", body: "DART to Lansdowne Road (7 min walk) or Grand Canal Dock. Buses 4, 7 and 7A stop on Northumberland Road. Bike parking in the basement; showers on the second floor." },
      { title: "Meeting rooms", body: "Book through Google Calendar – rooms are *Liffey* (8), *Dodder* (6), *Boardroom* (14, has the good screen) and *Phone Box* (1). Please release rooms you won't use." },
      { title: "Lunch and coffee", body: "Kitchen on the first floor with fridge, oven and the espresso machine (descale it on Fridays). Lunch is on CP every Wednesday for all-hands." },
      { title: "Printing, post and couriers", body: "Printer on the first floor landing – it's on the *CP-Print* queue. Couriers via reception before 15:00 for same-day." },
      { title: "Emergencies", body: "Fire assembly point: the green across the road. First aiders listed on the kitchen board. Emergency services: 112 or 999." },
    ],
    nearby: [
      { name: "3fe", kind: "Coffee", note: "Grand Canal St – worth the walk." },
      { name: "The Bath Pub", kind: "Pub", note: "Friday debriefs happen here." },
      { name: "Herbert Park", kind: "Park", note: "Lunchtime laps and the occasional standing meeting." },
      { name: "Aviva Stadium", kind: "Sport", note: "Match days = busy roads; leave early." },
    ],
  },
  {
    slug: "boston", city: "Boston", name: "Boston – South End",
    address: ["46 Waltham Street, 4th Floor", "Boston, MA 02118", "United States"],
    mapUrl: "https://maps.google.com/?q=46+Waltham+Street+Boston+MA+02118",
    timezone: "America/New_York", lead: { name: "Dana Wantman", title: "Chief Client Officer" }, phone: "617-521-5400",
    wifi: "Network CP-Staff; password in 1Password under *Boston office*.",
    hero: "A converted brick loft in the South End – exposed beams, big windows, and the wall of Gorton's Fishermen.",
    sections: [
      { title: "Getting in", body: "Badge access 07:00–21:00. Front desk on the ground floor handles visitors; call up and someone will collect them." },
      { title: "Where things are", body: "One open floor. Creative and Studios along the windows, account and strategy in the middle, analytics and dev at the back near the server closet. Edit suites and the photo studio are down the hall." },
      { title: "Getting here", body: "Orange Line to Back Bay or Tufts Medical, Silver Line SL4/SL5 to Herald St. Bluebikes dock on Waltham St. Parking: Stanhope Garage, validate at reception." },
      { title: "Meeting rooms", body: "*Fenway* (12, boardroom), *Common* (8), *Charles* (6), *Fisherman* (4, the one with the mural), and three phone booths. Book via Google Calendar." },
      { title: "Lunch and coffee", body: "Kitchen with two espresso machines and the snack wall. Team lunch on CP every Wednesday after all-hands." },
      { title: "Shipping and mail", body: "Mailroom on the ground floor. FedEx pickup at 16:00; label printer at the ops desk." },
      { title: "Emergencies", body: "Fire assembly: corner of Waltham and Shawmut. First aid kit and AED by the kitchen. Emergency services: 911." },
    ],
    nearby: [
      { name: "Render Coffee", kind: "Coffee", note: "Columbus Ave – the default." },
      { name: "The Beehive", kind: "Bar", note: "Live music, client dinners." },
      { name: "SoWa Market", kind: "Market", note: "Sundays May–October." },
      { name: "Boston Common", kind: "Park", note: "15 minutes on foot for a walking 1:1." },
    ],
  },
];
