:root {
  --bg: #14151a;
  --surface: #1c1e26;
  --surface-2: #23262f;
  --text: #eceef2;
  --text-muted: #9599a6;
  --border: #2d303b;
  --accent: #6fa8ff;
  --accent-soft: #22314a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent); }

.hero {
  padding: clamp(40px, 8vw, 88px) clamp(20px, 5vw, 48px) clamp(32px, 6vw, 56px);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.tagline {
  margin: 0;
  color: var(--text-muted);
  max-width: 46ch;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px) clamp(20px, 5vw, 48px) 24px;
}

section + section { margin-top: 48px; }

h2 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.projects { display: flex; flex-direction: column; gap: 16px; }

.project-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

a.project-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

.project-card.placeholder {
  opacity: 0.6;
  border-style: dashed;
}

.project-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.placeholder .project-kicker { color: var(--text-muted); }

.project-card h3 { margin: 0 0 8px; font-size: 1.25rem; }

.project-card p { margin: 0 0 12px; color: var(--text-muted); }

.project-card.placeholder p:last-child { margin-bottom: 0; }

.project-link {
  font-weight: 600;
  color: var(--accent);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  display: inline-block;
  min-width: 70px;
  color: var(--text-muted);
}

footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 32px 16px 48px;
}

@media (max-width: 480px) {
  .hero-inner { flex-direction: column; align-items: flex-start; }
}
