:root {
  --bg: #0b0c0f;
  --fg: #f2f3f5;
  --muted: #b6bbc6;
  --line: rgba(255,255,255,0.12);
  --link: #f2f3f5;
  --btn-bg: #f2f3f5;
  --btn-fg: #0b0c0f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}

.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}

.header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.title {
  font-size: 40px;
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--muted);
}

.micro {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.section p {
  margin: 0 0 12px;
}

.lead {
  color: var(--fg);
  font-weight: 600;
}

.toc {
  margin: 10px 0 0;
  padding-left: 22px;
}

.toc li {
  margin: 6px 0;
}

.song {
  font-style: italic;
}

.toc-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.availability {
  font-size: 16px;
}

.button {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  font-weight: 650;
}

.button:focus, .button:hover {
  opacity: 0.92;
}

.smallprint {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12.5px;
}

.footer {
  padding-top: 18px;
  border-bottom: none;
}
