:root {
  --green-1000: #03100d;
  --green-950: #061713;
  --green-900: #0a201a;
  --green-850: #102a22;
  --green-800: #18362c;
  --parchment: #eee7d8;
  --paper: #f7f2e7;
  --paper-deep: #e5dcc8;
  --ink: #1a2a21;
  --ink-soft: #4c5549;
  --gold: #c49b4e;
  --gold-bright: #dfc17d;
  --gold-pale: #ead6a9;
  --olive: #667158;
  --teal: #477b72;
  --rust: #9a6348;
  --line: rgba(114, 91, 43, 0.35);
  --line-dark: rgba(218, 183, 106, 0.28);
  --shadow: 0 20px 50px rgba(4, 16, 13, 0.18);
  --shell: 1660px;
  --header-height: 86px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--green-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.has-overlay {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.08;
}

h3 {
  line-height: 1.16;
}

section,
footer {
  scroll-margin-top: var(--header-height);
}

:focus-visible {
  outline: 3px solid #f0c96f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  color: var(--green-950);
  background: var(--gold-pale);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 96px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  color: var(--gold-pale);
  background: var(--green-1000);
  border-bottom: 1px solid rgba(196, 155, 78, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - 64px), var(--shell));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  color: var(--gold-pale);
  background:
    radial-gradient(circle at center, transparent 55%, rgba(196, 155, 78, 0.16) 56%, transparent 60%),
    var(--green-800);
  box-shadow: inset 0 0 0 4px var(--green-950), inset 0 0 0 5px rgba(223, 193, 125, 0.6);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--gold);
  opacity: 0.8;
}

.brand-mark::before {
  top: 10px;
  height: 13px;
  transform: rotate(-21deg);
  transform-origin: bottom;
}

.brand-mark::after {
  bottom: 9px;
  height: 14px;
  transform: rotate(20deg);
  transform-origin: top;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 0.72rem;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy > span {
  color: #bbae86;
  font-size: 0.72rem;
  line-height: 1.35;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-family: var(--serif);
  font-size: 0.94rem;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #d1c4a3;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  color: #f1d99f;
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.88rem;
}

.button-gold {
  color: var(--green-950);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-gold:hover {
  background: #f0d490;
  border-color: #f0d490;
}

.button-outline,
.button-ghost {
  color: var(--gold-pale);
  background: transparent;
  border-color: var(--gold);
}

.button-outline:hover,
.button-ghost:hover {
  color: var(--green-950);
  background: var(--gold-pale);
}

.header-support[aria-current="page"] {
  color: var(--green-950);
  background: var(--gold-pale);
}

.button-dark {
  color: var(--gold-pale);
  background: var(--green-900);
  border-color: var(--green-900);
}

.button-dark:hover {
  color: #fff8e9;
  background: var(--green-800);
}

.icon-button,
.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--gold-pale);
  background: transparent;
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover {
  border-color: rgba(196, 155, 78, 0.6);
  background: rgba(196, 155, 78, 0.08);
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.account-access {
  position: relative;
  flex: 0 0 auto;
}

.account-access::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.account-access::after {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 14px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  content: "";
  transform: translateX(-50%);
}

.menu-button {
  display: none;
  align-content: center;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 1px;
  background: currentColor;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(1, 9, 7, 0.74);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(370px, 90vw);
  padding: 24px;
  color: var(--gold-pale);
  background: var(--green-950);
  border-left: 1px solid rgba(196, 155, 78, 0.45);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.32);
  overflow-y: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.drawer-title {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.drawer-close,
.dialog-close {
  font-family: var(--sans);
  font-size: 1.8rem;
  line-height: 1;
}

.mobile-drawer nav {
  display: grid;
  padding: 22px 0;
}

.mobile-drawer nav a {
  padding: 14px 2px;
  border-bottom: 1px solid rgba(218, 183, 106, 0.15);
  font-family: var(--serif);
  font-size: 1.08rem;
  text-decoration: none;
}

.mobile-drawer nav a:hover {
  color: #fff3d5;
}

.mobile-drawer nav a[aria-current="page"] {
  color: #fff3d5;
  border-bottom-color: var(--gold);
}

.drawer-note {
  padding-top: 18px;
  color: #a99f82;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--gold-pale);
  background: var(--green-950);
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 16, 13, 0.99) 0%, rgba(3, 16, 13, 0.96) 28%, rgba(3, 16, 13, 0.68) 46%, rgba(3, 16, 13, 0.08) 76%),
    linear-gradient(0deg, rgba(3, 16, 13, 0.78) 0%, transparent 25%, rgba(3, 16, 13, 0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 96px), var(--shell));
  min-height: 650px;
  align-items: center;
  margin: 0 auto;
  padding: 56px 0 70px;
}

.hero-copy {
  width: min(680px, 49%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: #7c6537;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 20px;
  color: #edd6a6;
  font-size: 4.45rem;
  line-height: 1.02;
}

.title-rule {
  display: flex;
  width: min(420px, 80%);
  align-items: center;
  margin: 0 0 24px;
}

.title-rule::before,
.title-rule::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--gold);
}

