// site/about.jsx — About page
function AboutPage() {
  const mvRef      = useReveal();
  const founderRef = useReveal();
  return (
    <div data-screen-label="02 About">
      <PageHeading
        eyebrow="The Firm"
        title="About"
        sub="A practice built on integrity, honesty and knowledge."
      />

      {/* Mission & Vision */}
      <section className="section-navy" data-comment-anchor="about-mission-vision">
        <div className="container">
          <div ref={mvRef} className="mv-grid stagger-grid">
            <div className="mv-block">
              <span className="mv-eyebrow">01 &nbsp;—&nbsp; Mission</span>
              <h2>Our Mission</h2>
              <span className="mv-rule" aria-hidden="true"></span>
              <p>
                Our mission is to empower individuals, families and businesses to secure their financial futures and realize their dreams. With unwavering dedication to our clients' success, we provide personalized, comprehensive wealth management solutions across their personal and business needs.
              </p>
            </div>
            <div className="mv-block">
              <span className="mv-eyebrow">02 &nbsp;—&nbsp; Vision</span>
              <h2>Our Vision</h2>
              <span className="mv-rule" aria-hidden="true"></span>
              <p>
                Our vision is to be a trusted partner and beacon for your financial prosperity. We aspire to exceed expectations and make a lasting impact in your lives and businesses and be a friendly advisor that inspires confidence and provides thoughtful solutions.
              </p>
            </div>
          </div>
        </div>
      </section>

      {/* Meet The Founder */}
      <section className="section-navy" data-comment-anchor="about-founder" style={{ paddingTop: 0 }}>
        <div className="container">
          <div ref={founderRef} className="founder stagger-grid">
            <div className="founder-copy">
              <span className="mv-eyebrow">Meet The Founder</span>
              <h2 style={{ marginTop: 14 }}>Abhineet Rai</h2>
              <span className="founder-rule" aria-hidden="true"></span>
              <p>
                Abhineet established Rai Wealth Management Ltd with core values of integrity, honesty and knowledge to provide the best in class products and services to the clients. With over two decades of banking experience at leading banks, he understands the needs of a diverse range of clients and how to cater to them with a principled approach. The cornerstone of Rai Wealth Management is in providing you a better quality of life, where you are left with doing the things that matter to you and your family the most.
              </p>
              <p>
                Abhineet's ethics comes from his Forces background. He completed his Army training from the National Defence Academy (NDA), in India and then went on to do his Masters in Business Administration (MBA). He completed his Certifications in Investment Planning, Securities &amp; Derivatives, and in Regulated Mortgage advice.
              </p>
              <p>
                Prior to establishing Rai Wealth Management, Abhineet served as a Director in Private Banking at banking giants such as Credit Suisse, Bank of Singapore and HSBC Private Bank in London. During his stints at the Private Banks, he has guided his clients to embark on a journey to financial freedom, providing them with investment expertise, property loans and insurance solutions, whilst ensuring that tax efficiency is maintained.
              </p>
              <p>
                Having a trustworthy professional and a wealth adviser can benefit you to enjoy precious time with loved ones, safeguarding your children's future, and leaving a legacy behind. The firm is committed to building accountable, long-term relationships because he understands that you and your family deserve nothing but the best.
              </p>
              <p>
                After work hours, Abhineet likes playing cricket or can be seen burning calories on the Cross trainer. An avid Chelsea Football Club supporter he enjoys spending time watching the games with his family. In his spare time he enjoys travelling and writing poetry.
              </p>
            </div>
            <aside className="founder-portrait">
              <div className="portrait-frame">
                <img src="./assets/people/abhineet-rai-main.jpg" alt="Portrait of Abhineet Rai" />
              </div>
              <div className="name">Abhineet Rai</div>
              <div className="title">Founder &nbsp;·&nbsp; Wealth Adviser</div>
            </aside>
          </div>
        </div>
      </section>
    </div>
  );
}

window.AboutPage = AboutPage;
