:root {
  --bg: #f6f4ef;
  --fg: #2b2b2b;
  --muted: #6b6b6b;
  --link: #2b2b2b;
  --rule: #d8d4ca;
  --maxw: 640px;
}

[data-theme="dark"] {
  --bg: #1a1a1a;
  --fg: #e8e6e1;
  --muted: #9a958c;
  --link: #e8e6e1;
  --rule: #333;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 96px 32px 48px;
  flex: 1;
}

.name {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 80px;
}

section {
  margin-bottom: 56px;
}

h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--fg);
}

p {
  margin: 0 0 16px;
  color: var(--fg);
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

.links {
  color: var(--muted);
}

.links .sep {
  color: var(--muted);
  margin: 0 6px;
}

footer {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 24px 32px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.theme-toggle {
  display: flex;
  gap: 12px;
}

.theme-toggle button {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1;
}

.theme-toggle button:hover {
  color: var(--fg);
}

@media (max-width: 480px) {
  .container { padding: 64px 24px 32px; }
  .name { margin-bottom: 56px; }
  section { margin-bottom: 40px; }
}
