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

:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --text: #1a1a18;
  --muted: #6b7264;
  --accent: #2d5a27;
  --accent-light: #e8f0e6;
  --border: #dde4da;
  --max-width: 760px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* Layout */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero wrapper — full width dark block */

.hero-wrapper {
  background-color: #111a11;
  margin-bottom: 0;
}

/* Header */

header {
  padding: 32px 0 0;
}

.wordmark {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6db86d;
}

/* Hero */

.hero {
  padding: 72px 0 72px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #f2f5f2;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero p {
  font-size: 1.125rem;
  color: #9ab89a;
  max-width: 560px;
  line-height: 1.65;
}

/* Impact stat */

.stat-block {
  display: flex;
  flex-direction: column;
  margin: 28px 0 28px;
}

.stat-number {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Sections */

section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}

section p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

section p + p {
  margin-top: 14px;
}

/* What we do list */

.what-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.what-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.what-list span {
  color: var(--muted);
  line-height: 1.65;
}

/* Team */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.team-member h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
}

/* Contact */

.wordmark-link {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.inline-link:hover {
  text-decoration: underline;
}

.contact-section {
  padding: 72px 0 48px;
  border-bottom: none;
}

.email-link {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.email-link:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: none;
}

/* Footer */

footer {
  padding: 40px 0;
}

footer p {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

/* Mobile */

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 40px;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  section {
    padding: 40px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
