/* Chelmsford Tree Surgeon — site stylesheet (mobile-first, no framework)
   Identity: parchment + bark + olive moss, copper accent, arch motif.
   Fonts: Fraunces (display serif) + Figtree (body), self-hosted. */

@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 600 700; font-display: swap;
  src: url(/assets/fonts/fraunces-latin.woff2) format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(/assets/fonts/figtree-latin.woff2) format("woff2"); }

:root {
  --bark-950: #1c150f;
  --bark-900: #241b14;
  --bark-800: #33271d;
  --bark-600: #5c4a39;
  --ink: #2a231c;
  --ink-soft: #52483d;
  --moss-800: #2f4520;
  --moss-700: #3d5a2a;
  --moss-500: #6a8a3c;
  --sage-300: #c9d4b0;
  --sage-200: #dde5cb;
  --sage-100: #edf1e2;
  --parchment: #f7f3ea;
  --paper: #fffdf8;
  --copper-600: #b04f26;
  --copper-700: #8f3e1c;
  --copper-100: #f6e3d6;
  --leaf-gold: #d9a940;
  --line: #e4dccb;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --arch: 999px 999px var(--radius) var(--radius);
  --shadow: 0 1px 2px rgba(36, 27, 20, .06), 0 10px 30px -12px rgba(36, 27, 20, .25);
  --max: 1180px;
  --font-body: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 5rem; }
body {
  margin: 0; font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65;
  color: var(--ink); background: var(--parchment); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--moss-700); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--copper-700); }
:focus-visible { outline: 3px solid var(--leaf-gold); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--bark-900); line-height: 1.15; margin: 0 0 .6em; font-weight: 650; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5.2vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p, ul, ol { margin: 0 0 1.1em; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.narrow { max-width: 46rem; }
.skip { position: absolute; left: -999px; top: 0; background: var(--paper); padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-700); margin-bottom: .9rem; }
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: currentColor; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font: 700 1rem/1.2 var(--font-body);
  padding: .9rem 1.4rem; border-radius: 999px; border: 2px solid transparent; text-decoration: none; cursor: pointer; transition: background .15s, color .15s, transform .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-copper { background: var(--copper-600); color: #fff; }
.btn-copper:hover { background: var(--copper-700); color: #fff; }
.btn-ghost { border-color: currentColor; color: var(--bark-900); background: transparent; }
.btn-ghost:hover { background: var(--bark-900); color: var(--paper); border-color: var(--bark-900); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* ---------- Header ---------- */
.site-header { background: var(--bark-900); color: var(--parchment); position: sticky; top: 0; z-index: 50; }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--parchment); text-decoration: none; }
.brand:hover { color: #fff; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.005em; }
.brand-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-300); margin-top: .2rem; }
.menu-btn { display: inline-flex; align-items: center; gap: .45rem; background: transparent; color: var(--parchment);
  border: 1.5px solid rgba(247,243,234,.35); border-radius: 999px; padding: .5rem .9rem; font: 600 .9rem var(--font-body); cursor: pointer; }
.menu-btn .bars { width: 18px; height: 12px; position: relative; }
.menu-btn .bars::before, .menu-btn .bars::after, .menu-btn .bars span { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; }
.menu-btn .bars::before { top: 0; } .menu-btn .bars span { top: 5px; } .menu-btn .bars::after { bottom: 0; }
.site-nav { display: none; }
.site-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--bark-900); border-top: 1px solid rgba(255,255,255,.08); padding: .5rem 1.25rem 1.25rem; max-height: calc(100vh - 4.25rem); overflow: auto; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--parchment); text-decoration: none; display: block; padding: .6rem 0; font-weight: 500; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--leaf-gold); }
.nav-group > span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-300); padding: .9rem 0 .2rem; }
.nav-group ul a { padding-left: .75rem; border-left: 2px solid rgba(255,255,255,.12); }
.nav-cta { margin-top: 1rem; }
.nav-cta a.btn { display: inline-flex; color: #fff; padding: .75rem 1.3rem; }

@media (min-width: 1020px) {
  .menu-btn { display: none; }
  .site-nav { display: block !important; position: static !important; padding: 0 !important; background: none !important; border: 0 !important; max-height: none !important; overflow: visible !important; }
  .site-nav > ul { display: flex; align-items: center; gap: 1.6rem; }
  .site-nav a { padding: .4rem 0; font-size: .96rem; }
  .nav-group { position: relative; }
  .nav-group > span { all: unset; cursor: default; color: var(--parchment); font-weight: 500; font-size: .96rem; display: inline-flex; align-items: center; gap: .3rem; padding: .4rem 0; }
  .nav-group > span::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); }
  .nav-group ul { position: absolute; top: 100%; left: -1rem; min-width: 17rem; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: .6rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s; }
  .nav-group:hover ul, .nav-group:focus-within ul { opacity: 1; visibility: visible; transform: none; }
  .nav-group ul a { color: var(--ink); border: 0; padding: .55rem .8rem; border-radius: var(--radius-sm); }
  .nav-group ul a:hover { background: var(--sage-100); color: var(--moss-800); }
  .nav-cta { margin: 0; }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; padding: 2rem 0 3rem;
  background:
    radial-gradient(1200px 500px at 110% -10%, rgba(106,138,60,.18), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(176,79,38,.10), transparent 60%),
    var(--parchment); }
