:root {
  --paper: #f6f2e9;
  --paper-deep: #ebe5d8;
  --leaf: #fcf9f1;
  --ink: #292d28;
  --muted: #62675e;
  --rule: #d4cbbb;
  --accent: #754634;
  --green: #425447;
  --soft-green: #e3e8de;
  --serif:
    "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia,
    serif;
  --sans: "Avenir Next", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --measure: 1260px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1 {
  font-size: clamp(44px, 5.9vw, 86px);
  line-height: 1.035;
  letter-spacing: -0.043em;
  text-wrap: balance;
  margin-bottom: 26px;
}
h1 em,
h2 em {
  color: var(--accent);
  font-weight: 400;
}
h2 {
  font-size: clamp(30px, 3.1vw, 45px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 23px;
}
h3 {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
p {
  margin-bottom: 20px;
}
small {
  font-size: 12px;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border-radius: 0;
}
button[hidden],
[hidden] {
  display: none !important;
}
.page-width {
  max-width: var(--measure);
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}
.narrow {
  max-width: 900px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.quiet {
  font-size: 13px;
  font-family: var(--sans);
  color: var(--muted);
  line-height: 1.6;
}
.lead {
  max-width: 640px;
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 12px;
  background: var(--ink);
  color: white;
}
.skip:focus {
  top: 10px;
}
.site-header {
  max-width: 1440px;
  padding: 25px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: auto;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
}
.brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-dot {
  color: var(--accent);
  margin-left: -8px;
}
.brand-mark {
  font-size: 22px;
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 35px;
  color: var(--paper);
  background: var(--accent);
  margin-right: 5px;
  border-radius: 2px 6px 2px 2px;
  box-shadow: inset -3px 0 #ffffff22;
}
.desktop-nav {
  display: flex;
  gap: 28px;
}
.desktop-nav a,
.header-actions a {
  text-decoration: none;
}
.desktop-nav a:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}
.language {
  font-size: 10px;
  letter-spacing: 0.1em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
  background: var(--green);
  color: var(--leaf);
  border: 1px solid var(--green);
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #304336;
  transform: translateY(-1px);
}
.button.small {
  min-height: 39px;
  padding: 8px 16px;
  font-size: 11px;
  gap: 22px;
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.button.secondary:hover {
  background: var(--paper-deep);
}
.button.danger {
  background: #783b30;
  border-color: #783b30;
}
.text-link {
  font-size: 13px;
  font-family: var(--sans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  line-height: 1.5;
}
.text-link:hover {
  text-decoration: underline;
}
.mobile-menu {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  padding-top: 84px;
  padding-bottom: 74px;
  min-height: 670px;
  align-items: center;
}
.hero-copy > .eyebrow {
  margin-bottom: 29px;
}
.hero-description {
  max-width: 490px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 29px;
  flex-wrap: wrap;
}
.hero-actions .text-link {
  max-width: 205px;
  font-size: 11px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 42px;
}
.small-seal {
  font-size: 27px;
  color: var(--accent);
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding: 22px 0 45px 14px;
}
.book-object {
  position: relative;
  transform: rotate(-3deg);
  padding: 5px 6px 8px;
  background: #9a7154;
  border-radius: 2px 7px 7px 2px;
  box-shadow:
    0 23px 32px -23px #32261899,
    5px 6px 0 #ddd2bb,
    6px 8px 0 #8a674a;
}
.book-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--leaf);
  min-height: 405px;
}
.book-leaf {
  position: relative;
  padding: 25px 26px 45px;
  overflow: hidden;
}
.left-leaf {
  background: linear-gradient(90deg, #f6f0df 0, #fffaf0 85%, #d9cfb8 100%);
}
.right-leaf {
  background: linear-gradient(90deg, #c9bca344 0, #fef9ee 10%, #f5eddd 100%);
}
.running-head {
  font-family: var(--sans);
  font-size: 6px;
  letter-spacing: 0.12em;
  text-align: center;
  border-bottom: 1px solid #bcb39e;
  padding-bottom: 12px;
  color: #6c6b60;
  white-space: nowrap;
}
.book-chapter {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  margin: 26px 0 8px;
}
.book-leaf h2 {
  font-size: 28px;
  line-height: 1.09;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.book-rule {
  width: 28px;
  border-top: 1px solid var(--accent);
  margin-bottom: 18px;
}
.book-leaf p {
  font-size: 10px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.book-lede:first-letter {
  float: left;
  font-size: 34px;
  line-height: 0.9;
  padding: 3px 4px 0 0;
  color: var(--accent);
}
.folio {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 8px;
  color: var(--muted);
}
.mini-tree {
  margin: 43px -5px 28px;
  text-align: center;
}
.mini-parents {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.25;
}
.mini-parents small {
  display: block;
  font-size: 7px;
  margin-top: 8px;
  font-family: var(--sans);
  color: var(--muted);
}
.join {
  align-self: center;
  color: var(--accent);
}
.tree-line {
  height: 30px;
  width: 1px;
  background: #aa9c84;
  margin: 8px auto 0;
}
.mini-person {
  border: 1px solid #b2a68f;
  padding: 12px 5px;
  max-width: 156px;
  margin: 0 auto;
}
.mini-person .eyebrow {
  display: block;
  font-size: 7px;
  margin-bottom: 2px;
}
.mini-person strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
}
.mini-person small {
  display: block;
  font-size: 8px;
}
.transcript-slip {
  border-top: 1px solid #b9ae98;
  border-bottom: 1px solid #b9ae98;
  padding: 12px 0 4px;
}
.transcript-slip .eyebrow {
  font-size: 6px;
}
.transcript-slip p {
  font-size: 12px;
  font-style: italic;
  margin-top: 9px;
}
.book-citation {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-size: 6px;
  font-family: var(--mono);
  margin-top: 16px;
  color: var(--muted);
}
.book-ribbon {
  position: absolute;
  right: 33px;
  bottom: -20px;
  width: 19px;
  height: 50px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
  z-index: -1;
}
.book-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -47px;
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  font-style: italic;
  transform: rotate(3deg);
}
.discovery {
  padding-top: 45px;
  padding-bottom: 66px;
  border-top: 1px solid var(--rule);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.section-heading .eyebrow {
  margin-bottom: 11px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.coverage-box {
  border: 1px solid var(--rule);
  background: #fbf8f0;
}
.mode-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--rule);
  padding: 0 26px;
}
.mode-tabs a {
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  padding: 17px 0 13px;
  display: flex;
  gap: 10px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.mode-tabs a.active {
  color: var(--ink);
  border-color: var(--accent);
}
.coverage-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.65fr auto;
  align-items: end;
  gap: 18px;
  padding: 23px 26px 12px;
}
.coverage-form label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
input,
textarea,
select {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: #fffdf7;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}
textarea {
  resize: vertical;
}
input::placeholder {
  color: #818477;
}
.coverage-form input {
  margin-top: 8px;
  height: 45px;
  font-size: 12px;
}
.coverage-form .button {
  height: 45px;
  min-height: 45px;
}
.coverage-note {
  padding: 0 26px;
  margin: 5px 0 19px;
  font-size: 10px;
}
.coverage-results:not(:empty) {
  border-top: 1px solid var(--rule);
  padding: 25px;
}
.coverage-results h3 {
  margin-bottom: 6px;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin: 20px 0;
}
.coverage-item {
  padding: 18px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.coverage-item h4 {
  font-size: 18px;
  margin: 5px 0;
  font-weight: 500;
}
.coverage-item p {
  font: 12px/1.6 var(--sans);
  color: var(--muted);
  margin-bottom: 7px;
}
.coverage-item a {
  font: 11px var(--sans);
}
.coverage-item .coverage-status {
  font: 9px var(--sans);
  letter-spacing: 0.1em;
  color: var(--green);
}
.coverage-meta {
  font: 11px/1.6 var(--sans);
  color: var(--muted);
}
.product-section {
  padding-top: 32px;
  padding-bottom: 90px;
}
.product-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 35px;
}
.product-tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font: 12px var(--sans);
  padding: 13px 5px;
  min-width: 70px;
}
.product-tabs button[aria-selected="true"] {
  border-bottom-color: var(--accent);
  color: var(--ink);
}
.product-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 75px;
  align-items: center;
  min-height: 290px;
}
.editorial-copy {
  max-width: 400px;
}
.editorial-copy p {
  font-size: 16px;
  color: var(--muted);
}
.editorial-copy h3 {
  font-size: 37px;
}
.family-ledger {
  border-top: 1px solid var(--ink);
}
.family-ledger a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  font-size: 18px;
}
.family-ledger a:hover {
  background: var(--paper-deep);
}
.family-ledger strong {
  font-weight: 400;
}
.ledger-date {
  font: 10px var(--mono);
  color: var(--muted);
}
.ledger-source {
  font: 9px var(--mono);
  color: var(--accent);
}
.family-ledger > .eyebrow {
  margin-top: 17px;
  font-size: 8px;
}
.house-plate {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--rule);
  background: var(--paper-deep);
  font-size: 13px;
}
.house-number {
  font-size: 110px;
  line-height: 1.2;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 0 22px;
  margin-bottom: 17px;
}
.name-plate {
  padding: 30px;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 12px;
}
.name-plate strong {
  font-size: 65px;
  font-weight: 400;
}
.name-plate span {
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
}
.large-quote {
  font-size: 40px;
  line-height: 1.4;
  font-style: italic;
  margin: 0;
  border-left: 1px solid var(--accent);
  padding: 15px 30px;
}
.large-quote cite {
  display: block;
  font: 10px var(--sans);
  margin-top: 24px;
  color: var(--muted);
}
.evidence-section {
  padding: 72px 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.evidence-grid > div > p:not(.eyebrow) {
  max-width: 400px;
  font-size: 16px;
  color: var(--muted);
}
.provenance-chain {
  list-style: none;
  margin: 0;
  padding: 0;
}
.provenance-chain li {
  display: flex;
  gap: 20px;
  position: relative;
  padding: 0 0 24px;
}
.provenance-chain li:not(:last-child):before {
  content: "";
  position: absolute;
  width: 1px;
  top: 32px;
  bottom: 0;
  left: 16px;
  background: #a4ac9e;
}
.provenance-chain li > span {
  display: grid;
  place-items: center;
  font: 10px var(--mono);
  width: 33px;
  height: 33px;
  border: 1px solid #a4ac9e;
  border-radius: 50%;
  flex-shrink: 0;
}
.provenance-chain small {
  display: block;
  font: 8px var(--sans);
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 4px;
}
.provenance-chain strong,
.provenance-chain a {
  font-size: 22px;
  font-weight: 400;
}
.america-teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 75px;
  padding-top: 95px;
  padding-bottom: 95px;
  align-items: center;
}
.america-teaser p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
}
.journey-plate {
  border: 1px solid var(--rule);
  background: var(--paper-deep);
  padding: 37px 30px;
}
.journey-plate > .eyebrow {
  font-size: 8px;
}
.journey-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 31px;
  gap: 8px;
  padding: 45px 0;
}
.journey-line small {
  display: block;
  font: 9px var(--sans);
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.journey-line > span:nth-child(2) {
  font-size: 18px;
  color: var(--accent);
  white-space: nowrap;
}
.journey-records {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  font: 7px var(--mono);
  color: var(--muted);
}
.process-section {
  padding-top: 40px;
  padding-bottom: 80px;
  border-top: 1px solid var(--rule);
}
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  list-style: none;
  margin: 37px 0 0;
  padding: 0;
}
.process-list li {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.process-list span {
  font: 11px var(--mono);
  color: var(--accent);
}
.process-list h3 {
  font-size: 21px;
  margin: 20px 0 12px;
}
.process-list p {
  font: 12px/1.8 var(--sans);
  color: var(--muted);
}
.final-cta {
  text-align: center;
  border-top: 3px double var(--rule);
  padding-top: 68px;
  padding-bottom: 75px;
}
.final-cta h2 {
  font-size: clamp(38px, 4.6vw, 60px);
}
.footer {
  max-width: 1440px;
  margin: auto;
  border-top: 1px solid var(--rule);
  padding: 42px 48px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.footer .brand {
  font-size: 28px;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 15px;
}
.footer nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 34px;
  align-content: start;
  font: 11px var(--sans);
}
.footer nav a {
  text-decoration: none;
}
.footer nav a:hover {
  text-decoration: underline;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 17px;
  font: 8px var(--sans);
  letter-spacing: 0.13em;
  color: var(--muted);
}
.page-intro {
  padding-top: 80px;
  padding-bottom: 50px;
}
.page-intro h1 {
  max-width: 920px;
  font-size: clamp(40px, 5vw, 68px);
}
.search-page {
  padding-bottom: 75px;
}
.editorial-note {
  padding: 25px 0;
  margin-top: 30px;
  border-top: 1px solid var(--rule);
}
.article-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 65px;
  padding-top: 22px;
  padding-bottom: 90px;
}
.article-aside {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 17px;
  font: 12px var(--sans);
}
.article-aside .eyebrow {
  margin-bottom: 10px;
}
.prose {
  max-width: 700px;
}
.prose > section {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--rule);
}
.prose h2 {
  font-size: 31px;
}
.prose p {
  font-size: 18px;
  line-height: 1.8;
  color: #4e554c;
}
.source-directory {
  list-style: none;
  padding: 0;
}
.source-directory li {
  padding: 13px 0;
  border-top: 1px solid var(--rule);
  font: 14px var(--sans);
}
.atlantic-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  margin: 10px 0 60px;
  font: 12px var(--sans);
}
.atlantic-route b {
  color: var(--accent);
  font-weight: 400;
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 75px;
  padding-bottom: 95px;
}
.order-layout h1 {
  font-size: clamp(40px, 4.3vw, 61px);
}
.order-layout .lead {
  font-size: 18px;
}
.order-steps {
  list-style: none;
  padding: 15px 0;
  margin: 0 0 30px;
}
.order-steps li {
  display: flex;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
  font: 13px var(--sans);
}
.order-steps span {
  color: var(--accent);
  font: 11px var(--mono);
}
.order-form {
  border: 1px solid var(--rule);
  background: var(--leaf);
}
.order-form form {
  padding: 26px 30px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field > label {
  display: block;
  font: 12px var(--sans);
  margin-bottom: 7px;
}
.form-field > label > span {
  color: var(--accent);
}
.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checkbox-field input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}
.checkbox-field label {
  line-height: 1.7;
}
.order-form .button {
  width: 100%;
}
.order-form .quiet {
  font-size: 11px;
  margin: 20px 0 0;
}
.errorlist {
  color: #8a2e23;
  font: 12px/1.6 var(--sans);
  list-style: none;
  padding: 0;
  margin: 7px 0;
}
.errorlist.nonfield {
  border-left: 3px solid #8a2e23;
  background: #f6e8de;
  padding: 10px 15px;
}
.messages {
  max-width: 1200px;
  padding: 10px 30px;
  margin: auto;
}
.message {
  border-left: 3px solid var(--green);
  background: var(--soft-green);
  font: 13px/1.6 var(--sans);
  padding: 12px 20px;
  margin: 10px 0;
}
.message.error {
  border-color: #8a2e23;
  background: #f5e7dd;
}
.sample-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 27px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--rule);
}
.sample-topline .eyebrow {
  font-size: 8px;
  margin: 0;
}
.sample-topline .text-link {
  font-size: 10px;
}
.sample-title {
  padding-top: 63px;
  padding-bottom: 28px;
}
.sample-title h1 {
  font-size: clamp(38px, 4.6vw, 64px);
}
.sample-title p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}
.book-nav {
  display: flex;
  gap: 30px;
  border-top: 3px double var(--ink);
  border-bottom: 1px solid var(--rule);
  font: 12px var(--sans);
  margin-bottom: 40px;
  overflow: auto;
}
.book-nav a {
  padding: 15px 0;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.book-nav a[aria-current] {
  border-color: var(--accent);
  color: var(--accent);
}
.sample-family {
  padding: 15px 0 25px;
}
.sample-parents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 660px;
  gap: 30px;
  margin: auto;
}
.person-tile {
  display: block;
  position: relative;
  border: 1px solid var(--rule);
  border-top: 3px solid #869180;
  background: var(--leaf);
  padding: 24px;
  text-decoration: none;
}
.person-tile:hover {
  background: var(--paper-deep);
}
.person-tile .eyebrow {
  font-size: 8px;
  margin: 0;
}
.person-tile h2 {
  font-size: 25px;
  margin: 12px 0 10px;
}
.person-tile p {
  font-size: 14px;
  color: var(--muted);
}
.person-tile small {
  font: 9px var(--mono);
  color: var(--muted);
}
.key-person {
  border-top-color: var(--accent);
  background: #eee5d8;
}
.family-connector {
  height: 50px;
  width: 1px;
  background: var(--rule);
  margin: auto;
}
.sample-children {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.sample-attribution {
  font: 10px/1.7 var(--sans);
  color: var(--muted);
  margin: 18px 0 28px;
}
.sample-article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  border-top: 1px solid var(--rule);
  padding: 38px 0 70px;
  max-width: 900px;
}
.sample-article h2 {
  font-size: 32px;
}
.sample-article p {
  color: var(--muted);
}
.chapter-number {
  font-size: 65px;
  color: var(--accent);
  line-height: 1;
}
.source-spread {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 20px 0 80px;
}
.source-spread h2 {
  font-size: 36px;
}
.metadata {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  font: 12px/1.6 var(--sans);
  margin: 30px 0;
}
.metadata dt {
  color: var(--muted);
}
.metadata dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.transcription-sheet {
  border: 1px solid var(--rule);
  padding: 32px;
  background: var(--leaf);
}
.transcription-sheet pre {
  font: 18px/1.8 var(--serif);
  white-space: pre-wrap;
}
.transcription-sheet summary {
  font: 12px var(--sans);
  cursor: pointer;
}
.transcription-sheet details {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.transcription-sheet details p {
  font-size: 16px;
  margin-top: 20px;
}
.alias-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.alias-list span {
  border: 1px solid var(--rule);
  padding: 8px 18px;
  font-size: 20px;
}
.alias-list small {
  font: 9px var(--sans);
  color: var(--muted);
  margin-left: 10px;
}
.reading-room .product-panel {
  padding-bottom: 80px;
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 95px;
  }
  .book-spread {
    min-height: 445px;
  }
  .book-leaf {
    padding-top: 29px;
  }
  .book-leaf h2 {
    font-size: 32px;
  }
  .book-leaf p {
    font-size: 11px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 17px;
  }
  .site-header {
    padding: 22px 30px;
    gap: 20px;
  }
  .hero {
    gap: 20px;
    padding-top: 65px;
  }
  .book-leaf {
    padding: 20px 19px 40px;
  }
  .book-leaf h2 {
    font-size: 24px;
  }
  .book-leaf p {
    font-size: 9px;
  }
  .book-spread {
    min-height: 365px;
  }
  .mini-tree {
    margin-top: 32px;
  }
  .mini-person strong {
    font-size: 14px;
  }
  .running-head {
    font-size: 5px;
  }
  .hero-actions {
    gap: 16px;
  }
  .coverage-form {
    grid-template-columns: 1fr 1fr 0.6fr;
  }
  .coverage-form .button {
    grid-column: 1/-1;
  }
  .evidence-grid {
    gap: 60px;
  }
  .order-layout {
    gap: 45px;
  }
  .product-panel {
    gap: 40px;
  }
  .sample-children {
    gap: 10px;
  }
  .person-tile {
    padding: 17px;
  }
  .person-tile h2 {
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  .page-width {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-header {
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand {
    font-size: 28px;
  }
  .brand-mark {
    width: 26px;
    height: 30px;
    font-size: 20px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
    gap: 15px;
  }
  .header-actions .button {
    font-size: 10px;
    min-height: 36px;
    padding: 7px 12px;
    gap: 12px;
  }
  .mobile-menu {
    display: block;
    position: relative;
    font: 11px var(--sans);
  }
  .mobile-menu summary {
    cursor: pointer;
    padding: 9px;
  }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 10;
    background: var(--leaf);
    border: 1px solid var(--rule);
    padding: 17px;
    display: grid;
    gap: 18px;
    min-width: 160px;
    box-shadow: 0 5px 20px #0001;
  }
  .mobile-menu a {
    text-decoration: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 45px;
    padding-bottom: 70px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-description {
    max-width: 560px;
    font-size: 17px;
  }
  .hero-footnote {
    margin-top: 24px;
  }
  .hero-visual {
    max-width: 575px;
    width: 100%;
    padding: 10px 10px 30px;
    margin: 10px auto 0;
  }
  .book-spread {
    min-height: 375px;
  }
  .book-leaf {
    padding: 25px 26px 45px;
  }
  .book-leaf h2 {
    font-size: 29px;
  }
  .book-leaf p {
    font-size: 11px;
  }
  .running-head {
    font-size: 6px;
  }
  .mini-person strong {
    font-size: 17px;
  }
  .mini-tree {
    margin-top: 40px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .section-heading > p br {
    display: none;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .coverage-form {
    gap: 13px;
    padding: 20px;
  }
  .coverage-note {
    padding: 0 20px;
  }
  .mode-tabs {
    gap: 20px;
    padding: 0 20px;
  }
  .mode-tabs a {
    font-size: 10px;
  }
  .product-section {
    padding-bottom: 50px;
  }
  .product-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .editorial-copy {
    max-width: none;
  }
  .family-ledger a {
    grid-template-columns: 85px 1fr auto;
  }
  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .evidence-section {
    padding: 45px 0;
  }
  .provenance-chain {
    padding-top: 10px;
  }
  .america-teaser {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .america-teaser .journey-plate {
    order: 2;
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-list li:last-child {
    grid-column: 1/-1;
  }
  .footer {
    padding: 30px 24px 20px;
  }
  .footer nav {
    grid-template-columns: repeat(2, auto);
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 55px;
  }
  .article-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .article-aside .eyebrow {
    display: none;
  }
  .order-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 45px;
  }
  .order-layout h1 {
    font-size: 53px;
  }
  .order-layout .lead {
    max-width: 550px;
  }
  .order-steps {
    display: none;
  }
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sample-topline {
    gap: 10px;
  }
  .sample-topline .text-link {
    display: none;
  }
  .sample-children {
    grid-template-columns: repeat(2, 1fr);
  }
  .sample-title {
    padding-top: 40px;
  }
  .sample-article {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .chapter-number {
    font-size: 46px;
  }
  .source-spread {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .source-spread aside h2 br {
    display: none;
  }
  .source-spread .metadata {
    grid-template-columns: 120px 1fr;
  }
  .book-nav {
    gap: 25px;
  }
  .page-intro {
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .name-plate strong {
    font-size: 54px;
  }
}
@media (max-width: 430px) {
  .page-width {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header {
    padding: 17px 20px;
  }
  .brand {
    font-size: 25px;
  }
  .brand-mark {
    display: none;
  }
  .header-actions {
    gap: 12px;
  }
  .mobile-menu summary {
    padding: 8px 0;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    max-width: 160px;
    font-size: 10px;
  }
  .book-leaf {
    padding: 20px 15px 40px;
  }
  .book-leaf h2 {
    font-size: 23px;
  }
  .book-leaf p {
    font-size: 9px;
  }
  .book-spread {
    min-height: 340px;
  }
  .mini-tree {
    margin: 28px -3px 20px;
  }
  .mini-parents {
    font-size: 10px;
    gap: 6px;
  }
  .mini-person {
    padding: 10px 3px;
  }
  .mini-person strong {
    font-size: 14px;
  }
  .transcript-slip p {
    font-size: 10px;
  }
  .running-head {
    font-size: 4.7px;
  }
  .book-citation {
    font-size: 5px;
  }
  .coverage-form {
    grid-template-columns: 1fr 1fr;
  }
  .coverage-form label:first-child {
    grid-column: 1/-1;
  }
  .year-field {
    grid-column: auto;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  .coverage-results:not(:empty) {
    padding: 18px;
  }
  .mode-tabs {
    gap: 15px;
    padding: 0 17px;
  }
  .mode-tabs a {
    font-size: 9px;
  }
  .ledger-source {
    font-size: 8px;
  }
  .family-ledger a {
    font-size: 17px;
    gap: 10px;
    grid-template-columns: 80px 1fr auto;
  }
  .sample-parents {
    gap: 12px;
  }
  .person-tile h2 {
    font-size: 20px;
  }
  .sample-children .person-tile {
    padding: 15px;
  }
  .order-form form {
    padding: 20px;
  }
  .product-tabs {
    gap: 10px;
    justify-content: space-between;
  }
  .product-tabs button {
    min-width: 55px;
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 7px;
  }
  .journey-plate {
    padding: 23px;
  }
  .journey-line {
    font-size: 26px;
  }
  .journey-line > span:nth-child(2) {
    font-size: 12px;
  }
  .transcription-sheet {
    padding: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  body {
    background: white;
    font-size: 11pt;
    color: black;
  }
  .site-header,
  .footer,
  .book-nav,
  .button,
  .skip,
  .messages {
    display: none !important;
  }
  .page-width {
    padding: 0;
    max-width: none;
  }
  .sample-title {
    padding-top: 0;
  }
  .sample-article,
  .source-spread {
    break-inside: avoid;
  }
  .person-tile {
    break-inside: avoid;
  }
  .prose {
    max-width: none;
  }
  a {
    color: black;
    text-decoration: none;
  }
  a[href^="https"]:after {
    content: " (" attr(href) ")";
    font-size: 8pt;
  }
  .book-object {
    transform: none;
    box-shadow: none;
  }
}
.source-landscape {
  padding-top: 28px;
  padding-bottom: 60px;
  border-top: 1px solid var(--rule);
}
.source-landscape-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
  margin-top: 30px;
}
.source-landscape-list a {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  font: 9px var(--mono);
  color: var(--accent);
  text-decoration: none;
  align-items: center;
}
.source-landscape-list a span {
  font: 19px var(--serif);
  color: var(--ink);
  flex: 1;
}
.source-landscape-list a:hover span {
  color: var(--accent);
}
.packages-section {
  padding-top: 20px;
  padding-bottom: 75px;
}
.package-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.package-columns article {
  padding: 30px 25px;
  border-right: 1px solid var(--rule);
}
.package-columns article:first-child {
  padding-left: 0;
}
.package-columns article:last-child {
  border-right: 0;
}
.package-columns .eyebrow {
  font-size: 8px;
  display: block;
}
.package-columns h3 {
  font-size: 28px;
  min-height: 67px;
}
.package-columns p {
  font-size: 16px;
  color: var(--muted);
}
.package-columns .text-link {
  font-size: 10px;
}
.package-featured {
  background: #e9ede3;
}
.deliverables {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 25px;
  font: 10px var(--sans);
  color: var(--muted);
}
.deliverables span:before {
  content: "✧";
  margin-right: 10px;
  color: var(--accent);
}
@media (max-width: 800px) {
  .source-landscape-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-columns {
    grid-template-columns: 1fr;
  }
  .package-columns article,
  .package-columns article:first-child {
    padding: 25px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .package-columns h3 {
    min-height: 0;
  }
  .source-landscape {
    padding-bottom: 35px;
  }
  .deliverables {
    font-size: 9px;
    gap: 15px;
  }
}
@media (max-width: 430px) {
  .source-landscape-list {
    grid-template-columns: 1fr;
  }
  .source-landscape-list a span {
    font-size: 21px;
  }
}
