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

:root {
  --bg:      #f0ece6;
  --text:    #1e1b17;
  --muted:   #8a8278;
  --strike:  #b0a89e;
  --arrow:   #5a5550;
  --link:    #4a7c6a;
}

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.1vw + 12px, 19px);
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  width: 100%;
}

.name { font-size: 1em; font-weight: 400; margin-bottom: 0.1rem; }
.name a { color: var(--text); text-decoration: none; font-weight: 500; }

.bio { margin-bottom: 2.25rem; max-width: 48ch; }
.bio p + p { margin-top: 1rem; }
.bio a { color: var(--arrow); text-decoration: none; }
.bio a:hover { color: var(--text); }

del {
  text-decoration: line-through;
  color: var(--strike);
  text-decoration-color: var(--strike);
}

.arrow { color: var(--arrow); font-weight: 500; }

.links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.78em;
  color: var(--link);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  main {
    padding: 3rem 1.5rem 2rem;
    justify-content: flex-start;
    padding-top: 4rem;
  }
}

@media (min-width: 1400px) {
  main {
    padding-top: 0;
    justify-content: center;
  }
}
