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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #111;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  line-height: 1.6;
}

/* Nav */
nav {
  display: flex;
  gap: 20px;
  margin-bottom: 64px;
}

nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #999;
  transition: color 0.15s;
}

nav a:hover { color: #111; }
nav a.active { color: #111; font-weight: 500; }

/* Headings */
h1 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tagline {
  color: #555;
  margin-top: 6px;
  font-size: 1rem;
}

section { margin-top: 48px; }

h2 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 16px;
}

p { color: #333; font-size: 0.975rem; }

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

.links a {
  color: #111;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1px;
  transition: border-color 0.15s;
}

.links a:hover { border-color: #111; }

/* Inline text links */
a.text-link {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1px;
  transition: border-color 0.15s;
}

a.text-link:hover { border-color: #111; }

/* Investment list */
.inv-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.inv-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  color: #333;
}

.inv-list li span { color: #999; font-size: 0.85rem; }

/* Photography grid */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #f4f4f4;
}

.photo-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
