/* eslint-disable */ // Section 09 — ESG & Sustainability. Light. 2x2 grid w/ giant watermark numbers. // Interactive: hover (or tap) a quadrant to bring it forward — it fills with // deep-brown, inverts its type, and its watermark number lifts to acid-yellow. // Same visual language as before, now responsive to the pointer. const ESG_ITEMS = [ { n: '01', title: 'Sustainable material sourcing', body: "Responsible procurement of FSC-certified wood, low-VOC paints, and eco-compliant adhesives. Engineering and procurement teams ensure material traceability, supplier audits, and waste optimisation through digital cut-planning and off-cut reuse systems.", }, { n: '02', title: 'Employee welfare & training', body: "The workforce operates under structured training programs covering equipment safety, material handling, and process efficiency. Regular safety drills, ergonomic workspace design, and continuous upskilling in CNC operation, finishing, and quality control are part of standard factory protocols.", }, { n: '03', title: 'Work environment & performance', body: "All teams are trained to perform under high-volume production timelines while maintaining precision and quality. The facility is equipped for both handcrafted detailing on bespoke projects and high-capacity production lines for bulk manufacturing.", }, { n: '04', title: 'Health & safety compliance', body: "Strict HSE standards including PPE usage, ventilation control, noise reduction, and fire-safety systems. Routine inspections and maintenance schedules are managed through internal audits to comply with Saudi labour and industrial safety regulations.", }, ]; const EsgCell = ({ it, i, active, onActivate }) => { const col = i % 2; const row = Math.floor(i / 2); return (
onActivate(i)} onFocus={() => onActivate(i)} onClick={() => onActivate(i)} tabIndex={0} role="button" aria-pressed={active} className="uc-esg-cell" style={{ position: 'relative', padding: '56px 64px 64px', minHeight: 320, borderRight: col === 0 ? '1px solid rgba(9,11,10,0.15)' : 'none', borderBottom: row === 0 ? '1px solid rgba(9,11,10,0.15)' : 'none', overflow: 'hidden', cursor: 'pointer', outline: 'none', background: active ? 'var(--color-deep-brown)' : 'transparent', transition: 'background 460ms var(--ease-craft), opacity 700ms var(--ease-craft), transform 700ms var(--ease-craft)', }} > {/* top accent bar */}
{/* giant watermark number */}
{it.n}
{it.n}

{it.title}

{it.body}

); }; const Esg = () => { const [active, setActive] = React.useState(0); return (
ESG & sustainability practices
Vision 2030 aligned

Responsibility, built in.

{ESG_ITEMS.map((it, i) => ( ))}
); }; Object.assign(window, { Esg });