/* A shared home link stays visible above the map and long articles. */
html { scroll-padding-top: 80px; }
body:has(> .site-header) { height: auto; min-height: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 8px 32px;
  border-bottom: 1px solid #d9ded6;
  background: #fff;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 44px;
  color: #1c1f1d;
  font: 800 21px/1.2 system-ui, sans-serif;
  letter-spacing: -.5px;
  text-decoration: none;
}
.site-brand svg { flex: 0 0 auto; }
.site-brand-food { color: #237c58; }
.site-brand:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-brand:focus-visible { outline: 3px solid #237c58; outline-offset: 4px; border-radius: 4px; }
@media (max-width: 700px) { .site-header { padding-inline: 20px; } }

.site-credit { display: inline-flex; align-items: center; gap: 14px; margin-left: 14px; min-height: 44px; color: #626a64; font: 400 12px/1.4 system-ui, sans-serif; white-space: nowrap; text-decoration: none; }
.site-credit::before { content: ""; height: 24px; border-left: 1px solid #d9ded6; }
.site-credit strong { color: #1c1f1d; font-weight: 500; }
.site-credit:hover span { text-decoration: underline; text-underline-offset: 3px; }
.site-credit:focus-visible { outline: 3px solid #237c58; outline-offset: 4px; border-radius: 4px; }
