:root { color-scheme: light; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; background: #f5f5f3; color: #272727; }
.topbar { position: sticky; top: 0; display:flex; justify-content:space-between; align-items:center; padding: 12px 18px; background: #fff; border-bottom:1px solid #ddd; }
.brand { font-weight: 700; text-decoration: none; color: #7a4a2a; text-transform: uppercase; }
.nav { display:flex; gap: 8px; flex-wrap: wrap; }
.nav a { text-decoration:none; color:#222; padding:6px 10px; border-radius: 999px; }
.nav a.active { background:#7a4a2a; color:#fff; }
.page { max-width: 1120px; margin: 20px auto; padding: 0 16px 24px; }
.text-card, .venue { background:#fff; border:1px solid #ddd; border-radius: 12px; padding: 16px; margin-bottom: 12px; }
.point { font-weight: 700; margin-top: 12px; }
.subpoint { margin-left: 18px; padding-left: 10px; border-left: 2px solid #e3e3e3; }

.kv-page { display: grid; gap: 16px; }
.kv-group h2 { margin: 0 0 10px; font-size: 1.1rem; }
.kv-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.kv-row {
  display: grid;
  grid-template-columns: minmax(190px, 240px) 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #eee;
}
.kv-row:first-child { border-top: 0; }
.kv-label { color: #555; font-weight: 700; }
.kv-value-wrap {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.kv-copy-value {
  appearance: none;
  border: 0;
  background: transparent;
  color: #7a4a2a;
  font: inherit;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.4;
}
.kv-copy-value:hover,
.kv-copy-value:focus-visible {
  color: #5f3117;
  outline: none;
  background: #f7f0eb;
  border-radius: 4px;
}
.kv-open-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: #4c6b86;
  border: 1px solid #c8d7e5;
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}
.kv-open-link:hover,
.kv-open-link:focus-visible {
  background: #edf4fa;
  outline: none;
}
.kv-row.copied .kv-copy-value {
  color: #2d7d46;
  font-weight: 700;
}

.venues { display: grid; gap: 12px; }
.venue {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 380px);
  gap: 14px;
  align-items: stretch;
}
.venue-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.venue-content h2 { margin: 0 0 4px; }
.venue-content p {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.4;
}
.venue-status {
  margin-top: auto;
  display: inline-block;
  width: fit-content;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 700;
}
.venue-status-open { background: #e7f6ec; color: #1e7138; }
.venue-status-closed { background: #fdecea; color: #a2332f; }
.venue-status-unknown { background: #f1f1f1; color: #5d5d5d; }
.venue-map { border: 1px solid #e7e7e7; border-radius: 10px; overflow: hidden; background: #fafafa; min-height: 190px; }
.venue-map iframe { width:100%; height: 100%; min-height: 190px; border:0; display: block; }
.venue-map-fallback {
  height: 100%;
  min-height: 190px;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  padding: 10px;
}
.venue-map-fallback p { margin: 0; color: #666; }
.venue-map-fallback a { color: #7a4a2a; text-decoration: none; border-bottom: 1px solid #7a4a2a; }

@media (max-width: 900px) {
  .kv-row { grid-template-columns: 1fr; gap: 6px; }
  .venue { grid-template-columns: 1fr; }
}