.title-rule span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: #d5ceb9;
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.52;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: flex;
  gap: 0;
  margin: 38px 0 0;
  color: #bcb292;
}

.hero-facts div {
  display: grid;
  min-width: 126px;
  padding: 0 22px;
  border-left: 1px solid rgba(196, 155, 78, 0.4);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.hero-facts dd {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 2;
  color: rgba(226, 203, 151, 0.72);
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.library-section {
  padding: 94px 0 108px;
  background:
    linear-gradient(rgba(115, 91, 41, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 44px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 80px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2 {
  color: var(--ink);
}

.section-heading > p,
.section-heading > div > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.06rem;
}

.library-tools {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(600px, 1.3fr);
  gap: 22px 30px;
  align-items: end;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.search-form label {
  display: block;
  margin-bottom: 8px;
  color: #716241;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-field {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  color: var(--olive);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid #ae9a70;
  border-radius: 4px;
}

.search-field:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(71, 123, 114, 0.2);
}

.search-field input {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search-field input::placeholder {
  color: #77786b;
}

.search-field input::-webkit-search-cancel-button {
  display: none;
}

.clear-search {
  padding: 8px 4px;
  border: 0;
  color: #5e5e4f;
  background: transparent;
  font-size: 0.78rem;
  text-decoration: underline;
  cursor: pointer;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid #b9aa89;
  border-radius: 4px;
  color: #3d483d;
  background: transparent;
  font-size: 0.8rem;
  cursor: pointer;
}

.filter-button span {
  margin-left: 6px;
  color: #88744a;
  font-family: var(--serif);
}

.filter-button:hover {
  border-color: var(--olive);
  background: rgba(102, 113, 88, 0.07);
}

.filter-button.is-active {
  color: var(--gold-pale);
  background: var(--green-900);
  border-color: var(--green-900);
}

.filter-button.is-active span {
  color: var(--gold-bright);
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  color: #666858;
  font-size: 0.82rem;
}

.results-bar p {
  margin: 0;
}

.results-count strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #aa966c;
  border-left: 1px solid #aa966c;
}

.library-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 340px;
  flex-direction: column;
  padding: 24px;
  background: rgba(247, 242, 231, 0.84);
  border-right: 1px solid #aa966c;
  border-bottom: 1px solid #aa966c;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.library-card::after {
  position: absolute;
  right: 18px;
  bottom: 61px;
  width: 58px;
  height: 58px;
  content: "";
  border: 1px solid rgba(102, 113, 88, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(102, 113, 88, 0.035), inset 0 0 0 17px rgba(102, 113, 88, 0.035);
  pointer-events: none;
}

.library-card:hover,
.library-card:focus-within {
  z-index: 1;
  background: #fbf6eb;
  box-shadow: var(--shadow);
}

.card-featured {
  background: #eae4d4;
}

.card-featured::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.card-topline {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: #71613f;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card-topline > span:nth-child(2) {
  min-width: 0;
}

.collection-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.65rem;
}

.essays-mark {
  color: var(--olive);
}

.guides-mark {
  color: var(--teal);
}

.maps-mark {
  color: var(--rust);
}

.archive-mark {
  color: #766039;
}

.library-card h3 {
  max-width: 310px;
  margin-bottom: 14px;
  color: #1a2a21;
  font-size: 1.65rem;
}

.library-card > p {
  max-width: 310px;
  margin-bottom: 22px;
  color: #51584e;
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.48;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 4px 8px;
  border: 1px solid #c7b99b;
  border-radius: 3px;
  color: #626555;
  background: rgba(255, 255, 255, 0.38);
  font-size: 0.67rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(114, 91, 43, 0.22);
  color: #7c715a;
  font-size: 0.73rem;
}

.card-footer button,
.card-footer a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 0;
  color: #33493b;
  background: transparent;
  font-family: var(--serif);
  font-size: 0.84rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.card-footer button:hover,
.card-footer a:hover {
  color: #8a5b30;
}

.empty-state {
  padding: 72px 24px;
  border: 1px solid #aa966c;
  text-align: center;
}

.empty-mark {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.empty-state p {
  color: var(--ink-soft);
}

.principles-section {
  padding: 98px 0;
  color: var(--gold-pale);
  background:
    radial-gradient(circle at 85% 20%, rgba(71, 123, 114, 0.2), transparent 24%),
    var(--green-900);
  border-top: 1px solid rgba(196, 155, 78, 0.4);
  border-bottom: 1px solid rgba(196, 155, 78, 0.4);
}

.principles-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: 92px;
}

.compact-heading {
  display: block;
  margin: 0;
}

.compact-heading h2 {
  margin-bottom: 25px;
  color: #ecd49f;
}

.compact-heading > p:last-child {
  color: #c3bda9;
  font-size: 1rem;
}

.principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.principles-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principles-list li > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.principles-list h3 {
  margin-bottom: 6px;
  color: #e3cd9b;
  font-size: 1.28rem;
}

.principles-list p {
  max-width: 660px;
  margin-bottom: 0;
  color: #b9b5a5;
  font-family: var(--serif);
  font-size: 0.94rem;
}

.about-section {
  padding: 94px 0;
  background: var(--parchment);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1.15fr);
  gap: 110px;
  align-items: start;
}

.about-layout h2 {
  max-width: 560px;
}

.about-copy {
  padding-left: 34px;
  border-left: 1px solid #ae996c;
}

.about-copy p {
  color: #414d43;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.support-section {
  padding: 94px 0;
  color: var(--gold-pale);
  background:
    linear-gradient(125deg, rgba(154, 99, 72, 0.1), transparent 40%),
    var(--green-950);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(380px, 0.82fr);
  gap: 100px;
  align-items: center;
}

.support-copy h2 {
  max-width: 680px;
  margin-bottom: 24px;
  color: #edd5a2;
}

.support-copy > p:not(.eyebrow, .support-status) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c4beaa;
  font-family: var(--serif);
  font-size: 1.04rem;
}

.support-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #b7d2c6;
  font-size: 0.82rem;
}

