/* =====================================================================
   VectorShift LIVE-SITE chrome — nav + footer, EXACT match to the deployed
   site. Extracted verbatim from pe-basic/vF/research/styles.css (+ token
   values from colors_and_type.css), with var() values inlined so the chrome
   is palette-independent of the page's content design system (vs-tokens.css).
   Scoped to `body > nav` and `.footer` so it never touches the breadcrumb
   (<nav class="vs-crumb">) or the vs-* content components.
   ===================================================================== */
body { padding-top: 56px; }   /* reserve space for the fixed top nav */

body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 56px;
  background: rgba(255,254,251,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #D9D3C5;
  font-family: 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
  height: 100%; position: relative;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Public Sans', sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -0.015em; color: #0F131A; white-space: nowrap; }
.nav-logo em { font-style: normal; font-weight: 600; color: #5B4824; }
.nav-links { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 400; color: #20242C; position: relative; padding: 6px 0; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: #5B4824; }
.nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-login { font-size: 14px; font-weight: 400; color: #20242C; transition: color 0.2s; white-space: nowrap; }
.nav-login:hover { color: #5B4824; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #0F131A; padding: 8px 16px; border: 1px solid #0F131A; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.nav-cta:hover { background: #0F131A; color: #FFFEFB; }

/* Footer (dark) */
.footer { padding: 72px 0 48px; background: #0F131A; font-family: 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.footer-inner { max-width: 1440px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.footer-logo { font-family: 'Public Sans', sans-serif; font-size: 22px; font-weight: 400; letter-spacing: -0.015em; color: #FFFEFB; }
.footer-logo em { color: #FFFEFB; font-style: normal; }
.footer-links { display: flex; gap: 32px; list-style: none; justify-self: center; }
.footer-links a { font-size: 13.5px; font-weight: 400; color: rgba(242,239,232,0.85); transition: color 0.2s; }
.footer-links a:hover { color: #FFFEFB; }
.footer-copy { font-size: 12px; font-weight: 400; letter-spacing: 0.04em; color: rgba(242,239,232,0.6); justify-self: end; }

/* Mobile chrome (matches the live site's PR #22 responsive rules) */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 32px; }
  .nav-links, .nav-login { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 32px; gap: 24px; justify-items: start; }
  .footer-links { flex-wrap: wrap; justify-self: start; }
  .footer-copy { justify-self: start; }
}
