:root {
  --green: #3FA34D;
  --green-deep: #1E5631;
  --sage: #E8F1E4;
  --cream: #FBF8F1;
  --char: #2B2B2B;
  --muted: #5b6b5e;
  --peach: #F2C49B;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--char);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 720px; }

h1, h2 { font-family: var(--font-head); color: var(--green-deep); line-height: 1.1; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 18px; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
p { margin: 0 0 18px; }
a { color: var(--green-deep); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--green-deep); color: #fff; padding: 10px 16px; z-index: 10; }
.skip-link:focus { left: 12px; top: 12px; }

/* Header */
.site-header { padding: 22px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--green-deep); font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; }
.brand-sprout { font-size: 1.3rem; }
.header-link { text-decoration: none; font-weight: 700; color: var(--green-deep); font-size: 0.95rem; }
.header-link:hover { color: var(--green); }

/* Hero */
.hero { padding: 56px 0 40px; }
.hero-inner { max-width: 860px; }
.eyebrow, .kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.lead { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--muted); max-width: 680px; }

/* Sections */
.section { padding: 46px 0; }
.story p { font-size: clamp(1.05rem, 2vw, 1.22rem); }
.story em { font-style: italic; color: var(--green-deep); }
.story-punch { font-family: var(--font-head); font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--green-deep); line-height: 1.3; margin-top: 26px; }

/* Founder */
.founder { background: var(--sage); }
.founder-inner { display: flex; gap: 44px; align-items: center; flex-wrap: wrap; }
.founder-photo { width: 220px; height: 275px; object-fit: cover; border-radius: 18px; flex-shrink: 0; box-shadow: 0 12px 30px rgba(30,86,49,0.16); }
.founder-bio { flex: 1; min-width: 280px; }
.founder-bio p { color: #3a463c; }

/* Products */
.product-card {
  display: flex; gap: 20px; align-items: flex-start;
  text-decoration: none; color: inherit;
  background: #fff; border: 1px solid #e6ece3; border-radius: 18px;
  padding: 26px 28px; margin: 6px 0 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(30,86,49,0.12); }
.product-mark { font-size: 2rem; line-height: 1; }
.product-text { display: flex; flex-direction: column; gap: 6px; }
.product-name { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--green-deep); }
.product-flagship { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; color: var(--green); letter-spacing: 0.04em; text-transform: uppercase; }
.product-desc { color: var(--muted); }
.product-link { color: var(--green); font-weight: 700; margin-top: 4px; }
.products-note { color: var(--muted); font-style: italic; }

/* Contact */
.contact-email { display: inline-block; font-family: var(--font-head); font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--green-deep); text-decoration: none; border-bottom: 2px solid var(--peach); padding-bottom: 2px; }
.contact-email:hover { color: var(--green); }

/* Footer */
.site-footer { border-top: 1px solid #e6ece3; padding: 34px 0; margin-top: 20px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; }
.footer-brand { margin: 0; font-family: var(--font-head); font-weight: 600; color: var(--green-deep); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.footer-links a:hover { color: var(--green-deep); }
.footer-fine { margin: 0; color: #97a399; font-size: 0.85rem; }

@media (max-width: 640px) {
  .founder-inner { gap: 26px; }
  .founder-photo { width: 160px; height: 200px; }
  .section { padding: 36px 0; }
}
