/* eslint-disable */
// Estate Planning service page

const estateData = {
  id: "estate",
  title: "Estate Planning",
  heroTitle: "Estate <em>Planning.</em>",
  heroLede: "Wills, trusts, asset protection, powers of attorney, and advance healthcare directives. Drafted to your circumstances, calibrated for your family.",
  sideTitle: "Wills, trusts, and the things that come after.",
  mainTitle: "Plans that survive contact with <em>real life.</em>",
  intro: [
    "An estate plan is not a document. It is a sequence of decisions about how you want your affairs handled, your wishes honored, and the people you love cared for — written down so that the people you trust can act on them when you cannot.",
    "We draft each plan from the particulars: the family, the assets, the relationships, the contingencies. We do not begin with a template, and we do not believe in one. Plans that survive contact with real life are plans that were built for that life specifically."
  ],
  services: [
    { icon: <Icon.Document />, title: "Last Will & Testament", desc: "Bespoke wills that reflect your wishes, name guardians for minor children, and appoint executors you trust." },
    { icon: <Icon.Shield />, title: "Revocable & Irrevocable Trusts", desc: "Revocable living trusts for probate avoidance and irrevocable trusts for tax planning and asset protection." },
    { icon: <Icon.Key />, title: "Powers of Attorney", desc: "Financial and durable powers of attorney that grant trusted decision-makers authority when you are unable to act." },
    { icon: <Icon.Handshake />, title: "Healthcare Directives", desc: "Advance medical directives and living wills that document your healthcare wishes in advance of need." },
    { icon: <Icon.Estate />, title: "Asset Protection Planning", desc: "Strategies to preserve wealth across generations, anticipating creditor risk, divorce, and unforeseen liability." },
  ],
  process: [
    { n: "i.", title: "A confidential first meeting.", desc: "A complimentary, confidential first meeting to understand your family, your assets, and your concerns." },
    { n: "ii.", title: "A written engagement.", desc: "Clear scope, clear timeline, clear flat or hourly fee. You will know exactly what is included before we begin." },
    { n: "iii.", title: "Bespoke drafting.", desc: "Documents drafted to your particulars — not assembled from a kit. Plain-English explanations alongside the legal language." },
    { n: "iv.", title: "Signing & execution.", desc: "We supervise execution to ensure every formality is met: witnesses, notarization, and proper storage." },
  ],
  note: "An estate plan is, in a real sense, the last conversation you'll have with the people you love. We approach it accordingly."
};

ReactDOM.createRoot(document.getElementById("root")).render(<ServicePage data={estateData} />);
