:root {
  --ink: #111111;
  --muted: #6b6b6b;
  --faint: #d8d8d8;
  --paper: #ffffff;
  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --avenir: "Avenir Next", "Avenir", -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.vspacer {
  flex: 1 1 0;
}

.vspacer--top {
  flex-grow: 2;
}

.hero {
  text-align: center;
  max-width: 40rem;
}

.mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 2.25rem;
}

.wordmark {
  font-family: var(--avenir);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}

.legal-name {
  font-family: var(--avenir);
  font-size: clamp(0.72rem, 1.6vw, 0.9rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.85rem 0 0;
}

.tagline {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.contact {
  display: inline-block;
  font-family: var(--avenir);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.7rem 1.7rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact:hover,
.contact:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.footer {
  font-family: var(--avenir);
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.footer p {
  margin: 0;
}

.footer .disclaimer {
  max-width: 32rem;
  margin: 0.65rem auto 0;
  color: var(--faint);
  color: #9a9a9a;
  font-size: 0.72rem;
}
