/* Extrait automatiquement de main.css lignes 114-203 — HEADER */
/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--creme);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 3rem;
}
.header__logo {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__name {
  font-family: var(--font-titre);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--noir);
  line-height: 1.1;
}
.logo__sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris);
}
.header__nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__link {
  font-size: .8rem;
  font-weight: 400;
  color: var(--noir);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--rouge); }
.header__cta { margin-left: auto; flex-shrink: 0; }

/* Mobile toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--noir);
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .header__toggle { display: flex; }
  .header__cta-desktop { display: none; }
  .header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--creme);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
  }
  .header__nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .nav__link { font-size: .95rem; }
}

