

@font-face { font-family: 'Fraunces'; src: url('/site/fonts/fraunces-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('/site/fonts/fraunces-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/site/fonts/inter-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/site/fonts/inter-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/site/fonts/inter-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  color-scheme: light;
  
  --paper: #f9f2e3;
  --paper-band: #f4ecd9;
  --ink: #2b271e;
  --fg: #4a4437;
  --fg-muted: #6b6353;
  --fg-faint: #8d8574;
  --rule: rgba(58, 53, 40, 0.22);
  --rule-soft: rgba(58, 53, 40, 0.13);
  --blue: #16455e;
  --night: #1b1817;
  --night-2: #252220;
  --night-ink: #e8e2d6;
  --night-blue: #8fc4de;
  --serif: orpheuspro, 'Fraunces', ui-serif, Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --shell: 58rem;
}

html { -webkit-text-size-adjust: 100%; }


[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--fg);
  font: 400 16.5px/1.72 var(--sans);
}

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



.bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 2rem;
  background: var(--night);
  color: var(--night-ink);
}

.wordmark { display: flex; align-items: center; opacity: 0.94; }
.wordmark img { display: block; height: 20px; width: auto; }
.wordmark:hover { opacity: 1; }

.barGuide {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 226, 214, 0.62);
  text-decoration: none;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(232, 226, 214, 0.18);
}
.barGuide:hover { color: var(--night-ink); }

.searchForm { position: relative; margin-left: auto; width: min(21rem, 50vw); }
.searchForm #q {
  width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 2rem 0.45rem 0.8rem;
  border: 1px solid rgba(232, 226, 214, 0.2);
  border-radius: 8px;
  background: rgba(232, 226, 214, 0.06);
  color: var(--night-ink);
  font: inherit;
  font-size: 0.9rem;
}
.searchForm #q::placeholder { color: rgba(232, 226, 214, 0.45); }
.searchForm #q:focus {
  outline: none;
  border-color: var(--night-blue);
  background: rgba(232, 226, 214, 0.1);
}
.searchForm .slashHint {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  color: rgba(232, 226, 214, 0.4);
  border: 1px solid rgba(232, 226, 214, 0.2);
  border-radius: 4px;
  padding: 0 0.32rem;
  pointer-events: none;
}



.home, .listPage, .results {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero .results { max-width: 33rem; margin: 1.25rem 0 0; padding: 0; }
.home { padding-bottom: 0; }
.listPage { padding-top: 3.5rem; padding-bottom: 0; }
.results { padding-top: 2.5rem; padding-bottom: 4rem; }



.hero { padding: 5rem 0 1rem; }

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 33rem;
}

.heroSearch { position: relative; margin: 2.25rem 0 0; max-width: 33rem; }
.heroSearch #q {
  width: 100%;
  box-sizing: border-box;
  padding: 0.95rem 3rem 0.95rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: var(--paper-band);
  color: var(--ink);
  font: inherit;
  font-size: 1.0625rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.heroSearch #q::placeholder { color: var(--fg-faint); }
.heroSearch #q:focus {
  outline: none;
  background: #fffdf7;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 69, 94, 0.1);
}
.heroSearch .slashHint {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--fg-faint);
  border: 1px solid var(--rule);
  border-radius: 5px;
  padding: 0.05rem 0.4rem;
  pointer-events: none;
}

.crumb {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0 0 1.1rem;
}
.crumb a { color: inherit; text-underline-offset: 0.2em; }



.block { margin-top: 3.75rem; }

.blockHead {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 1.1rem;
}



.startList { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.startList li { margin: 0; }
.startList li a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink);
  text-decoration: none;
}
.startList li:last-child a { border-bottom: 1px solid var(--rule-soft); }
.startNum {
  font-family: var(--serif);
  font-size: 0.875rem;
  color: var(--blue);
  opacity: 0.75;
  min-width: 1.4rem;
}
.startTitle {
  font-family: var(--serif);
  font-size: 1.3125rem;
  line-height: 1.3;
}
.startList li a:hover .startTitle { text-decoration: underline; text-underline-offset: 0.18em; }
.startSection {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  white-space: nowrap;
}



.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  overflow: hidden;
}


.cards .card:first-child { grid-column: 1 / -1; }


.card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--paper-band);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.16s ease;
}
.card:hover { background: #fffdf7; }
.mark { width: 24px; height: 24px; color: var(--blue); opacity: 0.9; margin-bottom: 0.6rem; }
.cardTitle { font-family: var(--serif); font-size: 1.3125rem; line-height: 1.25; }
.cardBlurb { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.55; }
.cardMeta {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}



.rows { list-style: none; margin: 0; padding: 0; }
.rows li { margin: 0; }
.rows li a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  text-decoration: none;
}
.rows li a:hover .rowTitle { text-decoration: underline; text-underline-offset: 0.18em; }
.rowTitle { font-size: 1rem; }
.rowSection {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  white-space: nowrap;
}

