:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --text: #2d3748;
  --text-muted: #6b7280;
  --accent: #6b7d6a;
  --border: #e5e7eb;
  --max-width: 680px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding: 24px;
}

main {
  max-width: var(--max-width);
  margin: 48px auto 96px;
  background: var(--surface);
  padding: 56px 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  body { padding: 0; }
  main { margin: 0; padding: 32px 24px; border-radius: 0; border: none; }
}

header.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

header.site-header a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

header.site-header a:hover { color: var(--text); }

h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 20px;
  margin: 36px 0 12px;
  letter-spacing: -0.005em;
}

p, ul, ol { margin: 0 0 16px; }

ul, ol { padding-left: 24px; }

li { margin-bottom: 6px; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

.meta {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 32px;
}

.tagline {
  color: var(--text-muted);
  font-size: 18px;
  margin: 4px 0 32px;
}

footer {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  padding: 24px 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

footer a {
  color: var(--text-muted);
  margin: 0 12px;
}

.hero {
  text-align: center;
}
.hero .accent {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
