:root {
  --color-bg: #14110f;
  --color-surface: #1f1b18;
  --color-text: #ece6dd;
  --color-muted: #a89e90;
  --color-accent: #d9a441;
  --color-border: #332d27;
  --max-width: 720px;
  --radius: 10px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.5rem;
  color: var(--color-accent);
}

.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-header .brand {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.1rem;
}

.site-header .brand:hover {
  text-decoration: none;
}

.site-header nav a {
  margin-left: 20px;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  margin-top: 4rem;
  padding: 24px 0;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
