
.container {
  width: min(var(--max-width), 90%);
  margin: 0 auto;
}
.site-header {
  padding: 1.35rem 0;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 4px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  height: 70px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}
.nav-links a:hover {
  color: var(--white);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.9rem;
  text-align: center;
  padding: 2.25rem 1rem;
  color: var(--muted-soft);
  border-top: 1px solid var(--border);
}
.site-footer br {
  display: none;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}
.site-footer a[href="./confidentialite.html"]::before {
  content: "·";
  display: inline-block;
  margin-right: 0.9rem;
  color: var(--muted-soft);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav {
    align-items: center;
  }
  .brand img {
    height: 62px;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-top: 0.5rem;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 0.55rem 0;
  }
}
