:root {
  --paper: #f5efe3;
  --paper-light: #fbf7ef;
  --paper-dark: #e8dece;
  --ink: #263b2e;
  --muted: #5e6c60;
  --green: #2c573b;
  --green-dark: #1e3d2a;
  --grass: #87a86d;
  --grass-light: #dce6c9;
  --terracotta: #c87354;
  --terracotta-light: #f0d4c3;
  --sun: #c5a85a;
  --line: #cfc3b0;
  --content: 1120px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  color: var(--paper);
  background: var(--green);
}

a:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--content));
  min-height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--green-dark);
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-wordmark span {
  display: block;
  margin-top: 4px;
  color: var(--terracotta);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 18px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--green-dark); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.site-nav a:active { color: var(--terracotta); }

.container {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

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

h1, h2, h3 {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.06;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.13;
}

h3 {
  margin-bottom: 7px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.22;
}

.eyebrow,
.section-kicker,
.fact-label,
.photo-label {
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow { margin-bottom: 12px; }
.section-kicker { display: block; margin-bottom: 9px; }

.lede {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.page-intro {
  padding: 44px 0 42px;
  border-bottom: 1px solid var(--line);
}

.page-intro--home {
  padding-top: 43px;
  padding-bottom: 40px;
}

.home-heading {
  max-width: 900px;
}

.home-heading h1 { margin-bottom: 14px; }
.home-heading .lede { max-width: 760px; }

.page-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--green);
  border-radius: 3px;
  color: var(--paper);
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--green-dark);
  background: transparent;
  transform: translateY(-1px);
}

.button:active { transform: scale(0.96); }

.text-link {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

.text-link:hover { color: var(--terracotta); }

.directory-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(48px, 8vw, 110px);
  padding: 46px 0 58px;
}

.directory-section + .directory-section { padding-top: 0; }

.directory-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 19px;
}

.directory-section-header h2 { margin-bottom: 0; }

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

.directory-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.directory-list a,
.directory-list .directory-name {
  color: var(--green-dark);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.directory-list a:hover { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.directory-status { color: var(--muted); font-size: 0.73rem; text-align: right; }
.directory-status--active { color: var(--terracotta); font-weight: 800; }

.directory-note {
  margin: 21px 0 0;
  padding-left: 17px;
  border-left: 3px solid var(--grass);
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.collection-section {
  padding: 43px 0 68px;
  border-top: 1px solid var(--line);
}

.collection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 19px;
}

.collection-heading h2 { margin-bottom: 0; }
.collection-heading p { max-width: 330px; margin-bottom: 3px; color: var(--muted); font-size: 0.82rem; }

.entry-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.8fr) auto;
  gap: 26px;
  align-items: center;
  padding: 20px 0;
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
}

.entry-row h3 { margin-bottom: 3px; }
.entry-row p { margin: 0; color: var(--muted); font-size: 0.83rem; text-wrap: pretty; }
.entry-meta { color: var(--terracotta); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.entry-row .button { justify-self: end; }

.site-footer {
  padding: 23px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--green); font-weight: 800; text-decoration: none; }
.site-footer a:hover { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 750;
  text-decoration: none;
}

.breadcrumb:hover { color: var(--green); }
.breadcrumb span { color: var(--terracotta); }

.subpage-intro { padding-top: 38px; }
.subpage-intro h1 { max-width: 740px; }
.subpage-intro .lede { max-width: 770px; }

.list-page-section {
  padding: 47px 0 88px;
}

.list-page-section h2 { margin-bottom: 22px; }

.district-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.district-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: baseline;
  min-height: 62px;
  padding: 16px 18px 15px 0;
  border-bottom: 1px solid var(--line);
}

.district-list li:nth-child(odd) { margin-right: 27px; }
.district-list li:nth-child(even) { padding-left: 27px; border-left: 1px solid var(--line); }
.district-number { color: var(--terracotta); font-family: Georgia, "Times New Roman", serif; font-size: 0.88rem; }
.district-list a { color: var(--green-dark); font-weight: 800; text-decoration: none; }
.district-list a:hover { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.district-list .district-name { color: var(--green-dark); font-weight: 750; }
.district-list small { color: var(--muted); font-size: 0.7rem; text-align: right; }
.district-list small.active { color: var(--terracotta); font-weight: 800; }

.directory-explainer {
  max-width: 720px;
  margin-top: 26px;
  padding-left: 17px;
  border-left: 3px solid var(--grass);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.district-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.75fr) auto;
  gap: 24px;
  align-items: center;
  padding: 19px 0;
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
}

.district-entry p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.district-entry .entry-meta { display: block; margin-bottom: 4px; }

.category-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.category-list li {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr) auto;
  gap: 18px;
  align-items: baseline;
  min-height: 62px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.category-list strong { color: var(--green-dark); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; }
