:root {
  --green: #2d4f3e;
  --green-dark: #20392d;
  --tan: #d8b98a;
  --brown: #3e332e;
  --cream: #faf7f0;
  --white: #ffffff;
  --muted: #6f625a;
  --border: #e7dccb;
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  background: var(--green);
  color: white;
  padding: 18px 24px;
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

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

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.hero {
  background: linear-gradient(135deg, #2d4f3e 0%, #3e332e 100%);
  color: white;
  padding: 80px 24px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--tan);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  margin: 12px 0 20px;
  max-width: 850px;
}

.hero p {
  font-size: 22px;
  max-width: 780px;
}

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

.intro-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(62, 51, 46, 0.08);
  margin-top: -80px;
  position: relative;
}

.section {
  margin-top: 56px;
}

.section h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
}

.callout {
  background: #efe5d4;
  border-left: 6px solid var(--green);
  padding: 24px;
  border-radius: 16px;
  margin-top: 32px;
}

.guide-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.guide-link {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  background: var(--green-dark);
  color: white;
  padding: 32px 24px;
  margin-top: 60px;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
}

@media (max-width: 800px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid,
  .guide-links {
    grid-template-columns: 1fr;
  }

  .intro-card {
    margin-top: -40px;
  }
}
