:root {
  color-scheme: light;
  --bg: #f3f1e9;
  --paper: #fffdf7;
  --ink: #16231d;
  --muted: #68736d;
  --line: #d9ded4;
  --brand: #234b3d;
  --brand-bright: #d46c43;
  --brand-dark: #234b3d;
  --brand-tagline-color: #d59f00;
  --theme-focus: rgba(64, 121, 91, .14);
  --moss: #668268;
  --sand: #eae0c8;
  --list-width: 38%;
  --shadow: 0 18px 46px rgba(27, 42, 33, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
}

body {
  min-height: 100vh;
}

.app-loading {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: #f7f8f5;
  opacity: 1;
  transition: opacity 180ms ease;
}

.app-loading.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.app-loading-content {
  display: grid;
  gap: 20px;
  place-items: center;
}

.app-loading-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-loading-brand img {
  width: 56px;
  height: 56px;
}

.app-loading-brand div {
  display: grid;
  gap: 4px;
}

.app-loading-brand strong {
  color: #102c2d;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.app-loading-brand span {
  color: var(--brand-tagline-color);
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.app-loading-dots {
  display: inline-flex;
  gap: 7px;
}

.app-loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(58, 83, 70, .7);
  animation: appLoadingPulse 900ms ease-in-out infinite;
}

.app-loading-dots span:nth-child(2) {
  animation-delay: 120ms;
}

.app-loading-dots span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes appLoadingPulse {
  0%, 80%, 100% { opacity: .35; transform: translateY(0) scale(.86); }
  40% { opacity: 1; transform: translateY(-3px) scale(1); }
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(150px, max-content) minmax(430px, 1fr) max-content;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 2px 18px;
  padding: 14px clamp(16px, 3vw, 34px);
  border-bottom: 1px solid rgba(35, 75, 61, .2);
  background: #fff;
  box-shadow: 0 9px 30px rgba(27, 42, 33, .08);
}

body.is-app-loading .topbar {
  z-index: 3100;
}

body.is-app-loading .mobile-map-toggle {
  visibility: hidden;
}

.brand-block {
  --brand-icon-layout-size: 42px;
  --brand-lockup-gap: 13px;
  position: relative;
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  grid-template-columns: max-content;
  align-content: start;
  align-items: start;
  gap: 5px;
  min-width: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: var(--brand-lockup-gap);
  min-width: 0;
}

.brand-icon {
  width: var(--brand-icon-layout-size);
  height: var(--brand-icon-layout-size);
  flex: 0 0 auto;
}

.brand-lockup-text {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-wordmark {
  margin: 0;
  color: #102c2d;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(29px, 1.35vw, 40px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--brand-tagline-color);
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(9px, .82vw, 11px);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-icon-link,
.brand-wordmark-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.brand-icon-link {
  display: flex;
  flex: 0 0 auto;
  width: fit-content;
  border-radius: 10px;
}

.brand-wordmark-link {
  display: block;
  width: fit-content;
  border-radius: 6px;
  line-height: inherit;
}

.brand-icon-link:focus-visible,
.brand-wordmark-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px var(--theme-focus);
}

.app-switcher {
  position: absolute;
  z-index: 15;
  bottom: 0;
  left: 0;
  width: fit-content;
  line-height: 0;
}

.app-switcher-placeholder {
  visibility: hidden;
}

.app-switcher summary {
  list-style: none;
}

.app-switcher summary::-webkit-details-marker {
  display: none;
}

.app-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}

.app-switcher-trigger svg {
  width: 8px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 150ms ease;
}

.app-switcher-trigger:hover {
  color: var(--brand-dark);
}

.app-switcher-trigger:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px var(--theme-focus);
}

.app-switcher[open] .app-switcher-trigger svg {
  transform: rotate(180deg);
}

.app-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: calc(-1 * (var(--brand-icon-layout-size) + var(--brand-lockup-gap)));
  display: grid;
  width: min(360px, calc(100vw - 24px));
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(16, 44, 45, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 48px rgba(31, 27, 35, .2), 0 4px 14px rgba(31, 27, 35, .08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.app-switcher-menu::before {
  position: absolute;
  top: -6px;
  left: 98px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(16, 44, 45, .14);
  border-left: 1px solid rgba(16, 44, 45, .14);
  background: rgba(255, 255, 255, .98);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.app-switcher-option {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  transition: background 130ms ease, transform 130ms ease;
}

.app-switcher-option-home {
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 44, 45, .09);
  border-radius: 10px 10px 5px 5px;
  background: #ebedec;
}

.app-switcher-option:hover,
.app-switcher-option:focus-visible {
  outline: 0;
  transform: translateX(2px);
}

.app-switcher-option-home:hover,
.app-switcher-option-home:focus-visible {
  background: #e4ebeb;
}

.app-switcher-option-explore:hover,
.app-switcher-option-explore:focus-visible {
  background: #fff3c4;
}

.app-switcher-option-lantern:hover,
.app-switcher-option-lantern:focus-visible {
  background: #f6e9de;
}

.app-switcher-option-cooking:hover,
.app-switcher-option-cooking:focus-visible {
  background: #fde9e6;
}

.app-switcher-option-story:hover,
.app-switcher-option-story:focus-visible {
  background: #e6f0f2;
}

.app-switcher-option-workbench:hover,
.app-switcher-option-workbench:focus-visible {
  background: #f3e6dd;
}

.app-switcher-option-homebook:hover,
.app-switcher-option-homebook:focus-visible {
  background: #e9f0ea;
}

.app-switcher-option-labelwise:hover,
.app-switcher-option-labelwise:focus-visible {
  background: #efeaf2;
}

.app-switcher-option-tabletop:hover,
.app-switcher-option-tabletop:focus-visible {
  background: #f0f5df;
}

.app-switcher-option.is-active {
  background: #fff7d9;
}

.app-switcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(16, 44, 45, .09);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(31, 27, 35, .06);
}

.app-switcher-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.app-switcher-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.app-switcher-copy strong {
  color: #332b3b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.app-switcher-copy small {
  overflow-wrap: anywhere;
  color: #716b73;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
}

.app-switcher-check,
.app-switcher-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.app-switcher-check {
  color: #b27c00;
}

.app-switcher-arrow {
  color: #a7a1a8;
}

.partner-line {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  width: fit-content;
  max-width: min(100%, 290px);
  margin: 0;
  padding: 4px 9px;
  border: 1px solid rgba(16, 44, 45, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 4px 12px rgba(24, 32, 29, .08);
  color: #b27c00;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42);
  white-space: normal;
  backdrop-filter: blur(8px) saturate(1.05);
  transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease, color 140ms ease, transform 140ms ease;
}

.partner-line:hover,
.partner-line:focus-visible {
  border-color: rgba(178, 124, 0, .54);
  background: rgba(255, 247, 217, .9);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, .16), 0 8px 20px rgba(24, 32, 29, .12);
  color: #865e00;
  outline: 0;
  transform: translateY(1px);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(190px, 1.5fr) repeat(3, minmax(120px, 1fr)) 38px;
  gap: 8px;
  align-items: end;
}

.field {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.field>span {
  padding-left: 2px;
  color: #68736d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input,
select,
.filter-trigger {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d5dbd1;
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: #26342d;
  font-size: 13px;
  font-weight: 650;
  padding: 8px 11px;
}

select,
.filter-trigger {
  padding-right: 30px;
}

input:focus,
select:focus,
.filter-trigger:focus {
  border-color: #6d9b83;
}

.filter-field {
  position: relative;
}

.filter-trigger {
  position: relative;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#countryFilter,
#stateFilter {
  display: flex;
  align-items: center;
  gap: 7px;
}

.filter-trigger-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 140ms ease;
}

.filter-trigger[aria-expanded="true"]::after {
  transform: translateY(-20%) rotate(225deg);
}

.filter-trigger.has-selection {
  border-color: #91aa9b;
  background: #f6f9f6;
  color: #2f653b;
  border-width: 2px;
}

.filter-popover {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 1200;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: max(100%, 190px);
  max-height: calc(100dvh - 150px);
  overflow: hidden;
  border: 1px solid #cbd5ca;
  border-radius: 11px;
  background: #fffdf8;
  box-shadow: 0 16px 36px rgba(28, 45, 35, .18);
  padding: 6px;
}

.filter-option-search-wrap {
  display: block;
  padding: 2px 2px 6px;
}

.filter-option-search {
  width: 100%;
  height: 32px;
  box-sizing: border-box;
  border: 1px solid #cbd5ca;
  border-radius: 7px;
  background: #fff;
  color: #33473d;
  font: inherit;
  font-size: 12px;
  padding: 0 9px;
}

.filter-option-search:focus {
  outline: 2px solid rgba(57, 115, 88, .3);
  outline-offset: 1px;
}

.filter-options {
  display: grid;
  min-height: 0;
  overflow-y: auto;
  align-content: start;
}

.filter-popover[hidden] {
  display: none;
}

.filter-field[data-filter="state"] .filter-popover {
  width: max(100%, 250px);
}

.filter-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  width: 100%;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #33473d;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 8px;
  text-align: left;
}

.filter-option-label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.country-flag {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
}

.country-flag-deferred {
  background-image: var(--country-flag-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.filter-option:hover,
.filter-option:focus-visible {
  outline: 0;
  background: #edf3ea;
}

.filter-check {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #b9c7ba;
  border-radius: 5px;
  color: transparent;
  font-size: 11px;
}

.filter-option[aria-selected="true"] .filter-check {
  border-color: #32694f;
  background: #32694f;
  color: #fff;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d5dbd1;
  border-radius: 9px;
  background: #fff;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.reset-button {
  color: #516059;
}

.reset-button svg {
  color: inherit;
}

.reset-button svg path {
  stroke: currentColor;
  fill: none;
}

.icon-button:hover {
  border-color: #8fa997;
  background: #f5f9f3;
}

.reset-button.is-active-filter {
  border-color: #dd9595;
  color: #9f2222;
  background: #fff4f4;
  border-width: 2px;
}

.reset-button.is-active-filter:hover {
  border-color: #9f2222;
  background: #ffe5e5;
}

.reset-button.is-active-filter svg {
  color: inherit;
}

.reset-button.is-active-filter svg path {
  stroke: currentColor;
}

.display-controls {
  display: flex;
  align-items: end;
  gap: 8px;
}

.sort-field {
  width: 128px;
}

.detail-field {
  width: 110px;
}

.display-native-select {
  display: none;
}

.display-select-popover {
  grid-template-rows: minmax(0, 1fr);
}

.save-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d5dbd1;
  border-radius: 9px;
  background: #fff;
  color: #516059;
  font-size: 12px;
  font-weight: 800;
  padding: 0;
}

.save-filter svg {
  width: 17px;
  height: 17px;
}

.save-filter[aria-pressed="true"] {
  border-color: #c08835;
  background: #fff6db;
  color: #8b5f17;
}

.save-filter[aria-pressed="true"] svg {
  fill: currentColor;
}

#resultSummary {
  grid-column: 2 / 4;
  margin: 0;
  color: #708078;
  font-size: 11px;
  font-weight: 750;
}

.main-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--list-width)) 9px minmax(0, 1fr);
  height: calc(100vh - 94px);
  min-height: calc(100vh - 94px);
  overflow: hidden;
}