.hero::before { /* tree-ring pattern */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-radial-gradient(circle at 12% 30%, transparent 0 22px, rgba(92,74,57,.07) 22px 23px);
  mask-image: linear-gradient(90deg, #000 0%, transparent 55%); -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 55%); }
.hero-grid { position: relative; display: grid; gap: 2rem; }
.hero h1 em { font-style: italic; color: var(--moss-700); }
.hero .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 36rem; }
.ticks { list-style: none; padding: 0; display: grid; gap: .55rem; margin: 1.4rem 0; }
.ticks li { position: relative; padding-left: 2rem; font-weight: 500; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .2em; width: 1.25rem; height: 1.25rem; border-radius: 0 60% 0 60%; background: var(--moss-500); }
.ticks li::after { content: ""; position: absolute; left: .42rem; top: .42em; width: .35rem; height: .6rem; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.hero-contact { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; align-items: center; font-weight: 600; }
.hero-contact a { color: var(--bark-900); }
.hero-photo { display: none; }
.hero-mobile-cta { margin-top: 1.25rem; }

@media (min-width: 960px) {
  .hero { padding: 3.25rem 0 4rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 3rem; align-items: start; }
  .hero-mobile-cta { display: none; }
  .hero-side { position: relative; padding: 2.25rem 0 0 2.5rem; }
  .hero-photo { display: block; position: absolute; top: 0; right: -2rem; width: 62%; height: 78%; border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero-side .quote-card { position: relative; width: 86%; }
}

/* ---------- Quote card / form ---------- */
.quote-card { background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.quote-card-head { background: var(--moss-800); color: var(--parchment); padding: 1.1rem 1.35rem 1rem; position: relative; }
.quote-card-head h2, .quote-card-head .h2 { color: #fff; font-size: 1.4rem; margin: 0 0 .15rem; font-family: var(--font-display); font-weight: 650; }
.quote-card-head p { margin: 0; font-size: .92rem; color: var(--sage-200); }
.quote-card-head::after { content: ""; position: absolute; left: 1.35rem; bottom: -9px; width: 18px; height: 18px; background: var(--moss-800); transform: rotate(45deg); }
.quote-form { padding: 1.4rem 1.35rem 1.35rem; }
.field-row { display: grid; gap: .8rem; }
@media (min-width: 520px) { .field-row.two { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: .8rem; }
.field label, .field .label { display: block; font-size: .86rem; font-weight: 600; color: var(--bark-800); margin-bottom: .3rem; }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff; border: 1.5px solid #d7cdb9; border-radius: var(--radius-sm); padding: .7rem .8rem; transition: border-color .15s, box-shadow .15s; }
.field textarea { min-height: 5.5rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--moss-500); box-shadow: 0 0 0 3px rgba(106,138,60,.22); }
.file-drop { display: block; border: 1.5px dashed #c8bba1; border-radius: var(--radius-sm); padding: .75rem .9rem; background: var(--parchment); font-size: .9rem; color: var(--ink-soft); cursor: pointer; }
.file-drop input { font-size: .85rem; margin-top: .35rem; }
.photo-previews { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.photo-previews img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); margin: .4rem 0 1rem; }
.consent input { margin-top: .25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--moss-700); flex: none; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin: .8rem 0 0; text-align: center; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { display: none; border-radius: var(--radius-sm); padding: .8rem 1rem; margin-bottom: 1rem; font-size: .95rem; }
.form-msg.is-visible { display: block; }
.form-msg.ok { background: var(--sage-100); border: 1px solid var(--sage-300); color: var(--moss-800); }
.form-msg.err { background: var(--copper-100); border: 1px solid #e5b79c; color: var(--copper-700); }
/* Soft variant (service pages): plain card, no colour block, smaller heading */
.quote-card.is-soft { box-shadow: none; border-radius: var(--radius); background: var(--paper); }
.quote-card.is-soft .quote-card-head { background: none; color: var(--ink); padding: 1.2rem 1.35rem 0; }
.quote-card.is-soft .quote-card-head::after { display: none; }
.quote-card.is-soft .quote-card-head h2, .quote-card.is-soft .quote-card-head .h3 { color: var(--bark-900); font-size: 1.2rem; margin: 0 0 .25rem; }
.quote-card.is-soft .quote-card-head p { color: var(--ink-soft); }
.quote-card.is-soft .quote-form { padding-top: 1rem; }
.prose .quote-section { margin: 2.5rem 0; }
.turnstile-slot { margin: .2rem 0 .9rem; min-height: 65px; }

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section-paper { background: var(--paper); }
.section-sage { background: var(--sage-100); }
.section-dark { background: var(--bark-900); color: var(--sage-200); }
.section-dark h2, .section-dark h3 { color: var(--parchment); }
.section-head { max-width: 44rem; margin-bottom: 2rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-dark .section-head p { color: var(--sage-300); }
@media (min-width: 960px) { .section { padding: 5rem 0; } }

/* Service cards: arch-topped photos */
.cards { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards.three { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--paper); border-radius: var(--radius-lg); padding: .8rem .8rem 1.3rem; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; position: relative; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-img { border-radius: var(--arch); overflow: hidden; aspect-ratio: 4 / 3.2; margin-bottom: 1.1rem; background: var(--sage-200); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 0 .6rem; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin-bottom: .4rem; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.card .more { font-weight: 700; color: var(--copper-600); font-size: .95rem; display: inline-flex; align-items: center; gap: .4rem; }
.card .more::after { content: "→"; transition: transform .15s; }
.card:hover .more::after { transform: translateX(4px); }

/* Steps */
.steps { list-style: none; padding: 0; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.steps li { counter-increment: step; position: relative; padding-top: 3.6rem; }
.steps li::before { content: counter(step, decimal-leading-zero); position: absolute; top: 0; left: 0; font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--copper-600); line-height: 1; }
.steps h3 { margin-bottom: .35rem; }
.section-dark .steps li::before { color: var(--leaf-gold); }

/* Honest model panel */
.honest { display: grid; gap: 1.5rem; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; position: relative; overflow: hidden; }
.honest::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(var(--moss-500), var(--copper-600)); }
.honest h2 { font-size: 1.5rem; }
.honest p:last-child { margin-bottom: 0; }
@media (min-width: 860px) { .honest { grid-template-columns: 1fr 1.6fr; padding: 2.2rem 2.4rem; } }

/* Split media */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } .split.flip > :first-child { order: 2; } }
.arch-img { border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/4.4; }
.arch-img img { width: 100%; height: 100%; object-fit: cover; }

/* Chips (areas) */
.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.chips li a, .chips li span { display: inline-block; padding: .45rem .95rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--bark-800); text-decoration: none; font-weight: 500; font-size: .95rem; }
.chips li a:hover { border-color: var(--moss-500); color: var(--moss-800); }
.section-dark .chips li span { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--parchment); }

/* FAQ */
.faq { display: grid; gap: .75rem; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.2rem; }
.faq summary { cursor: pointer; list-style: none; padding: 1rem 2rem 1rem 0; font-weight: 700; color: var(--bark-900); position: relative; font-size: 1.03rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: .75rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--copper-600); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 1rem; color: var(--ink-soft); }
.faq details > div p:last-child { margin-bottom: 0; }

/* Page hero (inner pages) */
.page-hero { background: var(--sage-100); padding: 1.5rem 0 2.5rem; border-bottom: 1px solid var(--sage-200); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 16px, rgba(61,90,42,.08) 16px 17px); pointer-events: none; }
.crumbs { font-size: .86rem; margin-bottom: 1.2rem; color: var(--ink-soft); }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.crumbs li + li::before { content: "/"; margin-right: .35rem; color: var(--sage-300); }
.crumbs a { color: var(--moss-700); }
.page-hero-grid { display: grid; gap: 2rem; position: relative; z-index: 1; }
.page-hero .lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 38rem; }
.page-hero-img { border-radius: 120px 22px 120px 22px; overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow); max-width: 34rem; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 960px) {
  .page-hero { padding: 2rem 0 3.25rem; }
  .page-hero-grid.with-form { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 3rem; align-items: start; }
  .page-hero-grid.with-media { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 3rem; align-items: start; }
  .page-hero-img { aspect-ratio: 16/8; }
}

