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

:root {
  --black: #060606;
  --white: #e8e4dc;
  --muted: #9a9690;
}

html { background: var(--black); color: var(--white); }

body {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  padding: 2.5rem;
}

a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,228,220,0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

a:hover { border-color: var(--white); }

.title {
  font-family: 'Staatliches', sans-serif;
  font-size: clamp(5rem, 18.5vw, 18.5vw);
  line-height: 0.85;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 2rem;
  width: 100%;
  display: block;
  text-decoration: none;
  border-bottom: none;
}

.title:hover { border-bottom: none; }

.menu {
  display: flex;
  gap: 2.5rem;
  padding: 1.5rem 0;
  margin-bottom: 5rem;
  border-top: 1px solid rgba(232,228,220,0.07);
  border-bottom: 1px solid rgba(232,228,220,0.07);
}

.menu a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: none;
  padding-bottom: 0;
  transition: color 0.2s;
}

.menu a:hover { color: var(--white); border-bottom: none; }
.menu a.active { color: var(--white); }

.content {
  max-width: 680px;
  margin-left: 8vw;
}

.block {
  margin-bottom: 2.5rem;
}

.block p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}

.block p strong {
  color: var(--white);
  font-weight: 400;
}

.block p.credits {
  margin-top: 1.2rem;
  color: rgba(232,228,220,0.3);
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 2;
}

footer {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,228,220,0.07);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.4;
}

@media (max-width: 600px) {
  body { padding: 1.5rem; }
  .content { margin-left: 0; }
  .menu { gap: 1.5rem; flex-wrap: wrap; }
  footer { flex-direction: column; gap: 0.5rem; }
}

.block.mission p {
  color: var(--white);
  font-size: 17px;
  line-height: 1.85;
}

.block.mission {
  margin-bottom: 4rem;
}