.category-list p { margin: 0; color: var(--muted); font-size: 0.81rem; line-height: 1.45; }
.category-list a { color: var(--green); font-size: 0.77rem; font-weight: 800; text-decoration: none; text-align: right; }
.category-list a:hover { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.category-list .empty-category { color: var(--muted); font-size: 0.74rem; text-align: right; }

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 9vw, 125px);
  padding: 49px 0 95px;
}

.about-layout h2 { max-width: 310px; }
.about-copy { max-width: 680px; }
.about-copy p { color: var(--muted); text-wrap: pretty; }
.about-copy p + p { margin-top: 18px; }

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

.about-list li {
  position: relative;
  padding: 14px 0 14px 25px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.about-list li::before {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: 0.53em 0 0 -25px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.detail-intro { padding: 23px 0 21px; }
.detail-intro h1 { max-width: 760px; margin-bottom: 8px; }
.detail-meta { margin: 0 0 11px; color: var(--terracotta); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.055em; text-transform: uppercase; }
.detail-intro .lede { max-width: 760px; font-size: 0.98rem; line-height: 1.55; }
.detail-intro .breadcrumb { margin-bottom: 17px; }

.report-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  grid-template-areas:
    "lead copy"
    "thumbs copy";
  gap: 13px 34px;
  padding-top: 25px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.report-lead-figure { grid-area: lead; }
.report-opening-copy { grid-area: copy; min-width: 0; }
.report-thumb-row { grid-area: thumbs; }
.report-lead-figure,
.report-thumb-figure,
.report-side-figure,
.gallery-figure { margin: 0; }
.report-lead-image,
.report-thumb-image,
.report-side-figure img,
.gallery-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--paper-dark);
  object-fit: cover;
}
.report-lead-image { aspect-ratio: 1.55 / 1; }
.report-lead-figure figcaption,
.report-thumb-figure figcaption,
.report-side-figure figcaption,
.gallery-figure figcaption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.38;
}
.report-thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.report-thumb-image { aspect-ratio: 1.55 / 1; }
.report-opening-copy h2 { max-width: 440px; margin-bottom: 15px; font-size: clamp(1.35rem, 1.8vw, 1.65rem); }
.report-opening-note { margin: 19px 0 0; padding-left: 13px; border-left: 2px solid var(--grass); color: var(--muted); font-size: 0.82rem; line-height: 1.5; text-wrap: pretty; }

.fact-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.fact-table th,
.fact-table td { padding: 7px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.fact-table tr:first-child th,
.fact-table tr:first-child td { padding-top: 0; }
.fact-table tr:last-child th,
.fact-table tr:last-child td { padding-bottom: 0; border-bottom: 0; }
.fact-table th { width: 28%; padding-right: 12px; color: var(--green); font-size: 0.61rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.fact-table td { color: var(--muted); line-height: 1.4; text-wrap: pretty; }

.detail-section { padding: 34px 0 39px; border-bottom: 1px solid var(--line); }
.detail-section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.detail-section-heading h2 { margin-bottom: 0; }
.detail-section-heading p { max-width: 350px; margin: 0; color: var(--muted); font-size: 0.76rem; line-height: 1.43; text-align: right; text-wrap: pretty; }
.report-split { display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(260px, 1.04fr); gap: 31px; align-items: start; }
.report-split--reverse { grid-template-columns: minmax(260px, 1.04fr) minmax(0, 0.96fr); }
.report-prose { max-width: 610px; }
.report-prose p { color: var(--muted); font-size: 0.87rem; line-height: 1.55; text-wrap: pretty; }
.report-prose p + p { margin-top: 15px; }
.report-list { margin: 15px 0 0; padding-left: 18px; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.report-list li + li { margin-top: 6px; }
.report-side-figure img { aspect-ratio: 1.34 / 1; }

.gallery-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; margin-top: 24px; }
.gallery-image { aspect-ratio: 1.25 / 1; }
.gallery-strip--details .gallery-image { aspect-ratio: 1.18 / 1; }
.gallery-strip--park { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-strip--park .gallery-image { aspect-ratio: 1 / 1; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.fit-column { padding-top: 11px; border-top: 2px solid var(--green); }
.fit-column:last-child { border-top-color: var(--terracotta); }
.fit-column h3 { margin-bottom: 9px; }
.fit-column .report-list { margin-top: 0; }

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.55fr);
  gap: 32px;
  align-items: stretch;
}

.map-shell {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-dark);
}

.map-shell iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }

.route-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px 0 3px 22px;
  border-left: 3px solid var(--grass);
}

.route-info img { width: 35px; height: 44px; margin-bottom: 17px; }
.route-info h3 { margin-bottom: 9px; }
.route-info p { margin-bottom: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.5; text-wrap: pretty; }
.route-info .button { align-self: flex-start; margin-top: 28px; }

.map-note { margin: 13px 0 0; color: var(--muted); font-size: 0.74rem; line-height: 1.45; }

.detail-closing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 41px 0 62px;
}

.detail-closing p { max-width: 700px; margin: 0; color: var(--muted); font-size: 0.86rem; text-wrap: pretty; }

