:root {
  --nel-font-sans: 'Poppins', sans-serif;
  --nel-font-serif: 'Playfair Display', serif;
  --nel-ivory: #F8F6F2;
  --nel-text: #1E2A32;
  --nel-wave: #00B5B8;
  --nel-intention: #9AB9E3;
}

body {
  font-family: var(--nel-font-sans);
  background: var(--nel-ivory);
  color: var(--nel-text);
  line-height: 1.6;
}

header.site {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site .nav {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
header.site nav a {
  color: #1E2A32;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
header.site nav a:hover {
  color: var(--nel-wave);
}

footer.site {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  border-top: 2px solid #eee;
}
footer.site p {
  margin-bottom: 10px;
  font-style: italic;
}
