:root {
  --bg: #f7f5f0;
  --text: #1f2933;
  --muted: #5f6b73;
  --line: #d9d4ca;
  --accent: #2f5d62;
  --accent-soft: #e6eeec;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
}

header {
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 32px;
}

.hero {
  max-width: 860px;
  padding: 60px 0 80px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  margin: 18px 0 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 20px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
  max-width: 760px;
}

.actions {
  margin-top: 42px;
}

.button {
  display: inline-block;
  border: 1px solid var(--text);
  padding: 13px 20px;
  margin-right: 12px;
  text-decoration: none;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--text);
  color: var(--bg);
}

.button.secondary {
  border-color: var(--line);
  color: var(--muted);
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: rgba(255,255,255,0.35);
  border: 1px solid var(--line);
  padding: 28px;
}

.card p {
  color: var(--muted);
}

.page-title {
  max-width: 780px;
  margin-bottom: 56px;
}

.person {
  min-height: 180px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 36px 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    margin-top: 14px;
  }

  .nav-links a {
    margin-left: 0;
    margin-right: 18px;
  }

  main {
    padding: 48px 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
