:root {
  --bg: #f8ead7;
  --ink: #2d2416;
  --muted: #6f5a40;
  --gold: #d4a574;
  --dark: #302819;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f8ead7, #ead8bf);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 36px;
  height: 36px;
}

a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.hero {
  max-width: 880px;
  margin: 80px auto 70px;
  padding: 0 24px;
  text-align: center;
}

.nameplate {
  width: min(460px, 85vw);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  font-weight: 900;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: .95;
  margin: 20px 0;
  letter-spacing: -0.06em;
}

.subtext {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.cta {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  color: #2d2416;
  background: linear-gradient(135deg, var(--gold), #c49456);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(45, 36, 22, .18);
}

.small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.mission {
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(45,36,22,.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(45,36,22,.08);
}

.card h2,
.mission h2 {
  margin-top: 0;
}

.card p,
.mission p {
  color: var(--muted);
  line-height: 1.6;
}

.mission {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

@media (max-width: 800px) {
  .features {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 12px;
  }
}