:root {
  --bg: #f7f6f3;
  --text: #111111;
  --muted: #676767;
  --line: #d8d6d0;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  text-align: center;
}

.mark {
  width: min(180px, 44vw);
  height: auto;
  margin-bottom: 40px;
}

.intro {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.tagline {
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text);
}

.note {
  margin: 52px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}

.contact:hover {
  border-bottom-color: var(--text);
}