.listing-pane {
  min-width: 0;
  overflow-y: auto;
  padding: clamp(22px, 3vw, 42px) clamp(16px, 2.5vw, 36px) 70px;
  container-type: inline-size;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .85fr);
  align-items: start;
  max-width: 1100px;
}

.cuisine-rail {
  grid-column: 1 / -1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 4px;
  padding: 16px;
  border: 1px solid rgba(57, 82, 68, .14);
  border-radius: 18px;
  background: #e1ce9d;
}

.cuisine-rail-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.cuisine-rail-header span {
  display: block;
  color: #9b5a36;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cuisine-rail-header h2 {
  margin: 3px 0 0;
  color: #263d31;
  font-family: inherit;
  font-size: 16px;
}

.cuisine-rail-header a {
  color: #2f6d53;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.cuisine-rail-scroll {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  min-height: 163px;
  width: 100%;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.cuisine-recipe-card {
  display: grid;
  grid-template-rows: 106px auto auto;
  align-content: start;
  flex: 0 0 150px;
  gap: 5px;
  color: #263d31;
  text-decoration: none;
}

.cuisine-recipe-card img,
.cuisine-recipe-placeholder {
  width: 150px;
  height: 106px;
  border-radius: 12px;
  background: #dce8d7;
  box-shadow: 0 5px 13px rgba(18, 32, 24, .14);
  object-fit: cover;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cuisine-recipe-placeholder {
  display: grid;
  place-items: center;
  font-size: 30px;
}

.cuisine-recipe-card:hover img,
.cuisine-recipe-card:focus-visible img,
.cuisine-recipe-card:hover .cuisine-recipe-placeholder,
.cuisine-recipe-card:focus-visible .cuisine-recipe-placeholder {
  box-shadow: 0 9px 20px rgba(18, 32, 24, .24);
  transform: translateY(-3px);
}

.cuisine-recipe-card strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cuisine-recipe-card > span:last-child {
  color: #708078;
  font-size: 10px;
}

.cuisine-rail-loading {
  color: #708078;
  font-size: 12px;
  padding: 20px 4px;
}

.cuisine-results {
  grid-column: 1 / -1;
  width: 100%;
  padding-bottom: 24px;
}

.cuisine-rail-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 10px;
}

.cuisine-rail-footer a {
  color: #2f6d53;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.cuisine-results.is-collapsed .cuisine-rail-footer {
  display: none;
}

.cuisine-grid-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cuisine-grid-pagination button {
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid #cfd9cf;
  border-radius: 8px;
  background: #fffefa;
  color: #365c4b;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.cuisine-grid-pagination button:disabled {
  opacity: .45;
  cursor: default;
}

.cuisine-grid-pagination span {
  color: #708078;
  font-size: 11px;
  font-weight: 700;
}

.cuisine-recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 18px;
}

.cuisine-recipe-grid .cuisine-recipe-card {
  grid-template-rows: 132px auto auto;
  flex-basis: auto;
}

.cuisine-recipe-grid .cuisine-recipe-card img,
.cuisine-recipe-grid .cuisine-recipe-placeholder {
  width: 100%;
  height: 132px;
}

.section-intro h1 {
  margin: 0;
  max-width: 690px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}

.section-intro h1 em {
  color: #39735b;
  font-weight: 500;
}

