/* ================= HEADER — îlot flottant arrondi ================= */
.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 32px));
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-radius: 99px;
  box-shadow: 0 18px 44px -18px rgba(30, 31, 32, 0.22), 0 4px 14px -6px rgba(30, 31, 32, 0.10);
}
.header__inner {
  padding: 10px 10px 10px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: var(--f-display);
  font-size: 27px;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--encre);
  text-transform: uppercase;
}
.logo b { color: var(--terracotta); }

.menu {
  display: flex;
  gap: 26px;
  margin-right: auto;
}
.menu a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 2px;
  position: relative;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 3px;
  border-radius: 99px;
  background: var(--terracotta);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu a:hover::after { right: 0; }

.burger { display: none; }

@media (max-width: 991px) {
  .menu { display: none; }
  .header__inner .pilule--peche { display: none; }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
    padding: 8px;
  }
  .burger span { width: 26px; height: 3px; border-radius: 3px; background: var(--encre); }
}
