/* ══════════════════════════════════════════════════════════════════
   Replenished Roots — shared design system
   Light editorial / botanical. Signature: copper root lines.
   See DESIGN-BRIEF.md (local). One stylesheet for every public page —
   never duplicate these styles inline in a page.
   ══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper:     #FBF8F1;
  --cream:     #F5F0E6;
  --cream-dk:  #EDE5D2;
  --ink:       #1E2B22;
  --ink-soft:  #5C6B60;
  --green:     #2C5A3A;
  --green-lt:  #7ABF8E;
  --copper:    #9C6B3F;
  --line:      rgba(30,43,34,.14);
  --line-soft: rgba(30,43,34,.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
h1, h2, h3, h4 {
  text-wrap: balance;
  font-family: 'Fraunces', serif;
  font-weight: 560;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 em, h2 em { font-style: italic; font-weight: 480; color: var(--green); }
a { color: var(--green); }

::selection { background: rgba(156,107,63,.22); }

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
.reveal[data-delay="5"] { transition-delay: .35s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes rootGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ─── NAV — light ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(251,248,241,0);
  border-bottom: 1px solid transparent;
  transition: background .4s, padding .4s, border-color .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(251,248,241,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 12px 48px;
  border-bottom-color: var(--line-soft);
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { height: 46px; }
.nav-logo-name { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 560; color: var(--ink); letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: .76rem; font-weight: 550; letter-spacing: .12em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--copper); }
.nav-cta {
  background: var(--green) !important; color: var(--paper) !important;
  padding: 10px 22px; border-radius: 4px; letter-spacing: .08em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--copper) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; left: 0; right: 0; z-index: 99;
  background: rgba(251,248,241,.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft); padding: 6px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; color: var(--ink); text-decoration: none;
  padding: 15px 28px; font-size: .95rem; font-weight: 500;
  border-bottom: 1px solid var(--line-soft); transition: color .2s;
}
.mobile-nav a:hover { color: var(--copper); }

/* ─── ROOT LINES — the signature ───
   .root-descend  : vertical copper hairline that grows downward (hero → first section)
   .root-node     : small fork glyph marking a section start
   .root-tick     : short ⌐ corner tick on cards (pure CSS)
   Desktop only where noted; forks become centered dividers on mobile. */
.root-descend {
  width: 1px; height: 64px; margin: 24px auto 0;
  background: linear-gradient(to bottom, var(--copper) 0%, rgba(156,107,63,.25) 100%);
  transform-origin: top;
  animation: rootGrow 1.2s cubic-bezier(.16,1,.3,1) .9s both;
}
.root-node { display: flex; justify-content: center; margin-bottom: 16px; }
.root-node svg { width: 26px; height: 34px; stroke: var(--copper); fill: none; stroke-width: 1.2; opacity: .85; }
.root-tick { position: relative; }
.root-tick::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 26px; height: 1px; background: var(--copper);
}
.root-tick::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 1px; height: 26px; background: linear-gradient(to bottom, var(--copper), rgba(156,107,63,.15));
}

/* ─── Shared layout ─── */
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-narrow { max-width: 780px; margin: 0 auto; }
section { padding: 60px 48px; }
.eyebrow {
  display: block; font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px; color: var(--copper);
}
.section-hd h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin-bottom: 14px; }
.section-hd p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.8; max-width: 60ch; }

/* ─── HERO — light editorial ─── */
.hero-lite {
  min-height: min(78vh, 700px); display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 128px 48px 0; position: relative;
}
.hero-eyebrow {
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--copper);
  margin-bottom: 26px; font-weight: 600;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .15s both;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.4rem); font-weight: 560; max-width: 900px;
  margin-bottom: 28px; line-height: 1.04;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .3s both;
}
.hero-sub {
  font-size: 1.08rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 42px; line-height: 1.85;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .45s both;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .5s both; }
