<!doctype html>

  <html lang="en">

  <head>

  <meta charset="utf-8">

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

  <title>alvita — coming soon</title>

  <link rel="preconnect" href="https://fonts.googleapis.com">

  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

  <link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">

  <style>

    :root {

      --ink: #151412;

      --paper: #F2EEE6;

      --amber: #D9892B;

      --graphite: #A9A49B;

    }

    * { box-sizing: border-box; }

    html, body {

      margin: 0;

      padding: 0;

      background: var(--ink);

      color: var(--paper);

      height: 100%;

    }

    body {

      display: flex;

      flex-direction: column;

      align-items: center;

      justify-content: center;

      min-height: 100vh;

      gap: 24px;

      padding: 24px;

    }

    @keyframes pulse {

      0%, 100% { opacity: 1; }

      50% { opacity: 0.3; }

    }

    h1 {

      font-family: 'Instrument Serif', serif;

      font-weight: 400;

      font-size: clamp(44px, 8vw, 88px);

      line-height: 1;

      margin: 0;

      text-align: center;

      display: flex;

      align-items: baseline;

      gap: 0.12em;

    }

    .diamond {

      width: 0.16em;

      height: 0.16em;

      background: var(--amber);

      transform: rotate(45deg);

      animation: pulse 2.4s cubic-bezier(0.33, 1, 0.68, 1) infinite;

      margin-left: 0.06em;

    }

    a {

      font-family: 'IBM Plex Mono', monospace;

      font-size: 12px;

      letter-spacing: 0.08em;

      text-transform: uppercase;

      color: var(--graphite);

      text-decoration: none;

    }

    a:hover { color: var(--paper); }

  </style>

  </head>

  <body>

    <h1>Coming soon<span class="diamond"></span></h1>

    <a href="mailto:alvita.gedvile@gmail.com">alvita.gedvile@gmail.com</a>

  </body>

  </html>