<!DOCTYPE html>

<html lang="de">

<head>

  <meta charset="UTF-8" />

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

  <title>kantner.pro</title>

  <meta name="description" content="Diskrete Beratung. Klarheit durch Erfahrung." />

  <style>

    :root {

      --bg: #0f0f10;

      --fg: #e6e6e6;

      --muted: #9a9a9a;

      --accent: #b7a46a; /* dezentes Gold */

    }


    * {

      box-sizing: border-box;

    }


    body {

      margin: 0;

      min-height: 100vh;

      background: var(--bg);

      color: var(--fg);

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

      letter-spacing: 0.2px;

      display: flex;

      flex-direction: column;

      justify-content: center;

      align-items: center;

    }


    .container {

      max-width: 720px;

      padding: 3rem 2rem;

      text-align: center;

    }


    .brand {

      font-size: 1.4rem;

      letter-spacing: 0.25em;

      text-transform: uppercase;

      margin-bottom: 4rem;

      color: var(--accent);

    }


    h1 {

      font-size: 2.1rem;

      font-weight: 300;

      margin: 0 0 1.5rem 0;

    }


    p {

      font-size: 1.05rem;

      line-height: 1.7;

      color: var(--muted);

      margin: 0 auto 3rem auto;

      max-width: 560px;

    }


    .contact {

      font-size: 0.95rem;

      letter-spacing: 0.15em;

      text-transform: uppercase;

      color: var(--fg);

      text-decoration: none;

      border-bottom: 1px solid var(--accent);

      padding-bottom: 0.25rem;

    }


    footer {

      position: absolute;

      bottom: 2rem;

      font-size: 0.8rem;

      color: var(--muted);

    }


    footer a {

      color: var(--muted);

      text-decoration: none;

      margin: 0 0.5rem;

    }


    footer a:hover {

      color: var(--fg);

    }

  </style>

</head>

<body>

  <div class="container">

    <div class="brand">KANTNER</div>


    <h1>Klarheit entsteht im Stillen.</h1>


    <p>

      Beratung für Menschen und Situationen, in denen Diskretion,

      Erfahrung und unabhängiges Denken entscheidend sind.

    </p>


    <a class="contact" href="mailto:dm@kantner.pro">Kontakt auf Anfrage</a>

  </div>


  <footer>

    <a href="#">Impressum</a> · <a href="#">Datenschutz</a>

  </footer>

</body>

</html>