/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  font-family: serif;
  background: #f8f6f1;
  color: #2f2923;
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 32px;
  display: flex;
  gap: 24px;
  z-index: 10;
  background: rgba(248,246,241,0.82);
  backdrop-filter: blur(8px);
}

.nav a {
  text-decoration: none;
  color: #2f2923;
  font-size: 14px;
}

/* BASIC PAGES */
.page {
  padding-top: 80px;
  min-height: 100vh;
}

.page img {
  width: 100%;
  height: auto;
  display: block;
}
