:root {
  --paper: #F7F0E3;
  --paper2: #FBF6EC;
  --ink: #2A2520;
  --ink-soft: #6B6258;
  --line: #E6DCC9;
  --amber: #C77F33;
  --amber-deep: #A8651F;
  --white: #FFFFFF;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  font-size: 17px;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 56px 24px 96px; }
header.site { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #D98B3C, #C0701F);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 20px;
  box-shadow: 0 4px 14px rgba(168,101,31,0.25);
}
.brand { font-family: Fraunces, Georgia, serif; font-weight: 600; font-size: 22px; }
h1 { font-family: Fraunces, Georgia, serif; font-weight: 600; font-size: 34px; line-height: 1.2; margin: 0 0 6px; }
h2 { font-family: Fraunces, Georgia, serif; font-weight: 600; font-size: 21px; margin: 32px 0 8px; }
.updated { color: var(--ink-soft); font-size: 14px; margin-bottom: 28px; }
p { margin: 0 0 14px; color: #3a342c; }
ul { margin: 0 0 16px; padding-left: 22px; color: #3a342c; }
li { margin: 0 0 8px; }
a { color: var(--amber-deep); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }
.lead { font-size: 19px; }
.card {
  background: var(--paper2); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 24px; margin: 22px 0;
}
nav.links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
footer { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.btn {
  display: inline-block; background: linear-gradient(135deg, #D98B3C, #C0701F);
  color: var(--white); padding: 12px 22px; border-radius: 12px; font-weight: 600;
}
.btn:hover { text-decoration: none; opacity: 0.94; }
