/* ===== HEADER MOBILE ===== */

.mobile-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between; /* clé */
  padding: 0 16px;
  box-shadow: 0 4px 12px rgba(33, 26, 29, 0.08);
}

.site-logo {
  height: 28px;         
  width: auto;          
  display: block;
}

.site-logo-index {
  height:auto;         
  width: auto;          
  display: block;
}

.menu-btn,
.menu-close {
  font-size: 22px;
  background: none;
  border: none;
  color: var(--ink);
}

.site-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

/* ===== MENU OVERLAY DROITE ===== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: var(--bg);
  z-index: 200;
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.menu-close {
  align-self: flex-end;
  margin-bottom: 24px;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-list a {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}
