// Olklin web tokens — shared by both variations

const WEB = {
  navy: '#112d70',
  navyDeep: '#0a1c4a',
  ink: '#0b1020',
  paper: '#fbfaf6',
  paperCool: '#f2f4f8',
  line: 'rgba(17,45,112,0.18)',
  lineSoft: 'rgba(17,45,112,0.10)',
  // Accent per service area (matches the labels system)
  accentProducts: 'oklch(0.66 0.12 215)', // aqua (multiusos)
  accentService: 'oklch(0.66 0.13 155)',  // green (desinfectante)
};

const TAGLINES = [
  'Limpieza profesional, sin compromiso.',
  'Tu operación, en manos limpias.',
  'Industria limpia. Operación tranquila.',
  'Limpieza al servicio de tu industria.',
  'Productos y personal que sostienen tu operación.',
];

const INDUSTRIES = [
  { key: 'oficinas', name: 'Oficinas corporativas', meta: 'Continuidad operativa',
    photo: 'https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&q=80&auto=format&fit=crop' },
  { key: 'planta', name: 'Plantas industriales', meta: 'Manufactura y logística',
    photo: 'https://images.unsplash.com/photo-1581092335397-9583eb92d232?w=1200&q=80&auto=format&fit=crop' },
  { key: 'hospital', name: 'Hospitales y clínicas', meta: 'Protocolos de sanitización',
    photo: 'https://images.unsplash.com/photo-1551076805-e1869033e561?w=1200&q=80&auto=format&fit=crop' },
  { key: 'hoteles', name: 'Hotelería y restaurantes', meta: 'Estándar premium',
    photo: 'https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1200&q=80&auto=format&fit=crop' },
  { key: 'condos', name: 'Condominios residenciales', meta: 'Áreas comunes y exclusivas',
    photo: 'https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1200&q=80&auto=format&fit=crop' },
  { key: 'escuelas', name: 'Escuelas', meta: 'Ambientes seguros para estudiar',
    photo: 'https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1200&q=80&auto=format&fit=crop' },
];

// Cleaning product line — mirrors the labels system
const PRODUCT_LINE = [
  { key: 'multiusos', name: 'Multiusos', sku: 'OLK · 01', note: 'Superficies generales' },
  { key: 'desengrasante', name: 'Desengrasante', sku: 'OLK · 02', note: 'Cocinas y talleres' },
  { key: 'desinfectante', name: 'Desinfectante', sku: 'OLK · 03', note: 'Amplio espectro' },
  { key: 'aromatizante', name: 'Aromatizante', sku: 'OLK · 04', note: 'Fragancia 12 h' },
  { key: 'cloro', name: 'Cloro', sku: 'OLK · 05', note: 'Concentrado al 6%' },
];

// Hero / context photos
const PHOTOS = {
  heroIndustry: 'https://images.unsplash.com/photo-1581092335397-9583eb92d232?w=1800&q=80&auto=format&fit=crop',
  cleaningHands: 'https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1400&q=80&auto=format&fit=crop',
  team: 'https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1400&q=80&auto=format&fit=crop',
  productShelf: 'https://images.unsplash.com/photo-1583947215259-38e31be8751f?w=1400&q=80&auto=format&fit=crop',
  modernOffice: 'https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1600&q=80&auto=format&fit=crop',
  factory: 'https://images.unsplash.com/photo-1581092446327-9b52bd1570c2?w=1600&q=80&auto=format&fit=crop',
  worker: 'https://images.unsplash.com/photo-1611273426858-450d8e3c9fce?w=1400&q=80&auto=format&fit=crop',
};

Object.assign(window, { WEB, TAGLINES, INDUSTRIES, PRODUCT_LINE, PHOTOS });
