// Portfolio data — repositioned as fund investments
const PORTFOLIO = [
  {
    id: 1, name: "Rondebult Precinct", sector: "Mixed-Use", strategy: "Core+",
    location: "Rondebult, ZA", size: "280,000 m²", duration: "36 mo",
    value: "R 3.2B", year: "2023",
    img: "https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80",
    size_class: "pcard-lg"
  },
  {
    id: 2, name: "Benoni Mega Mall", sector: "Retail / Residential", strategy: "Value-Add",
    location: "Benoni, ZA", size: "180,000 m²", duration: "48 mo",
    value: "R 1.8B", year: "2022",
    img: "https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?w=1600&q=80",
    size_class: "pcard-md"
  },
  {
    id: 3, name: "Illovo Edge Phase III", sector: "Premium Commercial", strategy: "Core",
    location: "Sandton, ZA", size: "9,340 m²", duration: "18 mo",
    value: "R 200M", year: "2021",
    img: "https://images.unsplash.com/photo-1577962917302-cd874c4e31d2?w=1600&q=80",
    size_class: "pcard-sm"
  },
  {
    id: 4, name: "41 Melville", sector: "Exclusive Residential", strategy: "Opportunistic",
    location: "Hyde Park, Sandton", size: "20,000 m²", duration: "18 mo",
    value: "R 180M", year: "2021",
    img: "https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80",
    size_class: "pcard-sm"
  },
  {
    id: 5, name: "Mont Blanc Heights", sector: "Residential", strategy: "Core+",
    location: "Bedfordview, ZA", size: "12,000 m²", duration: "13 mo",
    value: "R 140M", year: "2020",
    img: "https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80",
    size_class: "pcard-sm"
  },
  {
    id: 6, name: "Pomona Logistics Park", sector: "Industrial", strategy: "Core",
    location: "OR Tambo Airport", size: "32,000 m²", duration: "30 mo",
    value: "R 240M", year: "2020",
    img: "https://images.unsplash.com/photo-1565793298595-6a879b1d9492?w=1600&q=80",
    size_class: "pcard-wide"
  },
];

const SECTORS = [
  { n: "01", t: "Commercial Real Estate", d: "Premium grade office assets in primary nodes. Long-lease, blue-chip tenanted." },
  { n: "02", t: "Retail & Mixed-Use", d: "Large-format retail precincts and integrated mixed-use developments." },
  { n: "03", t: "Industrial & Logistics", d: "Last-mile warehousing, light industrial parks, and logistics infrastructure." },
  { n: "04", t: "Residential", d: "High-density residential and exclusive cluster developments in growth corridors." },
  { n: "05", t: "Hospitality & Resorts", d: "Tourism-anchored real estate in select frontier and emerging markets." },
  { n: "06", t: "Public-Private Partnerships", d: "Concession-based infrastructure and educational, institutional, and sports facilities." },
];

const STATS = [
  { v: "USD 1.4", unit: "B", l: "Assets Under Management" },
  { v: "32", unit: "+", l: "Active Investments" },
  { v: "6", unit: "", l: "Global Offices" },
  { v: "27", unit: " yrs", l: "Operating History" },
];

const OFFICES = [
  { city: "Johannesburg", region: "Southern Africa · HQ" },
  { city: "Maputo", region: "Southern Africa" },
  { city: "Luanda", region: "West Africa" },
  { city: "Dubai", region: "Middle East" },
  { city: "Lisbon", region: "Europe" },
  { city: "Port Louis", region: "Mauritius" },
];

const PROCESS = [
  { n: "01", label: "Origination", title: "Sourcing", desc: "Proprietary deal flow across six markets with on-the-ground partners and exclusive off-market access." },
  { n: "02", label: "Due Diligence", title: "Underwriting", desc: "Rigorous quantity surveying, market analysis, and risk-adjusted return modeling on every transaction." },
  { n: "03", label: "Execution", title: "Development", desc: "Hands-on project, construction, and asset management — preserving capital and accelerating delivery." },
  { n: "04", label: "Value Creation", title: "Realization", desc: "Active management to stabilization, with disciplined exit planning to maximize investor returns." },
];

const LEADERS = [
  {
    role: "Founding Partner",
    name: "Mario Rocha",
    title: "Chief Executive Officer & Development Manager",
    img: "assets/mario-rocha.png",
    bio: "Mario graduated from Witwatersrand University with a BSc (Building) and a B.Comm (Economics). His career began at Wilson Bayly Holmes Ovcon and later Grinaker LTA, where he built deep expertise across all aspects of construction in Southern Africa before founding the Mont Blanc group. He now leads investment strategy and origination across the firm's six markets.",
    creds: ["BSc Building — Wits", "B.Comm Economics", "27+ Years"]
  },
  {
    role: "Founding Partner",
    name: "Tanya Rocha",
    title: "Chief Investment Officer & Head of Asset Management",
    img: "assets/tanya-rocha.jpg",
    bio: "Tanya oversees the firm's capital deployment, portfolio strategy, and investor relations across Africa, the Middle East, and Europe. With a background spanning real estate finance and asset management, she leads the underwriting framework that has guided the fund's flagship developments — from premium-grade office portfolios in Sandton to large-format retail precincts across Southern Africa.",
    creds: ["Asset Management", "Portfolio Strategy", "Investor Relations"]
  }
];

window.IMO_DATA = { PORTFOLIO, SECTORS, STATS, OFFICES, PROCESS, LEADERS };
