@import url('https://fonts.googleapis.com/css2?family=Charter:ital,wght@0,400;0,700;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
a { color: inherit; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, sans-serif;
  background: #fff;
  color: #37352f;
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 120px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
nav {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
}

nav a {
  text-decoration: none;
  font-size: 0.875rem;
  color: #787774;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.12s, color 0.12s;
}

nav a:hover {
  background: #f1f1ef;
  color: #37352f;
}

nav a.active {
  color: #37352f;
  font-weight: 500;
}

/* Name row */
.name-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.social-icons a {
  color: #b4b4b0;
  text-decoration: none;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s, background 0.12s;
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  color: #37352f;
  background: #f1f1ef;
}

/* Headings */
h1 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #37352f;
}

/* Hero image */
.hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
  border-radius: 4px;
}

.bio {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.65;
  color: #55534e;
}

section { margin-top: 40px; }

h2 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b4b4b0;
  margin-bottom: 12px;
}

p {
  color: #55534e;
  font-size: 0.9375rem;
}

p a {
  color: #37352f;
  text-decoration: underline;
  text-decoration-color: #d3d1cb;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.15s;
}

p a:hover { text-decoration-color: #37352f; }

/* Inline text links */
a.text-link {
  color: #37352f;
  text-decoration: underline;
  text-decoration-color: #d3d1cb;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.15s;
}

a.text-link:hover { text-decoration-color: #37352f; }

/* Lists */
.inv-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.inv-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  font-size: 0.9375rem;
  color: #37352f;
  padding: 7px 0;
  border-bottom: 1px solid #f1f1ef;
}

.inv-list li:last-child { border-bottom: none; }

.inv-list li span { color: #b4b4b0; font-size: 0.8125rem; flex-shrink: 0; }

/* Path list */
.path-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.path-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9375rem;
  color: #37352f;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid #f1f1ef;
}

.path-list li:last-child { border-bottom: none; }

.path-list li span {
  color: #b4b4b0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 52px;
  white-space: nowrap;
  text-align: right;
}

/* Links row */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.links a {
  color: #37352f;
  text-decoration: underline;
  text-decoration-color: #d3d1cb;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  font-size: 0.9rem;
  transition: text-decoration-color 0.15s;
}

.links a:hover { text-decoration-color: #37352f; }

/* Image Filters */
.aesthetic-filter {
  filter: sepia(0.1) brightness(1.02) contrast(1.05);
  border-radius: 4px;
}

.crop-bottom {
  object-position: 65% 70%;
}
