/* The Golden Chef — header language switcher (spec 2026-08-06, owner-approved).
   Kept in its own file, not appended to style.css: tests/parity/
   test_page_parity.py pins static/site/css/style.css as a byte-for-byte copy
   of website/css/style.css, and that pin is correct to keep — this is the
   one deliberate, approved addition to the header, not licence to drift the
   rest of the stylesheet. A second <link> costs nothing the design guard
   cares about; <head> is out of scope for the body-parity diff.

   Deliberately quieter than .nav-cta: a thinner, dimmer border and the
   muted foreground colour instead of gold, using only custom properties
   already defined in style.css's :root — no new colours introduced. */
.site-nav .lang-switch {
  border: 1px solid var(--hairline-soft);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--muted);
  transition: all var(--t-hover);
}
.site-nav .lang-switch:hover { color: var(--gold-light); border-color: var(--hairline); }

/* Matches the existing per-item stagger in style.css's max-width:900px block
   (nth-child(1) through (8)) for the ninth nav child this adds. */
@media (max-width: 900px) {
  .site-nav.open a:nth-child(9) { transition-delay: .56s; }
}
