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

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 1rem;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  max-width: 800px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.125rem;
  max-width: 700px;
}

/* Content */
.supporting,
.narrative,
.contact {
  margin-top: 48px;
}

.narrative p,
.contact p,
.supporting p {
  max-width: 700px;
  margin-bottom: 20px;
}

/* Notes */
.note {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}
