:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --bg: #fffdf8;
  --surface: #ffffff;
  --ink: #191714;
  --muted: #6f675c;
  --line: #e4ddd0;
  --soft: #f6f1e8;
  --green: #174536;
  --red: #8b3a2f;
  --gold: #b78a42;
  --shadow: 0 12px 28px rgba(49, 39, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(280px, 520px) auto;
  min-height: 74px;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: fit-content;
}

.fallback-photo {
  align-items: center;
  background: var(--green);
  border-radius: 7px;
  color: #fff;
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  height: 38px;
  place-items: center;
  width: 38px;
}

.brand-mark {
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(23, 69, 54, 0.16);
  flex: 0 0 auto;
  height: 42px;
  width: 42px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.header-links {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

.site-search,
.hero-search {
  position: relative;
}

.site-search label,
.hero-search label {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.site-search label {
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  width: 1px;
}

.search-field {
  position: relative;
}

.site-search input,
.hero-search input {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  min-height: 44px;
  min-width: 0;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

.site-search input:focus,
.hero-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 69, 54, 0.12);
}

.search-results {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(25, 23, 20, 0.16);
  left: 0;
  max-height: min(430px, 70vh);
  overflow: auto;
  padding: 7px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
}

.search-result {
  border-radius: 7px;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
}

.search-result:hover,
.search-result:focus {
  background: var(--soft);
}

.search-result span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.08;
}

.search-result small,
.search-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.search-empty {
  padding: 12px;
}

.header-action,
.hero-search a,
.section-head > a,
.retailer-link,
.profile-link {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
}

.hero {
  margin: 0 auto;
  max-width: 960px;
  padding: 74px 24px 58px;
  text-align: center;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 0.98;
  margin: 0;
}

.hero > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 22px auto 0;
  max-width: 720px;
}

.hero-search {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 30px auto 0;
  max-width: 720px;
  padding: 14px;
  text-align: left;
}

.hero-search > div {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  position: relative;
}

.hero-search .search-results {
  grid-column: 1 / -1;
}

.hero-search input {
  min-height: 50px;
}

.stat-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px auto 0;
  max-width: 620px;
  padding-top: 22px;
}

.stat-row.compact {
  margin: 28px 0 0;
  max-width: 560px;
}

.stat-row div {
  display: grid;
  gap: 4px;
}

.stat-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.stat-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.people-section,
.catalog-main,
.profile-list {
  margin: 0 auto;
  max-width: 1120px;
  padding: 54px 24px;
}

.catalog-hero,
.catalog-results {
  margin: 0 auto;
  max-width: 1120px;
  padding: 44px 24px 24px;
}

.catalog-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  margin: 0;
}

.catalog-hero > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 720px;
}

.catalog-toolbar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 220px auto;
  margin-top: 24px;
  padding: 14px;
}

.catalog-field {
  display: grid;
  gap: 8px;
}

.catalog-field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-field input,
.catalog-field select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  min-height: 46px;
  min-width: 0;
  padding: 0 12px;
}

.catalog-reset {
  align-self: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 46px;
  padding: 0 14px;
}

.catalog-count {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  margin-top: 14px;
  text-transform: uppercase;
}

.catalog-results {
  padding-top: 10px;
}

.catalog-book-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.catalog-person-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-person-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(49, 39, 26, 0.04);
  display: grid;
  gap: 14px;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: 180px;
  padding: 16px;
  position: relative;
}

.card-overlay-link {
  border-radius: inherit;
  inset: 0;
  position: absolute;
  z-index: 1;
}

.card-overlay-link:focus {
  box-shadow: 0 0 0 3px rgba(23, 69, 54, 0.16);
  outline: none;
}

.catalog-person-card .category-meta a {
  position: relative;
  z-index: 2;
}

.catalog-person-card .person-photo,
.catalog-person-card .fallback-photo {
  border-radius: 8px;
  height: 74px;
  object-fit: cover;
  width: 74px;
}

.catalog-person-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
  margin: 8px 0 5px;
}

.catalog-person-card p {
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.catalog-person-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.catalog-person-stats span {
  background: var(--soft);
  border-radius: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
}

.catalog-load-more {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  margin: 18px auto 0;
  min-height: 44px;
  min-width: 180px;
  padding: 12px 18px;
}

.catalog-book-card {
  display: grid;
  gap: 18px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 18px;
}

.catalog-book-card + .catalog-book-card {
  border-top: 1px solid var(--line);
}

.catalog-book-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.08;
  margin: 8px 0 4px;
}

.catalog-book-stats {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
}

.catalog-book-stats strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-book-stats span {
  color: var(--muted);
  font-size: 14px;
}

.compact-signal {
  margin-top: 12px;
}

.homepage-book-list {
  margin-bottom: 48px;
}

.topic-section,
.recent-sources {
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 46px;
}

.topic-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-shortcuts a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 11px;
}

.source-mini-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.source-mini-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.source-mini-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
}

