/* Kings Roofing — data: Colorsteel® colour range + copy */
(function () {
  // ----- Standard range (20 everyday Colorsteel colours) -----
  const STANDARD = [
    { name: "TuiTuft",         hex: "#F6F8F6" },
    { name: "Cloud",           hex: "#F7F7E8" },
    { name: "Titania",         hex: "#F2F2E6" },
    { name: "SandScape",       hex: "#E3E1DA" },
    { name: "Gull Grey",       hex: "#C9C9C5" },
    { name: "Sandstone Grey",  hex: "#999A99", popular: true },
    { name: "SandBar",         hex: "#A69888" },
    { name: "Lichen",          hex: "#B8A692" },
    { name: "Mist Green",      hex: "#708463" },
    { name: "Permanent Green", hex: "#164C33" },
    { name: "Pioneer Red",     hex: "#830101" },
    { name: "Scoria",          hex: "#662929" },
    { name: "Ironsand",        hex: "#383833", popular: true },
    { name: "Karaka",          hex: "#363629", popular: true },
    { name: "New Denim Blue",  hex: "#4C5663" },
    { name: "Grey Friars",     hex: "#4C4C4C", popular: true },
    { name: "Thunder Grey",    hex: "#605F5B" },
    { name: "Slate",           hex: "#383232" },
    { name: "FlaxPod",         hex: "#261F1F", popular: true },
    { name: "Ebony",           hex: "#000000", popular: true },
  ];

  // ----- Matte range (3 premium textured colours) -----
  const MATTE = [
    { name: "StonePeak Matte",  hex: "#C4C4BD" },
    { name: "TidalDrift Matte", hex: "#646465" },
    { name: "FlaxPod Matte",    hex: "#261F1F" },
  ];

  // ----- Low Gloss range (6 colours) -----
  const LOW_GLOSS = [
    { name: "Sandstone Grey Low Gloss", hex: "#999A99" },
    { name: "Ironsand Low Gloss",       hex: "#383833" },
    { name: "Grey Friars Low Gloss",    hex: "#4C4C4C" },
    { name: "FlaxPod Low Gloss",        hex: "#261F1F" },
    { name: "Ebony Low Gloss",          hex: "#000000" },
    { name: "Windsor Grey Low Gloss",   hex: "#3B3C3E" },
  ];

  // Colours shown per finish tab + the blurb beside each tab.
  const FINISH_COLOURS = { "Standard": STANDARD, "Matte": MATTE, "Low Gloss": LOW_GLOSS };
  const FINISH_NOTES = {
    "Standard": "Twenty everyday Colorsteel® colours — what you’ll see on most NZ homes.",
    "Matte": "Three premium textured Matte colours — softer, architectural, no glare.",
    "Low Gloss": "Six Low Gloss colours — sits between Standard and Matte.",
  };

  const POPULAR = STANDARD.filter((c) => c.popular);
  const COLOURS = STANDARD; // used by the "try another colour" rail

  const PROFILES = ["Corrugate", "Trimrib®", "Tray"];
  const FINISHES = ["Standard", "Matte", "Low Gloss"];

  // fake address autocomplete fallback (used only when Google is unavailable)
  const ADDRESSES = [
    "14 Tasman Street, Mount Cook, Wellington",
    "27 Karori Road, Karori, Wellington",
    "9 The Crescent, Roseneath, Wellington",
    "112 Oriental Parade, Oriental Bay, Wellington",
    "5 Helston Road, Johnsonville, Wellington",
  ];

  window.KINGS_DATA = { COLOURS, POPULAR, STANDARD, MATTE, LOW_GLOSS, FINISH_COLOURS, FINISH_NOTES, PROFILES, FINISHES, ADDRESSES };
})();