.newsletter-panel {
  padding: 38px 0 38px 46px;
  border-left: 1px solid rgba(196, 155, 78, 0.5);
}

.panel-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter-panel h3 {
  margin-bottom: 12px;
  color: #ecd3a0;
  font-size: 2rem;
}

.newsletter-panel > p:not(.panel-kicker) {
  max-width: 520px;
  margin-bottom: 24px;
  color: #afa991;
  font-family: var(--serif);
}

.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  color: #c3b791;
  font-size: 0.76rem;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-row input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid #7f724e;
  border-radius: 4px;
  outline: 0;
  color: #f3ead4;
  background: rgba(255, 255, 255, 0.04);
}

.newsletter-row input::placeholder {
  color: #858475;
}

.newsletter-row input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(223, 193, 125, 0.2);
}

.newsletter-row input[aria-invalid="true"] {
  border-color: #d58a68;
}

.form-message {
  min-height: 25px;
  margin: 8px 0 0;
  color: #d8a68f;
  font-size: 0.8rem;
}

.form-message.is-success {
  color: #b9d1c4;
}

.site-footer {
  padding: 58px 0 20px;
  color: #bcb398;
  background: var(--green-1000);
  border-top: 1px solid rgba(196, 155, 78, 0.26);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.7fr 1fr;
  gap: 64px;
  padding-bottom: 44px;
}

