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

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* HERO */
.hero {
  margin-bottom: 80px;
}

.name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.headline {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.subtext {
  color: #555;
  margin-bottom: 30px;
}

.cta a {
  margin-right: 20px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}

.cta a:hover {
  border-color: #111;
}

/* SECTION */
.section {
  margin-bottom: 80px;
}

.section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #555;
}

/* WORK */
.work-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.work-item span {
  font-size: 14px;
  color: #aaa;
  width: 30px;
}

.work-item h4 {
  font-size: 16px;
  font-weight: 500;
}

.work-item p {
  font-size: 14px;
  color: #555;
}

.work-item small {
  font-size: 12px;
  color: #888;
}

/* EXPLORE */
.explore-list {
  list-style: none;
}

.explore-list li {
  margin-bottom: 10px;
  color: #333;
}

/* ABOUT */
.about p {
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  font-size: 13px;
  color: #777;
}
