// RegisterGrid.jsx — formal registry data for grant providers
function RegisterGrid({ lang }) {
  const t = lang === 'pl'
    ? {
        kicker: 'Dla grantodawców i partnerów',
        h2: 'Transparentność i dane rejestrowe',
        intro: 'Jesteśmy otwarci na współpracę z grantodawcami, samorządem i partnerami. Poniżej dane formalne fundacji.',
        rows: [
          ['Pełna nazwa', 'Fundacja PK KAR'],
          ['KRS', '0001239670'],
          ['NIP', '6793366270'],
          ['REGON', '544783050'],
          ['Siedziba', 'ul. Republiki Korczakowskiej 3/149, 30-867 Kraków'],
          ['Zarząd', 'Piotr Adam Karkocha (Prezes), Bartosz Bodzęta (Wiceprezes)'],
          ['Reprezentacja', 'Prezes Zarządu samodzielnie'],
          ['Rejestr', 'Rejestr stowarzyszeń oraz rejestr przedsiębiorców KRS'],
        ],
        note: 'Dane można zweryfikować w wyszukiwarce KRS Ministerstwa Sprawiedliwości. Chętnie udostępnimy statut i dokumenty na potrzeby procedur grantowych.',
      }
    : {
        kicker: 'For grantors & partners',
        h2: 'Transparency & registry data',
        intro: 'We welcome cooperation with grantors, local government and partners. Foundation formal data below.',
        rows: [
          ['Full name', 'Fundacja PK KAR'],
          ['KRS', '0001239670'],
          ['NIP (Tax ID)', '6793366270'],
          ['REGON', '544783050'],
          ['Registered office', 'ul. Republiki Korczakowskiej 3/149, 30-867 Kraków'],
          ['Board', 'Piotr Adam Karkocha (President), Bartosz Bodzęta (Vice-President)'],
          ['Representation', 'President of the Board, acting individually'],
          ['Registry', 'KRS Associations Register and Entrepreneurs Register'],
        ],
        note: 'Data is verifiable in the Polish Ministry of Justice KRS search. We will share the statute and documents for grant procedures on request.',
      };

  return (
    <section id="grantodawcy" className="section section-alt">
      <div className="container">
        <p className="kicker">{t.kicker}</p>
        <h2>{t.h2}</h2>
        <p className="section-intro">{t.intro}</p>
        <div className="reg-grid">
          {t.rows.map(([label, val], i) => (
            <div key={i}>
              <span>{label}</span>
              <strong>{val}</strong>
            </div>
          ))}
        </div>
        <p className="fineprint">{t.note}</p>
      </div>
    </section>
  );
}

window.RegisterGrid = RegisterGrid;