.intro-art-text {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.intro-art-text-row {
  display: inline;
  color: #39735b;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: left;
  vertical-align: baseline;
  white-space: nowrap;
}

.intro-art-text:hover,
.intro-art-text:focus-visible {
  color: #2f5f4c;
}

.intro-art-text:focus-visible {
  outline: 3px solid #2b6b50;
  outline-offset: 4px;
  border-radius: 6px;
}

.intro-art {
  display: grid;
  min-height: 154px;
  place-items: start center;
  align-self: start;
  overflow: visible;
  border: 0;
  margin: 0;
  padding-top: 10px;
  width: 100%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.intro-art:focus-visible {
  outline: 3px solid #2b6b50;
  outline-offset: 4px;
  border-radius: 16px;
}

.intro-art img {
  grid-area: 1 / 1;
  display: block;
  pointer-events: none;
  width: min(100%, 440px);
  max-height: 190px;
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  filter: drop-shadow(0 12px 18px rgba(39, 58, 47, .12));
  transition: opacity 700ms ease;
  will-change: opacity;
}

.intro-art img.is-visible {
  opacity: 1;
}

/* The map splitter can make the listing narrow while the viewport remains wide. */
@container (max-width: 720px) {
  .section-intro {
    grid-template-columns: 1fr;
  }

  .intro-art {
    min-height: 130px;
    place-items: center start;
  }

  .intro-art img {
    width: min(100%, 520px);
    max-height: 175px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-loading {
    transition: none;
  }

  .app-loading-dots span {
    animation: none;
  }

  .intro-art img {
    transition: none;
  }
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 1100px;
  min-height: 0;
  margin: 0 auto 13px;
}

.active-filters:empty {
  display: none;
}

.active-filters button {
  border: 1px solid #c9d4c8;
  border-radius: 99px;
  background: #eef4ec;
  color: #3d5c4c;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 9px;
}

.active-filters button span {
  margin-left: 4px;
}

.pagination {
  max-width: 1100px;
  margin: 14px auto 0;
  display: grid;
  gap: 8px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagination-label {
  color: #5d685e;
  font-size: 12px;
  font-weight: 800;
}

.pagination-range {
  color: #6f7a73;
  font-size: 11px;
  text-align: center;
}

.pagination-button {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid #d7ddcf;
  border-radius: 9px;
  background: #fff;
  color: #2b4a3f;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 11px;
  min-height: 35px;
}

.pagination-button:hover {
  border-color: #9ab0a0;
}

.pagination-button:disabled {
  border-color: #d5ddd2;
  background: #f4f6f1;
  color: #8f9992;
  cursor: not-allowed;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  align-items: start;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.cards-category-group {
  grid-column: 1 / -1;
  min-width: 0;
  display: grid;
  gap: 8px;
  padding-bottom: 24px;
}

.cards-category-header {
  grid-column: 1 / -1;
  margin: 0;
  padding: 6px 2px 4px;
  color: #2b4a3f;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  gap: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .01em;
  border-bottom: 1px solid #d7ddd1;
}

.cards-category-toggle-icon {
  color: #4f6f5f;
  font-size: 20px;
  line-height: 1;
}

.cards-category-body {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  align-items: start;
  gap: 22px;
}

.cards-category-body.is-collapsed {
  display: none;
}

.cards-category-body.cuisine-recipe-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 18px;
}

.explore-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 540px;
  overflow: hidden;
  border: 1px solid rgba(57, 82, 68, .19);
  border-radius: 18px;
  outline: 0;
  background: var(--paper);
  box-shadow: 0 7px 22px rgba(31, 45, 37, .07);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.explore-card * {
  cursor: inherit;
}

.explore-card:hover,
.explore-card:focus-visible,
.explore-card.map-highlight {
  border-color: rgba(48, 104, 78, .52);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.explore-card.is-range-card {
  border-color: rgba(59, 111, 84, .34);
}

.explore-card.is-location-specific {
  border-width: 2.5px;
  border-style: solid;
  border-color: #d9a832;
  box-shadow: 0 0 0 2px rgba(236, 180, 63, .35), 0 10px 26px rgba(181, 132, 33, .32);
}

.explore-card.is-range-card .location-dot {
  background: #39735b;
  box-shadow: 0 0 0 3px rgba(57, 115, 91, .14);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe5dc;
}

.card-media>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .75, .2, 1);
}

.explore-card:hover .card-media>img {
  transform: scale(1.035);
}

.category-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 99px;
  background: rgba(255, 253, 247, .5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  color: #294a3b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 6px 9px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.category-chip svg {
  width: 15px;
  height: 15px;
}

.card-save {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(255, 253, 247, .5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  color: #5c675f;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 150ms ease, transform 150ms ease;
  transform: translateY(-3px);
}

.explore-card:hover .card-save,
.explore-card:focus-within .card-save,
.card-save:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.card-save svg {
  width: 17px;
  height: 17px;
}

.card-save.is-saved {
  color: #9d6514;
}

.card-save.is-saved svg {
  fill: #e5aa37;
}

.card-trivia-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 36px;
  padding: 0;
  color: #f3c93f;
  border-radius: 9px;
  pointer-events: none;
}

.art-credit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  border-radius: 7px;
  background: rgba(20, 30, 25, .5);
  color: #fff;
  font-size: 8px;
  line-height: 1.2;
  padding: 5px 7px;
  text-align: right;
  backdrop-filter: blur(7px);
}

.category-chip,
.art-credit {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.art-credit {
  transform: translateY(4px);
}

.card-media:hover .category-chip,
.card-media:hover .art-credit,
.explore-card:focus-visible .category-chip,
.explore-card:focus-visible .art-credit,
.card-media:focus-within .category-chip,
.card-media:focus-within .art-credit {
  opacity: 1;
  transform: translateY(0);
}

.card-trivia-badge svg {
  width: 15px;
  height: 15px;
}

.card-trivia-badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.art-credit strong {
  font-size: 10px;
}

.card-body {
  padding: 17px 18px 15px;
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  color: #6b7770;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d16d43;
  box-shadow: 0 0 0 3px rgba(209, 109, 67, .13);
}

.card-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.03;
}

.scientific-name {
  margin: 4px 0 0;
  color: #768179;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.badge {
  flex: 0 0 auto;
  max-width: 115px;
  border-radius: 6px;
  background: #edf1e6;
  color: #52644a;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  padding: 6px 7px;
  text-align: center;
  text-transform: uppercase;
}

.card-lede {
  margin: 13px 0 14px;
  color: #46524c;
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.45;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: solid #e3e5dd;
  border-width: 1px 0;
}

.quick-facts div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 7px;
}

.quick-facts div+div {
  border-left: 1px solid #e3e5dd;
}

.quick-facts span {
  color: #7a847e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.quick-facts strong {
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.2;
}

.cards[data-detail="images"] .card-body,
.cards[data-detail="images"] .category-chip,
.cards[data-detail="images"] .card-save,
.cards[data-detail="images"] .art-credit,
.cards[data-detail="images"] .card-trivia-badge {
  display: none;
}

.cards[data-detail="essential"] .card-lede,
.cards[data-detail="essential"] .quick-facts,
.cards[data-detail="standard"] .quick-facts {
  display: none;
}

.split-handle {
  position: relative;
  z-index: 10;
  cursor: col-resize;
  background: #d8dcd1;
}

.split-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 5px;
  height: 44px;
  border-radius: 9px;
  background: #89988f;
  transform: translateY(-50%);
}

.split-handle:focus-visible {
  outline: 3px solid rgba(57, 115, 88, .35);
  outline-offset: -2px;
}

.main-map-pane {
  position: sticky;
  top: 94px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: start;
  height: calc(100vh - 94px);
  min-width: 0;
  overflow: hidden;
  background: #dfe5dc;
  border-left: 1px solid rgba(57, 116, 79, 0.28);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, .38), inset 0 0 0 1px rgba(35, 75, 61, .08);
}

.main-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #cfd8cf;
  border: 1px solid rgba(57, 116, 79, 0.24);
}