/* Article layout */
.article-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .article-grid { grid-template-columns: minmax(0, 1fr) 20rem; gap: 4rem; } .aside-sticky { position: sticky; top: 5.5rem; } }
.prose { max-width: 44rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6rem; }
.prose ul li, .prose ol li { margin-bottom: .45rem; }
.prose ul { padding-left: 1.2rem; }
.prose ul li::marker { color: var(--moss-500); }
.callout { background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--leaf-gold); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.5rem 0; }
.callout.moss { border-left-color: var(--moss-500); }
.callout p:last-child { margin-bottom: 0; }
.figure { margin: 2rem 0; }
.figure img { border-radius: var(--radius-lg); }
.figure figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }
.aside-card { background: var(--bark-900); color: var(--sage-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; }
.aside-card h2, .aside-card .h3 { color: var(--parchment); font-size: 1.3rem; font-family: var(--font-display); margin: 0 0 .5rem; }
.aside-card p { font-size: .95rem; }
.aside-card a:not(.btn) { color: var(--leaf-gold); }
.aside-links { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.25rem 1.4rem; }
.aside-links h2 { font-size: 1.1rem; margin-bottom: .6rem; }
.aside-links ul { list-style: none; padding: 0; margin: 0; }
.aside-links li { border-top: 1px solid var(--line); }
.aside-links li:first-child { border-top: 0; }
.aside-links a { display: block; padding: .55rem 0; text-decoration: none; font-weight: 500; }
.aside-links a[aria-current="page"] { color: var(--copper-700); }

.area-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.area h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.area .pc { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--copper-700); font-weight: 700; }
.area p { font-size: .95rem; color: var(--ink-soft); margin: .4rem 0 0; }