.hero-cred {
  display: flex; gap: 0; margin-top: 42px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .62s both;
}
.hero-cred > div {
  display: flex; flex-direction: column; gap: 4px; padding: 0 34px; text-align: center;
}
.hero-cred > div + div { border-left: 1px solid var(--line); }
.cred-val { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 560; color: var(--ink); }
.cred-lbl { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--paper); text-decoration: none;
  padding: 16px 36px; border-radius: 4px; font-weight: 600; font-size: .92rem;
  transition: background .25s, transform .25s;
}
.btn-primary:hover { background: var(--copper); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink); text-decoration: none;
  padding: 16px 36px; border-radius: 4px; font-weight: 550; font-size: .92rem;
  border: 1px solid var(--line); transition: border-color .25s, color .25s;
}
.btn-secondary:hover { border-color: var(--copper); color: var(--copper); }

/* ─── SERVICE ROWS — editorial numbered list ─── */
.svc-rows { border-top: 1px solid var(--line); margin-top: 36px; }
.svc-row {
  display: grid; grid-template-columns: 90px 1fr 60px; align-items: center; gap: 28px;
  padding: 28px 8px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; transition: background .25s;
}
.svc-row:hover { background: rgba(245,240,230,.6); }
.svc-num {
  font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 400; font-style: italic;
  color: var(--copper); opacity: .8; line-height: 1;
}
.svc-body h3 { font-size: 1.45rem; margin-bottom: 8px; transition: color .2s; }
.svc-row:hover .svc-body h3 { color: var(--green); }
.svc-body p { font-size: .93rem; color: var(--ink-soft); line-height: 1.75; max-width: 62ch; }
.svc-arrow {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s, transform .25s;
}
.svc-arrow svg { width: 16px; height: 16px; stroke: var(--ink-soft); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
.svc-row:hover .svc-arrow { border-color: var(--copper); background: var(--copper); transform: translate(3px,-3px); }
.svc-row:hover .svc-arrow svg { stroke: var(--paper); }

/* ─── STAGE STRIP (results timeline, compact) ─── */
.stage-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 36px; border-left: 1px solid var(--line); }
.stage {
  padding: 26px 22px 8px; border-right: 1px solid var(--line); position: relative;
}
.stage::before { content: ''; position: absolute; top: 0; left: -1px; width: 1px; height: 22px; background: var(--copper); }
.stage-day { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); font-weight: 600; display: block; margin-bottom: 10px; }
.stage h3 { font-size: 1.08rem; margin-bottom: 8px; }
.stage p { font-size: .85rem; color: var(--ink-soft); line-height: 1.7; }
.stage-note { margin-top: 28px; padding: 22px 26px; background: var(--cream); border-radius: 0 6px 6px 0; border-left: 2px solid var(--copper); }
.stage-note p { font-size: .92rem; color: var(--ink-soft); line-height: 1.75; }
.stage-note a { font-weight: 600; }

/* ─── HOW — vertical root timeline ─── */
.how-steps { max-width: 720px; margin: 38px auto 0; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 8px; bottom: 8px; left: 27px; width: 1px;
  background: linear-gradient(to bottom, var(--copper) 0%, rgba(156,107,63,.2) 100%);
}
.how-step { display: grid; grid-template-columns: 56px 1fr; gap: 26px; padding-bottom: 36px; position: relative; }
.how-step:last-child { padding-bottom: 0; }
.step-marker {
  width: 56px; height: 56px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--copper); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-marker span { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.25rem; color: var(--copper); }
.how-step h3 { font-size: 1.4rem; margin: 10px 0 10px; }
.how-step > div p { font-size: .95rem; color: var(--ink-soft); line-height: 1.8; max-width: 58ch; }
.how-step ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.how-step ul li { font-size: .87rem; color: var(--ink-soft); padding-left: 18px; position: relative; line-height: 1.6; }
.how-step ul li::before { content: ''; position: absolute; left: 0; top: .58em; width: 8px; height: 1px; background: var(--copper); }

/* ─── INPUT CARDS (cream, root tick) ─── */
.inputs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.input-card { background: var(--cream); border-radius: 6px; padding: 34px 28px 30px; transition: transform .3s, box-shadow .3s; }
.input-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(30,43,34,.08); }
.input-card .root-tick-el { display: block; width: 34px; height: 34px; position: relative; margin-bottom: 18px; }
.input-card .root-tick-el::before { content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 1.5px; background: var(--copper); }
.input-card .root-tick-el::after { content: ''; position: absolute; top: 0; left: 0; width: 1.5px; height: 34px; background: linear-gradient(to bottom, var(--copper), rgba(156,107,63,.15)); }
.input-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.input-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.75; }

