:root {
  --bg: #faf9f7;
  --text: #1a1a1a;
  --text-muted: #4d4d4d;
  --border: #e0ddd8;
  --banner-bg: #1e3a5f;
  --banner-text: #faf9f7;
  --link: #1e3a5f;
  --link-hover: #152a45;
  --max: 38rem;
  --space: 1.25rem;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: var(--link);
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--link-hover);
}

.site-header,
.site-footer {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space);
  padding-right: var(--space);
}

.site-header {
  padding-top: clamp(3rem, 10vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.name {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.banner {
  margin: 0;
  display: inline-block;
  padding: 0.4em 0.9em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--banner-text);
  background: var(--banner-bg);
  border-radius: 0.2rem;
}

.site-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0.35rem 0 0;
}

.site-footer p:first-child {
  margin-top: 0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121416;
    --text: #f0efed;
    --text-muted: #a8a5a0;
    --border: #2a2c2f;
    --banner-bg: #2a3d5a;
    --banner-text: #f0efed;
    --link: #8cb4e8;
    --link-hover: #b3cdf2;
  }
}