.source-mini-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.source-mini-card a {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.people-section {
  border-top: 1px solid var(--line);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-head h2,
.person-heading h2,
.source-section h2,
.profile-copy h1,
.profile-list h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  margin: 0;
}

.profile-copy h1 {
  font-size: clamp(48px, 6vw, 76px);
}

.section-head p,
.person-heading p,
.source-section p,
.profile-copy p {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 0;
  max-width: 640px;
}

.person-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.person-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(49, 39, 26, 0.04);
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 20px;
}

.person-card .person-photo,
.person-card .fallback-photo {
  border-radius: 8px;
  height: 88px;
  object-fit: cover;
  width: 88px;
}

.person-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.person-card small {
  color: var(--muted);
  line-height: 1.45;
}

.person-card em,
.profile-link {
  align-self: end;
  font-size: 13px;
  font-style: normal;
}

.person-card em {
  color: var(--green);
  font-weight: 850;
}

.topic-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 620px;
}

.topic-controls button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 36px;
  padding: 8px 11px;
}

.topic-controls button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.person-section {
  scroll-margin-top: 92px;
}

.person-section + .person-section {
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 46px;
}

.person-heading {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.heading-left {
  align-items: center;
  display: flex;
  gap: 16px;
}

.person-heading .person-photo,
.person-heading .fallback-photo {
  border-radius: 8px;
  height: 66px;
  object-fit: cover;
  width: 66px;
}

.book-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.book-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 18px;
}

.book-row + .book-row {
  border-top: 1px solid var(--line);
}

.cover-link {
  align-self: start;
}

.book-cover,
.fallback-cover {
  aspect-ratio: 0.68;
  border-radius: 6px;
  box-shadow: 0 12px 20px rgba(25, 23, 20, 0.1);
  height: auto;
  object-fit: cover;
  width: 96px;
}

.fallback-cover {
  align-items: flex-end;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 45%),
    var(--green);
  color: #fff;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
  padding: 11px;
}

.book-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.08;
  margin: 8px 0 4px;
}

.byline {
  color: var(--muted);
  margin: 0;
}

.author-authority {
  background: #fbf7ed;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 10px 12px;
}

.author-authority > span,
.source-badge {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.author-authority p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.author-authority a,
.author-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.book-meta,
.source-line,
.buy-row,
.small-person,
.trust-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.book-meta span,
.book-meta a {
  background: var(--soft);
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 8px;
}

.book-meta a {
  border: 1px solid transparent;
}

.book-meta a:hover,
.book-meta a:focus {
  background: #fff;
  border-color: var(--green);
  color: var(--green);
}

.catalog-active-filter {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  margin-top: 12px;
}

.catalog-active-filter strong {
  color: var(--ink);
}

.catalog-active-filter button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-height: 32px;
  padding: 0 10px;
}

blockquote {
  border-left: 3px solid var(--gold);
  color: #302a23;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
  margin: 16px 0;
  padding-left: 15px;
}

.citation-summary {
  background: #fffaf0;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line));
  border-radius: 8px;
  color: #4a3d28;
  line-height: 1.55;
  margin: 16px 0;
  padding: 12px 14px;
}

.citation-summary strong {
  color: #302a23;
}

.trust-badges {
  margin-top: 18px;
}

.trust-badges span {
  background: #f6efe1;
  border: 1px solid color-mix(in srgb, var(--gold) 38%, var(--line));
  border-radius: 999px;
  color: #4a3d28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 7px 10px;
}

.profile-copy .trust-badges {
  margin: 14px 0 10px;
}

.source-card {
  align-items: start;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 16px;
  padding: 14px;
}

.source-card strong {
  display: block;
  font-size: 15px;
  margin-top: 3px;
}

.source-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 5px 0 0;
}

.source-card .source-note {
  color: #4a3d28;
  font-weight: 720;
}

.source-card > a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  padding: 8px 10px;
  white-space: nowrap;
}

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

.source-line span:first-child {
  color: var(--red);
  font-weight: 850;
}

.source-line a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.buy-row {
  margin-top: 14px;
}

.retailer-link {
  min-height: 34px;
  padding: 8px 11px;
}

.retailer-disclosure {
  background: #f8f5ee;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #61564a;
  flex-basis: 100%;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 4px;
  padding: 8px 10px;
}

.retailer-disclosure strong {
  color: #302a23;
}

.retailer-disclosure a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-section {
  background: var(--green);
  border-radius: 8px;
  color: #fff;
  margin-top: 52px;
  padding: 28px;
}

.source-section p {
  color: rgba(255, 255, 255, 0.78);
}

.source-section a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-hero,
.policy-body {
  margin: 0 auto;
  max-width: 920px;
  padding: 46px 28px 0;
}

.policy-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 18px 0 16px;
}

.policy-hero p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.policy-body {
  display: grid;
  gap: 18px;
  padding-bottom: 70px;
}

.policy-body article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.policy-body h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 10px;
}

.policy-body p,
.policy-body li {
  color: var(--muted);
  line-height: 1.62;
}

