:root {
  --nav-height: 66px;
}

header.nav {
  background: #fff;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1e7d9;
}

.nav-inner {
  width: min(1280px, 96vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  gap: 18px;
}

.nav-logo {
  width: 192px;
  height: 44px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: "Klee One", "Itim", sans-serif;
  font-size: 15px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-link:hover { background: #f5ecde; }

.nav-link[aria-current="page"] {
  background: #f1e3cf;
  box-shadow: inset 0 -2px 0 #c79855;
}

.nav-link img { display: block; }

@media (max-width: 800px) {
  header.nav { height: auto; padding: 10px 0; }
  .nav-inner { flex-direction: column; align-items: flex-start; gap: 10px; height: auto; }
  .nav-links { width: 100%; justify-content: flex-start; }
}
