body {
  font-family: Georgia, serif;
  max-width: 900px;
  margin: 60px auto;
  line-height: 1.65;
  color: #222;
  background: #f8f6f1;
  padding: 0 24px;
}

h1,
h2 {
  font-weight: normal;
  color: #1f2a32;
}

a {
  color: #2f5d73;
  text-decoration: underline;
}

header.hero {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d4c8;
}

.hero-text {
  flex: 1;
}

.headshot {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

section {
  margin-bottom: 42px;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  header.hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .headshot {
    width: 120px;
    height: 120px;
  }
}