.footer-brand .brand-copy strong {
  color: var(--gold-pale);
}

.footer-grid nav,
.footer-note {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid nav a {
  width: fit-content;
  color: #b9b098;
  font-family: var(--serif);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--gold-pale);
  text-decoration: underline;
}

.footer-note p {
  max-width: 330px;
  margin: 0;
  color: #9e9987;
  font-family: var(--serif);
  font-size: 0.84rem;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 155, 78, 0.22);
  color: #858473;
  font-size: 0.73rem;
}

.footer-base p {
  margin: 0;
}

.detail-dialog {
  width: min(640px, 100%);
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.34);
}

.detail-dialog::backdrop {
  background: rgba(1, 9, 7, 0.72);
}

.dialog-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.dialog-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  color: var(--gold-pale);
  background: var(--green-950);
  border-bottom: 1px solid rgba(196, 155, 78, 0.45);
}

.dialog-collection {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-body {
  flex: 1;
  padding: 48px 52px 36px;
  overflow-y: auto;
}

.detail-number {
  margin-bottom: 12px;
  color: #8a6d34;
  font-family: var(--serif);
  font-size: 0.8rem;
}

.dialog-body h2 {
  margin-bottom: 18px;
  font-size: 2.75rem;
}

.detail-summary {
  margin-bottom: 28px;
  color: #4a554c;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.6;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.detail-meta div {
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.detail-meta div:last-child {
  border: 0;
}

.detail-meta dt {
  margin-bottom: 4px;
  color: #80755e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-meta dd {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.88rem;
}

.detail-rule {
  width: 100%;
  height: 1px;
  margin-bottom: 30px;
  background: var(--line);
}

.dialog-body > h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.detail-text p {
  color: #465047;
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.65;
}

.detail-tags {
  margin-top: 26px;
}

.dialog-actions {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--parchment);
  border-top: 1px solid var(--line);
}

.citation-status {
  margin: 0;
  color: #4b705f;
  font-size: 0.78rem;
}

.noscript-note {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 12px 20px;
  color: var(--green-950);
  background: var(--gold-pale);
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #365748;
  font-family: var(--serif);
  font-size: 0.93rem;
  font-weight: 700;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-link-light {
  margin-top: 24px;
  color: var(--gold-bright);
}

.inner-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--gold-pale);
  background: var(--green-950);
}

.inner-hero-art,
.inner-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero-art {
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.72;
}

.inner-hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 16, 13, 0.99) 0%, rgba(3, 16, 13, 0.93) 42%, rgba(3, 16, 13, 0.34) 75%, rgba(3, 16, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 16, 13, 0.66), transparent 48%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 0 64px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 40px;
  color: #b8ae91;
  font-size: 0.72rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold-pale);
  text-decoration: underline;
}

.inner-hero h1 {
  max-width: 790px;
  margin-bottom: 20px;
  color: #edd6a6;
  font-size: 4.25rem;
  line-height: 1.03;
}

.inner-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: #d1cab5;
  font-family: var(--serif);
  font-size: 1.16rem;
}

.directory-section {
  padding: 88px 0 96px;
  background: var(--parchment);
}

.directory-heading {
  margin-bottom: 38px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #aa966c;
  border-left: 1px solid #aa966c;
}

.directory-item {
  display: grid;
  min-width: 0;
  min-height: 132px;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid #aa966c;
  border-bottom: 1px solid #aa966c;
  color: var(--ink);
  text-decoration: none;
}

.directory-item:hover {
  background: rgba(255, 255, 255, 0.38);
}

