.view-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  margin-bottom: 18px;
}
.view-switch button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
}
.view-switch button[aria-pressed='true'] {
  background: var(--ink);
  color: var(--inverse);
}
.map-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.map-heading .fine-print {
  margin: 0;
}
.map-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
}
#office-map {
  display: block;
  width: 100%;
  height: 420px;
  touch-action: none;
  cursor: grab;
}
#office-map:active {
  cursor: grabbing;
}
#office-map:focus-visible {
  outline-offset: -4px;
}
.map-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.map-zoom button {
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 24px;
}
.map-attribution {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 9px;
  background: #fffefa;
  color: #193d32;
  font-size: 11px;
}
.map-attribution a {
  text-decoration: underline;
}
.map-notice {
  position: absolute;
  bottom: 28px;
  left: 12px;
  right: 12px;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--danger);
  border-radius: 8px;
  margin: 0;
  font-size: 13px;
}
.map-notice:empty {
  display: none;
}
.map-label {
  display: block;
  font-size: 14px;
  margin: 18px 0 8px;
}
.map-detail {
  padding: 24px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.map-detail h3 {
  font:
    500 1.8rem Newsreader,
    serif;
  margin: 8px 0 12px;
}
.map-detail p {
  color: var(--muted);
  margin: 8px 0;
  font-size: 14px;
}
.map-prices {
  display: flex;
  gap: 40px;
  margin: 22px 0;
  padding-block: 18px;
  border-block: 1px solid var(--line);
}
.map-prices dt {
  font-size: 12px;
  color: var(--muted);
}
.map-prices dd {
  margin: 6px 0 0;
  font-size: 21px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}
.map-actions,
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.map-links {
  margin-top: 12px;
}
.map-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-links .icon {
  width: 13px;
  height: 13px;
}
.map-panel > .fine-print a {
  text-decoration: underline;
}
@media (max-width: 700px) {
  #office-map {
    height: 350px;
  }
  .map-detail {
    padding: 18px;
  }
  .map-prices {
    gap: 24px;
  }
  .map-prices dd {
    font-size: 18px;
  }
}
