<!-- File: index.html -->
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="color-scheme" content="light" />
    <title>Thank You for Shopping With Us!</title>

    <!-- Adobe Fonts (Neue Haas Grotesk families) -->
    <link rel="stylesheet" href="https://use.typekit.net/bpl5kmr.css" />

    <!-- Favicons -->
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
    <link rel="manifest" href="/site.webmanifest">

	<!-- Umami -->
	<script defer src="https://u.artitus.com/script.js" data-website-id="3c221a46-3430-4ab4-b4b3-bb3ea1c9510a"></script>

    <style>
      :root {
        --accent: #f54029;
        --font-display: "neue-haas-grotesk-display", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
        --font-text: "neue-haas-grotesk-text", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      }

      /* Keep layout deterministic & typographically clean */
      *, *::before, *::after { box-sizing: border-box; }
      html, body { height: 100%; }
      body {
        margin: 0;
        font-family: var(--font-text);
        font-weight: 400;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background: #fff;
      }

      main.hero {
        min-height: 100vh; /* exact viewport */
        display: grid;
        place-items: center; /* exact center regardless of footer */
        text-align: center;
        padding: 4vmin; /* breathing room on tiny screens */
      }

      h1 {
        margin: 0;
        color: var(--accent);
        font-family: var(--font-display);
        font-weight: 700; /* Neue Haas Grotesk Display Pro 75 Bold */
        font-style: normal;
        text-transform: uppercase; /* all caps */
        line-height: 1; /* tighter, per request */
        letter-spacing: -0.02em;
        font-size: clamp(2rem, 8vw, 6rem);
      }

      footer {
        position: fixed;
        inset-block-end: 24px;
        inset-inline: 0;
        text-align: center;
        font-family: var(--font-text);
        font-weight: 400; /* Text Pro 55 Roman */
        font-style: normal;
        font-size: clamp(0.65rem, 1vw, 0.8rem); /* smaller */
        color: #000; /* International Typographic Style: neutral black */
        opacity: 1;
        padding-inline: 16px;
      }
    </style>
  </head>
  <body>
    <main class="hero" role="main">
      <h1 aria-label="Thank You for Shopping With Us!">Thank<br />
        You for<br />
        Shopping<br />
        With Us!</h1>
    </main>

    <footer>
      Copyright © Artitus. All Rights Reserved.
    </footer>
  </body>
</html>
