/* Language navigation and contact form share the existing site tokens. */
.header .language-switch { display: flex; flex: 0 0 auto; align-items: center; gap: 4px; width: auto; }
.header .language-switch a { display: grid; place-items: center; min-width: 38px; min-height: 44px; padding: 8px; font-size: .75rem; letter-spacing: .04em; border-radius: 24px; }
.header .language-switch a[aria-current="page"]:not(.nav-contact) { background: var(--ink); color: var(--paper); text-decoration: none; }
.closing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.contact { min-width: 0; }
.contact-title { font-size: clamp(28px, 3vw, 40px); font-weight: 400; line-height: 1.2; letter-spacing: -.035em; margin: 24px 0 32px; }
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field { display: grid; gap: 8px; min-width: 0; }
.form-field label { font-size: .8125rem; }
.form-field input, .form-field textarea { display: block; width: 100%; min-width: 0; border: 1px solid var(--rule); border-radius: 10px; background: var(--white); color: var(--ink); font: inherit; font-size: 1rem; padding: 14px; outline-offset: 4px; }
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.form-field input:focus-visible, .form-field textarea:focus-visible { outline: 2px solid var(--ink); }
.form-field [aria-invalid="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.field-error { font-size: .75rem; line-height: 1.5; }
.field-error:empty { display: none; }
.form-privacy { font-size: .75rem; line-height: 1.7; color: var(--muted); margin: 0; }
.form-privacy a { text-decoration: underline; text-underline-offset: 3px; }
.form-submit { justify-self: start; border: 0; cursor: pointer; background: var(--ink); color: var(--white); font-family: inherit; }
.form-submit:disabled { opacity: .55; cursor: wait; }
.form-submit .button-circle { background: var(--white); color: var(--ink); }
.form-status { font-size: .875rem; line-height: 1.6; margin: 0; }
.form-status:empty { display: none; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (max-width: 1100px) {
  .header-inner { flex-wrap: wrap; column-gap: 20px; row-gap: 4px; padding-block: 14px; }
  .header-inner > .brand { margin-right: auto; }
  .header-inner > nav:not(.language-switch) { order: 3; width: 100%; justify-content: space-between; }
  .header-inner > .language-switch { order: 2; }
}
@media (max-width: 700px) {
  .header-inner { flex-direction: row; align-items: center; }
  .closing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-title { margin-block: 24px; }
  body:has(.legal) > .header { flex-direction: row; flex-wrap: wrap; align-items: center; }
  body:has(.legal) > .header > a:nth-child(2) { order: 3; flex-basis: 100%; }
}
