:root {
  --bg: #F6F1EA;
  --ink: #2E2420;
  --ink-soft: #7A6B5D;
  --accent: #7C2F2E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  padding: 28px 22px 48px;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
}

.back {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.back:hover {
  text-decoration: underline;
}

h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.doc h1 {
  margin-bottom: 22px;
}

.doc h4 {
  font-size: 13px;
  margin: 22px 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.doc p,
.doc li {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 8px;
}

.doc ul,
.doc ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.doc ol {
  list-style: decimal;
}

.doc ul {
  list-style: disc;
}

.doc a {
  color: var(--accent);
  font-weight: 600;
}

.doc strong {
  color: var(--ink);
}