.main-map.is-booting::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #dfe5dc, #cbd6cc);
  color: #607068;
  content: "Preparing map…";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.map-heading {
  position: absolute;
  top: 13px;
  left: 13px;
  right: 13px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.map-heading>div {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 10px;
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 6px 18px rgba(30, 44, 36, .15);
  padding: 8px 11px;
  backdrop-filter: blur(9px);
}

.map-heading span {
  color: #748078;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-heading strong {
  font-family: Georgia, serif;
  font-size: 15px;
}

.map-updating {
  margin: 0 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 6px 18px rgba(30, 44, 36, .15);
  color: #607068;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .02em;
  padding: 7px 10px;
  backdrop-filter: blur(9px);
}

.map-updating[hidden] {
  display: none;
}

.map-fit {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 6px 18px rgba(30, 44, 36, .15);
  color: #365b49;
  font-size: 10px;
  font-weight: 900;
  padding: 8px 10px;
  backdrop-filter: blur(9px);
}

.map-cluster-tray {
  display: grid;
  gap: 14px;
  max-height: 360px;
  overflow: visible;
  border-top: 1px solid rgba(57, 82, 68, .16);
  background: #c1c3a5;
  box-shadow: 0 -8px 24px rgba(30, 44, 36, .1);
  padding: 10px 0px 0px;
}

.map-cluster-tray[hidden] {
  display: none;
}

.map-wildlife-section {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.map-wildlife-section>div:first-child {
  display: grid;
  gap: 2px;
  padding-left: 2px;
}

.map-wildlife-section>div:first-child span {
  color: #748078;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-wildlife-section>div:first-child strong {
  color: #233f32;
  font-family: Georgia, serif;
  font-size: 13px;
}

.map-cluster-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #c1c3a5;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  margin-top: -220px;
  padding-top: 220px;
  margin-left: -62px;
  padding-left: 62px;
  margin-right: 72px;
  padding-right: 72px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.map-cluster-row button {
  position: relative;
  flex: 0 0 78px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #233f32;
  padding: 0;
  text-align: center;
  z-index: 1;
}

.map-cluster-row button:hover,
.map-cluster-row button:focus-visible {
  z-index: 3333;
}

.map-cluster-row img {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 4px;
  border: 3px solid #777764;
  border-radius: 50%;
  background: rgba(255, 253, 247, .42);
  box-shadow: 0 5px 15px rgba(18, 32, 24, .2);
  object-fit: cover;
}

.map-cluster-row button.is-regional img {
  border-color: #d3b000;
}

.map-cluster-row strong {
  display: block;
  overflow: hidden;
  color: #2d4438;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-cluster-row > button > strong {
  display: none;
}

.map-cluster-row .wildlife-preview {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px) scale(.82);
  transition: opacity 140ms ease, transform 160ms ease;
}

.map-cluster-row .wildlife-preview img {
  width: 164px;
  height: 164px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(18, 32, 24, .34);
  object-fit: cover;
}

.map-cluster-row button.is-regional .wildlife-preview img {
  border-color: #d3b000;
}

.map-cluster-row .wildlife-preview strong {
  max-width: 176px;
  border: 1px solid rgba(57, 82, 68, .14);
  border-radius: 999px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 5px 16px rgba(18, 32, 24, .16);
  color: #233f32;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  padding: 5px 8px;
  text-align: center;
}

.map-cluster-row button:hover .wildlife-preview,
.map-cluster-row button:focus-visible .wildlife-preview {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.map-cluster-tray .wildlife-preview {
  display: none;
}

.wildlife-hover-preview {
  position: fixed;
  z-index: 5000;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 180px;
  pointer-events: none;
  animation: wildlife-hover-preview-in 160ms ease-out both;
}

.wildlife-hover-preview[hidden] {
  display: none;
}

.wildlife-hover-preview.is-loading {
  visibility: hidden;
}

.wildlife-hover-preview img {
  width: 164px;
  height: 164px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(18, 32, 24, .34);
  object-fit: cover;
}

.wildlife-hover-preview.is-regional img {
  border-color: #d3b000;
}

.wildlife-hover-preview strong {
  max-width: 176px;
  overflow: hidden;
  border: 1px solid rgba(57, 82, 68, .14);
  border-radius: 999px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 5px 16px rgba(18, 32, 24, .16);
  color: #233f32;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  padding: 5px 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes wildlife-hover-preview-in {
  from { opacity: 0; transform: translateY(6px) scale(.82); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pin-tray {
  position: fixed;
  z-index: 2300;
  right: var(--pin-tray-right, 0px);
  bottom: var(--pin-tray-bottom, 0px);
  width: var(--pin-tray-width, 50vw);
  max-width: var(--pin-tray-width, 50vw);
  min-width: 68px;
  min-height: 68px;
  pointer-events: none;
}

.pin-tray[hidden] { display: none; }

.pin-tray-background {
  position: fixed;
  z-index: 2050;
  right: var(--pin-tray-right, 0px);
  bottom: var(--pin-tray-bottom, 0px);
  width: var(--pin-tray-width, 50vw);
  max-width: var(--pin-tray-width, 50vw);
  height: 100px;
  border-top: 1px solid rgba(84, 57, 44, .22);
  border-left: 1px solid rgba(84, 57, 44, .16);
  background: #b29378;
  box-shadow: 0 -8px 24px rgba(30, 44, 36, .14);
  pointer-events: none;
}

.pin-tray-background[hidden] {
  display: none;
}

.pin-tray-toggle {
  position: absolute;
  right: 12px;
  bottom: 28px;
  z-index: 4444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: #8f5f4a;
  box-shadow: 0 8px 24px rgba(20, 39, 27, .3);
  color: #fff;
  padding: 0 11px;
  pointer-events: auto;
}

.pin-tray-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.pin-tray-panel {
  display: grid;
  width: 100%;
  max-width: 100%;
  height: 100px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 10px 64px 12px 10px;
  pointer-events: none;
}

.pin-tray-panel[hidden] { display: none; }

.pin-tray-items {
  min-width: 0;
  padding: 0;
}

.pin-tray-empty {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 78px;
  padding: 0 14px;
  color: #fffdf8;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  text-shadow: 0 1px 2px rgba(50, 31, 24, .28);
}

.pin-wildlife-section {
  display: block;
}

.pin-cluster-row {
  justify-content: flex-end;
  margin: 0;
  overflow: visible;
  padding: 0;
}

.pin-cluster-row button {
  pointer-events: auto;
}

.pin-tray-item {
  position: relative;
  flex: 0 0 78px;
  min-width: 0;
}

.pin-cluster-row .pin-tray-item-open {
  display: block;
  width: 78px;
}

.pin-tray-item-open > strong {
  display: none;
}

.pin-cluster-row .pin-tray-remove {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 4444;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #8f5f4a;
  box-shadow: 0 3px 9px rgba(18, 32, 24, .2);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding: 0 0 2px;
}

.pin-cluster-row .pin-tray-remove:hover,
.pin-cluster-row .pin-tray-remove:focus-visible {
  background: #fffdf8;
  color: #694f42;
  outline: none;
  transform: scale(1.08);
}

.pin-wildlife-section,
.pin-cluster-row {
  background: transparent;
}

.pinned-drawer-layer {
  position: fixed;
  inset: 4vh 18px;
  z-index: 2210;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  pointer-events: none;
}

.pinned-drawer-layer:not(:empty)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(14, 23, 18, .5);
  backdrop-filter: blur(3px);
}

.pin-full-modal {
  position: relative;
  flex: 0 0 min(720px, calc(100vw - 36px));
  width: min(720px, calc(100vw - 36px));
  max-height: min(92vh, 920px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-x: auto;
  overscroll-behavior-y: contain;
  border-radius: 32px 32px 20px 20px;
  background: var(--paper);
  pointer-events: auto;
  animation: pin-full-modal-in 190ms ease-out both;
}

.pin-full-modal-close {
  z-index: 5;
}

@keyframes pin-full-modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.map-loading,
.map-error {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #5f7065;
  font-family: Georgia, serif;
  text-align: center;
}

.explore-marker {
  position: relative;
  width: 25.2px;
  height: 25.2px;
  border: 0;
  background: transparent;
  padding: 0;
  transition: transform 160ms ease;
}

.explore-marker::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 253, 247, .96);
  border-radius: 50% 50% 50% 8px;
  background: #2f6d53;
  box-shadow: 0 5px 16px rgba(18, 32, 24, .32);
  transform: rotate(-45deg);
}

.explore-marker:hover,
.explore-marker.is-active {
  z-index: 5;
  transform: scale(1.16);
}

.explore-marker .pin-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
}

.explore-marker .pin-icon svg {
  width: 11.7px;
  height: 11.7px;
}

.explore-marker .pin-count {
  position: absolute;
  right: -9px;
  top: -9px;
  display: none;
  min-width: 18px;
  height: 18px;
  border: 2px solid #fffdf7;
  border-radius: 999px;
  background: #f4b41a;
  box-shadow: 0 5px 12px rgba(18, 32, 24, .24);
  color: #263d31;
  font-size: 9px;
  font-weight: 950;
  line-height: 14px;
  padding: 0 4px;
  text-align: center;
}

.explore-marker.is-cluster-lead .pin-count {
  display: block;
}

.explore-marker.is-cluster-lead.is-cluster-mixed::before {
  background: #d49e03;
}

.explore-marker.is-cluster-lead.is-cluster-mixed .pin-icon {
  color: #26342d;
}

.explore-marker.is-cluster-lead.is-cluster-mixed .pin-count {
  background: #af7c5d;
  color: #fff;
}

.explore-marker.is-cluster-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.explore-marker .pin-preview {
  position: absolute;
  left: 50%;
  top: 16.2px;
  z-index: 4;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.82);
  transition: opacity 140ms ease, transform 160ms ease;
}

