/* ============================================================
   GestaltNatur — gemeinsames Design-System
   Natürlich · leicht · verspielt
   Wird vom HTML-Prototyp und vom WordPress-Theme genutzt.
   ============================================================ */

:root {
  /* Farben — hell & luftig, Tannengrün als Akzent */
  --paper:       #faf6ec;
  --paper-2:     #f2ead8;
  --cream:       #ede4d3;
  --cream-2:     #f6efe0;
  --forest:      #2f4732;
  --forest-2:    #24382a;
  --forest-deep: #1b2a20;
  --sage:        #bbcbb9;
  --sage-soft:   #d7e1d3;
  --clay:        #b67b56;
  --clay-soft:   #d9aa86;
  --honey:       #cf9d4f;
  --ink:         #1f1f1b;
  --ink-soft:    rgba(31,31,27,0.74);
  --ink-faint:   rgba(31,31,27,0.52);
  --line:        rgba(47,71,50,0.16);
  --line-strong: rgba(47,71,50,0.30);

  --serif: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Space Grotesk', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  --wrap: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 30px;

  --shadow-sm: 0 2px 8px -4px rgba(27,42,32,0.18);
  --shadow:    0 18px 40px -28px rgba(27,42,32,0.45), 0 4px 12px -8px rgba(27,42,32,0.18);
  --shadow-lg: 0 40px 80px -40px rgba(27,42,32,0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; color: var(--forest-2); letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.wrap-narrow { width: min(760px, 92vw); margin-inline: auto; }
.section { padding: clamp(3.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-sm { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.bg-paper2 { background: var(--paper-2); }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest); color: var(--cream-2); }
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--cream-2); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 1.7em; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.bg-forest .eyebrow { color: var(--clay-soft); }

/* ---------- Typographic scale ---------- */
.display { font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.02; }
.h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.4rem); line-height: 1.55; color: var(--ink-soft); }
.serif-italic { font-family: var(--serif); font-style: italic; }
.measure { max-width: 60ch; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 500; font-size: 0.98rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  position: relative;
}
.btn .leaf-ico { transition: transform .45s var(--ease); }
.btn:hover .leaf-ico { transform: rotate(-12deg) translateY(-1px); }
.btn-primary { background: var(--forest); color: var(--cream-2); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--forest-2); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(47,71,50,0.06); transform: translateY(-2px); border-color: var(--forest); }
.bg-forest .btn-ghost { color: var(--cream-2); border-color: rgba(237,228,211,0.4); }
.bg-forest .btn-ghost:hover { background: rgba(237,228,211,0.1); }
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { background: #a86c47; transform: translateY(-2px); box-shadow: var(--shadow); }

.textlink {
  text-decoration: none;
  color: var(--forest);
  font-weight: 500;
  background-image: linear-gradient(var(--clay), var(--clay));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .4s var(--ease);
  padding-bottom: 1px;
}
.textlink:hover { background-size: 100% 1.5px; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -22px rgba(27,42,32,0.6); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 0.85rem 0;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand .mark { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.brand .mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--forest-2); letter-spacing: -0.01em; }
.brand-tag { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

.menu { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.menu a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 0.96rem; font-weight: 450;
  padding: 0.5em 0.85em; border-radius: 999px;
  position: relative;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.menu a:hover { color: var(--forest-2); background: rgba(47,71,50,0.06); }
.menu a.current { color: var(--forest-2); }
.menu a.current::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--clay);
  transform: translateX(-50%);
}
.nav-cta { margin-left: 0.4rem; }
.nav-toggle { display: none; }

/* mobile */
@media (max-width: 920px) {
  .nav-cta { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 26px; height: 2px; background: var(--forest-2); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem 6vw 2rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .4s var(--ease), opacity .3s var(--ease);
    box-shadow: var(--shadow);
  }
  .menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu a { padding: 0.9em 0.4em; font-size: 1.15rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .menu a.current::after { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 8rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(6px); opacity: 0.5;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: 1.2rem; }
.hero .tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.pill {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5em 0.95em; border-radius: 999px;
  background: var(--cream); color: var(--forest-2);
  border: 1px solid var(--line);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

/* Sprout illustration */
.sprout-stage {
  position: relative; aspect-ratio: 1; width: 100%;
  display: grid; place-items: center;
}
.sprout-disc {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--sage-soft), var(--sage) 70%, #a9bca6);
  box-shadow: var(--shadow-lg), inset 0 -20px 50px -20px rgba(27,42,32,0.4);
}
.sprout-disc::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(27,42,32,0.18);
  margin: 18px;
}
.sprout-svg { position: relative; width: 64%; z-index: 2; overflow: visible; }

/* ============================================================
   Soil dividers (wavy horizon)
   ============================================================ */
.soil-divider { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.soil-divider path { fill: currentColor; }

/* ============================================================
   Cards / Grids
   ============================================================ */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage); }
.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }
.card .card-num {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--clay); margin-bottom: 1rem; display: block;
}
.card-leaf { position: absolute; top: 1.3rem; right: 1.3rem; color: var(--sage); opacity: 0.8; transition: transform .6s var(--ease); transform-origin: bottom center; }
.card:hover .card-leaf { transform: rotate(-14deg) scale(1.08); color: var(--clay); }

