:root {
  --ink: #0c0b09;
  --paper: #f4efe6;
  --gold: #b99457;
  --muted: #6f685d;
  --line: #d8cdbd;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
header, main, footer { width: min(900px, calc(100% - 40px)); margin-inline: auto; }
header { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.brand { color: #8b682e; font-weight: 700; letter-spacing: 4px; text-decoration: none; }
.back { color: var(--ink); text-underline-offset: 4px; }
main { padding: 64px 0 80px; }
h1, h2 { font-family: Georgia, serif; font-weight: 500; }
h1 { max-width: 15em; margin: 0; font-size: clamp(38px, 7vw, 66px); line-height: 1.05; }
h2 { margin: 44px 0 10px; font-size: 27px; }
p, li { max-width: 72ch; }
.lede, .updated { color: var(--muted); }
.lede { margin-top: 24px; font-size: 18px; }
a { color: #79571f; }
.arabic { margin-top: 70px; padding-top: 50px; border-top: 1px solid var(--line); direction: rtl; font-family: Tahoma, Arial, sans-serif; }
.arabic h1, .arabic h2 { font-family: Tahoma, Arial, sans-serif; }
footer { padding: 28px 0 50px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
@media (max-width: 560px) {
  header { align-items: flex-start; flex-direction: column; }
  main { padding-top: 42px; }
}