/* ─── BANNER CTA (founding client) ─── */
.banner-cta {
  margin-top: 0; background: var(--cream); border-radius: 8px;
  padding: 40px 46px; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.banner-cta h3 { font-size: 1.8rem; margin-bottom: 10px; }
.banner-cta p { font-size: .95rem; color: var(--ink-soft); line-height: 1.75; max-width: 56ch; }

/* ─── FAQ ─── */
.faq-inner { display: grid; grid-template-columns: 1fr 1.7fr; gap: 54px; align-items: start; }
.faq-hd h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.faq-hd p { font-size: .96rem; color: var(--ink-soft); line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-btn {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 0; cursor: pointer; color: var(--ink);
  font-family: 'Inter', sans-serif; font-size: .96rem; font-weight: 500; line-height: 1.4;
  transition: color .2s;
}
.faq-btn:hover, .faq-btn.open { color: var(--copper); }
.faq-icon {
  width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.faq-btn.open .faq-icon { background: var(--copper); border-color: var(--copper); }
.faq-icon svg { width: 10px; height: 10px; stroke: var(--ink-soft); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: transform .3s, stroke .2s; }
.faq-btn.open .faq-icon svg { transform: rotate(45deg); stroke: var(--paper); }
.faq-body { display: none; padding: 0 44px 24px 0; font-size: .91rem; color: var(--ink-soft); line-height: 1.8; }
.faq-body.open { display: block; }
.faq-body a { font-weight: 600; }

/* ─── EDITORIAL LETTER (farmers note) + CASE STUDY ─── */
.letter h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; }
.letter p { font-size: .98rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 16px; max-width: 68ch; }
.letter .note-lead { font-size: 1.12rem; color: var(--ink); font-family: 'Fraunces', serif; font-weight: 460; line-height: 1.7; }
.case-study { background: var(--cream); border-radius: 8px; padding: 34px 38px; margin: 28px 0; }
.case-study-label { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--copper); font-weight: 600; margin-bottom: 12px; }
.case-study h3 { font-size: 1.5rem; margin-bottom: 6px; }
.case-study-location { font-size: .8rem !important; color: var(--ink-soft) !important; margin-bottom: 18px !important; }
.cs-block { margin-top: 22px; }
.cs-block-label { font-size: .7rem !important; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--ink) !important; margin-bottom: 10px !important; }
.cs-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cs-block ul li { font-size: .89rem; color: var(--ink-soft); padding-left: 18px; position: relative; line-height: 1.65; }
.cs-block ul li::before { content: ''; position: absolute; left: 0; top: .6em; width: 8px; height: 1px; background: var(--copper); }
.cs-lesson { margin-top: 26px !important; padding-top: 22px; border-top: 1px solid var(--line); font-family: 'Fraunces', serif; font-size: 1.02rem !important; color: var(--ink) !important; line-height: 1.75 !important; }
.note-vision { border-left: 2px solid var(--copper); padding: 4px 0 4px 26px; margin: 26px 0; }
.note-vision p { color: var(--ink); }
.note-sign { display: flex; flex-direction: column; gap: 3px; margin-top: 26px; }
.note-sign-name { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.25rem; color: var(--ink); }
.note-sign-title { font-size: .78rem; color: var(--ink-soft); letter-spacing: .06em; }

/* ─── TEAM ─── */
.team-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--green); margin: 16px 0 34px; max-width: 620px; line-height: 1.5; }
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.team-card { background: var(--cream); border-radius: 8px; padding: 32px 30px; }
.team-avatar {
  width: 58px; height: 58px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--copper); color: var(--copper);
  font-family: 'Fraunces', serif; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.team-role { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); font-weight: 600; margin-bottom: 8px; }
.team-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.team-card > p:last-child { font-size: .92rem; color: var(--ink-soft); line-height: 1.8; }