/* Feature card with icon disc */
.icon-disc {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sage-soft); color: var(--forest-2);
  margin-bottom: 1.2rem;
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.card:hover .icon-disc { transform: rotate(-6deg) scale(1.05); background: var(--clay-soft); }

/* ============================================================
   Process / steps with growing line
   ============================================================ */
.steps { position: relative; display: grid; gap: 1.1rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step-marker {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 0.95rem; font-weight: 500;
  background: var(--forest); color: var(--cream-2);
  position: relative; z-index: 2;
  transition: transform .5s var(--ease);
}
.step:hover .step-marker { transform: scale(1.12) rotate(-6deg); }
.step h3 { margin-bottom: 0.35rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* ============================================================
   Image placeholder (garden plan style)
   ============================================================ */
.imgph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(47,71,50,0.05) 0 10px, transparent 10px 20px),
    var(--sage-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center; aspect-ratio: 16/10;
  color: var(--forest-2);
}
.imgph .imgph-label {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--cream-2); padding: 0.55em 1em; border-radius: 999px; border: 1px solid var(--line);
}
.imgph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
figure { margin: 0; }
figcaption { font-family: var(--serif); font-style: italic; font-size: 0.98rem; color: var(--ink-faint); margin-top: 0.7rem; }

/* ============================================================
   Quote
   ============================================================ */
.quote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.32; color: var(--forest-2); font-weight: 500;
  position: relative; padding-left: 2rem;
}
.quote::before {
  content: ""; position: absolute; left: 0; top: 0.1em; bottom: 0.1em;
  width: 3px; border-radius: 3px;
  background: linear-gradient(var(--clay), var(--sage));
}
.bg-forest .quote { color: var(--cream-2); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--forest-2);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-q .plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--clay); border-radius: 2px;
  left: 50%; top: 50%; transition: transform .4s var(--ease);
}
.faq-q .plus::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 2px; height: 16px; transform: translate(-50%,-50%); }
.faq-item.open .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 0 1.4rem; color: var(--ink-soft); }

/* ============================================================
   Forms (CF7-kompatibel)
   ============================================================ */
.form-card {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.8rem);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.15rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-label, label.field {
  display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.5rem;
}
.form-label .req { color: var(--clay); }
.field-input,
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel],
.wpcf7 input[type=number], .wpcf7 textarea, .wpcf7 select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 0.85em 1em;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.field-input:focus,
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  outline: none; border-color: var(--forest); background: #fff;
  box-shadow: 0 0 0 4px rgba(47,71,50,0.1);
}
textarea.field-input, .wpcf7 textarea { min-height: 130px; resize: vertical; }
.field-check { display: flex; gap: 0.7rem; align-items: flex-start; font-family: var(--sans); font-size: 0.92rem; color: var(--ink-soft); }
.field-check input { margin-top: 0.3em; accent-color: var(--forest); width: 18px; height: 18px; flex-shrink: 0; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 1rem; }

/* ============================================================
   Blog
   ============================================================ */
