html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/* ── Site strip — whisper-thin global nav on the theme ground color.
   Reads as the page's top margin with controls living in it; contents
   align to the same max content width as the person shell. ── */
.site-strip {
  height: 28px;
  background: #e8e6e0;
}
.site-strip-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  /* 1840 (ps-page max) + 24 (bootstrap container-fluid gutters); the 16px
     padding = 12px gutter + 4px ps-page padding, so strip contents align
     exactly with the identity band's left/right edges at every width. */
  max-width: 1864px;
  margin: 0 auto;
  padding: 0 16px;
}
.site-brand {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-variant: small-caps;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #7d5a11;
  text-decoration: none;
}
.site-brand:hover { color: #a97b1c; }
.site-nav { display: flex; gap: 4px; }
.site-nav a,
.site-session a,
.site-session button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 2px;
  color: #726c5e;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.4;
}
.site-nav a:hover,
.site-session a:hover,
.site-session button:hover { color: #26221a; background: #dedbd3; }
.site-session { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.site-session form { margin: 0; }
.site-player {
  color: #9c968a;
  font-size: 10.5px;
  letter-spacing: 0.04em;
}

/* ── Thin footer ──────────────────────────────────────────────────── */
.site-footer {
  margin-top: 24px;
  padding: 6px 16px 10px;
  font-size: 10.5px;
  color: #9c968a;
  text-align: center;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #9c968a;
}
.site-footer a:hover { color: #726c5e; }

/* Pages that carry the person shell sit on the stone ground, not white. */
body:has(.ps-page) { background: #e8e6e0; }
