/* === GLOBAL NAVIGATION === */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}

nav h1 a {
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: 800;
  color: #181818;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li a {
  font-size: 0.89rem;
  color: #444;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  text-decoration: none;
}

nav ul li a.current,
nav ul li a:hover {
  color: #dea3bd;
  background: #f7dce5;
}
