:root{
  --bg: #ffffff;
  --text: #000000;
  --border: #000000;
  --muted: #222222;
  --radius: 16px;
  --max: 720px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  line-height: 1.45;
}

.page{
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 22px 54px;
}

.header{
  text-align: left;
}

.name{
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.contact{
  margin: 2.5px;
  font-size: 14px;
  color: var(--muted);
}

.contact a{
  color: inherit;
  text-decoration: none;
}

.contact a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sep{
  margin: 0 8px;
}

hr{
  border: 0;
  border-top: 2px solid var(--border);
  margin: 10px 0 10px;
}

.section{
  margin: 18px 0 0;
}

.section-title{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 10px;
}

.section-body{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.subhead{
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.bullet{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.bullet li{
  margin: 6px 0;
}

.job{
  margin-top: 14px;
}

.job-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.job-title{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.job-meta{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

a.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
  border: 2px solid var(--border);
  border-radius: 500px;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
}

.footer{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 720px){
  .page{ padding: 28px 16px 40px; }
  .columns{ grid-template-columns: 1fr; }
  .name{ font-size: 30px; }
}

/* Print */
@media print{
  body{ background: #fff; }
  .page{ max-width: none; padding: 0.5in; }
  a{ text-decoration: none !important; color: #000 !important; }
}
