@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;1,9..40,300&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #e6e4de;
  --fg: #1a1a18;
  --fg-muted: #999891;
}

body {
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  font-family: 'DM Sans', sans-serif;
  color: var(--fg);
  min-height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 28px;
  z-index: 100;
  mix-blend-mode: multiply;
}

a.logo {
  text-decoration: none;
  color: inherit;
}

.logo {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}

.logo span {
  display: block;
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--fg);
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
}

nav a:hover,
nav a.active {
  opacity: 1;
}

.page-wrap {
  padding: 80px 28px 28px;
}
