:root {
  --bg: #0f1115;
  --fg: #e7e3d9;
  --muted: #8a8a85;
  --line: #1c1f26;
  --accent: #c9d6a7; /* soft willow green */
  --radius: 10px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 64px;
}

.hero .mark {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 48px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero .lede {
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.projects {
  margin-top: 64px;
  display: grid;
  gap: 12px;
}

.card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 24px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--fg);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
  border-color: #2a2f3a;
  text-decoration: none;
  transform: translateY(-1px);
}

.card-name {
  font-weight: 600;
  font-size: 17px;
}

.card-desc {
  grid-column: 1 / 2;
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  color: var(--accent);
  font-size: 14px;
  white-space: nowrap;
}

.about {
  margin-top: 64px;
}

.about h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.about p {
  margin: 0 0 12px;
}

.foot {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.foot a { color: var(--muted); }
.foot a:hover { color: var(--fg); }
.dot { opacity: 0.5; }