.post-card {
  display: flex; flex-direction: column;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .thumb { aspect-ratio: 16/10; position: relative; }
.post-card .post-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.post-card .post-cat { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); }
.post-card h3 { font-size: 1.3rem; }
.post-card a { text-decoration: none; }
.post-card .post-more { margin-top: auto; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--forest); display: inline-flex; align-items: center; gap: 0.5em; }
.post-card:hover .post-more .arr { transform: translateX(4px); }
.post-more .arr { transition: transform .4s var(--ease); }

/* Article body */
.article { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); }
.article > .wrap-narrow > * + * { margin-top: 1.1rem; }
.article h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--forest-2); margin-top: 2.6rem; margin-bottom: 0.8rem; }
.article h3 { font-size: 1.35rem; color: var(--forest-2); margin-top: 1.8rem; margin-bottom: 0.5rem; }
.article p { color: var(--ink-soft); }
.article ul { padding-left: 1.2rem; }
.article li { margin-bottom: 0.5rem; }
.article strong { color: var(--forest-2); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-cloud a {
  font-family: var(--mono); font-size: 0.72rem; text-decoration: none;
  padding: 0.4em 0.8em; border-radius: 999px; background: var(--cream);
  border: 1px solid var(--line); color: var(--ink-soft);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.tag-cloud a:hover { background: var(--sage-soft); color: var(--forest-2); transform: translateY(-2px); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band .leaf-float { position: absolute; opacity: 0.16; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--forest-deep); color: var(--cream-2); padding: clamp(3rem,6vw,5rem) 0 2rem; }
.site-footer a { color: var(--cream-2); text-decoration: none; opacity: 0.82; transition: opacity .3s; }
.site-footer a:hover { opacity: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand .mark { width: 48px; height: 48px; }
.footer-col h4 { color: var(--cream-2); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; margin-bottom: 1rem; font-weight: 400; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(237,228,211,0.16); font-size: 0.82rem; opacity: 0.7; display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; justify-content: space-between; }

/* ============================================================
   Scroll reveal
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in { opacity: 1 !important; transform: none !important; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
  .reveal.d4 { transition-delay: .32s; }
}

/* ============================================================
   Keyframes — playful botanical motion
   ============================================================ */
@keyframes sway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes float-up { 0% { transform: translateY(0) rotate(0); } 100% { transform: translateY(-120vh) rotate(220deg); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-ring { 0% { transform: scale(0.9); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

.sway { transform-origin: bottom center; animation: sway 5s ease-in-out infinite; }
.bob { animation: bob 4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .sway, .bob, .leaf-particle { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Floating leaf particles */
.leaf-particle { position: absolute; bottom: -40px; will-change: transform; pointer-events: none; }

/* Sprout draw-on */
.sprout-svg .grow { stroke-dasharray: var(--len, 300); stroke-dashoffset: var(--len, 300); }
.sprout-svg.animate .grow { animation: draw 1.8s var(--ease) forwards; }
.sprout-svg.animate .grow.delay1 { animation-delay: .9s; }
.sprout-svg.animate .grow.delay2 { animation-delay: 1.3s; }
.sprout-svg .seed { opacity: 0; transition: opacity .5s; }
.sprout-svg.animate .seed { opacity: 1; transition-delay: 1.6s; }
.sprout-svg .leaf-fill { opacity: 0; transform: scale(0.4); transform-origin: center bottom; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.sprout-svg.animate .leaf-fill { opacity: 1; transform: scale(1); }
.sprout-svg.animate .leaf-fill.l1 { transition-delay: 1.0s; }
.sprout-svg.animate .leaf-fill.l2 { transition-delay: 1.25s; }

/* Section heading layout */
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* utility */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.flex { display: flex; } .gap-1 { gap: 1rem; } .wrap-gap { flex-wrap: wrap; }
.center { text-align: center; }
.list-check { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: 0.8rem; }
.list-check li { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; color: var(--ink-soft); }
.list-check .tick { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-soft); color: var(--forest-2); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.bg-forest .list-check li { color: rgba(237,228,211,0.85); }
.bg-forest .list-check .tick { background: rgba(237,228,211,0.16); color: var(--cream-2); }
