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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #f5eeea;
  color: #2c2c2c;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 80px 24px;
}

.container {
  max-width: 600px;
  width: 100%;
}

header {
  margin-bottom: 40px;
}

.headshot {
  max-width: 100%;
  height: auto;
  margin-top: 24px;
}

h1 {
  color: rgba(44, 44, 44, 0.85);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.hero {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.intro {
  font-size: 1.05rem;
  margin-bottom: 48px;
  color: #3d3d3d;
}

.intro p {
  margin-bottom: 16px;
}

.intro p:last-child {
  margin-bottom: 0;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8c8c8c;
  margin-bottom: 16px;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.education {
  font-size: 1rem;
}

a {
  color: #2c2c2c;
  text-decoration: underline;
  text-decoration-color: #c4b5a8;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

a:hover {
  text-decoration-color: #2c2c2c;
}

.links {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #e0d5cd;
}

.links ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.links li {
  margin-bottom: 0;
}

.links a {
  font-size: 0.95rem;
  color: #6b6b6b;
}

.links a:hover {
  color: #2c2c2c;
}

@media (max-width: 480px) {
  body {
    padding: 48px 20px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .hero {
    font-size: 2rem;
  }

  .intro {
    font-size: 1rem;
  }
}