/* ─── CONTACT CTA ─── */
.cta-lite { text-align: center; }
.cta-lite h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.cta-lite > p { font-size: 1rem; color: var(--ink-soft); margin: 0 auto 32px; max-width: 54ch; line-height: 1.8; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FORMS (light) — shared by service-page intake forms ─── */
.form-wrap { max-width: 660px; margin: 0 auto; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 14px; margin-bottom: 26px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field-full { margin-bottom: 26px; }
.form-field label { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.form-field input, .form-field textarea {
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 11px 13px; font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(92,107,96,.55); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(156,107,63,.12); }
.form-field textarea { resize: vertical; min-height: 96px; line-height: 1.7; }
.form-love { margin-bottom: 30px; }
.form-love h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-love-sub { font-size: .88rem; color: var(--ink-soft); margin-bottom: 16px; }
.form-group-gap { margin-top: 22px; }
.love-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.love-grid-3 { grid-template-columns: repeat(3, 1fr); }
.love-item {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 15px 18px; cursor: pointer; transition: border-color .2s, background .2s;
}
.love-item:hover { border-color: var(--copper); }
.love-item:has(input:checked) { border-color: var(--copper); background: rgba(156,107,63,.07); }
.love-item input { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.love-item span { font-size: .92rem; color: var(--ink); font-weight: 500; }
.form-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-submit { border: none; cursor: pointer; font-family: 'Inter', sans-serif; width: 100%; justify-content: center; margin-top: 6px; }
.form-submit:disabled { opacity: .55; cursor: default; transform: none; }
.form-status { font-size: .9rem; margin: 16px 0 0; text-align: center; min-height: 1.4em; color: var(--ink-soft); }
.form-status.error { color: #A4442E; }
.form-success { text-align: center; padding: 28px 0 8px; }
.form-success h3 { font-size: 1.7rem; margin-bottom: 12px; }
.form-success p { color: var(--ink-soft); }

/* ─── Service-page hero (light, compact) ─── */
.page-hero { padding: 170px 48px 64px; text-align: center; }
.hero-back {
  display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); text-decoration: none;
  font-size: .74rem; font-weight: 550; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 30px; transition: color .2s;
}
.hero-back:hover { color: var(--copper); }
.hero-back svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.page-hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); max-width: 820px; margin: 0 auto 24px; }
.page-hero .hero-sub { margin-left: auto; margin-right: auto; }

/* ─── FOOTER — the one dark block ─── */
footer {
  background: var(--ink); padding: 38px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px;
  position: relative;
}
/* the root system ends beneath the page — inverted fork, faint copper */
.footer-root { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); }
.footer-root svg { width: 22px; height: 28px; stroke: var(--copper); fill: none; stroke-width: 1.2; opacity: .55; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand img { height: 34px; }
.footer-brand span { font-family: 'Fraunces', serif; color: rgba(251,248,241,.85); font-size: .95rem; }
.footer-mid { font-size: .77rem; color: rgba(251,248,241,.42); text-align: center; line-height: 1.7; }
.footer-mid a { color: var(--green-lt); text-decoration: none; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(251,248,241,.5); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--green-lt); }

/* ─── MOBILE ─── */
@media (max-width: 640px) {
  section { padding: 48px 24px; }
  nav { padding: 12px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-logo-name { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-lite { padding: 112px 24px 0; min-height: min(70vh, 560px); }
  .hero-headline { font-size: 2.7rem; }
  .hero-cred { margin-top: 32px; gap: 16px 0; }
  .hero-cred > div { padding: 0 16px; }
  .hero-cred > div + div { border-left: none; }
  .root-descend { height: 70px; }

  .page-hero { padding: 130px 24px 48px; }

  .svc-row { grid-template-columns: 1fr; gap: 10px; padding: 30px 4px; }
  .svc-num { font-size: 1.7rem; }
  .svc-arrow { display: none; }

  .stage-strip { grid-template-columns: 1fr; border-left: none; border-top: 1px solid var(--line); }
  .stage { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 4px 22px 18px; border-left: 1px solid var(--line); }

  .how-steps::before { left: 21px; }
  .how-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .step-marker { width: 44px; height: 44px; }

  .inputs-grid { grid-template-columns: 1fr; }
  .banner-cta { padding: 36px 26px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-body { padding-right: 0; }
  .case-study { padding: 30px 24px; }
  .team-cards { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .love-grid, .love-grid-3 { grid-template-columns: 1fr; }

  footer { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; gap: 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════════════
   LEGACY PAGE LAYER
   The service pages (lawn-care, permaculture, farm-consulting,
   soil-remediation, landscaper, nursery, services) kept their original
   markup — only these definitions changed. Grouped by pattern rather
   than per-page so one edit restyles every page at once.
   ══════════════════════════════════════════════════════════════════ */

/* ─── SVG safety net ───
   The old inline stylesheets sized every decorative SVG. Converting to the
   shared sheet left 95 of them unsized, so they rendered at their intrinsic
   size (one became a full-width black circle). This is a low-specificity
   floor: any class rule like `.root-node svg` still overrides it. */
svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.preface-point-icon, .doc-ref-icon {
  width: 26px !important; height: 26px !important; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(156,107,63,.1) !important;
}
.preface-point-icon svg, .doc-ref-icon svg { width: 13px; height: 13px; stroke: var(--copper); }
.cmp-item-icon svg { width: 9px; height: 9px; stroke-width: 3; }
.hero-pill svg { width: 13px; height: 13px; stroke: var(--copper); }
.preface-point { display: flex; align-items: flex-start; gap: 12px; padding-left: 0 !important; }
.preface-point::before { display: none !important; }
.doc-reference { display: flex; align-items: flex-start; gap: 14px; }

/* ─── Retire the dark hero machinery ─── */
.hero-bg, .hero-base, .orb, .orb-1, .orb-2, .orb-3,
.hero-overlay, .hero-grain, .hero-fade { display: none !important; }

#hero {
  background: var(--paper);
  min-height: 0;
  padding: 150px 48px 44px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
#hero .hero-content { display: flex; flex-direction: column; align-items: center; max-width: 860px; }
#hero .hero-headline { font-size: clamp(2.5rem, 5.6vw, 4.2rem); margin-bottom: 22px; }
#hero .hero-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 600px; margin-bottom: 34px; }
.hero-pill, .hero-note {
  display: inline-block; background: var(--cream); border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 18px; font-size: .78rem; color: var(--ink-soft);
  margin-bottom: 20px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--paper); text-decoration: none;
  padding: 16px 36px; border-radius: 4px; font-weight: 600; font-size: .92rem;
  transition: background .25s, transform .25s;
}
.hero-cta:hover { background: var(--copper); transform: translateY(-2px); }

/* ─── Section wrappers + headings ─── */
.problem-inner, .florida-inner, .services-inner, .how-inner, .consult-inner,
.preface-inner, .what-inner, .deliverables-inner { max-width: 1080px; margin: 0 auto; }

.problem-hd, .process-hd, .florida-hd, .comparison-hd, .services-hd, .what-hd,
.documents-hd, .who-hd, .deliverables-hd, .problems-hd, .specialty-hd { margin-bottom: 34px; max-width: 68ch; }
.problem-hd h2, .process-hd h2, .florida-hd h2, .comparison-hd h2, .services-hd h2,
.what-hd h2, .documents-hd h2, .who-hd h2, .deliverables-hd h2, .problems-hd h2,
.specialty-hd h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.problem-hd p, .process-hd p, .florida-hd p, .comparison-hd p, .services-hd p,
.what-hd p, .documents-hd p, .who-hd p, .deliverables-hd p, .problems-hd p,
.specialty-hd p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.8; }

/* ─── Eyebrows + small labels ─── */
.eyebrow-green, .eyebrow-brown, .problem-callout-label, .step-tag, .process-step-label,
.card-tag, .step-label, .consult-eyebrow, .cs-block-label, .what-scenarios-label,
.page-num, .stage-day, .card-price-label {
  color: var(--copper) !important;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
}

/* ─── Cards: one light treatment everywhere ─── */
.problem-callout, .problem-points, .florida-card, .cmp-card, .service-card,
.what-callout, .what-list, .doc-card, .who-card, .problem-card, .roi-card,
.process-step, .step-item, .preface-jake, .concept, .team-card {
  background: var(--cream) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  padding: 30px 30px;
  transition: border-color .25s, transform .25s;
}
.problem-callout:hover, .florida-card:hover, .cmp-card:hover, .service-card:hover,
.what-callout:hover, .doc-card:hover, .who-card:hover, .problem-card:hover,
.process-step:hover, .step-item:hover {
  transform: none !important;
  border-color: var(--copper) !important;
  box-shadow: none !important;
}
/* the "featured" card gets the one dark treatment, sparingly */
.cmp-card.featured { background: var(--ink) !important; border-color: var(--ink) !important; }
.cmp-card.featured h3, .cmp-card.featured .cmp-item span { color: var(--paper) !important; }
.cmp-card.featured .cmp-badge { background: rgba(251,248,241,.12) !important; color: var(--paper) !important; }

.problem-callout h3, .florida-card h4, .cmp-card h3, .service-card h3, .what-callout h3,
.doc-card h3, .who-card h3, .problem-card h3, .concept h3 { color: var(--ink); margin-bottom: 12px; }
.florida-card p, .problem-card p, .doc-card p, .who-card p, .concept p,
.problem-point-text, .cmp-item span { color: var(--ink-soft); line-height: 1.75; }

/* colored bars on cards become copper root ticks */
.florida-card-bar, .problem-bar, .who-bar, .species-card-bar {
  width: 26px !important; height: 1px !important; background: var(--copper) !important;
  border-radius: 0 !important; margin-bottom: 18px;
}

/* services.html card header: number + tag + title sit on one row */
.card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.card-heading { display: flex; flex-direction: column; gap: 4px; }
.card-heading h3 { font-size: 1.15rem; color: var(--ink); margin: 0; line-height: 1.2; }
.card-tag { margin: 0; }
.card-desc { font-size: .93rem; color: var(--ink-soft); line-height: 1.78; margin-bottom: 16px; }
.card-num { background: transparent !important; color: var(--copper) !important; }
.service-card { display: flex; flex-direction: column; border-top: 1px solid var(--line) !important; }
.service-card .card-includes { flex: 1; }
.card-link { align-self: flex-start; margin-top: 16px; }

/* ─── Grids ─── */
.problem-grid, .what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.florida-grid, .who-grid, .problems-grid, .doc-cards, .process-inputs, .roi-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.comparison-grid, .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ─── Numbered steps + connectors ─── */
.step-num, .process-num, .step-num-circle, .deliverable-num, .install-step-num,
.process-step-num, .card-num, .step-num-col {
  width: 40px !important; height: 40px !important; border-radius: 50% !important;
  background: transparent !important; border: 1px solid var(--copper) !important;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: none !important;
  font-family: 'Fraunces', serif; font-size: .9rem; color: var(--copper); font-weight: 600;
}
.step-num span, .process-num span, .step-num-circle span { font-family: 'Fraunces', serif; color: var(--copper); font-weight: 600; font-size: .9rem; }
.step-line, .process-connector, .step-connector, .process-step-line {
  flex: 1; width: 1px !important; margin: 8px auto 0;
  background: linear-gradient(to bottom, var(--copper), rgba(156,107,63,.12)) !important;
}
.process-steps, .steps-list, .steps, .install-steps, .deliverables-list { display: flex; flex-direction: column; gap: 14px; }
/* kill the old rainbow left-borders on alternating steps */
.process-steps > .process-step:nth-child(n), .steps-list > .step-item:nth-child(n) {
  background: var(--cream) !important; border: 1px solid var(--line) !important; border-left: 1px solid var(--line) !important;
}
.process-body h3, .step-body h3, .step-content h3 { color: var(--ink) !important; font-size: 1.2rem; margin-bottom: 12px; }
.process-body > p, .step-body p, .step-content p { color: var(--ink-soft); line-height: 1.8; }

/* ─── Notes, callouts, highlights ─── */
.problem-goal, .florida-note, .process-highlight, .process-note, .cta-note,
.callout, .analogy, .p-alert, .step-badge, .doc-reference, .consult-note, .stage-note {
  background: var(--cream) !important;
  border: none !important; border-left: 2px solid var(--copper) !important;
  border-radius: 0 6px 6px 0 !important; padding: 18px 24px !important; margin-top: 22px;
}
.problem-goal p, .florida-note p, .process-highlight p, .process-note p,
.callout p, .analogy p { color: var(--ink-soft) !important; font-size: .93rem; line-height: 1.78; font-style: normal !important; }
.problem-goal strong { color: var(--ink) !important; }

/* ─── Bulleted lists ─── */
.process-detail-list, .step-bullets, .layer-list, .card-includes, .scenarios-list,
.safe-list, .preface-points, .cmp-items, .what-list, .problem-callout ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.layer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.process-detail-list { background: transparent !important; border: none !important; padding: 0 !important; margin-top: 14px; }
.process-detail-list li, .step-bullets li, .layer-list li, .card-includes li,
.scenarios-list li, .preface-point, .what-list li, .problem-callout ul li {
  font-size: .89rem; color: var(--ink-soft); line-height: 1.7;
  padding-left: 16px; position: relative; list-style: none;
}
.process-detail-list li::before, .step-bullets li::before, .layer-list li::before,
.card-includes li::before, .scenarios-list li::before, .what-list li::before,
.problem-callout ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 1px; background: var(--copper); border-radius: 0;
}
.problem-point-dot { width: 5px !important; height: 1px !important; background: var(--copper) !important; border-radius: 0 !important; margin-top: 12px; }
.process-detail-list li strong, .step-bullets li strong, .layer-list li strong { color: var(--ink); font-weight: 600; }

/* ─── Comparison item icons ─── */
.cmp-item-icon { width: 16px !important; height: 16px !important; border-radius: 50%; flex-shrink: 0; margin-top: 3px; display: flex; align-items: center; justify-content: center; }
.cmp-icon-bad, .cmp-icon-warn { background: rgba(156,107,63,.12) !important; color: var(--copper) !important; }
.cmp-icon-good { background: rgba(44,90,58,.12) !important; color: var(--green) !important; }
.cmp-card.featured .cmp-icon-good { background: rgba(122,191,142,.2) !important; color: var(--green-lt) !important; }
.cmp-badge { background: rgba(30,43,34,.06) !important; color: var(--ink-soft) !important; border: none !important; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; display: inline-block; margin-bottom: 18px; }

/* ─── Report band / CTA strips ─── */
.report-band, .banner-cta {
  background: var(--cream) !important; border: 1px solid var(--line) !important;
  border-radius: 8px; padding: 30px 36px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 30px;
}
.report-band-btn, .consult-btn, .card-link, .doc-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--paper) !important; text-decoration: none;
  padding: 13px 26px; border-radius: 4px; font-weight: 600; font-size: .88rem;
  transition: background .25s;
}
.report-band-btn:hover, .consult-btn:hover, .card-link:hover, .doc-link:hover { background: var(--copper); }
.report-band-btn svg, .consult-btn svg, .card-link svg, .doc-link svg,
.hero-cta svg, .btn-primary svg, .btn-secondary svg {
  width: 14px; height: 14px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.report-band-btn, .consult-btn, .card-link, .doc-link { white-space: nowrap; }

/* ─── Pricing on services cards ─── */
.card-price { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 18px; }
.card-price-amount { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--ink); font-weight: 560; }
.card-price-note { font-size: .78rem; color: var(--ink-soft); }

/* ─── Contact / CTA section (light, not dark green) ─── */
#contact, #consult {
  background: var(--cream) !important; background-image: none !important;
  padding: 60px 48px; text-align: center;
}
#contact h2, #consult h2 { color: var(--ink) !important; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
#contact > .cta-inner > p, #consult p { color: var(--ink-soft) !important; }
.cta-inner { max-width: 660px; margin: 0 auto; }
.cta-inner .eyebrow { color: var(--copper) !important; }

/* ─── Legacy mobile ─── */
@media (max-width: 640px) {
  #hero { padding: 118px 24px 34px; }
  .problem-grid, .what-grid, .florida-grid, .who-grid, .problems-grid,
  .doc-cards, .process-inputs, .roi-cards, .comparison-grid, .services-grid,
  .layer-list { grid-template-columns: 1fr !important; }
  .report-band, .banner-cta { flex-direction: column; align-items: flex-start; }
  #contact, #consult { padding: 48px 24px; }
  .problem-callout, .problem-points, .florida-card, .cmp-card, .service-card,
  .what-callout, .what-list, .doc-card, .who-card, .problem-card, .roi-card,
  .process-step, .step-item { padding: 24px 22px; }
}

/* ─── Legacy detail polish ───
   Small classes the old inline sheets styled individually. Grouped here so
   the shared sheet fully replaces them rather than half-covering them. */
.preface-lead { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 26px; max-width: 68ch; }
.preface-points { gap: 20px !important; margin-bottom: 26px; }
.preface-point-text h4, .preface-point h4 { font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.preface-point-text p, .preface-point p { font-size: .92rem; color: var(--ink-soft); line-height: 1.75; }
.preface-jake { display: flex; gap: 16px; align-items: flex-start; }
.preface-jake-avatar {
  width: 42px !important; height: 42px !important; flex-shrink: 0; border-radius: 50%;
  background: var(--copper) !important; color: var(--paper) !important;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
}
.preface-jake-text p { font-size: .95rem; color: var(--ink-soft); line-height: 1.8; font-style: italic; }
.preface-jake-text p:last-child { font-style: normal; color: var(--ink); font-weight: 600; margin-top: 10px; font-size: .87rem; }

.p-alert-label, .case-study-label, .cs-block-label, .what-scenarios-label, .consult-eyebrow {
  display: block; margin-bottom: 8px;
}
.p-alert strong { color: var(--ink); }

.step-content, .step-body, .process-body { flex: 1; }
.step-free-tag {
  display: inline-block; background: rgba(44,90,58,.1); color: var(--green);
  border-radius: 100px; padding: 5px 14px; font-size: .72rem; font-weight: 600; margin-top: 12px;
}
.step-badge { display: inline-flex !important; align-items: center; gap: 8px; font-size: .78rem; color: var(--ink-soft); }
.step-badge-dot { width: 5px !important; height: 5px !important; border-radius: 50%; background: var(--copper) !important; flex-shrink: 0; }

.deliverable-item, .install-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.deliverable-text h4 { font-size: 1rem; color: var(--ink); margin-bottom: 5px; }
.deliverable-text p, .install-step p { font-size: .9rem; color: var(--ink-soft); line-height: 1.72; }

.roi-card { text-align: center; }
.roi-card-value { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--copper); font-weight: 560; display: block; }
.roi-card-label { font-size: .82rem; color: var(--ink-soft); line-height: 1.6; }

.concept-icon { width: 34px !important; height: 34px !important; margin-bottom: 14px; }
.safe-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.safe-check { width: 18px !important; height: 18px !important; flex-shrink: 0; color: var(--green); }
.fine-print { font-size: .76rem; color: var(--ink-soft); line-height: 1.6; }

.what-scenarios { background: var(--cream); border-radius: 8px; padding: 26px 28px; margin-top: 22px; }
.what-body p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }
.body-link { color: var(--green); font-weight: 600; }