.noHits { color: var(--fg-muted); }

.chapterGroup { margin-top: 2.5rem; }
.chapterHead {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.35rem;
}



.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; margin: 0; padding: 0; }
.chips li { margin: 0; }
.chips li a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.75rem;
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  background: var(--paper-band);
  color: var(--fg);
  text-decoration: none;
  font-size: 0.875rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.chips li a:hover { border-color: var(--blue); color: var(--ink); }
.chips li a span { font-size: 0.72rem; color: var(--fg-faint); }
.chips.small { margin: 2.75rem 0 0; }
.chips.small li a { font-size: 0.8125rem; }



.support {
  max-width: var(--shell);
  margin: 5rem auto 0;
  padding: 2.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--night);
  color: var(--night-ink);
  border-radius: 16px;
}
.support h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}
.support p {
  margin: 0;
  max-width: 34rem;
  color: rgba(232, 226, 214, 0.68);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.supportBtn {
  margin-left: auto;
  white-space: nowrap;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(232, 226, 214, 0.28);
  border-radius: 9px;
  color: var(--night-ink);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.supportBtn:hover { background: rgba(232, 226, 214, 0.1); border-color: var(--night-blue); }



.layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 4.5rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 3.5rem 2rem 0;
}

.side {
  font-size: 0.9375rem;
  position: sticky;
  top: 5.5rem;
  align-self: start;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}
.sideHead {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 0.85rem;
}
.sideHead a { color: inherit; text-decoration: none; }
.sideHead a:hover { color: var(--ink); }
.side ul { list-style: none; margin: 0; padding: 0; }
.side li { margin: 0; }
.side li a {
  display: block;
  padding: 0.3rem 0 0.3rem 0.9rem;
  border-left: 1px solid var(--rule-soft);
  color: var(--fg-muted);
  text-decoration: none;
  line-height: 1.4;
}
.side li a:hover { color: var(--ink); }
.side li a[aria-current="page"] {
  color: var(--ink);
  border-left: 2px solid var(--blue);
  padding-left: calc(0.9rem - 1px);
}

.article { max-width: 36rem; }
.article h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.375rem);
  margin-bottom: 1.85rem;
}
.article p, .article li { margin: 0 0 1.15rem; }
.article ul, .article ol { padding-left: 1.25rem; }
.article li { margin-bottom: 0.55rem; }
.article a { color: var(--blue); text-underline-offset: 0.2em; }
.article strong { font-weight: 600; color: var(--ink); }

.article > p:first-of-type { font-size: 1.0625rem; color: var(--ink); }


.shot {
  margin: 2rem 0;
  width: fit-content;
  max-width: min(100%, 42rem);
}

.shot img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(58, 53, 40, 0.26);
  box-shadow: 0 1px 2px rgba(43, 39, 30, 0.05), 0 14px 28px -18px rgba(43, 39, 30, 0.55);
}
.shot figcaption {
  margin-top: 0.6rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fg-muted);
}

.pager {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
}
.pager a {
  display: block;
  max-width: 45%;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.3;
}
.pager .next { text-align: right; margin-left: auto; }
.pager a span {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 0.3rem;
}
.pager a:hover { text-decoration: underline; text-underline-offset: 0.18em; }


.article .askUs {
  margin: 2.75rem 0 0;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.askUs a { color: var(--blue); }



footer {
  max-width: var(--shell);
  margin: 4rem auto 0;
  padding: 1.75rem 2rem 3.5rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--fg-faint);
}
footer a { color: inherit; text-underline-offset: 0.2em; }


.layout ~ footer { max-width: 64rem; }



@media (max-width: 56rem) {
  .layout { grid-template-columns: minmax(0, 1fr); gap: 0; padding: 2.25rem 1.25rem 0; }
  
  .side { display: none; }
  .bar { gap: 1rem; padding: 0.7rem 1.25rem; }
  .barGuide { padding-left: 1rem; }
  .searchForm { width: min(11rem, 40vw); }
  .searchForm .slashHint { display: none; }
  .home, .listPage, .results { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero { padding-top: 2.75rem; }
  .support { margin-left: 1.25rem; margin-right: 1.25rem; padding: 1.5rem; border-radius: 14px; }
  .supportBtn { margin-left: 0; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .cards .card:first-child { grid-column: auto; }
  footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}
