:root {
  --background: #f5f1e8;
  --paper: #fffdf8;
  --text: #202020;
  --muted: #66635d;
  --accent: #233d5b;
  --border: #d8d0c2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

.site-header,
main,
footer {
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  padding: 80px 0 45px;
  border-bottom: 1px solid var(--border);
}

.eyebrow,
.record-id,
.status {
  font-family: Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.78rem;
}

h1 {
  margin: 5px 0;
  color: var(--accent);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1;
}

.subtitle {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
}

main {
  padding: 45px 0 80px;
}

section {
  margin-bottom: 55px;
}

h2 {
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.record {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 24px;
  margin: 18px 0;
}

.record h3 {
  margin: 4px 0;
  font-size: 1.35rem;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

footer {
  padding: 25px 0 50px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
