:root {
  --bg: #f5eddc;
  --surface: #fcf6e9;
  --surface-alt: #ede2cb;
  --text: #2b1e11;
  --text-dim: #77644b;
  --text-mute: #a69376;
  --border: rgba(35, 24, 14, 0.09);
  --accent: #b85a22;
  --moss: #5a6842;
  --radius: 10px;
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--accent); }

.wrap {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  padding: 28px 0 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: Fraunces, "Noto Serif KR", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

nav { display: flex; gap: 18px; }
nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
nav a[aria-current="page"] { color: var(--text); }

h1, h2 {
  font-family: "Noto Serif KR", Fraunces, serif;
  letter-spacing: -0.025em;
  line-height: 1.35;
  font-weight: 600;
}

h1 { font-size: clamp(28px, 5vw, 40px); margin: 28px 0 16px; }
h2 { font-size: 22px; margin: 36px 0 12px; }

.kicker {
  color: var(--moss);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

[data-answer] {
  font-size: 18px;
  color: var(--text);
}

.muted { color: var(--text-dim); }

.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 14px 0;
}

.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
}

.list { padding-left: 1.15em; }
.list li { margin: 8px 0; }

footer {
  margin: 56px 0 40px;
  color: var(--text-mute);
  font-size: 13px;
  border-top: 0.5px solid var(--border);
  padding-top: 20px;
}

footer a { color: var(--text-dim); }