.explore-marker .pin-preview.is-cluster-ring {
  transform: translateX(-50%) scale(.82);
}

.explore-marker .pin-preview-item {
  --pin-size: 164px;
  --pin-name-size: 12px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.explore-marker .pin-preview-item--single {
  transform: translate(-50%, calc(-100% - 8px));
}

.explore-marker .pin-preview-item--ring {
  transform: translate(calc(-50% + var(--pin-offset-x, 0px)), calc(-50% + var(--pin-offset-y, 0px)));
}

.explore-marker .pin-preview-item img {
  width: var(--pin-size);
  height: var(--pin-size);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(18, 32, 24, .34);
  object-fit: cover;
}

.explore-marker .pin-preview-item strong {
  --label-max-width: 182px;
  max-width: var(--label-max-width);
  border: 1px solid rgba(57, 82, 68, .14);
  border-radius: 999px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 5px 16px rgba(18, 32, 24, .16);
  color: #233f32;
  font-size: var(--pin-name-size);
  font-weight: 900;
  line-height: 1.15;
  padding: 4px 8px;
  text-align: center;
}

.explore-marker .pin-preview-item--ring strong {
  max-width: 96px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 6px;
}

.explore-marker:hover .pin-preview,
.explore-marker:focus-visible .pin-preview,
.explore-marker.is-active .pin-preview {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.explore-marker.is-range-marker {
}

.explore-marker.is-range-marker::before {
  border-color: #f4b41a;
  background: #b57a05;
}

.explore-marker.marker-museum::before {
  background: #d73a3a;
}

.explore-marker.marker-historic-site::before {
  background: #7a3aec;
}

.explore-marker.marker-living-culture::before {
  background: #df5c8e;
}

.explore-marker.marker-natural-landmark::before {
  background: #b9c94a;
}

.explore-marker.marker-garden::before {
  background: #86b844;
}

.explore-marker.marker-zoo-aquarium::before {
  background: #159a9c;
}

.explore-marker.marker-archaeological-site::before {
  background: #ed8c22;
}

.explore-marker.marker-trail::before {
  background: #2d73ff;
}

.explore-marker.marker-fish::before {
  background: #0b7de7;
}

.explore-marker.is-cluster-lead::before {
  background: #d49e03;
}

.explore-marker.is-cluster-lead .pin-icon {
  color: #26342d;
}

.maplibregl-ctrl-attrib {
  font-size: 8px !important;
}

.maplibregl-ctrl-attrib.maplibregl-compact:not(.maplibregl-compact-show):not(:hover):not(:focus-within) {
  overflow: hidden;
  width: 28px;
  height: 28px;
  padding: 0 !important;
}

.maplibregl-ctrl-attrib.maplibregl-compact:not(.maplibregl-compact-show):not(:hover):not(:focus-within) a,
.maplibregl-ctrl-attrib.maplibregl-compact:not(.maplibregl-compact-show):not(:hover):not(:focus-within) span {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px dashed #b9c2b7;
  border-radius: 18px;
  background: rgba(255, 255, 255, .45);
  text-align: center;
  padding: 30px;
}

.empty-state span {
  font-family: Georgia, serif;
  font-size: 26px;
}

.empty-state p {
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.empty-state button {
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 9px 13px;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(14, 23, 18, .5);
  backdrop-filter: blur(3px);
}

body.drawer-open {
  overflow: hidden;
}

.drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2200;
  width: min(720px, calc(100vw - 32px));
  max-height: min(92vh, 920px);
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 26px 80px rgba(17, 31, 23, .34);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 24px)) scale(.98);
  transition: opacity 200ms ease, transform 260ms cubic-bezier(.22, .8, .25, 1), visibility 0s linear 260ms;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0s;
}

.drawer-close {
  position: sticky;
  top: 12px;
  z-index: 3;
  float: right;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 12px 14px -50px 0;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 4px 13px rgba(0, 0, 0, .2);
  font-size: 25px;
  line-height: 1;
}

.drawer-hero {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce3d8;
}

.drawer-trivia-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  pointer-events: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #f3c93f;
  border-radius: 10px;
}

.drawer-trivia-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.95;
}

.drawer-trivia-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

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

.drawer-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.drawer-image-button:focus-visible {
  outline: none;
}

.drawer-hero:has(.drawer-image-button:focus-visible) .drawer-art-credit {
  box-shadow: 0 0 0 3px #d3b000;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 4vh 4vw;
  background: rgba(0, 0, 0, .9);
  cursor: zoom-out;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .55);
  cursor: default;
}

.image-lightbox-close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.drawer-art-credit {
  position: absolute;
  right: 13px;
  bottom: 13px;
  border-radius: 7px;
  background: rgba(20, 30, 25, .78);
  color: #fff;
  font-size: 10px;
  padding: 7px 9px;
  backdrop-filter: blur(7px);
}

.drawer-body {
  padding: 26px clamp(20px, 5vw, 42px) 50px;
}

.drawer-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #3f725a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.drawer-kicker svg {
  width: 18px;
  height: 18px;
}

.drawer-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
}

.drawer-title-row h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(31px, 5vw, 47px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
}

.drawer-save {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  border: 1px solid #d7dcd3;
  border-radius: 8px;
  background: #fff;
  color: #58655e;
  font-size: 11px;
  font-weight: 900;
  padding: 8px 10px;
}

.drawer-save svg {
  width: 16px;
  height: 16px;
}

.drawer-save.is-saved {
  border-color: #d5af62;
  background: #fff6dc;
  color: #936217;
}

.drawer-save.is-saved svg {
  fill: #e6ac3c;
}

.drawer-lede {
  margin: 18px 0;
  color: #46534c;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.42;
}

.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 15px;
}

.drawer-actions a,
.drawer-actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #cbd6cb;
  border-radius: 8px;
  background: #f2f6ef;
  color: #2e664d;
  font-size: 11px;
  font-weight: 900;
  padding: 9px 11px;
  text-decoration: none;
  cursor: pointer;
}

.drawer-actions a.primary-action {
  border-color: #234b3d;
  background: #234b3d;
  color: #fff;
}

