function About() {
	const ref = React.useRef(null);
	window.useFadeIn(ref);
	return (
		<section id="about" style={{ padding: '120px 0', background: 'var(--surface)', borderTop: '1px solid var(--divider)', borderBottom: '1px solid var(--divider)' }}>
			<div className="container">
				<div ref={ref} className="fade-up about-grid">
					<div className="about-img">
						<div style={{ aspectRatio: '4/5', overflow: 'hidden', background: 'var(--divider)' }}>
							<img src={window.ABOUT_IMG} alt="Artist's workspace — Blender viewport, 3D render in progress" loading="lazy"
								style={{ width: '100%', height: '100%', objectFit: 'cover' }}/>
						</div>
					</div>

					<div className="about-copy">
						<div className="mono-mini" style={{ marginBottom: 20 }}>02 — About</div>
						<h2 className="display" style={{
							margin: 0, fontSize: 'clamp(40px, 5.5vw, 72px)',
							lineHeight: 1.0, fontWeight: 700, letterSpacing: '-0.04em',
						}}>
							Rendering slowly — one quiet object at a time.
						</h2>

						<div style={{ marginTop: 36, maxWidth: 520, color: 'var(--fg-soft)', fontSize: 16.5, lineHeight: 1.75 }}>
							<p style={{ margin: '0 0 16px' }}>
								Koelet3D is the personal practice of a Dutch 3D artist working primarily in Blender. The work leans sculptural — forms that feel more like found objects than digital constructions.
							</p>
							<p style={{ margin: '0 0 16px' }}>
								Trained as an industrial designer, drifted into CG around 2019. Since then the practice has become a daily sketchbook: scenes, studies, iterations on a single light.
							</p>
							<p style={{ margin: 0 }}>
								Finished pieces are posted publicly — everything else (scene files, node graphs, drafts) goes to patrons.
							</p>
						</div>
					</div>
				</div>
			</div>

			<style>{`
				.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
				@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
			`}</style>
		</section>
	);
}

window.About = About;
