:root {
  --bg-ink: #05080b;
  --bg-surface: #0b1218;
  --bg-mist: #132333;
  --text-high: #eef5f8;
  --text-mid: #c5d6df;
  --text-low: #8da2af;
  --line: rgba(188, 214, 227, 0.22);
  --line-strong: rgba(226, 243, 255, 0.42);
  --accent: #8ddc6f;
  --accent-ink: #0e1a10;
  --blue: #8ec8f0;
  --max-content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text-high);
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 8%, rgba(73, 131, 186, 0.2), transparent 34rem),
    radial-gradient(circle at 92% 3%, rgba(141, 220, 111, 0.13), transparent 35rem),
    linear-gradient(180deg, #030507 0%, #071016 48%, #05080b 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 1rem 0;
}

.header-inner {
  width: min(var(--max-content), 100%);
  min-height: 66px;
  margin: 0 auto;
  padding: 0.6rem 0.7rem 0.6rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 14, 20, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 34px -28px rgba(0, 0, 0, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.2rem 0.35rem;
  text-decoration: none;
}

.brand img {
  width: 31px;
  height: 31px;
  border-radius: 9px;
}

.brand span {
  color: #f8fbff;
  font-size: 1rem;
  font-weight: 700;
}

.header-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.header-nav a {
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.header-nav a[aria-current="page"] {
  color: var(--text-high);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.66rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-high);
}

.breadcrumb {
  width: min(var(--max-content), calc(100vw - 2rem));
  margin: 1.3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-low);
  font-size: 0.78rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--text-high);
}

.guide-hero,
.library-hero {
  width: min(var(--max-content), calc(100vw - 2rem));
  margin: 1.1rem auto 0;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  gap: clamp(1.1rem, 3vw, 2rem);
}

.guide-hero-copy,
.library-hero {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(17, 36, 49, 0.92), rgba(7, 15, 21, 0.93));
  box-shadow: 0 30px 58px -42px rgba(0, 0, 0, 0.92);
}

.guide-hero-copy {
  padding: clamp(1.3rem, 3.4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-hero h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.library-hero h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.15rem, 5vw, 4.7rem);
}

.guide-deck,
.library-deck {
  margin-top: 1rem;
  color: var(--text-mid);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.guide-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--text-low);
  font-size: 0.78rem;
}

.guide-meta strong {
  color: var(--text-mid);
}

.hero-figure {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--bg-surface);
  box-shadow: 0 30px 58px -42px rgba(0, 0, 0, 0.92);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(1, 4, 6, 0.82));
}

.hero-figure figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  color: rgba(245, 250, 252, 0.86);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-figure figcaption a {
  text-underline-offset: 0.16em;
}

.article-shell {
  width: min(var(--max-content), calc(100vw - 2rem));
  margin: clamp(1.4rem, 4vw, 2.8rem) auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 92px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 21, 29, 0.82);
}

.article-toc p {
  color: var(--text-high);
  font-size: 0.8rem;
  font-weight: 700;
}

.article-toc ol {
  margin: 0.7rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-low);
  font-size: 0.78rem;
}

.article-toc li + li {
  margin-top: 0.45rem;
}

.article-toc a {
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--text-high);
}

.article-body {
  min-width: 0;
}

.answer-card,
.source-note,
.callout {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(18, 35, 46, 0.9), rgba(10, 19, 26, 0.9));
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.answer-card {
  border-color: rgba(141, 220, 111, 0.38);
}

.print-guide {
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-high);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.print-guide:hover,
.print-guide:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.answer-card .label,
.callout .label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-card p + p,
.callout p + p {
  margin-top: 0.6rem;
}

.article-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.article-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
}

.article-section h3,
.faq-section h3 {
  margin-top: 1.7rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.article-section p,
.faq-answer p,
.source-note p {
  margin-top: 0.9rem;
  color: var(--text-mid);
}

.article-section ul,
.article-section ol {
  margin: 0.9rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-mid);
}

.article-section li + li {
  margin-top: 0.55rem;
}