.drawer-actions svg {
  width: 16px;
  height: 16px;
}

.photo-gallery {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px 22px 20px;
  background: #111713;
  color: #fff;
}

.photo-gallery[hidden] {
  display: none;
}

.photo-gallery-controls {
  position: absolute;
  top: 30px;
  right: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.photo-gallery-controls > p {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(14, 21, 16, .78);
  color: #d8e1da;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.photo-gallery-controls > p:empty {
  display: none;
}

.photo-gallery-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  border: 1px solid #536057;
  border-radius: 50%;
  background: #1d2620;
  color: #fff;
  font-size: 27px;
  cursor: pointer;
}

.photo-gallery-loading {
  display: grid;
  place-items: center;
  color: #c7d3ca;
  font-family: Georgia, serif;
  font-size: 18px;
}

.photo-gallery-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #080b09;
}

.photo-gallery-stage[hidden] {
  display: none;
}

.photo-gallery-stage > img {
  position: absolute;
  top: 26px;
  left: 96px;
  display: block;
  width: calc(100% - 192px);
  height: calc(100% - 52px);
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.photo-gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 60px;
  padding: 0 0 6px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(14, 21, 16, .78);
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.photo-gallery-prev { left: 16px; }
.photo-gallery-next { right: 16px; }

.photo-gallery-footer {
  display: grid;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(10, 15, 11, .78);
}

.photo-gallery-loading:not([hidden]) ~ .photo-gallery-footer {
  display: none;
}

.photo-gallery-caption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  backdrop-filter: blur(9px);
}

.photo-gallery-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.photo-gallery-caption p {
  overflow: hidden;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-gallery-caption .photo-gallery-art-note {
  margin-top: 4px;
  color: #b7c2b9;
  font-family: inherit;
  font-size: 10px;
  line-height: 1.4;
  text-overflow: initial;
  white-space: normal;
}

.photo-gallery-caption .photo-gallery-art-note[hidden] {
  display: none;
}

.photo-gallery-caption span {
  overflow: hidden;
  margin-left: auto;
  color: #b7c2b9;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-gallery-caption span[hidden] {
  display: none;
}

.photo-gallery-caption a {
  flex: 0 0 auto;
  color: #f2c35c;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.photo-gallery-thumbs {
  display: flex;
  gap: 8px;
  min-height: 72px;
  overflow-x: auto;
  scrollbar-color: #607067 transparent;
}

.photo-gallery-thumbs button {
  flex: 0 0 100px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #263129;
  opacity: .64;
  cursor: pointer;
}

.photo-gallery-thumbs button.is-active {
  border-color: #efbb4d;
  opacity: 1;
}

.photo-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.photo-gallery-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .photo-gallery {
    gap: 9px;
    padding: 12px;
  }

  .photo-gallery-close {
    width: 38px;
    height: 38px;
  }

  .photo-gallery-controls {
    top: 22px;
    right: 22px;
  }

  .photo-gallery-nav {
    width: 40px;
    height: 52px;
  }

  .photo-gallery-prev { left: 8px; }
  .photo-gallery-next { right: 8px; }

  .photo-gallery-stage > img {
    top: 16px;
    left: 42px;
    width: calc(100% - 84px);
    height: calc(100% - 32px);
  }

  .photo-gallery-caption span {
    display: none;
  }

  .photo-gallery-thumbs button {
    flex-basis: 78px;
    height: 58px;
  }
}

.address-link {
  position: relative;
  display: grid;
  gap: 4px;
  border: 1px solid #d5ddcf;
  border-radius: 10px;
  background: #f7f8f2;
  color: inherit;
  padding: 12px 92px 12px 14px;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease;
}

.address-link:hover {
  border-color: #6f9a82;
  background: #f0f6ee;
}

.address-link span,
.featured-area span {
  color: #758078;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.address-link strong {
  font-size: 12px;
  line-height: 1.35;
}

.address-link .address-mobile {
  display: none;
}

.address-mobile i {
  font-style: normal;
}

.address-link b {
  position: absolute;
  top: 50%;
  right: 13px;
  color: #2e684f;
  font-size: 10px;
  transform: translateY(-50%);
}

.address-link b svg {
  display: none;
}

.featured-area {
  border-left: 3px solid #7d9e7d;
  border-radius: 0 8px 8px 0;
  background: #f1f5ed;
  padding: 11px 13px;
}

.featured-area p {
  margin: 4px 0 0;
  color: #536159;
  font-size: 12px;
  line-height: 1.4;
}

.drawer-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 28px;
  border: solid #dfe3dc;
  border-width: 1px 0;
}

.drawer-facts div {
  display: grid;
  gap: 4px;
  padding: 12px 8px;
}

.drawer-facts div+div {
  border-left: 1px solid #dfe3dc;
}

.drawer-facts span {
  color: #7b857f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.drawer-facts strong {
  font-size: 13px;
}

:is(.drawer, .pin-full-modal) section {
  margin: 24px 0;
}

:is(.drawer, .pin-full-modal) section h3 {
  margin: 0 0 8px;
  color: #274d3c;
  font-family: Georgia, serif;
  font-size: 19px;
}

:is(.drawer, .pin-full-modal) section p {
  margin: 0;
  color: #4c5b53;
  font-size: 14px;
  line-height: 1.65;
}

:is(.drawer, .pin-full-modal) .summary-section p + p {
  margin-top: 12px;
}

.video-section {
  --video-radius: 14px;
}

.video-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--video-radius);
  background: #0b1510;
}

.video-facade,
.video-player,
.video-section iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b1510;
}

.video-facade {
  z-index: 1;
  overflow: hidden;
  padding: 0;
  color: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%);
}

.video-facade::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgb(2 12 7 / 78%) 100%);
  content: "";
}

.video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-facade:hover img {
  transform: scale(1.015);
}

.video-facade:focus-visible {
  outline: 3px solid #e8b441;
  outline-offset: 3px;
}

.video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  place-items: center;
  background: rgb(18 58 42 / 91%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 28%);
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease;
}

.video-facade:hover .video-play {
  background: #d16d43;
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.video-title {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgb(0 0 0 / 70%);
}

.video-section.is-playing .video-facade,
.video-section.is-playing .video-source-link {
  display: none;
}

.video-section.is-loading .video-play {
  opacity: .62;
}

.video-source-link {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 999px;
  background: rgb(5 14 10 / 78%);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.video-source-link:hover {
  background: rgb(209 109 67 / 94%);
}

.video-source-link:focus-visible {
  outline: 3px solid #e8b441;
  outline-offset: 2px;
}

:is(.drawer, .pin-full-modal) ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #4c5b53;
  font-size: 14px;
  line-height: 1.5;
}

:is(.drawer, .pin-full-modal) li::marker {
  color: #d16d43;
}

.guide-section {
  margin-top: 28px !important;
}

.guide-grid,
.practical-grid {
  overflow: hidden;
  border: 1px solid #dfe4dc;
  border-radius: 10px;
  background: #fff;
}

.guide-row,
.practical-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 13px;
  padding: 11px 13px;
}

.guide-row+.guide-row,
.practical-row+.practical-row {
  border-top: 1px solid #e5e8e1;
}