.directory-item strong,
.directory-item small {
  display: block;
}

.directory-item strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.directory-item small {
  color: #5d665a;
  font-size: 0.78rem;
}

.directory-item > span:last-child {
  color: #84672e;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.library-page-section {
  padding-top: 92px;
}

.collection-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.collection-identity .collection-mark {
  width: 58px;
  height: 58px;
  color: var(--gold-bright);
  background: rgba(3, 16, 13, 0.6);
}

.collection-identity span:last-child {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.collection-overview {
  padding: 88px 0;
  background: var(--parchment);
}

.collection-overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(520px, 1.35fr);
  gap: 90px;
}

.collection-facts {
  margin: 0;
  border-top: 1px solid #aa966c;
}

.collection-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.collection-facts dt {
  color: #7a6841;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-facts dd {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.collection-overview-copy h2 {
  margin-bottom: 24px;
}

.collection-overview-copy > p {
  color: #465247;
  font-family: var(--serif);
  font-size: 1.07rem;
  line-height: 1.7;
}

.collection-overview-copy blockquote {
  margin: 32px 0 0;
  padding: 20px 0 0 26px;
  border-top: 1px solid #aa966c;
  border-left: 3px solid var(--teal);
  color: #344a3d;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.collection-entries-section {
  padding: 92px 0 104px;
  background: var(--paper);
}

.collection-entry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-method-section {
  padding: 92px 0;
  color: var(--gold-pale);
  background: var(--green-900);
}

.collection-method-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: 90px;
}

.collection-method-grid h2 {
  margin-bottom: 22px;
  color: #ead09a;
}

.collection-method-grid > div:first-child > p:last-child {
  color: #bdb7a3;
  font-family: var(--serif);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.method-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.method-list li > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.76rem;
}

.method-list h3 {
  margin-bottom: 5px;
  color: #e4cd9c;
  font-size: 1.18rem;
}

.method-list p {
  margin: 0;
  color: #b7b3a4;
  font-family: var(--serif);
  font-size: 0.92rem;
}

.related-band {
  padding: 52px 0;
  color: var(--gold-pale);
  background: var(--green-950);
  border-top: 1px solid var(--line-dark);
}

.related-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.related-band h2 {
  font-size: 2rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  color: #d7c79f;
  font-family: var(--serif);
  font-size: 0.84rem;
  text-decoration: none;
}

.related-links a:hover {
  border-color: var(--gold);
  color: #fff2d0;
}

.editorial-hero .inner-hero-art {
  opacity: 0.38;
  object-position: 80% center;
}

.editorial-section {
  padding: 96px 0;
  background: var(--parchment);
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(580px, 1.55fr);
  gap: 96px;
}

.page-index {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  border-top: 1px solid #aa966c;
}

.page-index h2 {
  padding: 17px 0 12px;
  color: #7a6841;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-index a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: #475246;
  font-family: var(--serif);
  font-size: 0.88rem;
  text-decoration: none;
}

.page-index a:hover {
  color: #805f28;
}

.editorial-content {
  min-width: 0;
}

.editorial-lede {
  max-width: 820px;
  margin-bottom: 58px;
  color: #34483d;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.55;
}

.content-block {
  max-width: 880px;
  padding: 44px 0;
  border-top: 1px solid #aa966c;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.content-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.content-block h2 {
  margin-bottom: 20px;
  font-size: 2.45rem;
}

.content-block h3 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.content-block p,
.content-block li {
  color: #465247;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.7;
}

.content-block ul {
  padding-left: 22px;
}

.content-block li + li {
  margin-top: 9px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid #aa966c;
  border-left: 1px solid #aa966c;
}

.commitment-item {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid #aa966c;
  border-bottom: 1px solid #aa966c;
}

.commitment-item > span {
  color: #8a6b31;
  font-family: var(--serif);
  font-size: 0.74rem;
}

.commitment-item h3 {
  margin: 18px 0 10px;
}

.commitment-item p {
  margin: 0;
  font-size: 0.91rem;
}

