:root {
  --zc-ink: #15121d;
  --zc-ink-soft: #2c2635;
  --zc-paper: #fff8e8;
  --zc-bone: #f2e6cc;
  --zc-lime: #b5e500;
  --zc-lime-dark: #7fa700;
  --zc-aqua: #20cbc9;
  --zc-orange: #f47719;
  --zc-pink: #e83dd5;
  --zc-red: #d52d3b;
  --zc-shadow: 0 20px 55px rgb(21 18 29 / 18%);
}

.zc-button {
  min-height: 48px;
  padding: 0.78rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 0.7rem 0.7rem 0.7rem 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--zc-ink);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.zc-button:hover,
.zc-button:focus-visible {
  transform: translateY(-2px) rotate(-0.5deg);
}

.zc-button svg,
.zc-text-link svg,
.zc-app-nav svg,
.zc-listing-card svg,
.zc-map-controls svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.zc-button--lime {
  background: var(--zc-lime);
  border-color: var(--zc-ink);
  box-shadow: 4px 5px 0 var(--zc-ink);
}

.zc-button--dark {
  background: var(--zc-ink);
  color: #fff;
  box-shadow: 4px 5px 0 var(--zc-orange);
}

.zc-button--light {
  background: var(--zc-paper);
  border-color: var(--zc-ink);
  box-shadow: 4px 5px 0 var(--zc-ink);
}

.zc-button--ghost {
  border-color: currentColor;
  color: inherit;
}

.zc-button-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.zc-filter-row {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.2rem 0 0.5rem;
  scrollbar-width: none;
}

.zc-filter-row::-webkit-scrollbar {
  display: none;
}

