:root {
  --forest: #1f3d2b;
  --forest-dark: #142719;
  --sand: #f4ede1;
  --clay: #b5652f;
  --ink: #22221f;
  --muted: #5c5c56;
  --line: #e3dbc9;
  --max: 980px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

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

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.site-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--forest-dark);
  text-decoration: none;
  line-height: 1.3;
}

.brand img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.8rem;
  }
  .brand img {
    height: 30px;
    width: 30px;
  }
}

.lang-switch a {
  color: var(--forest-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--forest-dark);
  padding: 6px 14px;
  border-radius: 20px;
}

.lang-switch a:hover {
  background: var(--forest-dark);
  color: var(--sand);
}

.hero {
  padding: 48px 0 12px;
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(20, 39, 25, 0.18);
}

.tagline {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 1.25rem;
  color: var(--forest-dark);
  font-weight: 500;
}

section {
  padding: 44px 0;
}

section.alt {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  color: var(--forest-dark);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  text-align: center;
  padding: 56px 0;
}

.cta a.button {
  display: inline-block;
  background: var(--clay);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.05rem;
}

.cta a.button:hover {
  background: #9a5327;
}

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

footer.site {
  text-align: center;
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.85rem;
}