.guide-row span,
.practical-row span {
  color: #64776c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guide-copy {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.guide-row p,
.practical-row p {
  font-size: 12px !important;
  line-height: 1.48 !important;
}

.practical-section {
  border-top: 1px solid #e1e5de;
  padding-top: 21px;
}

.practical-grid {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.practical-row {
  grid-template-columns: 94px minmax(0, 1fr);
  padding: 8px 0;
}

.practical-row+.practical-row {
  border-color: #e6e9e3;
}

.season-note {
  border: 1px solid #cfdccf;
  border-radius: 9px;
  background: #edf5eb;
  padding: 13px 15px;
}

.season-note span {
  color: #477058;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.season-note p {
  margin: 4px 0 0;
  color: #4e6155;
  font-size: 13px;
  line-height: 1.45;
}

.signature-list {
  grid-template-columns: 1fr 1fr;
  gap: 7px 18px !important;
  padding: 0 !important;
  list-style: none;
}

.signature-list li {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
}

.signature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #43805f;
  font-weight: 900;
}

.good-to-know {
  border-left: 4px solid #d16d43;
  border-radius: 0 9px 9px 0;
  background: #f8eadf;
  padding: 14px 16px;
}

.good-to-know span {
  color: #995330;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.good-to-know p {
  margin: 5px 0 0;
  color: #574941;
  font-size: 13px;
  line-height: 1.5;
}

.trivia-section {
  margin-top: 14px;
  border-top: 1px solid #e0e4dc;
  padding-top: 21px;
}

.trivia-section-header {
  margin-bottom: 12px;
}

.trivia-section-header h3 {
  margin: 0;
}

.trivia-section-header p {
  margin: 6px 0 0;
  color: #5f6e65;
  font-size: 12px;
  line-height: 1.45;
  max-width: 58ch;
}

.trivia-list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.trivia-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.trivia-nav {
  border: 1px solid #bfd1c3;
  border-radius: 8px;
  background: #ffffff;
  color: #2b4a3f;
  min-height: 35px;
  min-width: 100px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: border-color 140ms ease, background 140ms ease;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.trivia-nav:hover,
.trivia-nav:focus-visible {
  background: #f1f7f0;
  border-color: #9ab0a0;
}

.trivia-nav:disabled {
  color: #8ea098;
  border-color: #d6e0d4;
  background: #f4f6f3;
  cursor: not-allowed;
}

.trivia-progress {
  color: #6f7a73;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  min-width: 56px;
  text-align: center;
  background: #f7fbf7;
  border: 1px solid #dde6dc;
  border-radius: 999px;
  padding: 6px 10px;
}

.trivia-item {
  border: 1px solid #dfe6de;
  border-radius: 14px;
  background: #cfddd9;
  padding: 16px;
  box-shadow: 0 16px 30px -26px rgba(26, 64, 45, 0.5);
}

.trivia-question {
  margin: 0;
  color: #274d3c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.trivia-options {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.trivia-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid #e1e8df;
  border-radius: 11px;
  background: #fff;
  color: #4d5b52;
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.trivia-option:hover,
.trivia-option:focus-within {
  border-color: #a7bfb3;
  background: #f7fbf7;
  box-shadow: 0 0 0 2px rgb(150 180 160 / 30%);
}

.trivia-option:has(input:checked) {
  border-color: #6b9c81;
  background: #edf5ed;
}

.trivia-option:has(input:checked) span {
  color: #2b4f3d;
  font-weight: 700;
}

.trivia-options input[type="radio"] {
  margin: 0;
  accent-color: #326750;
}

.trivia-slider-wrap {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.trivia-slider-labels {
  display: flex;
  justify-content: space-between;
  color: #6b786f;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.trivia-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 26px;
  cursor: pointer;
}

.trivia-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c8dacd, #f1f7ef);
  border: 1px solid #ceddce;
}

.trivia-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #edf4ec;
  background: #2f694f;
  margin-top: -9px;
}

.trivia-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c8dacd, #f1f7ef);
  border: 1px solid #ceddce;
}

.trivia-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #edf4ec;
  background: #2f694f;
}

.trivia-slider-value {
  color: #365a49;
  font-size: 13px;
  font-weight: 700;
}

.trivia-check {
  margin-top: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #bfd1c3;
  border-radius: 10px;
  background: #a0b4c7;
  color: #204635;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.trivia-check:hover,
.trivia-check:focus-visible {
  background: #e3efd9;
  border-color: #9ab0a0;
}

.trivia-check:active {
  transform: translateY(1px);
}

.trivia-feedback {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e3ebdf;
  font-size: 12px;
  line-height: 1.5;
}

.trivia-feedback.is-correct {
  color: #2d7a4e;
  font-weight: 700;
}

.trivia-feedback.is-incorrect {
  color: #b44f25;
}

.trivia-answer-hint {
  margin: 8px 0 0;
  color: #53695f;
  font-size: 12px;
  line-height: 1.45;
}

.art-story {
  border-top: 1px solid #e0e4dc;
  padding-top: 21px;
}

.source-block {
  margin-top: 30px;
  border-top: 1px solid #e0e4dc;
  padding-top: 16px;
}

.source-block>span {
  color: #7b857f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.source-links a {
  border: 1px solid #cbd6cb;
  border-radius: 8px;
  background: #f1f5ee;
  color: #2e664d;
  font-size: 11px;
  font-weight: 850;
  padding: 8px 10px;
  text-decoration: none;
}

.mobile-map-toggle {
  display: none;
}

.mobile-display-open-button {
  display: none;
}

.mobile-display-panel {
  display: none;
}

@media (max-width: 1320px) {
  .topbar {
    grid-template-columns: minmax(150px, max-content) minmax(0, 1fr);
  }

  .toolbar {
    position: relative;
    grid-template-columns: minmax(170px, 1.5fr) repeat(3, minmax(95px, 1fr)) 38px 38px;
  }

  .mobile-display-open-button {
    grid-column: 6;
    grid-row: 1;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    align-self: end;
    justify-self: end;
    border-radius: 10px;
    color: #516059;
    padding: 0;
  }

  .mobile-display-open-button[aria-expanded="true"] {
    border-color: #82a998;
    background: #edf5f1;
    box-shadow: 0 0 0 3px rgba(57, 115, 88, .14);
  }

  #displayControlsHost {
    display: none;
  }

  .mobile-display-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 1800;
    display: block;
    width: min(700px, calc(100vw - 28px));
    transform: translateX(-50%);
  }

  .mobile-display-panel:not([hidden]) {
    display: block;
  }

  .mobile-display-panel-inner {
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
    border: 1px solid rgba(203, 213, 202, .96);
    border-radius: 12px;
    background: rgba(255, 255, 255);
    box-shadow: 0 18px 40px rgba(24, 32, 29, .18);
    padding: 12px;
  }

  .mobile-display-panel-content {
    display: grid;
    gap: 9px;
  }

  .mobile-display-panel-content .display-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) 42px;
    align-items: start;
    gap: 10px;
  }

  .mobile-display-panel-content .display-controls .sort-field,
  .mobile-display-panel-content .display-controls .detail-field {
    width: 100%;
  }

  .mobile-display-panel-content .display-select-trigger {
    min-height: 46px;
    font-size: 14px;
  }

  .mobile-display-panel-content .display-select-popover {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 20;
    width: 100%;
    max-height: min(52dvh, 320px);
    box-sizing: border-box;
    margin: 0;
    box-shadow: 0 8px 22px rgba(28, 45, 35, .12);
  }

  .mobile-display-panel-content .display-select-option {
    min-height: 44px;
    font-size: 13px;
  }

  .display-controls .save-filter {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
    align-self: end;
  }

  #resultSummary {
    grid-column: 2;
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: max-content minmax(0, 1fr);
  }

  .brand-block {
    grid-row: 1;
  }

  .toolbar {
    grid-template-columns: minmax(180px, 1.6fr) repeat(3, minmax(105px, 1fr)) 38px 38px;
  }

  #displayControlsHost {
    grid-column: 1;
    grid-row: 2;
  }

  #resultSummary {
    grid-column: 2;
    grid-row: 2;
  }

  .main-layout {
    height: calc(100vh - 139px);
    min-height: calc(100vh - 139px);
  }

  .main-map-pane {
    top: 139px;
    height: calc(100vh - 139px);
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .intro-art {
    min-height: 130px;
    place-items: start;
  }

  .intro-art img {
    width: min(100%, 520px);
    max-height: 175px;
  }
}