.transparency-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid #aa966c;
  scrollbar-color: var(--gold) #e4dcc9;
  scrollbar-width: thin;
}

.transparency-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.transparency-table-wrap::-webkit-scrollbar-track {
  background: #e4dcc9;
}

.transparency-table-wrap::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.transparency-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.transparency-table th,
.transparency-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.transparency-table th {
  color: #715e38;
  background: #e7dfce;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.transparency-table td {
  color: #465247;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.support-page-intro {
  padding: 90px 0;
  background: var(--parchment);
}

.support-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid #aa966c;
  border-left: 1px solid #aa966c;
}

.support-option {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid #aa966c;
  border-bottom: 1px solid #aa966c;
}

.support-option .collection-mark {
  margin-bottom: 26px;
}

.support-option h2 {
  margin-bottom: 15px;
  font-size: 1.75rem;
}

.support-option p {
  color: #4e594f;
  font-family: var(--serif);
}

.support-option .text-link {
  margin-top: auto;
}

.stewardship-section {
  padding: 92px 0;
  color: var(--gold-pale);
  background: var(--green-900);
}

.stewardship-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(500px, 1.2fr);
  gap: 90px;
}

.stewardship-grid h2 {
  color: #ead09a;
}

.stewardship-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.stewardship-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #c6bea7;
  font-family: var(--serif);
}

.stewardship-list strong {
  color: var(--gold-bright);
  font-weight: 400;
}

[hidden] {
  display: none !important;
}

