/* Life as Tree — sample site styles (self-hosted, no external fonts/scripts) */
:root {
  --ink: #24312a;
  --ink-soft: #51605a;
  --leaf: #2e7d4f;
  --leaf-dark: #1f5c39;
  --bark: #7a5c43;
  --cream: #faf8f3;
  --card: #ffffff;
  --line: #e4e0d5;
  --gold: #b98a2f;
  --serif: Georgia, "Times New Roman", "Songti SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; flex-wrap: wrap; gap: 10px;
}
.brand {
  font-family: var(--serif); font-size: 1.35rem; color: var(--leaf-dark);
  text-decoration: none; letter-spacing: .2px;
}
.brand span { color: var(--bark); }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; margin-left: 22px; font-size: .95rem;
}
.nav-links a:hover { color: var(--leaf-dark); }
.nav-links a.cta {
  background: var(--leaf); color: #fff; padding: 9px 18px; border-radius: 999px;
}
.nav-links a.cta:hover { background: var(--leaf-dark); }

/* Hero */
.hero { text-align: center; padding: 76px 0 64px; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink); line-height: 1.2; margin-bottom: 18px;
}
.hero p.sub {
  max-width: 640px; margin: 0 auto 30px; color: var(--ink-soft); font-size: 1.1rem;
}
.btn {
  display: inline-block; background: var(--leaf); color: #fff; text-decoration: none;
  padding: 14px 34px; border-radius: 999px; font-size: 1.05rem; font-weight: 600;
}
.btn:hover { background: var(--leaf-dark); }
.btn.ghost {
  background: transparent; color: var(--leaf-dark); border: 1.5px solid var(--leaf);
}
.btn.ghost:hover { background: #eef5ef; }
.micro { margin-top: 14px; color: var(--ink-soft); font-size: .88rem; }

/* Sections */
section { padding: 56px 0; }
section.alt { background: #f2efe6; }
h2.sec {
  font-family: var(--serif); font-size: 1.8rem; text-align: center;
  margin-bottom: 12px; color: var(--ink);
}
p.sec-sub { text-align: center; color: var(--ink-soft); max-width: 620px; margin: 0 auto 40px; }

.grid { display: grid; gap: 20px; }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--leaf-dark); }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card .emoji { font-size: 1.6rem; display: block; margin-bottom: 10px; }

/* Tree poem block */
.poem {
  font-family: var(--serif); font-size: 1.25rem; line-height: 2; text-align: center;
  color: var(--ink); max-width: 560px; margin: 0 auto;
}

/* Steps */
.step-num {
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  background: var(--leaf); color: #fff; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 12px;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.faq-item p { color: var(--ink-soft); font-size: .95rem; }

/* Pricing */
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card .tier { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.price-card .amount { font-family: var(--serif); font-size: 2.4rem; color: var(--leaf-dark); margin: 8px 0 2px; }
.price-card .per { color: var(--ink-soft); font-size: .85rem; margin-bottom: 16px; }
.price-card ul { list-style: none; margin-bottom: 22px; }
.price-card li { padding: 6px 0 6px 26px; position: relative; color: var(--ink-soft); font-size: .93rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }
.price-card .btn { margin-top: auto; text-align: center; }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.soon { opacity: .92; }
.note-banner {
  text-align: center; background: #fdf6e5; border: 1px solid #ecd9a8; color: #6b5320;
  border-radius: 10px; padding: 12px 18px; font-size: .92rem; max-width: 640px; margin: 34px auto 0;
}

/* Report sample */
.report {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 44px 46px; max-width: 780px; margin: 0 auto;
}
.report h2 {
  font-family: var(--serif); font-size: 1.5rem; margin: 34px 0 10px; color: var(--ink);
  border-bottom: 1px solid var(--line); padding-bottom: 8px;
}
.report h2:first-of-type { margin-top: 0; }
.report p { color: var(--ink-soft); margin-bottom: 12px; font-size: .98rem; }
.report strong { color: var(--ink); }
.report ol { margin: 0 0 12px 22px; color: var(--ink-soft); font-size: .98rem; }
.report li { margin-bottom: 8px; }
.sample-banner {
  background: #eef5ef; border: 1px solid #cfe3d3; color: var(--leaf-dark);
  border-radius: 10px; padding: 12px 18px; font-size: .9rem; max-width: 780px;
  margin: 0 auto 26px; text-align: center;
}
.report-close {
  margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--ink-soft); font-style: italic;
}

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.legal h1 { font-family: var(--serif); font-size: 2rem; margin-bottom: 6px; }
.legal .eff { color: var(--ink-soft); font-size: .9rem; margin-bottom: 34px; }
.legal h2 { font-size: 1.2rem; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: .96rem; margin-bottom: 10px; }
.legal ul, .legal ol { margin-left: 22px; margin-bottom: 14px; }

/* Trust */
.trust { border-left: 4px solid var(--leaf); }

/* Footer */
footer {
  border-top: 1px solid var(--line); background: #f2efe6;
  padding: 40px 0 48px; margin-top: 40px;
}
.foot-disclaimer {
  color: var(--ink-soft); font-size: .85rem; max-width: 720px; margin-bottom: 18px;
}
.foot-links { font-size: .88rem; }
.foot-links a { color: var(--leaf-dark); text-decoration: none; margin-right: 18px; }
.foot-links a:hover { text-decoration: underline; }
.foot-copy { margin-top: 14px; color: var(--ink-soft); font-size: .8rem; }

@media (max-width: 640px) {
  .report { padding: 28px 22px; }
  .nav-links a { margin-left: 12px; font-size: .88rem; }
}
