// careers-hero-why.jsx
// Careers page — C01 Hero + C02 Why work at GI
// Light-led throughout (cream → cream-tinted), per user direction.
// Editorial hero with a full-bleed photo plate below — same family as
// the Energy Audits and Solar Calculator pages.
// ============================================================
// Local accent tokens — sage led. No amber on careers.
// ============================================================
const CAR_SAGE = '#5E8F6D';
const CAR_SAGE_SOFT = 'rgba(94,143,109,0.18)';
const CAR_SAGE_LINE = 'rgba(94,143,109,0.32)';
const CAR_SAGE_TINT = '#E8EFE9';
// Smooth-scroll to a section by id
const scrollToId = (id) => {
const el = document.getElementById(id);
if (!el) return;
const y = el.getBoundingClientRect().top + window.scrollY - 24;
window.scrollTo({ top: y, behavior: 'smooth' });
};
// ============================================================
// C01 · HERO — Paper Cream, editorial. Photo plate below.
// ============================================================
const CareersHero = () => (
{/* Running header
Company › CareersUpdated May 2026
*/}
{/* Eyebrow */}
Join the team
{/* Editorial 2-col: headline + side panel */}
Build a career in commercial energy with{' '}
Green Integrations.
What this team works on
Real projects for real facilities — solar, storage, efficiency,
and EV charging across Canada. Manufacturers, food processors,
warehouses and farms. Remote and hybrid roles open to candidates
anywhere in Canada.
);
// ============================================================
// C02 · WHY WORK AT GREEN INTEGRATIONS — Paper Cream tint
// 4 value blocks. Generous spacing, no icons-as-decoration filler.
// ============================================================
const CareersWhy = () => {
const blocks = [
{
tag: 'The work',
title: 'Real projects.',
body: (
<>
Commercial and industrial facilities across manufacturing, logistics, agriculture, food processing, and commercial real estate. Work tied directly to operational performance, infrastructure, and long-term energy strategy.
>
)
},
{
tag: 'The team',
title: 'High ownership.',
body: (
<>
People here work across projects, clients, and disciplines with meaningful responsibility early on. The work is collaborative, fast-moving, and highly visible internally and externally.
>
)
},
{
tag: 'The scope',
title: 'Integrated energy.',
body: (
<>
Solar, storage, electrification, lighting, controls, and energy strategy delivered together. Exposure to how commercial energy projects are evaluated, modelled, and deployed end-to-end.
>
)
},
{
tag: 'The map',
title: 'Canada-wide.',
body: (
<>
Projects span Ontario, Alberta, BC, and Nova Scotia. Many roles are remote or hybrid, with opportunities to visit active commercial project sites across Canada.
>
)
}
];
return (