/* GALLERY — editorial: quiet asymmetric grid, captions in the margin, hairline numbering */ function Gallery({ t }) { const ref = React.useRef(null); const [p, setP] = React.useState(0); React.useEffect(() => { const onScroll = () => { if (!ref.current) return; const r = ref.current.getBoundingClientRect(); const v = Math.max(0, Math.min(1, (window.innerHeight - r.top) / (window.innerHeight + r.height))); setP(v); }; onScroll(); window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); const items = [ { label: "villa · andalucía", ratio: "3/4", offset: 0.3, kind: "", src: "uploads/gallery-villa-view.jpeg" }, { label: "table · al fresco", ratio: "4/3", offset: 0.55, kind: "", src: "uploads/gallery-table-setting.jpeg" }, { label: "yacht galley", ratio: "3/4", offset: 0.4, kind: "dark", src: "uploads/gallery-fish-prep.jpeg" }, { label: "chef · langoustines",ratio: "1/1", offset: 0.6, kind: "", src: "uploads/gallery-nati-langoustines.jpeg" }, { label: "tomate · plated", ratio: "3/4", offset: 0.35, kind: "", src: "uploads/gallery-tomate-plated.jpeg" }, { label: "galley · at sea", ratio: "4/3", offset: 0.5, kind: "terra", src: "uploads/gallery-lamb-sea.jpeg" }, ]; return ( ); } window.Gallery = Gallery;