.article-section a,
.faq-answer a,
.source-note a {
  color: #b9ddf4;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-section strong,
.faq-answer strong {
  color: var(--text-high);
}

.callout {
  margin-top: 1.3rem;
}

.callout-blue {
  border-color: rgba(142, 200, 240, 0.36);
}

.callout-blue .label {
  color: var(--blue);
}

.table-wrap {
  margin-top: 1.2rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(9, 18, 25, 0.86);
}

th,
td {
  padding: 0.78rem 0.85rem;
  border-bottom: 1px solid rgba(188, 214, 227, 0.15);
  text-align: left;
  vertical-align: top;
  color: var(--text-mid);
  font-size: 0.82rem;
}

th {
  color: var(--text-high);
  background: rgba(21, 39, 51, 0.88);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.checklist {
  list-style: none;
  padding-left: 0 !important;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid rgba(141, 220, 111, 0.7);
  border-radius: 3px;
}

.mini-grid,
.park-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.mini-card,
.park-card,
.guide-card,
.faq-answer {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 21, 29, 0.82);
}

.mini-card,
.park-card {
  padding: 1rem;
}

.mini-card h3,
.park-card h3 {
  margin-top: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
}

.mini-card p,
.park-card p {
  margin-top: 0.5rem;
  color: var(--text-mid);
  font-size: 0.84rem;
}

.faq-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.faq-section > h2 {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.faq-answer {
  padding: 1rem 1.05rem 1.1rem;
}

.faq-answer h3 {
  margin-top: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.96rem;
  line-height: 1.4;
}

.faq-answer p {
  font-size: 0.87rem;
}

.source-note {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.source-note h2 {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1rem;
}

.source-note p,
.source-note li {
  font-size: 0.8rem;
}

.source-note ul {
  margin: 0.7rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-mid);
}

.source-note li + li {
  margin-top: 0.4rem;
}

.related-guides,
.article-cta,
.library-section {
  width: min(var(--max-content), calc(100vw - 2rem));
  margin-inline: auto;
}

.related-guides {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.related-guides h2,
.library-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

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

.guide-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.guide-card-surface {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.guide-card-surface:focus-visible {
  border-radius: inherit;
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.guide-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-mist);
}

.guide-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.guide-card:hover .guide-card-media img {
  transform: scale(1.025);
}

.guide-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}

.guide-card .guide-kicker {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-top: 0.5rem;
  font-size: 1.3rem;
}

.guide-card p {
  margin-top: 0.6rem;
  color: var(--text-mid);
  font-size: 0.84rem;
}

.guide-card-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--text-high);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.guide-card:hover .guide-card-link,
.guide-card-surface:focus-visible .guide-card-link {
  color: var(--accent);
}

.article-cta {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.4rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(141, 220, 111, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 20%, rgba(141, 220, 111, 0.16), transparent 42%),
    linear-gradient(150deg, rgba(16, 34, 44, 0.96), rgba(7, 15, 21, 0.96));
}

.article-cta h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.article-cta p {
  margin-top: 0.55rem;
  color: var(--text-mid);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.library-hero {
  position: relative;
  min-height: 430px;
  padding: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #071016;
}

.library-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 9, 13, 0.94), rgba(4, 9, 13, 0.36));
}

.library-hero-picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

.library-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.library-hero > :not(.library-hero-picture) {
  position: relative;
  z-index: 2;
}

.library-hero h1,
.library-deck {
  max-width: 760px;
}

.library-photo-credit {
  margin-top: 0.8rem;
  color: rgba(238, 245, 248, 0.68);
  font-size: 0.68rem;
  line-height: 1.45;
}

.library-tools {
  width: min(var(--max-content), calc(100vw - 2rem));
  margin: 1rem auto 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: end;
  gap: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(9, 18, 25, 0.9);
  box-shadow: 0 24px 48px -38px rgba(0, 0, 0, 0.92);
}

.guide-card[hidden],
.library-section[hidden],
.library-jumps a[hidden],
.library-empty[hidden],
.library-search-field button[hidden] {
  display: none !important;
}

.library-search label,
.library-jumps > p {
  display: block;
  color: var(--text-high);
  font-size: 0.78rem;
  font-weight: 700;
}

.library-search-field {
  position: relative;
  margin-top: 0.5rem;
}

.library-search-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 4.4rem 0.72rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  outline: none;
  background: rgba(3, 8, 12, 0.7);
  color: var(--text-high);
  font: inherit;
  font-size: 0.86rem;
}

.library-search-field input::placeholder {
  color: var(--text-low);
}

.library-search-field input:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(141, 220, 111, 0.16);
}

.library-search-field button,
.library-empty button {
  border: 0;
  color: var(--accent);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.library-search-field button {
  position: absolute;
  top: 50%;
  right: 0.7rem;
  padding: 0.45rem;
  transform: translateY(-50%);
}

.library-search-status {
  margin-top: 0.45rem;
  color: var(--text-low);
  font-size: 0.72rem;
}

.library-jumps > div {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.library-jumps a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-mid);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
}

