// Bishop Design — prototype data // NOTE: Project metadata (location/scope/year/photographer) below is plausible // stand-in for an internal prototype. Per design-brief.md, every published // project must have client-confirmed attribution + photographer rights. const SECTORS = [ { slug: "hotels", name: "Hotels", sub: "Hospitality \u00b7 Hotels & Resorts" }, { slug: "restaurants", name: "Restaurants", sub: "Food & Beverage" }, { slug: "residential", name: "Residential", sub: "Private homes \u00b7 Branded residences" }, { slug: "commercial", name: "Commercial", sub: "Workplace \u00b7 Head offices" }, { slug: "retail", name: "Retail", sub: "Flagships \u00b7 Leisure" }, ]; const PROJECTS = [ { slug: "carbone-vino", name: "Carbone Vino", sector: "Restaurants", location: "Riyadh, KSA", year: 2024, scope: "Restaurant \u00b7 Wine Bar", img: "carbone-vino-restaurant", featured: 1, ratio: "tall" }, { slug: "sls-hotel-residences",name: "SLS Hotel & Residences", sector: "Hotels", location: "Dubai, UAE", year: 2018, scope: "Hotel Public Areas", img: "sls-hotel-residences", featured: 2, ratio: "wide" }, { slug: "hyde-branded-residences", name: "Hyde Branded Residences", sector: "Residential", location: "Dubai, UAE", year: 2023, scope: "Residential Tower", img: "hyde-branded-residences", featured: 3, ratio: "tall" }, { slug: "eagle-hills", name: "Eagle Hills Head Office", sector: "Commercial", location: "Abu Dhabi, UAE", year: 2022, scope: "Workplace Interior", img: "eagle-hills-head-office" }, { slug: "buddha-bar", name: "Buddha Bar", sector: "Restaurants", location: "Dubai, UAE", year: 2019, scope: "Restaurant \u00b7 Lounge", img: "buddha-bar" }, { slug: "nusr-et", name: "Nusr-Et", sector: "Restaurants", location: "Dubai, UAE", year: 2017, scope: "Steakhouse Interior", img: "nusr-et" }, { slug: "bagatelle", name: "Bagatelle", sector: "Restaurants", location: "Dubai, UAE", year: 2016, scope: "Restaurant Interior", img: "bagatelle" }, { slug: "scalini-cucina", name: "Scalini Cucina", sector: "Restaurants", location: "Dubai, UAE", year: 2023, scope: "Italian Restaurant", img: "scalini-cucina" }, { slug: "duo-gastrobar", name: "Duo Gastrobar", sector: "Restaurants", location: "Dubai, UAE", year: 2024, scope: "Restaurant \u00b7 Bar", img: "duo-gastrobar" }, { slug: "fzn", name: "FZN by Bj\u00f6rn Frantz\u00e9n", sector: "Restaurants", location: "Dubai, UAE", year: 2024, scope: "Fine Dining", img: "fzn" }, { slug: "jato", name: "JATO", sector: "Restaurants", location: "Dubai, UAE", year: 2023, scope: "Restaurant Interior", img: "jato" }, { slug: "carna", name: "Carna by Dario Cecchini", sector: "Restaurants", location: "Dubai, UAE", year: 2022, scope: "Steakhouse Interior", img: "carna" }, { slug: "bateel", name: "Bateel", sector: "Retail", location: "Dubai, UAE", year: 2021, scope: "Flagship Retail", img: "bateel" }, { slug: "the-penthouse", name: "The Penthouse", sector: "Residential", location: "Dubai, UAE", year: 2022, scope: "Private Residence", img: "the-penthouse" }, { slug: "arboretum", name: "Arboretum", sector: "Restaurants", location: "Dubai, UAE", year: 2022, scope: "All-Day Dining", img: "arboretum" }, { slug: "filia", name: "Fi'lia", sector: "Restaurants", location: "Dubai, UAE", year: 2018, scope: "Restaurant Interior", img: "filia" }, { slug: "sereia", name: "Sereia", sector: "Restaurants", location: "Dubai, UAE", year: 2024, scope: "Restaurant \u00b7 Bar", img: "sereia" }, { slug: "studio-frantzen", name: "Studio Frantz\u00e9n", sector: "Restaurants", location: "London, UK", year: 2023, scope: "Fine Dining", img: "studio-frantzen" }, { slug: "mika", name: "MIKA", sector: "Restaurants", location: "Dubai, UAE", year: 2024, scope: "Restaurant Interior", img: "mika" }, { slug: "intercontinental", name: "InterContinental", sector: "Hotels", location: "Dubai, UAE", year: 2021, scope: "Hotel Public Areas", img: "intercontinental" }, { slug: "wavehouse", name: "Wavehouse", sector: "Hotels", location: "Dubai, UAE", year: 2019, scope: "F&B Entertainment", img: "wavehouse" }, { slug: "bahamas-villa", name: "Bahamas Villa", sector: "Residential", location: "Nassau, Bahamas", year: 2022, scope: "Private Residence", img: "bahamas-villa" }, { slug: "studio-one", name: "Studio One", sector: "Residential", location: "Dubai, UAE", year: 2021, scope: "Tower Amenities", img: "studio-one" }, { slug: "metdist-dmcc", name: "Metdist DMCC", sector: "Commercial", location: "Dubai, UAE", year: 2022, scope: "Workplace Interior", img: "metdist-dmcc-commercial" }, { slug: "theatre-vox", name: "Theatre at VOX Cinemas", sector: "Retail", location: "Dubai, UAE", year: 2020, scope: "Cinema \u00b7 Leisure", img: "theatre-at-vox-cinemas" }, { slug: "wadi", name: "Wadi", sector: "Restaurants", location: "Dubai, UAE", year: 2024, scope: "Restaurant Interior", img: "wadi" }, { slug: "play-playground", name: "Play Playground", sector: "Restaurants", location: "Nashville, USA", year: 2023, scope: "Restaurant \u00b7 Lounge", img: "play-playground-nashville" }, { slug: "opso-dubai", name: "Opso", sector: "Restaurants", location: "Dubai, UAE", year: 2023, scope: "Greek All-Day Dining", img: "opso-dubai" }, ]; // Sector counts const SECTOR_COUNTS = SECTORS.reduce((acc, s) => { acc[s.slug] = PROJECTS.filter(p => p.sector.toLowerCase() === s.name.toLowerCase()).length; return acc; }, {}); const AWARDS = [ { yr: "2025", name: "LIV Hospitality Design Awards", issuer: "Five prizes across hospitality categories", cat: "Hospitality" }, { yr: "2024", name: "CID Awards \u2014 Restaurant of the Year", issuer: "Duo Gastrobar, Dubai", cat: "Restaurants" }, { yr: "2023", name: "Interior Designer of the Year", issuer: "Design Middle East Awards", cat: "Studio" }, { yr: "2022", name: "Interior Designer of the Year", issuer: "Commercial Interior Design Awards", cat: "Studio" }, { yr: "2021", name: "Interior Design Firm of the Year", issuer: "Commercial Interior Design Awards", cat: "Studio" }, { yr: "2020", name: "Interior Designer of the Year", issuer: "Commercial Interior Design Awards", cat: "Studio" }, { yr: "2019", name: "Interior Designer of the Year", issuer: "Commercial Interior Design Awards", cat: "Studio" }, { yr: "2018", name: "Interior Designer of the Year", issuer: "Commercial Interior Design Awards", cat: "Studio" }, ]; const MARQUEE_AWARDS = [ "CID Firm of the Year 2021", "Designer of the Year 2018", "Designer of the Year 2019", "Designer of the Year 2020", "Designer of the Year 2021", "Designer of the Year 2022", "Designer of the Year 2023", "CID Awards 2024 \u2014 Duo Gastrobar", "LIV Hospitality Design Awards 2025", "Design Middle East 2023", ]; // Carbone Vino case study (the showcase) const CASE_STUDY_CARBONE = { slug: "carbone-vino", name: "Carbone Vino", sector: "Restaurants", location: "Riyadh, Kingdom of Saudi Arabia", client: "Major Food Group", year: 2024, duration: "14 months", area: "640 sqm", scope: ["Interior Architecture", "FF&E", "Bespoke Joinery", "Lighting Design", "Art Curation"], photographer: "\u2014 photographer credit TBC", hero: "carbone-vino-restaurant", tagline: "A nocturnal wine room for Major Food Group's first KSA outpost.", intro: "An intimate, dimly lit counterpart to Carbone\u2019s flagship dining room, Vino draws its mood from late-night Manhattan piano bars and Roman enotecas. The brief: a wine-led companion concept where the bar is the building \u2014 not the backdrop.", sections: [ { h: "Concept", p: "We began with a single image \u2014 a green-velvet banquette under a low pendant, the lacquered glow of a marble bar, a single carafe of red. From that fragment we built outwards: a curved spine of stone hugs the room, separating a quiet dining apse from a louder, drink-led front. The plan deliberately frustrates the eye \u2014 every line of sight terminates in either art, mirror or maker." }, { h: "Materials & process", p: "Honed Verde Guatemala marble for the bar and skirtings. Hand-tufted wool carpet in deep claret, woven in Kayseri to a custom Bishop pattern. Brass detailing kept matte and unlacquered to encourage patina. Joinery in tigerwood veneer, oil-finished. Custom Murano sconces commissioned through a Venetian atelier; their bubble-glass shades were colour-matched on three trips through prototype iterations before sign-off." }, { h: "Outcome", p: "Opened to a six-week reservation backlog. Cover counts have stabilised at ~140% of operator forecast since month two. Selected for the regional shortlist of two international hospitality awards in its first quarter. The project established the visual language Major Food Group is now extending across two further GCC outposts." }, ], gallery: [ "carbone-vino-restaurant", "bagatelle", "scalini-cucina", "duo-gastrobar", "filia", "nusr-et", ], related: ["scalini-cucina", "buddha-bar", "fzn"], }; window.BishopData = { SECTORS, PROJECTS, SECTOR_COUNTS, AWARDS, MARQUEE_AWARDS, CASE_STUDY_CARBONE };