* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.5;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid #eee;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
}

.nav a:hover {
  color: #000;
}

/* HERO */
.hero {
  padding: 100px 48px 60px;
  max-width: 900px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.hero p {
  margin-top: 12px;
  color: #666;
  font-size: 16px;
}

/* FEATURED GRID */
.featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 24px;
  padding: 40px 48px 80px;
}

.project {
  border: 1px solid #eee;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.project:hover {
  border-color: #111;
  transform: translateY(-4px);
}

.project h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.project p {
  color: #666;
  font-size: 14px;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 13px;
}