@media (min-width: 1800px) {
  body {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  .library-card {
    min-height: 365px;
  }
}

@media (max-width: 1320px) {
  .header-inner,
  .section-shell,
  .hero-inner {
    width: min(calc(100% - 64px), var(--shell));
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .header-support {
    display: none;
  }

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

@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .desktop-nav,
  .search-jump,
  .search-jump-link {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-support,
  .menu-button {
    display: inline-grid;
  }

  .header-support {
    display: inline-flex;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-copy {
    width: 58%;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 16, 13, 0.99) 0%, rgba(3, 16, 13, 0.93) 38%, rgba(3, 16, 13, 0.45) 65%, rgba(3, 16, 13, 0.12) 100%),
      linear-gradient(0deg, rgba(3, 16, 13, 0.8), transparent 30%);
  }

  .section-heading {
    gap: 44px;
  }

  .library-tools {
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .principles-layout {
    gap: 56px;
  }

  .support-layout {
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-note {
    grid-column: 1 / -1;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 820px) {
  .header-inner,
  .section-shell,
  .hero-inner {
    width: min(calc(100% - 40px), var(--shell));
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .header-support {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .hero-art {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 16, 13, 0.99) 0%, rgba(3, 16, 13, 0.88) 55%, rgba(3, 16, 13, 0.3) 100%),
      linear-gradient(0deg, rgba(3, 16, 13, 0.84), transparent 35%);
  }

  .hero-copy {
    width: 72%;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-caption {
    display: none;
  }

  .library-section,
  .principles-section,
  .about-section,
  .support-section {
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .principles-layout,
  .about-layout,
  .support-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-copy {
    padding: 26px 0 0;
    border-top: 1px solid #ae996c;
    border-left: 0;
  }

  .newsletter-panel {
    padding: 36px 0 0;
    border-top: 1px solid rgba(196, 155, 78, 0.5);
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    gap: 42px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .inner-hero,
  .inner-hero-content {
    min-height: 430px;
  }

  .inner-hero h1 {
    font-size: 3.55rem;
  }

  .directory-grid,
  .collection-entry-grid,
  .commitment-grid,
  .support-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-overview-grid,
  .collection-method-grid,
  .editorial-layout,
  .stewardship-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .page-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }

  .page-index h2 {
    grid-column: 1 / -1;
  }

  .related-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  .header-inner,
  .section-shell,
  .hero-inner {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    gap: 10px;
  }

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

  .brand-copy strong {
    max-width: 220px;
    font-size: 0.94rem;
  }

  .brand-copy > span {
    display: none;
  }

  .header-actions {
    gap: 2px;
  }

  .menu-button {
    width: 42px;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-art {
    opacity: 0.68;
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 16, 13, 0.97), rgba(3, 16, 13, 0.68)),
      linear-gradient(0deg, rgba(3, 16, 13, 0.96) 0%, rgba(3, 16, 13, 0.52) 52%, rgba(3, 16, 13, 0.82) 100%);
  }

  .hero-inner {
    align-items: flex-start;
    padding: 58px 0 54px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 355px;
    margin-bottom: 18px;
    font-size: 3.05rem;
    line-height: 1.02;
  }

  .hero-lede {
    max-width: 345px;
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 30px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 0 10px;
  }

  .hero-facts dt {
    font-size: 1.08rem;
  }

  .hero-facts dd {
    font-size: 0.62rem;
  }

  h2,
  .compact-heading h2 {
    font-size: 2.45rem;
  }

  .library-section,
  .principles-section,
  .about-section,
  .support-section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .library-tools {
    padding: 18px 0;
  }

  .filter-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -16px;
    padding: 0 16px 5px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .results-bar {
    align-items: flex-start;
    padding: 15px 0;
  }

  .results-bar p:last-child {
    max-width: 185px;
    text-align: right;
  }

  .library-grid {
    grid-template-columns: 1fr;
  }

  .library-card {
    min-height: 322px;
    padding: 22px;
  }

  .library-card h3 {
    font-size: 1.58rem;
  }

  .principles-layout,
  .about-layout,
  .support-layout {
    gap: 38px;
  }

  .principles-list li {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .about-copy p {
    font-size: 1rem;
  }

  .support-copy h2 {
    font-size: 2.4rem;
  }

  .support-actions {
    display: grid;
  }

  .newsletter-panel h3 {
    font-size: 1.75rem;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .footer-brand,
  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-base {
    display: grid;
  }

  .detail-dialog {
    width: 100%;
  }

  .dialog-body {
    padding: 34px 24px 28px;
  }

  .dialog-body h2 {
    font-size: 2.25rem;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

  .detail-meta div {
    padding: 0 0 9px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dialog-actions {
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .inner-hero,
  .inner-hero-content {
    min-height: 500px;
  }

  .inner-hero-art {
    opacity: 0.48;
    object-position: 68% center;
  }

  .inner-hero-shade {
    background: linear-gradient(90deg, rgba(3, 16, 13, 0.97), rgba(3, 16, 13, 0.62));
  }

  .inner-hero-content {
    justify-content: flex-start;
    padding: 42px 0 52px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .inner-hero h1 {
    font-size: 3rem;
  }

  .inner-hero-content > p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .directory-section,
  .collection-overview,
  .collection-entries-section,
  .collection-method-section,
  .editorial-section,
  .support-page-intro,
  .stewardship-section {
    padding: 62px 0;
  }

  .directory-grid,
  .collection-entry-grid,
  .commitment-grid,
  .support-options-grid {
    grid-template-columns: 1fr;
  }

  .directory-item {
    min-height: 118px;
    grid-template-columns: 48px 1fr auto;
    padding: 20px;
  }

  .collection-overview-grid,
  .collection-method-grid,
  .editorial-layout,
  .stewardship-grid {
    gap: 38px;
  }

  .collection-facts div {
    grid-template-columns: 94px 1fr;
  }

  .collection-overview-copy blockquote {
    font-size: 1.05rem;
  }

  .page-index {
    grid-template-columns: 1fr;
  }

  .page-index h2 {
    grid-column: auto;
  }

  .editorial-lede {
    font-size: 1.2rem;
  }

  .content-block {
    padding: 36px 0;
  }

  .content-block h2 {
    font-size: 2.1rem;
  }

  .commitment-item,
  .support-option {
    min-height: 0;
  }

  .support-option .text-link {
    margin-top: 22px;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    max-width: 185px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .hero-shade {
    background: Canvas;
    opacity: 0.75;
  }

  .title-rule,
  .library-card::after {
    display: none;
  }
}
