:root {
  color-scheme: light;
  --paper: #f4efe5;
  --ink: #171512;
  --muted: #70685e;
  --line: #c8baaa;
  --rust: #8e3d24;
  --moss: #536346;
  --lamp: #d5a642;
  --shadow: rgba(23, 21, 18, 0.1);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mark {
  text-decoration: none;
  font-weight: 700;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.landing {
  min-height: calc(100vh - 138px);
}

.title-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(48px, 10vh, 96px) clamp(20px, 6vw, 72px) 42px;
}

.kicker,
.byline {
  font-family: ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker {
  margin: 0 0 18px;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.2rem, 9vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.byline {
  margin: 20px 0 0;
  font-size: 1rem;
}

.witness-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin-top: clamp(42px, 8vw, 80px);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.witness-copy p {
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.record-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ebe1d1;
  padding: 22px clamp(20px, 6vw, 72px);
}

.record-strip p,
footer p,
.page p,
.page li {
  max-width: 760px;
  line-height: 1.6;
}

footer {
  padding: 24px clamp(20px, 6vw, 72px);
  color: var(--muted);
}

.page {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 72px) 20px;
}

.page h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.95;
}

.page h2 {
  margin-top: 42px;
  font-size: 1.4rem;
}

.ledger {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.ledger li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hidden-record {
  background:
    linear-gradient(90deg, transparent 0, transparent 28px, rgba(142, 61, 36, 0.08) 28px, rgba(142, 61, 36, 0.08) 29px),
    var(--paper);
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    justify-content: center;
  }
}
