/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.6;
  padding: 0 1.5rem;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 640px;
  margin: 4rem auto;
}

/* Typography & Hierarchy */
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777777;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 1rem;
}

a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #666666;
}

.subtitle {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 2rem;
}

/* Headshot */
.headshot {
  width: 120px;
  height: 120px;
  object-fit: cover;      /* crops any photo to a clean square */
  border-radius: 4px;
  display: block;
  margin-bottom: 1.5rem;
  filter: grayscale(100%);   /* black and white */
}

/* Item Lists (Projects, Resume) */
.list-item {
  margin-bottom: 1.5rem;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.item-title {
  font-size: 1rem;
  font-weight: 600;
}

.item-date {
  font-size: 0.875rem;
  color: #888888;
  white-space: nowrap;
}

.item-desc {
  font-size: 0.9375rem;
  color: #555555;
  margin-top: 0.25rem;
}

/* Project pages */
.back {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.project-meta {
  font-size: 0.9375rem;
  color: #888888;
  margin-bottom: 2rem;
}

.cover {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.project-body h2 {
  text-transform: none;
  letter-spacing: -0.01em;
  color: #111111;
  font-size: 1.25rem;
  border: 0;
  padding: 0;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.project-body h3 {
  font-size: 1.0625rem;
  margin-top: 1.75rem;
  margin-bottom: 0.4rem;
}

.project-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.project-body ul,
.project-body ol {
  margin: 0 0 1rem 1.25rem;
}

.project-body li {
  margin-bottom: 0.35rem;
  color: #333333;
}

.project-body figure {
  margin: 1.5rem 0;
}

.project-body figcaption {
  font-size: 0.85rem;
  color: #888888;
  margin-top: 0.4rem;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.875em;
  background: #f4f4f4;
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* Footer / Links */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eeeeee;
  font-size: 0.875rem;
  color: #777777;
}

.social-links a {
  margin-right: 1rem;
}
