// Data and content
const SHOWCASE_IMAGES = Array.from({length: 41}, (_, i) =>
  `https://www.wildmanartframing.com/wp-content/uploads/gallery-image-${i + 1}.jpg`
);

const IMG = {
  LOGO_HEADER: "https://www.wildmanartframing.com/wp-content/uploads/wildman-logo-header-red.png",
  LOGO_MENU: "https://www.wildmanartframing.com/wp-content/uploads/wildman-logo-menu-red.png",
  DONNA_FRONTPAGE: "https://www.wildmanartframing.com/wp-content/uploads/donna-wildman-frontpage-2.jpg",
  DONNA_ABOUT: "https://www.wildmanartframing.com/wp-content/uploads/donna-wildman-about-page.jpg",
  HOMEPAGE_LEFT: "https://www.wildmanartframing.com/wp-content/uploads/wildman-frontpage-left.png",
  HOMEPAGE_RIGHT: "https://www.wildmanartframing.com/wp-content/uploads/wildman-frontpage-right.png",
  CONSERVATION: "https://www.wildmanartframing.com/wp-content/uploads/conservation-image.jpg",
  FRAME_SELECTION: "https://www.wildmanartframing.com/wp-content/uploads/frame-selection.jpg",
  CORPORATE: "https://www.wildmanartframing.com/wp-content/uploads/corporate-image.jpg",
  CIRCLE_SELECTION: "https://www.wildmanartframing.com/wp-content/uploads/wildman-circle-white-selection-sm.png",
  CIRCLE_SERVICES: "https://www.wildmanartframing.com/wp-content/uploads/wildman-circle-white-conservation-sm.png",
  CIRCLE_SHOWCASE: "https://www.wildmanartframing.com/wp-content/uploads/wildman-circle-white-showcase-sm.png",
  CIRCLE_COMMERCIAL: "https://www.wildmanartframing.com/wp-content/uploads/wildman-circle-white-commercial-sm.png",
  BUILDING: "https://www.wildmanartframing.com/wp-content/uploads/new-building-sm.jpg",
};

const FRAMING_SERVICES = [
  { title: "Museum Mounting", blurb: "Reversible mounting techniques used by museums to preserve archival value." },
  { title: "Archival Materials", blurb: "Acid-free mats, lignin-free backing, and conservation-grade adhesives throughout." },
  { title: "Conservation and Museum Glass", blurb: "UV-filtering and anti-reflective glass options for archive-level preservation." },
  { title: "Hand-painted French Mats", blurb: "A traditional craft — decorative lines and washes painted directly onto the mat surface.", featured: true },
  { title: "Art Restoration and Frame Repair", blurb: "Period frame restoration, gilding repair, and structural rebuilds." },
  { title: "Object and Garment Mounting", blurb: "Three-dimensional pieces — wedding gowns, military uniforms, sports memorabilia." },
  { title: "Acrylic Boxes and Shadowboxes", blurb: "Custom-built displays for three-dimensional preservation." },
  { title: "Canvas Stretching", blurb: "Custom stretcher bars for paintings of any size." },
  { title: "Custom Mirrors", blurb: "Beveled, antiqued, period — designed to specification." },
];

const FRAME_CATEGORIES = [
  { title: "Traditional and Modern", description: "Full range from classical to contemporary aesthetics." },
  { title: "Custom Period Frames", description: "Authentic period reproductions and originals." },
  { title: "Gilded and Painted Finishes", description: "Hand-applied gold leaf and custom-toned finishes." },
  { title: "Leather, Steel, Hardwoods", description: "Luxurious materials for distinctive presentations." },
  { title: "Acrylic Boxes", description: "Three-dimensional preservation displays." },
  { title: "Photo Frames", description: "From family heirlooms to gallery prints." },
  { title: "Custom Beveled and Antiqued Mirrors", description: "Mirror solutions designed to specification." },
];

const COMMERCIAL_SERVICES = [
  { title: "Hospitality and corporate art programs", body: "Multi-piece programs for hotels, restaurants, offices, and medical centers. We handle selection, design, framing, and installation coordination." },
  { title: "Framed reproductions", body: "Working with your provider or ours to produce high-quality reproductions matched to your space." },
  { title: "Mirrors", body: "Beveled, antiqued, custom — designed and installed to your specifications." },
  { title: "Installation coordination", body: "On-site installation by trained crews. We manage delivery, hanging, and lighting consultation." },
];

const CORPORATE_CLIENTS = [
  { name: "The Mansion on Turtle Creek", category: "Luxury Hotel · Dallas" },
  { name: "Four Seasons Hotel, Dallas", category: "Luxury Hotel" },
  { name: "Four Seasons Hotel, Houston", category: "Luxury Hotel" },
  { name: "Jones Lang LaSalle", category: "Commercial Real Estate" },
  { name: "Baylor Spine Care Center", category: "Medical · Dallas" },
  { name: "Pinehurst Golf Resort", category: "Golf Resort · North Carolina" },
];

const MATERIALS = [
  { title: "Gilded Period Frames", img: SHOWCASE_IMAGES[0] },
  { title: "Handsome Hardwoods", img: SHOWCASE_IMAGES[12] },
  { title: "Luxurious Leathers", img: SHOWCASE_IMAGES[20] },
  { title: "Industrial Steels", img: SHOWCASE_IMAGES[25] },
  { title: "Painted Finishes", img: SHOWCASE_IMAGES[30] },
  { title: "Acrylic Displays", img: SHOWCASE_IMAGES[35] },
];

const NAV = [
  { label: "About", to: "/about" },
  { label: "Frame Selection", to: "/frame-selection" },
  { label: "Services", to: "/services" },
  { label: "Showcase", to: "/showcase" },
  { label: "Commercial", to: "/commercial" },
  { label: "Contact", to: "/contact" },
];

Object.assign(window, {
  SHOWCASE_IMAGES, IMG, FRAMING_SERVICES, FRAME_CATEGORIES,
  COMMERCIAL_SERVICES, CORPORATE_CLIENTS, MATERIALS, NAV
});