.policy-body p {
  margin: 0 0 10px;
}

.policy-body ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

code {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  padding: 2px 5px;
}

.empty-state {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.empty-state h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin: 0 0 8px;
}

.empty-state p {
  color: var(--muted);
  margin: 0;
}

.profile-hero {
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1180px;
  padding: 38px 24px 58px;
}

.crumbs {
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 28px;
}

.crumbs a {
  color: var(--green);
}

.profile-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 360px minmax(0, 1fr);
}

.book-profile-grid {
  grid-template-columns: 260px minmax(0, 1fr);
}

.profile-media {
  margin: 0;
}

.profile-photo {
  aspect-ratio: 0.86;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.profile-cover {
  aspect-ratio: 0.68;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(25, 23, 20, 0.18);
  object-fit: cover;
  width: 100%;
}

.image-credit {
  color: var(--muted);
  display: inline-block;
  font-size: 12px;
  font-weight: 750;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-role {
  color: var(--red) !important;
  font-weight: 850;
}

.bio-link {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  margin-top: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bio-link::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 6px;
  margin-left: 6px;
  transform: translateY(1px) rotate(45deg);
  width: 6px;
}

.profile-copy .book-meta {
  margin-top: 18px;
}

.profile-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.profile-map {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -28px auto 0;
  max-width: 1120px;
  padding: 0 24px 24px;
  position: relative;
  z-index: 2;
}

.lane-card {
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 178px;
  padding: 16px;
}

.lane-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.lane-copy span {
  color: var(--red);
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lane-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.08;
}

.lane-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 8px 0 0;
}

.lane-copy em {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  margin-top: auto;
  padding-top: 12px;
}

.lane-cover {
  align-self: end;
  aspect-ratio: 0.68;
  border-radius: 6px;
  box-shadow: 0 10px 18px rgba(25, 23, 20, 0.12);
  object-fit: cover;
  width: 62px;
}

.profile-jumps a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  padding: 9px 11px;
}

.large-links .retailer-link {
  min-height: 42px;
  padding: 11px 15px;
}

.small-person {
  color: var(--green);
  font-weight: 850;
  margin: 14px 0 8px;
}

.small-person-photo {
  border-radius: 6px;
  height: 30px;
  object-fit: cover;
  width: 30px;
}

.authored-grid,
.author-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
}

.priority-section {
  background: linear-gradient(180deg, rgba(247, 241, 229, 0.72), transparent);
  border-bottom: 1px solid var(--line);
  max-width: none;
}

.priority-section > *,
.about-section > *,
.relation-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.authored-book,
.author-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.authored-book {
  grid-template-columns: 96px minmax(0, 1fr);
}

.relationship-book {
  border-style: dashed;
}

.relationship-label {
  color: var(--red);
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 10px;
  text-transform: uppercase;
}

.relationship-summary {
  color: var(--muted);
  line-height: 1.5;
  margin: 12px 0 0;
}

.authored-book h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
  margin: 8px 0 4px;
}

.author-card strong,
.author-card > a {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.1;
}

.author-card span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 8px;
  text-transform: uppercase;
}

.author-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px 36px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 860px) {
  .section-head,
  .person-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    align-items: start;
    gap: 10px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px 22px;
    position: static;
  }

  .site-search,
  .header-links {
    width: 100%;
  }

  .header-links {
    justify-content: space-between;
  }

  .site-header nav,
  .site-footer div {
    flex-wrap: wrap;
  }

  .hero {
    padding: 54px 22px 42px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .people-section,
  .catalog-main,
  .profile-list,
  .catalog-hero,
  .catalog-results {
    padding: 42px 22px;
  }

  .profile-hero {
    padding: 26px 22px 38px;
  }

  .crumbs {
    margin-bottom: 18px;
  }

  .person-grid,
  .stat-row,
  .profile-grid,
  .book-profile-grid,
  .profile-map,
  .catalog-person-list,
  .source-mini-grid {
    grid-template-columns: 1fr;
  }

  .profile-map {
    margin-top: -12px;
    padding: 0 22px 10px;
  }

  .catalog-results {
    padding-top: 10px;
  }

  .stat-row.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-grid {
    gap: 28px;
  }

  .person-profile .profile-copy {
    order: -1;
  }

  .profile-photo {
    aspect-ratio: 1.1;
    max-height: 360px;
  }

  .profile-cover {
    max-width: 260px;
  }

  .topic-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-action {
    display: none;
  }

  .site-header nav {
    gap: 18px;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .profile-copy h1 {
    font-size: 40px;
  }

  .hero-search > div,
  .catalog-toolbar,
  .book-row,
  .catalog-book-card,
  .catalog-person-card,
  .source-card,
  .authored-book,
  .author-grid {
    grid-template-columns: 1fr;
  }

  .authored-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .source-card > a {
    width: 100%;
  }

  .hero-search input,
  .hero-search a {
    width: 100%;
  }

  .book-cover,
  .fallback-cover {
    width: 116px;
  }
}
