:root {
  --accent: #1f6feb;
  --text: #1c1e21;
  --muted: #606770;
  --bg: #ffffff;
  --border: #e4e6eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.site-header {
  padding: 4rem 1.5rem 1rem;
  text-align: center;
}

.site-header h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0;
  color: var(--muted);
}

.content {
  flex: 1;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content p {
  margin: 1rem 0;
}

.contact-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
}
