/* The Bookkeepery Limited — brand styles
 *
 * The original brand font (Neue Haas Display Light) was never shipped, so the
 * site has always rendered in its Helvetica fallback. We keep that look with a
 * dependency-free Helvetica-style system stack. To adopt the licensed brand
 * font later: drop the woff2 in /fonts, add an @font-face, and prepend it here.
 */

:root {
  --ink: #222;
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 840px; /* vector SVG — crisp at any size, adjust freely */
  height: auto;
}

.mainText {
  font-size: clamp(1rem, 2.5vw, 16pt);
  font-weight: 300;
}

.contact {
  margin: 0;
  line-height: 1.8;
}

.contact a {
  color: var(--ink);
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
}

.sep {
  margin: 0 0.5rem;
  color: #999;
}
