@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141210;
  --bg-2: #1c1914;
  --paper: #221e18;
  --ink: #efe6d4;
  --muted: #cbbfa8;
  --faint: #9a8e78;
  --line: #3a342a;
  --seal: #c45c3a;
  --seal-ink: #1a120c;
  --brass: #c4a35a;
  --sea: #6f9aa0;
  --header-bg: #141210;
  --header-ink: #efe6d4;
  --search-bg: #1c1914;
  --footer-surface: #0e0c0a;
  --ad: #1a1713;
  --font-display: Fraunces, "Iowan Old Style", Palatino, serif;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --touch: 2.75rem;
  --header-h: 4.4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 180ms;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --focus: 0 0 0 2px var(--bg), 0 0 0 4px var(--seal);
  --z-header: 40;
  --wrap: 74rem;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #efe6d4;
  --bg-2: #e4d8c0;
  --paper: #f7f1e4;
  --ink: #1a1610;
  --muted: #3f382c;
  --faint: #5c5346;
  --line: #d3c4a8;
  --seal: #a31d1d;
  --seal-ink: #fff8ee;
  --brass: #7a5c1e;
  --sea: #1e3d42;
  --header-bg: #f7f1e4;
  --header-ink: #1a1610;
  --search-bg: #fffdf6;
  --footer-surface: #1a1610;
  --ad: #e8dcc6;
}

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

html {
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

::selection {
  background: var(--seal);
  color: var(--seal-ink);
}

a {
  color: var(--seal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

a:hover {
  color: var(--brass);
}

:focus {
  outline: none;
}

:focus-visible {
  box-shadow: var(--focus);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin: 0 0 0.6rem;
}

h2 {
  font-size: 1.45rem;
  margin: 1.6rem 0 0.5rem;
}

h3 {
  font-size: 1.1rem;
  margin: 1.1rem 0 0.35rem;
}

p,
li {
  margin: 0 0 0.85rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 60;
  transform: translateY(-200%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
}

.skip:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  flex: 0 0 auto;
  padding-top: var(--safe-top);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.header-scroll {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: var(--header-h);
  min-width: max-content;
  width: 100%;
  padding: 0.45rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--header-ink);
  flex: 0 0 auto;
}

.brand:hover {
  color: var(--header-ink);
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-compass {
  color: var(--seal);
}

.nav {
  display: flex;
  gap: 0.15rem;
  flex: 0 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch);
  padding: 0 0.75rem;
  color: var(--header-ink);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.92rem;
}

.nav-link.is-active {
  color: var(--seal);
  box-shadow: inset 0 -2px 0 var(--seal);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 0 0 auto;
}

.header-search input {
  min-height: var(--touch);
  min-width: 12rem;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  background: var(--search-bg);
  color: inherit;
  font: inherit;
}

.header-search button,
.theme-toggle,
.btn,
.map-tools button,
.map-styles button,
.map-layer-actions button,
.map-filters-toggle,
.search-form button {
  min-height: var(--touch);
  min-width: var(--touch);
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: var(--seal);
  color: var(--seal-ink);
  border-color: var(--seal);
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  color: var(--seal-ink);
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.header-tools {
  display: flex;
  margin-left: auto;
}

html[data-theme="dark"] .theme-icon-dark,
html[data-theme="light"] .theme-icon-light {
  display: none;
}

main {
  flex: 1 1 auto;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
}

.hero-media img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  display: block;
}

.hero-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 0 2.8rem;
  background: linear-gradient(transparent, var(--bg) 70%);
}

.hero-kicker,
.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.shelf,
.story-block,
.page-trust {
  padding: 2.2rem 0 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.2rem;
}

.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.map-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.map-card-body {
  padding: 1rem 1.05rem 1.2rem;
}

.map-card-body h2 {
  margin-top: 0.2rem;
}

.map-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  margin: 1.2rem 0 0.8rem;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--faint);
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.7rem;
  color: var(--line);
}

.search-form {
  display: flex;
  gap: 0.4rem;
  margin: 1rem 0 1.4rem;
}

.search-form input {
  flex: 1 1 auto;
  min-height: var(--touch);
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  background: var(--search-bg);
  color: inherit;
  font: inherit;
}

.search-hits {
  padding-left: 1.1rem;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.place-list {
  padding-left: 1.1rem;
}

.site-footer {
  background: var(--footer-surface);
  color: #efe6d4;
  padding: 2.4rem 0 2.8rem;
}

.site-footer a {
  color: #e8c9a0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-grid h2 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-note {
  color: #b7aa94;
  font-size: 0.92rem;
}

.ad-slot {
  min-height: 50px;
  display: flex;
  justify-content: center;
  background: var(--ad);
}

html.is-map,
html.is-map body {
  height: 100dvh;
  overflow: hidden;
}

html.is-map .site-header {
  flex: 0 0 auto;
}

html.is-map main {
  min-height: 0;
}

.meta {
  color: var(--faint);
  font-size: 0.9rem;
}

@media (max-width: 879px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 58vh;
  }

  .hero {
    min-height: 58vh;
  }
}
