/**
 * Compliance and certification marks the company lists.
 * Rendered as typeset badges rather than logo files, so nothing depends on
 * artwork we do not have the right to redistribute.
 */

export interface Certification {
  abbr: string;
  name: string;
  scope: string;
}

export const certifications: Certification[] = [
  {
    abbr: "BSCI",
    name: "Business Social Compliance Initiative",
    scope: "Social audit",
  },
  {
    abbr: "GOTS",
    name: "Global Organic Textile Standard",
    scope: "Organic fibre",
  },
  { abbr: "ISO", name: "International Organization for Standardization", scope: "Quality systems" },
  { abbr: "OCS", name: "Organic Content Standard", scope: "Content claim" },
  { abbr: "OEKO-TEX", name: "Oeko-Tex Standard 100", scope: "Harmful substances" },
  { abbr: "RCS 100", name: "Recycled Claim Standard 100", scope: "Recycled content" },
  { abbr: "RCS Blend", name: "Recycled Claim Standard Blended", scope: "Recycled content" },
  { abbr: "SEDEX", name: "Supplier Ethical Data Exchange", scope: "Ethical trade" },
  {
    abbr: "WRAP",
    name: "Worldwide Responsible Accredited Production",
    scope: "Responsible manufacturing",
  },
];

/** Sustainability commitments, presented on the denim page as the Green Journey. */
export const greenJourney = [
  {
    title: "Less water on the finishing floor",
    body: "Laser and ozone finishing replace pumice stone and long wash cycles, so the same vintage look leaves the plant with a fraction of the water behind it.",
  },
  {
    title: "Recycled and organic fibre",
    body: "GOTS, OCS, RCS 100 and RCS Blend certification means an organic or recycled claim on the label is traceable back through the spinning unit.",
  },
  {
    title: "People first",
    body: "BSCI, SEDEX and WRAP audits cover the floor, and worker safety and motivation are treated as production inputs, not paperwork.",
  },
] as const;

/** Heritage milestones, drawn from the company's published history. */
export const timeline = [
  {
    year: "1956",
    title: "Three Star Group is founded",
    body: "The group is established in Multan as a manufacturer and producer of knitwear.",
  },
  {
    year: "1960s to 1980s",
    title: "Hosiery at scale",
    body: "Socks, stockings, tights, pantyhose and leggings are produced with in house dyeing, knitting and finishing, and shipped across Europe, the Middle East, Africa, Asia Pacific and North America.",
  },
  {
    year: "1992",
    title: "The Lahore unit opens",
    body: "A denim and woven operation is established at Kot Lakhpat, Lahore, adding rigid and washed bottoms to the group's range.",
  },
  {
    year: "2000s",
    title: "Vertical integration completes",
    body: "Two spinning units and 156 knitting machines on a single floor bring the chain from raw cotton to finished garment fully in house.",
  },
  {
    year: "Today",
    title: "Three divisions, five continents",
    body: "Knitwear, denim and workwear ship to the UK, Europe and the USA, with agents being sought across South America and Latin America.",
  },
] as const;
