/* Sprout & Sass — storefront styles */
:root {
  --sage:        #89D08D;   /* main brand green */
  --sage-deep:   #2f7d42;   /* deeper green: buttons, bands, links (AA on light) */
  --sage-soft:   #d8ecd7;   /* light green tint */
  --cream:       #F6F3E6;   /* page background */
  --cream-2:     #ECE6D2;   /* alt sections */
  --ink:         #2c3327;
  --ink-soft:    #5a6453;
  --accent:      #D3D3D3;   /* neutral gray accent: borders, dividers */
  --accent-d:    #bcbcbc;
  --terracotta:  #2f7d42;   /* primary CTA = deep green */
  --terracotta-d:#25653a;
  --radius:      14px;
  --shadow:      0 6px 22px rgba(44, 51, 39, 0.10);
  --maxw:        1120px;
  --font-head:   "Georgia", "Times New Roman", serif;
  --font-body:   "Helvetica Neue", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--ink); }
a { color: var(--terracotta-d); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--accent);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .leaf { width: 28px; height: 28px; display: inline-block; vertical-align: middle; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { color: var(--ink-soft); font-size: 0.98rem; letter-spacing: 0.02em; }
.nav a:hover { color: var(--sage-deep); text-decoration: none; }

.btn {
  display: inline-block;
  background: var(--terracotta); color: #fff;
  padding: 12px 26px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.02em; border: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--terracotta-d); text-decoration: none; transform: translateY(-1px); }
.btn-sage { background: var(--sage); color: var(--ink); }
.btn-sage:hover { background: var(--sage-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--sage-deep); border: 1.5px solid var(--accent); }
.btn-ghost:hover { background: var(--sage-soft); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -10%, var(--sage-soft), transparent 60%),
    var(--cream);
  padding: 80px 0 70px;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero h1 { font-size: 3rem; margin: 0 0 18px; }
.hero p.lede { font-size: 1.2rem; color: var(--ink-soft); margin: 0 0 30px; max-width: 30em; }
.hero-art {
  background: linear-gradient(150deg, var(--sage-soft), var(--cream-2));
  border-radius: 24px; padding: 30px; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3; overflow: hidden;
}
.hero-art img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.hero-card { text-align: center; color: var(--sage-deep); }
.hero-card .hero-leaves { font-size: 3.4rem; line-height: 1; margin-bottom: 14px; }
.hero-card .hero-slogan { font-family: var(--font-head); font-weight: 700; font-size: 2.7rem; color: var(--ink); line-height: 1.1; }
.hero-card .hero-sub { margin-top: 14px; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; color: var(--sage-deep); font-weight: 700; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; color: var(--sage-deep); font-weight: 700; margin-bottom: 14px; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section.alt { background: var(--cream-2); }
.section h2 { font-size: 2rem; margin: 0 0 8px; text-align: center; }
.section .sub { text-align: center; color: var(--ink-soft); max-width: 34em; margin: 0 auto 40px; }

/* ---------- Product grid ---------- */
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
}
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  border: 1px solid var(--accent);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(44,51,39,0.16); }
.card .thumb {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 38%, #fff 0%, var(--cream-2) 100%);
  display: flex; align-items: center; justify-content: center; padding: 26px;
  overflow: hidden;
}
.card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.card .body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.card .meta { font-size: 0.85rem; color: var(--ink-soft); margin-top: -4px; }
.card .spacer { flex: 1; }
.card .btn { text-align: center; font-size: 0.92rem; padding: 10px 18px; }

/* ---------- Feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { text-align: center; padding: 12px; }
.feature .ic { font-size: 1.9rem; }
.feature h3 { font-size: 1.15rem; margin: 10px 0 6px; }
.feature p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* ---------- Prose (about / privacy) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: 2.4rem; margin-bottom: 6px; }
.prose .updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 30px; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--sage-deep); color: #fff; text-align: center; padding: 60px 0; }
.cta-band h2 { color: #fff; font-size: 2rem; margin: 0 0 14px; }
.cta-band p { color: var(--sage-soft); margin: 0 0 26px; }
.cta-band .btn { background: #fff; color: var(--sage-deep); }
.cta-band .btn:hover { background: var(--sage-soft); color: var(--terracotta-d); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdd3c6; padding: 48px 0 30px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-family: var(--font-head); margin: 0 0 12px; font-size: 1.05rem; }
.site-footer a { color: #cdd3c6; display: block; margin-bottom: 8px; font-size: 0.95rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 10px; }
.site-footer .brand .leaf { filter: brightness(0) invert(1); }
.site-footer .tagline { font-size: 0.95rem; max-width: 28em; }
.site-footer .legal { border-top: 1px solid #3a423235; margin-top: 34px; padding-top: 20px; font-size: 0.85rem; color: #98a08c; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .features { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .nav { gap: 16px; }
  .nav a.hide-sm { display: none; }
}
