:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2826;
  background: #f6f3ed;
  font-synthesis: none;
  --paper: #f6f3ed;
  --ink: #1f2826;
  --muted: #6f7772;
  --line: #dcded5;
  --forest: #174638;
  --accent: #c5734b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 0;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid #b56b45;
  outline-offset: 3px;
}
a {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -70px;
  left: 20px;
  background: #fff;
  padding: 12px;
  z-index: 20;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  color: #6c715f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
}
.tiny-star {
  color: var(--accent);
  font-size: 16px;
  margin-right: 7px;
}
.site-header {
  height: 84px;
  border-bottom: 1px solid #e5e4dc;
  background: var(--paper);
  position: relative;
  z-index: 5;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  padding: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 34px;
  background: var(--forest);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 21px;
  transform: rotate(-4deg);
}
.brand-word {
  font-family: Georgia, serif;
  font-size: 35px;
  letter-spacing: -0.08em;
  font-weight: 700;
}
.brand-period {
  color: #c5754b;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid #ccd3c9;
  border-radius: 25px;
  background: #eeefe8;
  color: #8b968a;
}
.language-switch button {
  border: 0;
  border-radius: 18px;
  min-width: 34px;
  min-height: 29px;
  background: transparent;
  color: #677367;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.language-switch button[aria-pressed="true"] {
  background: var(--forest);
  color: #fff;
}
.reading-dark .language-switch {
  background: #263b2c;
  border-color: #57705a;
}
.reading-dark .language-switch button {
  color: #d3dfd0;
}
.reading-dark .language-switch button[aria-pressed="true"] {
  background: #e7eddf;
  color: #20372a;
}
.nav-link {
  border: 0;
  background: none;
  color: #565f58;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 0;
  white-space: nowrap;
}
.nav-link.active,
.nav-link:hover {
  color: var(--forest);
}
.nav-library {
  border: 1px solid #cbd1c7;
  border-radius: 24px;
  padding: 10px 16px;
  color: var(--forest);
}
.nav-library span {
  font-size: 11px;
  display: inline-grid;
  place-items: center;
  background: #dfe8db;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  margin-left: 5px;
}
