: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: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(45, 79, 62, 0.98);
  color: white;
  border-bottom: 3px solid #d9823b;
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.logo {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #f3d7a3;
}

.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;
  margin-top: 60px;
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 24px 3rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 560px;
}

.footer-brand h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: white;
}

.footer-brand p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #f3d7a3;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
}

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

  .nav-links {
    gap: 0.9rem;
  }

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

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

  .site-footer-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
}
