/* === Reset & Base === */

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Times New Roman', Times, Georgia, serif;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fff;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
}

/* === Navigation === */

nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem 0 3rem;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 3rem;
}

.nav-name {
  font-size: 1rem;
  text-decoration: none;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.833rem;
  text-decoration: none;
  color: #666;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: #1a1a1a;
}

/* === Sections === */

section {
  margin-bottom: 4rem;
}

#about p:first-child {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

section p {
  margin-bottom: 1rem;
}

/* === Headings === */

h2 {
  font-size: 0.833rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}

h3 {
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.year {
  font-style: normal;
  color: #999;
  font-size: 0.833rem;
}

/* === Work Items === */

.work-item {
  margin-bottom: 2.5rem;
}

.work-item p {
  font-size: 0.9rem;
  color: #333;
}

/* === CV === */

#cv h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

#cv h3:first-of-type {
  margin-top: 0;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 0.9rem;
  color: #333;
  padding: 0.15rem 0;
}

.cv-list {
  columns: 2;
  column-gap: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table td {
  font-size: 0.9rem;
  color: #333;
  padding: 0.3rem 0;
  vertical-align: top;
}

table td:first-child {
  width: 6rem;
  color: #999;
  white-space: nowrap;
  padding-right: 1.5rem;
}

/* === Contact === */

#contact p {
  font-size: 0.9rem;
  color: #333;
}

/* === Links === */

a {
  color: #1a1a1a;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

/* === Responsive === */

@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .cv-list {
    columns: 1;
  }

  body {
    padding: 1.5rem 1rem 4rem;
  }
}