/* CTA band */
.cta-band { background: var(--moss-800); color: var(--sage-200); border-radius: var(--radius-lg); padding: 2rem 1.6rem; display: grid; gap: 1.25rem; align-items: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 14px, rgba(255,255,255,.06) 14px 15px); }
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p { margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; position: relative; z-index: 1; }
.cta-band .btn-ghost { color: var(--parchment); }
.cta-band .btn-ghost:hover { background: var(--parchment); color: var(--moss-800); border-color: var(--parchment); }
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.4fr auto; padding: 2.4rem 2.6rem; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bark-950); color: #cfc6b6; margin-top: 0; position: relative; font-size: .95rem; }
.treeline { display: block; position: absolute; left: 0; top: -47px; width: 100%; height: 48px; color: var(--bark-950); pointer-events: none; }
.footer-top { padding: 2.5rem 0 1.5rem; display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer h2 { color: var(--parchment); font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: #e9e1d2; text-decoration: none; }
.site-footer a:hover { color: var(--leaf-gold); text-decoration: underline; }
.footer-honest { font-size: .88rem; color: #b4aa98; max-width: 30rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.1rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .84rem; color: #a39a89; }
.site-footer .brand { margin-bottom: 1rem; }

/* Mobile sticky action bar */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; gap: .5rem; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(36,27,20,.96); backdrop-filter: blur(6px); }
.action-bar .btn { flex: 1; padding: .75rem 1rem; font-size: .95rem; }
.action-bar .btn-ghost { color: var(--parchment); }
body { padding-bottom: 4.4rem; }
@media (min-width: 960px) { .action-bar { display: none; } body { padding-bottom: 0; } }

.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.table-wrap { overflow-x: auto; }
table.simple { border-collapse: collapse; width: 100%; background: var(--paper); border-radius: var(--radius); overflow: hidden; font-size: .96rem; }
table.simple th, table.simple td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.simple th { background: var(--sage-100); font-weight: 700; color: var(--bark-900); }
.sitemap-list { columns: 2 16rem; }
.sitemap-list li { break-inside: avoid; margin-bottom: .4rem; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; } }
.hide-mobile { display: none; }
@media (min-width: 960px) { .hide-mobile { display: block; } }
.hero-photo picture, .hero-photo picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Mobile: bring the quote form up directly under the headline + intro */
@media (max-width: 959px) {
  .hero-copy { display: contents; }
  .hero-grid { gap: 0; }
  .hero-copy > * { order: 1; }
  .hero-side { order: 2; margin: .5rem 0 1.5rem; }
  .hero-copy > .ticks, .hero-copy > .hero-contact { order: 3; }
  .hero .lead { font-size: 1.05rem; }
  .hero-mobile-cta { display: none; }
  .page-hero .lead { font-size: 1.02rem; }
}

/* ---------- Long-form content helpers (content expansion) ---------- */
.prose-section, .quick-facts, [id="faq"], [id="quote"] { scroll-margin-top: 5.5rem; }
.glance { background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--moss-500); border-radius: var(--radius); padding: 1rem 1.2rem .4rem; margin: 1.25rem 0; max-width: 40rem; }
.glance-title, .toc-title { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-700); margin: 0 0 .5rem; }
.glance .ticks { margin: .4rem 0 .6rem; gap: .45rem; }
.glance .ticks li { font-weight: 500; font-size: .98rem; }
.toc { margin: 1.25rem 0 1.5rem; max-width: 40rem; }
.toc ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .45rem; counter-reset: toc; }
.toc li { margin: 0 !important; }
.toc a { display: inline-block; padding: .35rem .8rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--bark-800); text-decoration: none; font-size: .9rem; font-weight: 500; }
.toc a:hover { border-color: var(--moss-500); color: var(--moss-800); }
.prose .toc { background: var(--sage-100); border-radius: var(--radius); padding: 1rem 1.1rem; }
.quick-facts { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem 1.3rem 1rem; margin: 0 0 1.5rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.quick-facts::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--moss-500), var(--leaf-gold), var(--copper-600)); }
.quick-facts h2 { margin: .2rem 0 .8rem; font-size: 1.4rem; }
.quick-facts dl { margin: 0; display: grid; gap: 0; }
.qf-row { display: grid; gap: .15rem; padding: .65rem 0; border-top: 1px solid var(--line); }
.qf-row:first-child { border-top: 0; }
.qf-row dt { font-weight: 700; color: var(--bark-900); font-size: .95rem; }
.qf-row dd { margin: 0; color: var(--ink); font-size: .97rem; }
@media (min-width: 640px) { .qf-row { grid-template-columns: 11rem 1fr; gap: 1rem; } }
.qf-checked { margin: .8rem 0 0; padding: .7rem .9rem; background: var(--sage-100); border-radius: var(--radius-sm); font-size: .86rem; color: var(--ink-soft); }
.link-list { list-style: none; padding: 0 !important; margin: 1rem 0 1.25rem; display: grid; gap: .6rem; }
.link-list li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: .75rem 1rem; margin: 0 !important; }
.link-list a { font-weight: 700; display: block; }
.link-list span { display: block; font-size: .93rem; color: var(--ink-soft); margin-top: .15rem; }
.sources { font-size: .92rem; }
.sources li { margin-bottom: .35rem; }
.prose table.simple { font-size: .93rem; }
@media (max-width: 959px) {
  .page-hero .glance, .page-hero .toc { margin-top: 1rem; }
  .page-hero .toc a { font-size: .86rem; padding: .3rem .7rem; }
}
.article-grid > * { min-width: 0; }
.qf-row dd, .link-list span, .sources li { overflow-wrap: anywhere; }
