:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --text: #1f2a1f;
  --muted: #5a665a;
  --accent: #4d6b3c;
  --accent-dark: #39502c;
  --line: #d9e0d6;
  --soft: #eef2ea;
  --shadow: 0 10px 30px rgba(31, 42, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

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

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav a {
  font-weight: 600;
}

.hero {
  padding: 84px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f5 100%);
}

.hero-grid,
.two-col,
.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.lead,
.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-card,
.info-box,
.card,
.contact-box,
.legal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-card,
.info-box,
.contact-box,
.legal {
  padding: 28px;
}

.hero-card ul {
  margin: 0;
  padding-left: 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--accent);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
}

.button-secondary {
  background: transparent;
  color: var(--accent-dark);
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: #fbfcfa;
}

.section-accent {
  background: linear-gradient(180deg, #f0f5ec 0%, #e7eee1 100%);
}

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

.card {
  padding: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.footer-wrap p {
  margin: 0;
}

.footer-wrap a {
  margin-left: 16px;
}

.legal h2 {
  margin-top: 28px;
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }
}
