:root {
  --bg: #ebebe9;
  --text: #2e2c29;
  --text-muted: #6b675f;
  --accent: #8a7f6d;
  --accent-hover: #5f584a;
  --rule: #d9d6cf;
  --mountain: #8f8779;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  padding: 4.5rem 1.5rem;
}

.page {
  max-width: 38rem;
  width: 100%;
}

.header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.name {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.links {
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.links a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.links a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.bio {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
}

.mountains {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin: 2.5rem auto 0;
  color: var(--mountain);
}
