/* ===========================================================
Halvorsen Orthopaedic — visual atoms
Hairline anatomical line drawings used as quiet decoration.
=========================================================== */
const Stroke = ({ children, w = 1 }) => (
{children}
);
/* Knee joint — sagittal-ish abstract */
const KneeMotif = ({ size = 240, style }) => (
);
/* Shoulder — rotator cuff abstract */
const ShoulderMotif = ({ size = 240, style }) => (
);
/* Hip — femoral head */
const HipMotif = ({ size = 240, style }) => (
);
/* Ankle */
const AnkleMotif = ({ size = 240, style }) => (
);
/* Spine fragment */
const SpineMotif = ({ size = 200, style }) => (
);
/* Crosshair / measurement marker */
const Crosshair = ({ size = 40, style }) => (
);
/* Portrait / image placeholder — striped, with caption. If `src` is provided, uses real image. */
const Plate = ({ ratio = "3/4", label, sub, tone = "sand", src, className = "", children, style }) => {
const palettes = {
sand: { a: "#C2B79E", b: "#A89770", text: "#3a3320" },
sage: { a: "#7C8471", b: "#5E6657", text: "#1c1f18" },
bone: { a: "#E9E2D6", b: "#C2B79E", text: "#3a3320" },
ink: { a: "#2A3340", b: "#1F2937", text: "#EFEAE3" },
};
const p = palettes[tone] || palettes.sand;
return (
{src && (

)}
{src && (
)}
{(label || sub) && (
{label && (
{label}
)}
{sub && (
{sub}
)}
)}
{children}
);
};
const Tick = ({ pos }) => {
const map = {
tl: { top: 8, left: 8, rot: 0 },
tr: { top: 8, right: 8, rot: 90 },
bl: { bottom: 8, left: 8, rot: 270 },
br: { bottom: 8, right: 8, rot: 180 },
};
const s = map[pos];
return (
);
};
/* Chapter label: "01 — Philosophy" */
const Chapter = ({ num, label }) => (
{String(num).padStart(2, "0")}
{label}
);
/* Arrow icon */
const Arrow = ({ size = 14 }) => (
);
/* Hand signature */
const Signature = ({ size = 180 }) => (
);
Object.assign(window, {
KneeMotif, ShoulderMotif, HipMotif, AnkleMotif, SpineMotif, Crosshair,
Plate, Tick, Chapter, Arrow, Stroke, Signature,
});
/* Stock photo URLs (Unsplash, hand-picked for tone) */
const PHOTOS = {
portrait: "https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=900&q=85",
runner: "https://images.unsplash.com/photo-1571008887538-b36bb32f4571?w=900&q=85",
craft: "https://images.unsplash.com/photo-1581595220892-b0739db3ba8c?w=900&q=85",
hands: "https://images.unsplash.com/photo-1612277795421-9bc7706a4a34?w=900&q=85",
dancer: "https://images.unsplash.com/photo-1518611012118-696072aa579a?w=900&q=85",
knee: "https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=900&q=85",
rugby: "https://images.unsplash.com/photo-1551655510-555dc3be8633?w=900&q=85",
clinic: "https://images.unsplash.com/photo-1666214280557-f1b5022eb634?w=900&q=85",
oslo: "https://images.unsplash.com/photo-1601581875309-fafbf2d3ed3a?w=1200&q=85",
london: "https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1200&q=85",
};
window.PHOTOS = PHOTOS;