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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #fff;
  color: #111;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* ── Page: centered narrow column ── */

.page {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ── Section ── */

.section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}

/* ── Name heading ── */

.name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #111;
}

/* ── Bio ── */

.bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #555;
}

.bio strong {
  color: #111;
  font-weight: 500;
}

/* ── Social icons ── */

.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 17, 17, 0.8);
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 0.6;
}

/* ── Section title ── */

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #111;
}

/* ── Project groups ── */

.project-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.group-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #111;
}

/* ── Project list ── */

.project-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-list a {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.project-list a:hover {
  color: #111;
}

.project-desc {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #555;
  margin-top: 8px;
}

/* ── Responsive ── */

@media (max-width: 640px) {
  .page {
    padding: 48px 0;
    gap: 60px;
  }

  .section {
    padding: 0 16px;
    gap: 32px;
  }
}
