:root {
  --bg: #e8e4de;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-dim: #999;
  --border: #e5e2de;
  --max-width: 860px;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Nav ── */

header {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-name {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

/* ── Main ── */

main {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

/* ── Hero ── */

.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}

h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 700px;
}

.subheadline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── About ── */

.about {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 3rem;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.about-photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.about-text h2 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
}

/* ── Footer ── */

footer {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 4rem 2rem;
}

.current-focus {
  margin-bottom: 3.5rem;
}

.current-focus h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.current-focus ul {
  list-style: none;
}

.current-focus li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  display: flex;
  gap: 1.25rem;
  border-top: 1px solid var(--border);
}

.current-focus li:last-child {
  border-bottom: 1px solid var(--border);
}

.focus-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  width: 76px;
  flex-shrink: 0;
  padding-top: 0.15em;
  letter-spacing: 0.04em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--text);
}

/* ── Responsive ── */

@media (max-width: 640px) {
  .hero {
    padding: 4rem 0 3.5rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo img {
    width: 120px;
    height: 120px;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
