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

:root {
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #b45309;
  --bg: #fafaf8;
  --border: #e5e2dc;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html { font-size: 18px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* Layout */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--border);
}

header nav {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

header .site-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

header .nav-links { display: flex; gap: 1.5rem; }
header .nav-links a { font-size: 0.9rem; color: var(--muted); }
header .nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  padding: 5rem 0 4rem;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Sections */
section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

section p { margin-bottom: 1rem; }
section p:last-child { margin-bottom: 0; }

/* CTA */
.cta {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.cta:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

/* Team */
.team-grid {
  display: grid;
  gap: 3rem;
}

.team-member {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
}

.headshot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 0.15rem;
}

.team-bio h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.team-bio .role {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.team-bio p { margin-bottom: 0.8rem; }

/* Manifesto */
.manifesto {
  text-align: center;
}

.manifesto-img {
  max-width: 240px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.manifesto p {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}

/* Footer */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

footer p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 600px) {
  html { font-size: 16px; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.8rem; }
  section { padding: 2rem 0; }
  .team-member { grid-template-columns: 56px 1fr; gap: 0.75rem; }
  .headshot { width: 56px; height: 56px; }
}