.library-jumps a:hover,
.library-jumps a:focus-visible {
  border-color: rgba(141, 220, 111, 0.52);
  color: var(--text-high);
}

.jump-count {
  min-width: 1.4rem;
  padding: 0.08rem 0.32rem;
  border-radius: 999px;
  background: rgba(141, 220, 111, 0.13);
  color: var(--accent);
  text-align: center;
  font-size: 0.66rem;
}

.library-section {
  scroll-margin-top: 100px;
}

.guide-results-filtering {
  display: flex;
  flex-direction: column;
}

.guide-results-filtering .library-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.library-empty {
  width: min(680px, calc(100vw - 2rem));
  margin: clamp(3rem, 8vw, 7rem) auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(11, 21, 29, 0.82);
  text-align: center;
}

.library-empty h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.library-empty p {
  margin-top: 0.6rem;
  color: var(--text-mid);
}

.library-empty button {
  margin-top: 0.9rem;
  padding: 0.6rem 0.8rem;
}

.library-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.library-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.library-section-header p {
  max-width: 530px;
  color: var(--text-mid);
}

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

.site-footer {
  width: min(var(--max-content), calc(100vw - 2rem));
  margin: clamp(4rem, 9vw, 8rem) auto 0;
  padding: 1.6rem 0 2.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-low);
  font-size: 0.78rem;
}

.site-footer strong {
  color: var(--text-mid);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-high);
}

@media (max-width: 940px) {
  .library-tools {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .header-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

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

  .hero-figure {
    min-height: 410px;
  }

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

  .article-toc {
    position: static;
  }

  .article-toc ol {
    columns: 2;
    column-gap: 2rem;
  }

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

@media (max-width: 680px) {
  .library-tools {
    border-radius: 20px;
  }

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

  .library-jumps a {
    justify-content: space-between;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    padding-inline: 0.65rem;
  }

  .header-inner {
    min-height: 58px;
    padding: 0.45rem 0.5rem 0.45rem 0.75rem;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 0.8rem;
    font-size: 0.76rem;
  }

  .guide-hero h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .library-hero h1 {
    font-size: clamp(2.05rem, 12vw, 3.4rem);
  }

  .hero-figure {
    min-height: 300px;
  }

  .article-toc ol {
    columns: 1;
  }

  .mini-grid,
  .park-grid,
  .related-guides .guide-grid,
  .library-section .guide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

  .library-hero {
    min-height: 500px;
  }

  .library-hero::after {
    background: linear-gradient(
      180deg,
      rgba(4, 9, 13, 0.68) 0%,
      rgba(4, 9, 13, 0.74) 55%,
      rgba(4, 9, 13, 0.96) 100%
    );
  }

  .library-hero-media {
    object-position: center;
  }

  .library-section-header,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .library-tools {
    width: min(var(--max-content), calc(100vw - 1rem));
    padding: 0.625rem;
  }

  .library-search-field input {
    font-size: 16px;
  }

  .library-jumps > div {
    gap: 0.35rem;
  }

  .library-jumps a {
    min-width: 0;
    gap: 0.25rem;
    padding: 0.45rem 0.375rem;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .jump-count {
    min-width: 1.25rem;
    padding-inline: 0.25rem;
  }
}

@media (max-width: 350px) {
  .library-jumps > div {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media print {
  :root {
    --text-high: #111;
    --text-mid: #222;
    --text-low: #444;
    --line: #bbb;
    --line-strong: #888;
    --accent: #2f6e35;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 10.5pt;
  }

  .site-header,
  .breadcrumb,
  .hero-figure,
  .article-toc,
  .print-guide,
  .related-guides,
  .article-cta,
  .site-footer {
    display: none !important;
  }

  .guide-hero,
  .article-shell {
    width: 100%;
    margin: 0;
    display: block;
  }

  .guide-hero-copy,
  .answer-card,
  .callout,
  .mini-card,
  .park-card,
  .faq-answer,
  .source-note {
    border-color: #bbb;
    background: #fff;
    box-shadow: none;
    color: #111;
  }

  .guide-hero-copy {
    padding: 0 0 1rem;
  }

  .guide-hero h1 {
    font-size: 28pt;
  }

  .article-body a {
    color: #111;
    text-decoration: underline;
  }

  .article-section,
  .faq-answer,
  .source-note,
  table,
  .checklist li {
    break-inside: avoid;
  }

  .table-wrap {
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
