:root {
  --text: #000;
  --muted: #374151;   /* gray-700 */
  --faint: #4b5563;   /* gray-600 */
  --rule: #d1d5db;    /* gray-300 */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background: #fff;
  color: var(--text);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  max-width: 48rem; /* max-w-3xl */
  margin: 0 auto;
  padding: 2rem 1rem; /* py-8 px-4 */
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.logo {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.site-header h1 {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 0.25rem;
}

.tagline {
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
}

/* Centered statement */
.statement {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.lede {
  max-width: 28rem; /* max-w-md */
  color: var(--muted);
  font-size: 1.125rem; /* text-lg */
  line-height: 1.625;  /* leading-relaxed */
}

.email {
  font-size: 0.875rem;
  color: var(--faint);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.email:hover {
  color: var(--text);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--faint);
}
