<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8" />

  <meta name="viewport" content="width=device-width,initial-scale=1" />

  <title>Clarity Organizational Services</title>

  <meta name="description" content="Professional document organization for complex situations." />

  <link rel="stylesheet" href="styles.css" />

</head>

<body>


<header class="nav">

  <div class="container nav-inner">

    <div class="brand">

      <img class="logo" src="logo.png" alt="Clarity Organizational Services logo" />

      <div class="brand-text">

        <strong>Clarity Organizational Services</strong>

        <span>Professional document organization for complex situations.</span>

      </div>

    </div>


    <nav class="nav-links">

      <a class="active" href="index.html">Home</a>

      <a href="what-we-do.html">What We Do</a>

      <a href="pricing.html">Pricing</a>

      <a href="about.html">About</a>

      <a href="contact.html">Contact</a>

    </nav>

  </div>

</header>


<main class="container">

  <section class="hero">

    <span class="badge">Calm, confidential, methodical support</span>

    <h1>From paperwork overload to clear, usable records</h1>

    <p>

      I help overwhelmed individuals and families organize complex documents related to court matters,

      insurance claims, and administrative processes—so you know what you have, what’s missing,

      and what to do next.

    </p>

    <div class="cta-row">

      <a class="btn primary" href="contact.html">Contact</a>

      <a class="btn" href="what-we-do.html">See what I do</a>

    </div>

  </section>


  <section class="section">

    <p class="kicker">Typical outcomes</p>


    <div class="grid">

      <div class="card third">

        <h3>Organized documents</h3>

        <p>Clean folder structure + consistent file naming.</p>

      </div>


      <div class="card third">

        <h3>Clear timelines</h3>

        <p>Chronology you can understand and reference.</p>

      </div>


      <div class="card third">

        <h3>Gap check</h3>

        <p>Missing/incomplete items flagged for follow-up.</p>

      </div>

    </div>


    <div class="hr"></div>


    <div class="notice">

      <strong>Note:</strong> Services are organizational and preparatory in nature and do not constitute legal advice.

    </div>

  </section>

</main>


<footer class="footer">

  <div class="container">© <span id="y"></span> Clarity Organizational Services</div>

</footer>


<script>

  document.getElementById("y").textContent = new Date().getFullYear();

</script>


</body>

</html>