:root {
  --bg: #fffdf6;
  --text: #1f2a20;
  --muted: #5f6f5f;
  --brand: #3f6b32;
  --brand-dark: #24471f;
  --soft: #eef4e8;
  --line: #dfe8d8;
  --card: #ffffff;
}

* { box-sizing: border-box; }

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

a { color: var(--brand-dark); }

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

.site-header {
  background: rgba(255, 253, 246, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.button {
  display: inline-block;
  background: var(--brand);
  color: white !important;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid var(--brand);
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark) !important;
}

.button.small { padding: 8px 14px; }

.hero { padding: 84px 0; }

.hero-grid, .product-grid, .split, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-grid.single {
  grid-template-columns: minmax(0, 680px);
}

.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.4rem; }

.lead {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 680px;
}

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

.hero-card, .card, .contact-card, .note {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(31, 42, 32, 0.08);
}

.image-placeholder {
  min-height: 280px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(63,107,50,.16), rgba(63,107,50,.05)),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(63,107,50,.08) 15px, rgba(63,107,50,.08) 16px);
  border: 1px dashed rgba(63,107,50,.45);
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  font-weight: 700;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.image-placeholder.tall {
  min-height: 420px;
  margin-bottom: 0;
}

.section { padding: 78px 0; }

.page-hero {
  padding: 72px 0 48px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.muted { background: var(--soft); }

.cards {
  display: grid;
  gap: 24px;
}

.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }

.card p, .note p, .contact-card p { color: var(--muted); }
.card a { font-weight: 800; }

.tick-list {
  padding-left: 20px;
  margin: 24px 0;
}

.tick-list li { margin-bottom: 10px; }

.cta { padding: 72px 0; }

.cta-inner {
  background: var(--brand-dark);
  color: white;
  border-radius: 34px;
  padding: 48px;
  text-align: center;
}

.cta-inner p { color: rgba(255,255,255,.82); }

.large-link {
  font-size: 1.4rem;
  font-weight: 800;
}

.site-footer {
  background: #172015;
  color: white;
  padding: 34px 0;
}

.site-footer a { color: white; }

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid p {
  margin: 4px 0;
  color: rgba(255,255,255,.75);
}

@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav { gap: 12px; }

  .hero-grid, .product-grid, .split, .contact-grid, .cards.two, .cards.three {
    grid-template-columns: 1fr;
  }

  .hero { padding: 54px 0; }
  .section { padding: 52px 0; }
  .cta-inner { padding: 32px 24px; }
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}
