.site-nav {
  background: white;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}
.nav-logo em { color: var(--brand); font-style: normal; }

/* Desktop links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--border); color: var(--text); }
.nav-link.active { color: var(--brand); background: #E8F5E9; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Drawer overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 200;
}
.nav-overlay.open { display: block; }

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: white;
  z-index: 300;
  padding: 28px 24px;
  overflow-y: auto;
  transition: right .25s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.nav-drawer.open { right: 0; }

.drawer-logo-row { margin-bottom: 28px; }
.drawer-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}
.drawer-logo em { color: var(--brand); font-style: normal; }

.drawer-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 10px;
}
.drawer-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.drawer-link:last-of-type { border-bottom: none; }
.drawer-link:hover { color: var(--brand); }

.drawer-domains { display: flex; gap: 8px; flex-wrap: wrap; }
.drawer-domain {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  border-radius: 20px;
  padding: 5px 14px;
  text-decoration: none;
}

body.nav-open { overflow: hidden; }