.zc-filter-row button,
.zc-pill {
  border: 1px solid rgb(21 18 29 / 18%);
  border-radius: 100px;
  background: rgb(255 255 255 / 86%);
  color: var(--zc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.zc-filter-row button {
  cursor: pointer;
}

.zc-filter-row button.is-active {
  background: var(--zc-ink);
  border-color: var(--zc-ink);
  color: #fff;
}

.zc-pill--workshop { background: var(--zc-lime); }
.zc-pill--activity { background: var(--zc-aqua); }
.zc-pill--event { background: var(--zc-orange); }
.zc-pill--offer { background: var(--zc-pink); color: #fff; }

/* Map */
.zc-map-app {
  position: relative;
  overflow: hidden;
  background: var(--zc-bone);
  border: 2px solid var(--zc-ink);
  color: var(--zc-ink);
  isolation: isolate;
}

.zc-map-toolbar {
  position: relative;
  z-index: 20;
  background: rgb(255 248 232 / 94%);
  border-bottom: 2px solid var(--zc-ink);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.zc-map-toolbar__title {
  display: none;
}

.zc-map-search,
.zc-inline-search {
  min-height: 48px;
  border: 2px solid var(--zc-ink);
  border-radius: 0.7rem 0.7rem 0.7rem 0.2rem;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.9rem;
  box-shadow: 3px 4px 0 rgb(21 18 29 / 14%);
}

.zc-map-search svg {
  width: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.zc-map-search input,
.zc-inline-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.zc-map-toolbar .zc-filter-row {
  margin-top: 0.7rem;
}

.zc-map-stage {
  position: relative;
  min-height: 460px;
  height: var(--zc-map-height);
}

.zc-map-canvas {
  width: 100%;
  height: 100%;
  background: #cdd5c1;
}

.zc-map-canvas .leaflet-tile-pane {
  filter: sepia(0.15) saturate(0.62) hue-rotate(38deg) contrast(0.94);
}

.zc-map-canvas .leaflet-control-attribution {
  background: rgb(255 255 255 / 76%);
  font-size: 9px;
}

.zc-map-canvas .leaflet-control-zoom {
  border: 0;
  box-shadow: var(--zc-shadow);
}

.zc-map-canvas .leaflet-control-zoom a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 0;
  color: var(--zc-ink);
}

.zc-leaflet-pin-wrap {
  background: transparent;
  border: 0;
  line-height: 0;
}

.zc-leaflet-pin {
  width: 58px;
  height: 92px;
  display: block;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 5px 3px rgb(0 0 0 / 42%));
  pointer-events: none;
}

.zc-leaflet-pin--activity { background-image: url("../images/wayfinder-activity.webp"); }
.zc-leaflet-pin--workshop { background-image: url("../images/wayfinder-workshop.webp"); }
.zc-leaflet-pin--offer { background-image: url("../images/wayfinder-offer.webp"); }
.zc-leaflet-pin--crawl-start { background-image: url("../images/wayfinder-crawl-start.webp"); }
.zc-leaflet-pin--crawl-finish { background-image: url("../images/wayfinder-crawl-finish.webp"); }
.zc-leaflet-pin--pumpkin-carving { background-image: url("../images/wayfinder-pumpkin-carving.webp"); }
.zc-leaflet-pin--face-painting { background-image: url("../images/wayfinder-face-painting.webp"); }

.zc-map-status {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 500;
  max-width: calc(100% - 7rem);
  border: 1px solid rgb(21 18 29 / 15%);
  border-radius: 100px;
  background: rgb(255 255 255 / 92%);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 8px 25px rgb(21 18 29 / 14%);
  font-size: 0.7rem;
  font-weight: 800;
}

.zc-map-controls {
  position: absolute;
  z-index: 500;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zc-map-controls button {
  width: 58px;
  min-height: 58px;
  border: 2px solid var(--zc-ink);
  border-radius: 1rem 1rem 1rem 0.35rem;
  background: #fff;
  color: var(--zc-ink);
  display: grid;
  place-items: center;
  gap: 0.1rem;
  box-shadow: 3px 4px 0 var(--zc-ink);
  cursor: pointer;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  align-content: center;
  justify-content: center;
  padding: 0.35rem;
  line-height: 1;
}

.zc-map-controls svg {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
  margin-inline: auto;
}

.zc-map-controls button span { display: block; text-align: center; }

.zc-map-list {
  position: absolute;
  inset: 0;
  z-index: 800;
  background: rgb(255 248 232 / 97%);
  transform: translateX(102%);
  transition: transform 260ms ease;
  overflow-y: auto;
}

.zc-map-list.is-open {
  transform: translateX(0);
}

.zc-map-list__head {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 60px;
  border-bottom: 2px solid var(--zc-ink);
  background: var(--zc-paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}

.zc-map-list__head button,
.zc-map-sheet__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--zc-ink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.zc-map-list__head svg,
.zc-map-sheet__close svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.zc-map-list .zc-map-list-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(21 18 29 / 12%);
  background: transparent;
  color: inherit;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  text-align: left;
  cursor: pointer;
}

.zc-map-list-item:hover { background: rgb(181 229 0 / 20%); }
.zc-map-list-item__pin {
  width: 48px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.zc-map-list-item__pin .zc-leaflet-pin {
  width: 36px;
  height: 58px;
}
.zc-map-list-item strong, .zc-map-list-item small { display: block; }
.zc-map-list-item small { margin-top: 0.2rem; color: rgb(21 18 29 / 68%); }
.zc-map-list__empty { padding: 2rem 1rem; }

.zc-map-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  max-height: min(72%, 620px);
  border-top: 3px solid var(--zc-ink);
  border-radius: 1.4rem 1.4rem 0 0;
  background: var(--zc-paper);
  padding: 1.2rem;
  box-shadow: 0 -20px 50px rgb(21 18 29 / 25%);
  overflow-y: auto;
  transform: translateY(105%);
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
}

.zc-map-sheet::before {
  content: '';
  width: 48px;
  height: 5px;
  border-radius: 99px;
  background: rgb(21 18 29 / 20%);
  display: block;
  margin: -0.4rem auto 1rem;
}

.zc-map-sheet.is-open { transform: translateY(0); }
.zc-map-sheet__close { position: absolute; top: 1rem; right: 1rem; }
.zc-map-sheet h3 { margin: 0 3rem 0.25rem 0; font-size: clamp(1.6rem, 7vw, 2.5rem); line-height: 1; }
.zc-map-sheet__what3words { padding-right: 3rem; color: var(--zc-lime-dark); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.02em; }
.zc-map-sheet__address { margin: 0.5rem 0; color: rgb(21 18 29 / 68%); }
.zc-map-sheet__listings { display: grid; gap: 0.7rem; margin: 1rem 0; }
.zc-map-sheet__listings article { border: 1px solid rgb(21 18 29 / 15%); border-radius: 0.8rem 0.8rem 0.8rem 0.2rem; background: #fff; padding: 0.9rem; }
.zc-map-sheet__listings article > div:first-child { display: flex; justify-content: space-between; align-items: center; }
.zc-map-sheet__listings h4 { margin: 0.65rem 0 0.35rem; font-size: 1.15rem; }
.zc-map-sheet__listings p { margin: 0 0 0.55rem; font-size: 0.9rem; }
.zc-map-sheet__listings small { color: rgb(21 18 29 / 62%); font-weight: 800; }
.zc-map-sheet__actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.zc-map-sheet__actions a, .zc-map-sheet__actions button { min-height: 38px; border: 1px solid var(--zc-ink); border-radius: 0.45rem; background: transparent; color: var(--zc-ink); display: inline-flex; align-items: center; padding: 0.4rem 0.65rem; font-size: 0.72rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.zc-map-sheet__actions button.is-saved { background: var(--zc-lime); }
.zc-price { font-weight: 900; }

/* Listings */
.zc-listings__controls { margin-bottom: 1.5rem; display: grid; gap: 0.8rem; }
.zc-inline-search { max-width: 500px; }
.zc-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.zc-listing-card { position: relative; min-height: 280px; border: 2px solid var(--zc-ink); border-radius: 1rem 1rem 1rem 0.25rem; background: var(--zc-paper); display: flex; flex-direction: column; padding: 1rem; box-shadow: 5px 6px 0 var(--zc-ink); transition: transform 180ms ease, box-shadow 180ms ease; }
.zc-listing-card:nth-child(3n + 2) { transform: rotate(0.4deg); }
.zc-listing-card:hover { transform: translateY(-4px) rotate(-0.4deg); box-shadow: 8px 10px 0 var(--zc-ink); }
.zc-listing-card[hidden] { display: none; }
.zc-listing-card__top { display: flex; align-items: center; justify-content: space-between; }
.zc-save { width: 42px; height: 42px; border: 1px solid rgb(21 18 29 / 20%); border-radius: 50%; background: #fff; color: var(--zc-ink); display: grid; place-items: center; cursor: pointer; }
.zc-save.is-saved { background: var(--zc-pink); color: #fff; }
.zc-save.is-saved svg { fill: currentColor; }
.zc-listing-card h2 { margin: 1rem 0 0.45rem; font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.04; }
.zc-listing-card h2 a { color: inherit; text-decoration: none; }
.zc-listing-card p { margin: 0.45rem 0; color: rgb(21 18 29 / 72%); font-size: 0.92rem; }
.zc-listing-card__venue { display: flex; align-items: center; gap: 0.35rem; color: var(--zc-ink) !important; font-weight: 800; }
.zc-listing-card__venue svg { flex: 0 0 auto; }
.zc-listing-card__foot { border-top: 1px solid rgb(21 18 29 / 16%); margin-top: auto; padding-top: 0.9rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.73rem; font-weight: 900; text-transform: uppercase; }
.zc-listing-card__foot a { width: 38px; height: 38px; border-radius: 50%; background: var(--zc-ink); color: #fff; display: grid; place-items: center; }
.zc-empty { border: 2px dashed; padding: 2rem; text-align: center; }

/* Updates */
.zc-updates { max-width: 850px; margin: 0 auto; display: grid; gap: 1rem; }
.zc-update, .zc-placeholder-card { position: relative; border: 2px solid var(--zc-ink); border-radius: 1rem 1rem 1rem 0.2rem; background: var(--zc-paper); padding: clamp(1.2rem, 4vw, 2rem); box-shadow: 5px 6px 0 var(--zc-ink); }
.zc-update--important { border-left: 10px solid var(--zc-orange); }
.zc-update--urgent { border-left: 10px solid var(--zc-red); background: #fff0ee; }
.zc-update__meta { display: flex; justify-content: space-between; gap: 1rem; color: rgb(21 18 29 / 58%); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.zc-update__meta span { color: var(--zc-red); }
.zc-update h2, .zc-placeholder-card h2 { margin: 0.75rem 0; }

/* Gallery */
.zc-gallery__intro { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2rem; }
.zc-gallery__intro h2 { margin: 0.3rem 0; }
.zc-gallery__grid { columns: 4 220px; column-gap: 0.8rem; }
.zc-gallery__grid figure { break-inside: avoid; margin: 0 0 0.8rem; border: 8px solid #fff; border-bottom-width: 28px; background: #fff; box-shadow: 0 8px 24px rgb(21 18 29 / 18%); transform: rotate(-0.5deg); }
.zc-gallery__grid figure:nth-child(3n) { transform: rotate(0.8deg); }
.zc-gallery__grid img { width: 100%; display: block; }
.zc-gallery__grid figcaption { margin-bottom: -22px; padding: 4px; color: var(--zc-ink); font-size: 0.65rem; text-align: center; }
.zc-submit-panel { margin-top: 3rem; border: 2px solid var(--zc-ink); border-radius: 1.2rem 1.2rem 1.2rem 0.25rem; background: var(--zc-aqua); padding: clamp(1.2rem, 5vw, 3rem); box-shadow: 8px 9px 0 var(--zc-ink); }

/* Forms */
.zc-form { display: grid; gap: 1.4rem; }
.zc-form__section { border-top: 2px solid rgb(21 18 29 / 18%); padding-top: 1.2rem; display: flex; align-items: flex-start; gap: 1rem; }
.zc-form__section:first-of-type { border-top: 0; }
.zc-form__section h2 { margin: 0; }
.zc-form__section p { margin: 0.25rem 0 0; }
.zc-form__number { width: 42px; height: 42px; border: 2px solid var(--zc-ink); border-radius: 50% 50% 50% 15%; background: var(--zc-lime); display: grid; place-items: center; flex: 0 0 auto; font-weight: 900; }
.zc-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.zc-form label { display: grid; gap: 0.4rem; color: var(--zc-ink); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; }
.zc-form input, .zc-form textarea, .zc-form select { width: 100%; min-height: 48px; border: 2px solid var(--zc-ink); border-radius: 0.6rem 0.6rem 0.6rem 0.15rem; background: #fff; color: var(--zc-ink); padding: 0.75rem; font: inherit; font-weight: 500; letter-spacing: 0; text-transform: none; }
.zc-form textarea { resize: vertical; }
.zc-form__wide { grid-column: 1 / -1; }
.zc-form .zc-check { grid-template-columns: 24px 1fr; align-items: start; gap: 0.7rem; letter-spacing: 0; line-height: 1.45; text-transform: none; }
.zc-form .zc-check input { width: 22px; min-height: 22px; accent-color: var(--zc-lime-dark); }
.zc-form .zc-button { justify-self: start; cursor: pointer; }
.zc-honeypot { position: fixed !important; left: -9999px !important; }
.zc-form-success { border: 3px solid var(--zc-ink); border-radius: 1rem; background: var(--zc-lime); padding: 2rem; box-shadow: 6px 7px 0 var(--zc-ink); }
.zc-form-error { margin-bottom: 1.5rem; border: 3px solid var(--zc-ink); border-radius: 1rem; background: var(--zc-pink); color: var(--zc-ink); padding: 1.25rem 1.5rem; box-shadow: 6px 7px 0 var(--zc-ink); }
.zc-form-error p { margin: 0.35rem 0 0; }

/* Event */
.zc-event-overview { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.zc-event-overview__lead h2 { margin: 0 0 0.5rem; font-size: clamp(2.5rem, 7vw, 5.8rem); line-height: 0.88; }
.zc-event-overview__lead > p { max-width: 60ch; font-size: 1.15rem; }
.zc-event-overview__lead .zc-event-date { margin: 0 0 1rem; color: var(--zc-lime-dark); font-size: 0.85rem; font-weight: 900; text-transform: uppercase; }
.zc-event-facts { display: grid; gap: 0.8rem; counter-reset: steps; }
.zc-event-facts > div { border: 2px solid var(--zc-ink); border-radius: 1rem 1rem 1rem 0.2rem; background: #fff; padding: 1.2rem; box-shadow: 4px 5px 0 var(--zc-ink); }
.zc-event-facts span { color: var(--zc-orange); font-size: 0.72rem; font-weight: 900; }
.zc-event-facts strong { display: block; margin: 0.25rem 0; font-size: 1.25rem; }
.zc-event-facts p { margin: 0; color: rgb(21 18 29 / 68%); }

@media (min-width: 900px) {
  .zc-map-toolbar { display: grid; grid-template-columns: 1fr minmax(320px, 0.7fr); align-items: end; gap: 0.5rem 2rem; padding: 1.2rem 1.5rem 0.7rem; }
  .zc-map-toolbar__title { display: block; grid-row: span 2; }
  .zc-map-toolbar__title h2 { margin: 0.2rem 0 0; font-size: 2.2rem; line-height: 1; }
  .zc-map-sheet { top: 1rem; right: 1rem; bottom: 1rem; left: auto; width: min(410px, 40vw); max-height: none; border: 3px solid var(--zc-ink); border-radius: 1.2rem 1.2rem 1.2rem 0.3rem; transform: translateX(115%); }
  .zc-map-sheet.is-open { transform: translateX(0); }
  .zc-map-sheet::before { display: none; }
  .zc-map-list { right: 0; left: auto; width: min(420px, 42vw); border-left: 2px solid var(--zc-ink); }
}

@media (max-width: 780px) {
  .zc-card-grid { grid-template-columns: 1fr; }
  .zc-listing-card { min-height: 240px; }
  .zc-gallery__intro { display: grid; align-items: start; }
  .zc-gallery__intro .zc-button { justify-self: start; }
  .zc-form__grid { grid-template-columns: 1fr; }
  .zc-form__wide { grid-column: auto; }
  .zc-event-overview { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .zc-button, .zc-listing-card, .zc-map-sheet, .zc-map-list { transition: none; }
}

/* App interface refresh */
.zc-button {
  min-height: 46px;
  border-radius: 0.7rem;
  letter-spacing: 0.03em;
}

.zc-button:hover,
.zc-button:focus-visible {
  transform: translateY(-2px);
}

.zc-button--lime {
  border-color: var(--zc-lime);
  box-shadow: 0 10px 28px rgb(181 229 0 / 16%);
}

.zc-button--dark {
  border-color: rgb(255 255 255 / 16%);
  background: #23202f;
  box-shadow: none;
}

.zc-button--light {
  border-color: rgb(255 255 255 / 18%);
  background: #fff;
  box-shadow: none;
}

.zc-filter-row {
  gap: 0.5rem;
}

.zc-filter-row button,
.zc-pill {
  min-height: 36px;
  border-color: rgb(255 255 255 / 15%);
  background: #292633;
  color: rgb(255 255 255 / 80%);
  letter-spacing: 0.035em;
}

.zc-filter-row button.is-active {
  border-color: var(--zc-lime);
  background: var(--zc-lime);
  color: var(--zc-ink);
}

.zc-pill--workshop { border-color: var(--zc-lime); background: var(--zc-lime); color: var(--zc-ink); }
.zc-pill--activity { border-color: var(--zc-aqua); background: var(--zc-aqua); color: var(--zc-ink); }
.zc-pill--event { border-color: var(--zc-orange); background: var(--zc-orange); color: var(--zc-ink); }
.zc-pill--offer { border-color: var(--zc-pink); background: var(--zc-pink); color: #fff; }

/* Map */
.zc-map-app {
  border: 1px solid rgb(255 255 255 / 14%);
  background: #12101b;
  color: #fff;
}

.zc-map-toolbar {
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: rgb(18 16 27 / 95%);
  padding: 0.9rem;
  backdrop-filter: blur(22px);
}

.zc-map-search,
.zc-inline-search {
  min-height: 46px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 0.75rem;
  background: #272431;
  color: #fff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%);
}

.zc-map-search input::placeholder,
.zc-inline-search input::placeholder {
  color: rgb(255 255 255 / 45%);
}

.zc-map-canvas {
  background: #181a22;
}

.zc-map-canvas .leaflet-tile-pane {
  filter: invert(92%) hue-rotate(175deg) brightness(66%) saturate(68%) contrast(118%);
}

.zc-map-canvas .leaflet-control-attribution {
  background: rgb(12 11 19 / 74%);
  color: rgb(255 255 255 / 62%);
}

.zc-map-canvas .leaflet-control-attribution a {
  color: var(--zc-aqua);
}

.zc-map-canvas .leaflet-control-zoom {
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 0.7rem;
  box-shadow: 0 14px 35px rgb(0 0 0 / 38%);
  overflow: hidden;
}

.zc-map-canvas .leaflet-control-zoom a {
  background: rgb(23 21 34 / 94%);
  color: #fff;
}

.zc-map-canvas .leaflet-control-zoom a + a {
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.zc-map-status {
  border-color: rgb(255 255 255 / 12%);
  background: rgb(18 16 27 / 88%);
  color: rgb(255 255 255 / 72%);
  box-shadow: 0 10px 28px rgb(0 0 0 / 34%);
}

.zc-map-controls button {
  width: 54px;
  min-height: 54px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 0.8rem;
  background: rgb(18 16 27 / 94%);
  color: #fff;
  box-shadow: 0 12px 28px rgb(0 0 0 / 40%);
}

.zc-map-controls button:hover {
  color: var(--zc-lime);
}

.zc-map-controls > button[type='button']:hover,
.zc-map-controls > button[type='button']:focus-visible {
  border-color: var(--zc-lime);
  background: #171522;
  color: var(--zc-lime);
  outline: 2px solid transparent;
}

.zc-map-list {
  background: rgb(18 16 27 / 98%);
  color: #fff;
  backdrop-filter: blur(22px);
}

.zc-map-list__head {
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: #171522;
}

.zc-map-list__head button,
.zc-map-sheet__close {
  background: #2a2735;
}

.zc-map-list-item {
  border-color: rgb(255 255 255 / 9%);
}

.zc-map-list-item:hover {
  background: rgb(181 229 0 / 9%);
}

.zc-map-list-item small {
  color: rgb(255 255 255 / 58%);
}

.zc-map-sheet {
  border-color: rgb(255 255 255 / 15%);
  background: #171522;
  color: #fff;
  box-shadow: 0 -24px 65px rgb(0 0 0 / 50%);
}

.zc-map-sheet::before {
  background: rgb(255 255 255 / 22%);
}

.zc-map-sheet h3 {
  color: #fff;
}

.zc-map-sheet__what3words {
  color: var(--zc-lime);
}

.zc-map-sheet__address {
  color: rgb(255 255 255 / 60%);
}

.zc-map-sheet__listings article {
  border-color: rgb(255 255 255 / 12%);
  background: #24212f;
}

.zc-map-sheet__listings p,
.zc-map-sheet__listings small {
  color: rgb(255 255 255 / 65%);
}

.zc-map-sheet__actions a,
.zc-map-sheet__actions button {
  border-color: rgb(255 255 255 / 22%);
  color: #fff;
}

.zc-map-sheet__actions a:hover,
.zc-map-sheet__actions button:hover {
  border-color: var(--zc-lime);
  color: var(--zc-lime);
}

.zc-map-sheet__actions button.is-saved {
  color: var(--zc-ink);
}

/* Listings */
.zc-listings__controls {
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 1rem;
  background: #171522;
  padding: 0.85rem;
}

.zc-card-grid {
  gap: 0.8rem;
}

.zc-listing-card {
  min-height: 260px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 1rem;
  background: linear-gradient(145deg, #201d2c, #171522);
  color: #fff;
  box-shadow: 0 18px 45px rgb(0 0 0 / 24%);
}

.zc-listing-card:nth-child(3n + 2) {
  transform: none;
}

.zc-listing-card:hover {
  border-color: rgb(181 229 0 / 45%);
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgb(0 0 0 / 36%);
}

.zc-save {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 7%);
  color: #fff;
}

.zc-listing-card h2 {
  color: #fff;
}

.zc-listing-card p {
  color: rgb(255 255 255 / 62%);
}

.zc-listing-card__venue {
  color: var(--zc-lime) !important;
}

.zc-listing-card__foot {
  border-color: rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 70%);
}

.zc-listing-card__foot a {
  background: var(--zc-lime);
  color: var(--zc-ink);
}

.zc-empty {
  border-color: rgb(255 255 255 / 22%);
  color: var(--zc-muted);
}

/* Live updates */
.zc-updates {
  max-width: 920px;
  gap: 0;
}

.zc-update,
.zc-placeholder-card {
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  padding-left: 4.4rem;
}

.zc-update::before {
  position: absolute;
  top: 1.7rem;
  left: 1.2rem;
  width: 14px;
  height: 14px;
  border: 4px solid #0c0b13;
  border-radius: 50%;
  background: var(--zc-lime);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 20%);
  content: '';
}

.zc-update::after {
  position: absolute;
  top: 3rem;
  bottom: -1.25rem;
  left: 1.88rem;
  width: 2px;
  background: rgb(255 255 255 / 12%);
  content: '';
}

.zc-update:last-child::after {
  display: none;
}

.zc-update--important,
.zc-update--urgent {
  border-left: 0;
  background: transparent;
}

.zc-update--important::before { background: var(--zc-orange); }
.zc-update--urgent::before { background: var(--zc-red); box-shadow: 0 0 20px rgb(213 45 59 / 70%); }

.zc-update__meta {
  color: rgb(255 255 255 / 48%);
}

.zc-update h2,
.zc-placeholder-card h2 {
  color: #fff;
  font-family: 'Avenir Next Condensed', 'Arial Narrow', sans-serif;
}

.zc-update > div:last-child {
  color: rgb(255 255 255 / 66%);
}

/* Gallery */
.zc-gallery__intro p {
  color: rgb(255 255 255 / 62%);
}

.zc-gallery__grid {
  column-gap: 0.65rem;
}

.zc-gallery__grid figure {
  margin-bottom: 0.65rem;
  border: 2px solid rgb(255 255 255 / 13%);
  border-radius: 0.75rem;
  background: #211e2b;
  box-shadow: 0 14px 34px rgb(0 0 0 / 34%);
  transform: none;
  overflow: hidden;
}

.zc-gallery__grid figure:nth-child(3n) {
  transform: none;
}

.zc-gallery__grid figcaption {
  margin: 0;
  color: rgb(255 255 255 / 65%);
}

.zc-submit-panel {
  border: 1px solid rgb(32 203 201 / 38%);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgb(32 203 201 / 16%), #171522 58%);
  color: #fff;
  box-shadow: 0 22px 55px rgb(0 0 0 / 32%);
}

/* Forms */
.zc-form__section {
  border-color: rgb(255 255 255 / 12%);
}

.zc-form__section p {
  color: rgb(255 255 255 / 58%);
}

.zc-form__number {
  border-color: var(--zc-lime);
  color: var(--zc-ink);
}

.zc-form label {
  color: rgb(255 255 255 / 76%);
}

.zc-form input,
.zc-form textarea,
.zc-form select {
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 0.65rem;
  background: #24212f;
  color: #fff;
}

.zc-form input::placeholder,
.zc-form textarea::placeholder {
  color: rgb(255 255 255 / 35%);
}

.zc-form-success,
.zc-form-error {
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgb(0 0 0 / 28%);
}

/* Event */
.zc-event-overview__lead .zc-event-date {
  color: var(--zc-lime);
}

.zc-event-facts > div {
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 1rem;
  background: #1d1a27;
  color: #fff;
  box-shadow: 0 16px 40px rgb(0 0 0 / 24%);
}

.zc-event-facts p {
  color: rgb(255 255 255 / 60%);
}

@media (min-width: 900px) {
  .zc-map-toolbar {
    padding: 1rem 1.2rem 0.7rem;
  }

  .zc-map-toolbar__title h2 {
    color: var(--zc-lime);
    font-family: 'Shlop', fantasy;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .zc-map-sheet {
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 1rem;
  }

  .zc-map-list {
    border-left: 1px solid rgb(255 255 255 / 12%);
  }

  .page-template-page-explore-map .zc-map-stage {
    height: calc(100dvh - 72px - 108px) !important;
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .zc-map-app {
    border: 0;
  }

  .zc-map-toolbar {
    padding: 0.65rem 0.75rem 0.5rem;
  }

  .zc-map-search {
    min-height: 42px;
  }

  .zc-map-toolbar .zc-filter-row {
    margin-top: 0.5rem;
  }

  .zc-filter-row button,
  .zc-pill {
    min-height: 32px;
    padding-inline: 0.7rem;
    font-size: 0.62rem;
  }

  .page-template-page-explore-map .zc-map-stage {
    height: calc(100svh - 64px - 112px - var(--zc-app-nav-height, 66px)) !important;
    min-height: 390px;
  }

  .zc-map-sheet {
    max-height: 62%;
    border-top: 1px solid rgb(255 255 255 / 16%);
    border-radius: 1.1rem 1.1rem 0 0;
  }

  .zc-map-status {
    bottom: 0.55rem;
    font-size: 0.62rem;
  }

  .zc-map-controls {
    top: 0.65rem;
    right: 0.65rem;
  }

  .zc-map-controls button {
    width: 48px;
    min-height: 48px;
  }

  .zc-card-grid {
    gap: 0.7rem;
  }

  .zc-listing-card {
    min-height: 220px;
  }

  .zc-update,
  .zc-placeholder-card {
    padding: 1.2rem 0.3rem 1.2rem 3.2rem;
  }

  .zc-update::before {
    top: 1.35rem;
    left: 0.45rem;
  }

  .zc-update::after {
    left: 1.13rem;
  }
}

/* Keep the map list easy to scan when it fills the map on tablet widths. */
.zc-map-list [data-zc-list-results] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

.zc-map-list .zc-map-list-item {
  min-width: 0;
  min-height: 96px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.85rem;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 4%);
  padding: 1rem;
  box-shadow: 0 10px 24px rgb(0 0 0 / 16%);
}

.zc-map-list .zc-map-list-item:hover,
.zc-map-list .zc-map-list-item:focus-visible {
  border-color: var(--zc-lime);
  background: rgb(181 229 0 / 10%);
  outline: 0;
}

.zc-map-list-item__body {
  min-width: 0;
}

.zc-map-list-item strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
}

.zc-map-list-item small {
  margin-top: 0.4rem;
  color: rgb(255 255 255 / 64%);
  font-size: 0.78rem;
  line-height: 1.35;
}

.zc-map-list__empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 4%);
  text-align: center;
}

@media (min-width: 900px), (max-width: 560px) {
  .zc-map-list [data-zc-list-results] {
    grid-template-columns: 1fr;
  }
}

/* Match and precisely centre both map close controls. */
.zc-map-list__head > button[type='button'],
.zc-map-sheet > button.zc-map-sheet__close[type='button'] {
  box-sizing: border-box;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  background: #2a2735;
  color: #fff;
  display: inline-grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  box-shadow: 0 8px 20px rgb(0 0 0 / 24%);
  appearance: none;
}

.zc-map-list__head > button[type='button']:hover,
.zc-map-list__head > button[type='button']:focus-visible,
.zc-map-sheet > button.zc-map-sheet__close[type='button']:hover,
.zc-map-sheet > button.zc-map-sheet__close[type='button']:focus-visible {
  border-color: var(--zc-lime);
  background: var(--zc-lime);
  color: var(--zc-ink);
  outline: 2px solid transparent;
}

.zc-map-list__head > button[type='button'] svg,
.zc-map-sheet > button.zc-map-sheet__close[type='button'] svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0;
  stroke: currentColor;
  stroke-width: 2.25;
}

.zc-map-sheet > button.zc-map-sheet__close[type='button'] {
  top: 1rem;
  right: 1rem;
  z-index: 3;
}

/* Map controls sit inside the map surface */
.zc-map-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 600;
  border-bottom: 0;
  background: linear-gradient(to bottom, #12101b 0%, rgb(18 16 27 / 92%) 62%, rgb(18 16 27 / 54%) 82%, transparent 100%);
  padding-bottom: 3.8rem;
  pointer-events: none;
  backdrop-filter: none;
}

.zc-map-toolbar > * {
  pointer-events: auto;
}

.zc-map-search {
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(38 35 50 / 92%);
  box-shadow: 0 14px 38px rgb(0 0 0 / 26%);
  overflow: hidden;
}

.zc-map-search input[type='search'] {
  min-height: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  appearance: none;
}

.zc-map-search input[type='search']:focus {
  border: 0 !important;
  box-shadow: none !important;
}

.zc-map-controls {
  top: 9.5rem;
}

.zc-map-page .zc-map-stage {
  height: calc(100dvh - var(--zc-header-height)) !important;
  min-height: 620px;
}

.zc-map-status {
  top: 9.5rem;
  bottom: auto;
}

@media (min-width: 900px) {
  .zc-map-toolbar {
    padding-top: 1rem;
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 700px) {
  .zc-map-toolbar {
    padding: 0.65rem 0.75rem 3rem;
  }

  .zc-map-controls {
    top: 7.6rem;
  }

  .zc-map-page .zc-map-stage {
    height: calc(100svh - var(--zc-header-height) - var(--zc-app-nav-height, 66px)) !important;
    min-height: 430px;
  }

  .zc-map-status {
    top: 7.6rem;
    right: auto;
    bottom: auto;
    left: 0.75rem;
    max-width: calc(100% - 6rem);
    transform: none;
    white-space: nowrap;
  }

  .zc-map-freshness {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
  }
}