@media (max-width: 1100px) {
  .topbar {
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .brand-block {
    grid-row: auto;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    width: 100%;
  }

  .brand-block .partner-line {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    max-width: min(100%, 240px);
    padding: 3px 8px;
    font-size: 11px;
    line-height: 1.15;
  }

  .toolbar {
    position: relative;
    display: grid;
    grid-column: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 42px 42px;
    gap: 8px;
  }

  .toolbar .search-field {
    display: none;
  }

  .toolbar .filter-field[data-filter="category"] {
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-display-panel-content > .search-field {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
  }

  .mobile-display-panel-content > .search-field input {
    min-height: 46px;
    font-size: 14px;
  }

  .toolbar .filter-field[data-filter="country"] {
    grid-column: 2;
    grid-row: 1;
  }

  .toolbar .filter-field[data-filter="state"] {
    grid-column: 3;
    grid-row: 1;
  }

  .toolbar .filter-field[data-filter="category"],
  .toolbar .filter-field[data-filter="country"],
  .toolbar .filter-field[data-filter="state"] {
    width: 100%;
  }

  .toolbar .filter-field[data-filter="category"],
  .toolbar .filter-field[data-filter="country"] {
    justify-self: stretch;
  }

  .toolbar .filter-field[data-filter="state"] {
    justify-self: stretch;
  }

  .toolbar .filter-field[data-filter="state"] .filter-popover {
    right: 0;
    left: auto;
    width: 100%;
    max-height: calc(100dvh - 220px);
    box-sizing: border-box;
  }

  .reset-button {
    grid-column: 4;
    grid-row: 1;
    width: 38px;
    height: 38px;
    align-self: end;
    justify-self: end;
    border-radius: 10px;
  }

  .mobile-display-open-button {
    grid-column: 5;
    grid-row: 1;
    width: 38px;
    height: 38px;
    justify-self: end;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    color: #516059;
    padding: 0;
  }

  .mobile-display-open-button[aria-expanded="true"] {
    border-color: #82a998;
    background: #edf5f1;
    box-shadow: 0 0 0 3px rgba(57, 115, 88, .14);
  }

  #displayControlsHost {
    display: none;
  }

  .mobile-display-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 1800;
    display: block;
    width: min(700px, calc(100vw - 28px));
    transform: translateX(-50%);
  }

  .mobile-display-panel:not([hidden]) {
    display: block;
  }

  .mobile-display-panel-inner {
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
    border: 1px solid rgba(203, 213, 202, .96);
    border-radius: 12px;
    background: rgba(255, 255, 255);
    box-shadow: 0 18px 40px rgba(24, 32, 29, .18);
    padding: 12px;
  }

  .mobile-display-panel-content {
    display: grid;
    gap: 9px;
  }

  .mobile-display-panel-content .display-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) 42px;
    align-items: start;
    gap: 10px;
  }

  .mobile-display-panel-content .display-controls .sort-field {
    width: 100%;
  }

  .mobile-display-panel-content .display-controls .detail-field {
    width: 100%;
  }

  .mobile-display-panel-content .display-select-trigger {
    min-height: 46px;
    font-size: 14px;
  }

  .mobile-display-panel-content .display-select-popover {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 20;
    width: 100%;
    max-height: min(52dvh, 320px);
    box-sizing: border-box;
    margin: 0;
    box-shadow: 0 8px 22px rgba(28, 45, 35, .12);
  }

  .mobile-display-panel-content .display-select-option {
    min-height: 44px;
    font-size: 13px;
  }

  .display-controls .save-filter {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
    align-self: end;
  }

  #resultSummary {
    grid-column: 1;
    grid-row: auto;
  }

  .main-layout {
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .listing-pane {
    overflow: visible;
    padding: 25px 13px 84px;
  }

  .section-intro h1 {
    font-size: 38px;
  }

  .split-handle {
    display: none;
  }

  .main-map-pane {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: none;
    height: 100dvh;
    max-height: 100dvh;
    padding-bottom: 0;
  }

  .mobile-map-open .main-map-pane {
    display: grid;
  }

  .mobile-map-toggle {
    position: fixed;
    --mobile-map-toggle-bottom-offset: 16px;
    right: 16px;
    bottom: calc(var(--mobile-map-toggle-bottom-offset, 16px) + env(safe-area-inset-bottom, 0px));
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 99px;
    background: #234b3d;
    box-shadow: 0px 0px 14px 6px rgb(20 34 26 / 68%);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
  }

  body.drawer-open .mobile-map-toggle {
    display: none;
  }

  .pin-tray {
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    max-width: 100%;
  }

  .pin-tray-background {
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  body:not(.mobile-map-open) .pin-tray {
    display: none;
  }

  body:not(.mobile-map-open) .pin-tray-background {
    display: none;
  }

  .pin-tray-panel {
    width: 100%;
    max-width: 100vw;
  }

  .pinned-drawer-layer {
    inset: 8px;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .pin-full-modal {
    flex: 0 0 calc(100vw - 16px);
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px 24px 15px 15px;
  }

  .map-toggle-hide {
    display: none;
  }

  .mobile-map-open .map-toggle-show {
    display: none;
  }

  .mobile-map-open .map-toggle-hide {
    display: inline;
  }

  .map-wildlife-section {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .map-wildlife-section > div:first-child {
    display: block;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .drawer {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 15px;
  }

  .drawer-actions a:not(.primary-action),
  .drawer-actions button {
    flex: 0 0 44px;
    justify-content: center;
    width: 44px;
    height: 44px;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  .drawer-actions a:not(.primary-action) svg,
  .drawer-actions button svg {
    width: 20px;
    height: 20px;
  }

  .guide-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .address-link .address-full {
    display: none;
  }

  .address-link .address-mobile {
    display: grid;
    gap: 1px;
  }

  .address-link {
    padding-right: 68px;
  }

  .address-link b {
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #cbd6cb;
    border-radius: 8px;
    background: #f2f6ef;
    font-size: 0;
  }

  .address-link b svg {
    display: block;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .brand-block {
    --brand-icon-layout-size: 36px;
    --brand-lockup-gap: 9px;
    gap: 8px;
  }

  .brand-wordmark {
    font-size: 25px;
  }

  .brand-block .partner-line {
    padding: 3px 6px;
    font-size: 10px;
  }

  .toolbar {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 42px 42px;
  }

  .intro-art {
    min-height: 108px;
  }

  .intro-art img {
    max-height: 145px;
  }

  .card-heading {
    align-items: flex-start;
  }

  .badge {
    max-width: 92px;
  }

  .quick-facts strong {
    font-size: 10px;
  }

  .drawer-facts strong {
    font-size: 11px;
  }

  .practical-row {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .signature-list {
    grid-template-columns: 1fr;
  }

  .drawer {
    width: 100vw;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
  }
}

@media (min-width: 640px) and (max-width: 1100px) {
  .section-intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    align-items: start;
    gap: 18px;
  }

  .intro-art {
    min-height: 190px;
    place-items: start center;
  }

  .intro-art img {
    max-height: 210px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Base the intro layout on the listing pane, not the full browser width. */
@container (min-width: 500px) {
  .section-intro {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, .85fr);
    align-items: start;
  }

  .intro-art {
    min-height: 154px;
    place-items: start end;
  }

  .intro-art img {
    width: min(100%, 440px);
    max-height: 192px;
  }
}

@media (hover: none) {
  .category-chip,
  .art-credit {
    opacity: 1;
    transform: none;
  }

}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
