:root {
  --bg: #fafaf7;
  --fg: #1c1c1c;
  --muted: #8a8a85;
  --max-width: 1200px;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --serif: "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header,
.content,
.site-footer {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.site-header {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.site-title {
  color: var(--fg);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content {
  flex: 1;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.content p {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  max-width: 60ch;
}

.site-footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 600px) {
  body {
    font-size: 1.4rem;
    line-height: 1.35;
  }
  .content p {
    max-width: none;
  }
}
