:root { --ink: #161616; --muted: #6d6d6d; --line: #dedede; --paper: #fff; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { max-width: 960px; margin: auto; padding: 0 28px; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.5; }
a { color: inherit; text-underline-offset: 3px; }
header, footer { display: flex; justify-content: space-between; align-items: center; min-height: 76px; border-bottom: 1px solid var(--line); }
.name { font-weight: 700; text-decoration: none; }
nav { display: flex; gap: 20px; font-size: .9rem; }
nav a { text-decoration: none; }
nav a:hover, .name:hover { text-decoration: underline; text-underline-offset: 4px; }
section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.label { margin: 0 0 12px; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.045em; line-height: 1.06; }
h1 { max-width: 620px; margin-bottom: 18px; font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
.intro > p:last-child { margin: 0; color: var(--muted); font-size: 1.1rem; }
.section-title { margin-bottom: 32px; }.section-title .label { margin-bottom: 7px; }.section-title h2 { margin: 0; }
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
article { min-width: 0; }.project-image { display: grid; aspect-ratio: 4 / 3; place-items: center; margin-bottom: 14px; color: var(--ink); font-size: 2rem; font-weight: 700; letter-spacing: -.08em; }
.purple { background: #d9d1ff; }.green { background: #cae4d0; }.yellow { background: #fbe29b; }
.project-copy { display: flex; justify-content: space-between; gap: 12px; }.project-copy h3 { margin-bottom: 3px; font-size: 1rem; }.project-copy p { margin: 0; color: var(--muted); font-size: .87rem; }.project-copy a { flex: 0 0 auto; font-size: .87rem; }
.about { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; }.about h2 { margin-bottom: 13px; }.about div p { max-width: 420px; margin: 0; color: var(--muted); }
.contact h2 { margin-bottom: 18px; }.contact a { font-size: 1.35rem; font-weight: 700; }
footer { min-height: 90px; border-bottom: 0; color: var(--muted); font-size: .85rem; } footer a { color: var(--ink); }
@media (max-width: 640px) { body { padding: 0 20px; } header { min-height: 64px; } nav { gap: 13px; font-size: .82rem; } section { padding: 60px 0; } .projects { grid-template-columns: 1fr; gap: 38px; } .project-image { aspect-ratio: 16 / 9; } .about { grid-template-columns: 1fr; gap: 4px; } }
