.language-switch { display: flex; justify-content: flex-end; align-items: center; gap: 8px; padding: 3px 22px; font-size: 14px; line-height: 1.5; background: #f5f5f5; }
.language-switch a { color: #333; text-decoration: none; padding: 2px 5px; }
.language-switch a[aria-current="page"] { font-weight: 800; color: #c5101d; text-decoration: underline; text-underline-offset: 3px; }
.site-header .nav-links { gap: 24px; letter-spacing: 0; font-size: .875rem; }
.site-header .nav-links > a { white-space: nowrap; line-height: 1.4; }
.site-header .nav-links .desktop-break { display: none; }
.site-header .phone-button { min-height: 48px; border-radius: 10px; box-shadow: none; }
.site-header .nav-links > a:focus-visible { outline: 2px solid var(--red); outline-offset: 5px; }
@media (min-width: 1181px) {
  .site-header .nav-links { justify-content: flex-end; }
}
@media (max-width: 1180px) {
  .site-header .nav-toggle { display: block; flex-shrink: 0; }
  .site-header .nav-links {
    position: absolute; left: 20px; right: 20px; top: 100%; display: none;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 12px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow); max-height: calc(100dvh - 115px); overflow-y: auto;
  }
  .site-header.is-open .nav-links { display: flex; }
  .site-header .nav-links > a:not(.phone-button) { width: 100%; padding: 12px 14px; border-radius: 8px; }
  .site-header .nav-links > a:not(.phone-button):hover,
  .site-header .nav-links > a.active { background: #fff3f4; color: var(--red); }
  .site-header .nav-links > a:not(.phone-button)::after { display: none; }
  .site-header .nav-links .phone-button { width: 100%; margin-top: 6px; }
}
