:root {
  --brown: #4a3728;
  --green: #6b8e4e;
  --cream: #faf6ec;
  --gold: #e0a94f;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--green); text-decoration: none; }

.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--brown);
}

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

nav a {
  margin-left: 24px;
  color: var(--brown);
  font-weight: 500;
}

nav a:hover { color: var(--green); }

.hero {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  text-align: center;
  padding: 80px 0;
}

.hero-logo { width: 120px; height: 120px; border-radius: 50%; margin-bottom: 24px; }

.hero h1 { font-size: 2.2rem; margin-bottom: 12px; }

.hero p { font-size: 1.1rem; color: #6b5a4a; margin-bottom: 28px; }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
}

.btn:hover { background: #5a7a3f; }

.section { padding: 64px 0; }

.section.alt { background: #fff; }

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  border-left: 4px solid var(--gold);
  padding-left: 12px;
}

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

.card {
  background: var(--cream);
  border: 1px solid #eadfca;
  border-radius: 8px;
  padding: 24px;
}

.card h3 { margin-bottom: 8px; color: var(--green); }

.contact-list { list-style: none; margin-top: 16px; }

.contact-list li { margin-bottom: 8px; }

.footer {
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}