/* ─── Accessibility: respect reduced-motion ───
   .reveal starts at opacity:0 and is un-hidden by JS. Users who ask for less
   motion get the content immediately, with no fade or movement. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ─── Service toggle on the homepage intake form ─── */
/* The form lives inside a 1080px section. Left unconstrained, the name fields
   stretch to ~530px each, which reads as a wall of oversized boxes. Cap the
   form itself at a comfortable measure and centre it. */
#contact .svc-toggle,
#contact #intakeForm,
#contact .form-success { max-width: 600px; margin-left: auto; margin-right: auto; }
/* The intro sits inside .section-inner, so `.cta-lite > p` never matched it and
   it ran the full 1080px while the form below sat at 600px. */
#contact .section-inner > p { max-width: 600px; margin-left: auto; margin-right: auto; }

.svc-toggle {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 7px;
  margin: 0 auto 26px;
}
.svc-tab {
  font-family: 'Inter', sans-serif; font-size: .79rem; font-weight: 550;
  padding: 9px 16px; border-radius: 100px; cursor: pointer; white-space: nowrap;
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line); transition: all .2s;
}
.svc-tab:hover { border-color: var(--copper); color: var(--ink); }
.svc-tab.is-active { background: var(--green); border-color: var(--green); color: var(--paper); }
.svc-panel { margin-bottom: 30px; }
.svc-panel h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.love-grid-3 { grid-template-columns: repeat(3, 1fr); }
/* The <select> mirrors the toggle for keyboard/no-JS use; JS-capable
   browsers get the tabs, so it is hidden only once the tabs are wired. */
.svc-select-wrap { display: none; }
.no-js .svc-select-wrap, .svc-toggle[hidden] ~ #intakeForm .svc-select-wrap { display: flex; }
.form-field select {
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 11px 13px; font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--ink);
}
@media (max-width: 640px) {
  .svc-toggle { gap: 6px; }
  .svc-tab { font-size: .78rem; padding: 10px 15px; }
  .love-grid-3 { grid-template-columns: 1fr; }
}