@media (max-width: 900px) {
  .home-heading,
  .directory-overview,
  .about-layout { grid-template-columns: 1fr; }
  .report-opening {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "copy"
      "thumbs";
    gap: 22px;
  }
  .report-lead-image { aspect-ratio: 1.7 / 1; }
  .report-split,
  .report-split--reverse { grid-template-columns: 1fr; gap: 22px; }
  .report-split--reverse .report-side-figure { order: 2; }
  .report-side-figure img { aspect-ratio: 1.65 / 1; }
  .gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-strip--park { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-strip--park .gallery-image { aspect-ratio: 1.25 / 1; }
  .entry-row,
  .district-entry { grid-template-columns: minmax(0, 1fr) minmax(190px, 0.8fr); }
  .entry-row .button,
  .district-entry .button { grid-column: 1 / -1; justify-self: start; }
  .map-layout { grid-template-columns: 1fr; }
  .route-info { min-height: 180px; padding: 18px 0 0; border-top: 3px solid var(--grass); border-left: 0; }
  .route-info .button { margin-top: 18px; }
}

@media (max-width: 680px) {
  .site-header,
  .container { width: min(calc(100% - 30px), var(--content)); }
  .site-header { flex-wrap: wrap; padding: 9px 0 11px; }
  .site-nav { width: 100%; justify-content: flex-start; gap: 2px 15px; padding-top: 3px; }
  .site-nav a { min-height: 36px; font-size: 0.77rem; }
  .site-nav a::after { bottom: 1px; }
  .brand-wordmark { font-size: 0.98rem; }
  h1 { font-size: clamp(1.7rem, 8vw, 1.9rem); }
  h2 { font-size: clamp(1.25rem, 5.8vw, 1.45rem); }
  h3 { font-size: 1.05rem; }
  .page-intro,
  .page-intro--home { padding-top: 29px; padding-bottom: 28px; }
  .directory-overview,
  .list-page-section,
  .about-layout { padding-top: 34px; padding-bottom: 49px; }
  .directory-section-header,
  .collection-heading,
  .detail-section-heading,
  .detail-closing { display: block; }
  .directory-section-header .text-link,
  .collection-heading p,
  .detail-section-heading p { display: block; margin-top: 8px; text-align: left; }
  .directory-list li { min-height: 42px; padding: 8px 0; }
  .directory-status { max-width: 110px; }
  .collection-section { padding-top: 33px; padding-bottom: 50px; }
  .entry-row,
  .district-entry { grid-template-columns: 1fr; gap: 8px; padding: 15px 0; }
  .entry-row .button,
  .district-entry .button { grid-column: auto; }
  .district-list { display: block; }
  .district-list li,
  .district-list li:nth-child(odd),
  .district-list li:nth-child(even) { margin: 0; padding: 12px 0; border-left: 0; }
  .district-list li { grid-template-columns: 30px minmax(0, 1fr) auto; min-height: 49px; }
  .district-list small { max-width: 96px; }
  .category-list li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .category-list a,
  .category-list .empty-category { text-align: left; }
  .about-layout { gap: 24px; }
  .detail-intro { padding-top: 19px; padding-bottom: 18px; }
  .detail-intro .breadcrumb { margin-bottom: 12px; }
  .detail-intro .eyebrow { margin-bottom: 8px; }
  .detail-intro .lede { font-size: 0.91rem; line-height: 1.5; }
  .detail-meta { margin-bottom: 8px; font-size: 0.64rem; }
  .report-opening { gap: 19px; padding-top: 20px; padding-bottom: 28px; }
  .report-opening-copy h2 { font-size: 1.3rem; margin-bottom: 12px; }
  .report-opening-note { margin-top: 15px; font-size: 0.79rem; }
  .report-thumb-row { gap: 8px; }
  .fact-table { font-size: 0.77rem; }
  .fact-table th { width: 31%; padding-right: 9px; font-size: 0.57rem; }
  .detail-section { padding-top: 29px; padding-bottom: 33px; }
  .detail-section-heading { margin-bottom: 16px; }
  .report-prose p { font-size: 0.84rem; }
  .fit-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-strip,
  .gallery-strip--park { grid-template-columns: 1fr 1fr; gap: 13px 8px; margin-top: 20px; }
  .gallery-figure figcaption { font-size: 0.67rem; }
  .map-shell,
  .map-shell iframe { min-height: 275px; }
  .detail-closing { padding-top: 29px; padding-bottom: 43px; }
  .detail-closing .button { margin-top: 16px; }
  .site-footer-inner { display: block; }
  .site-footer-inner p + p { margin-top: 6px; }
}

@media (max-width: 380px) {
  .brand-wordmark span { display: none; }
  .site-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
  .site-nav a { min-height: 34px; font-size: 0.74rem; }
  .directory-list li { align-items: flex-start; }
  .directory-status { max-width: 90px; }
  .report-thumb-row,
  .gallery-strip,
  .gallery-strip--park { grid-template-columns: 1fr; }
}

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

.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;
}
