/* Timber M8 - lead-gen landing page */
:root {
  --green-dark: #284323;
  --green-mid: #4b6f44;
  --green-deep: #1c3019;
  --ink: #0a1109;
  --body: #35402f;
  --cream: #f6f3ec;
  --tint: #f1f4f0;
  --line: #e4e2d8;
  --white: #ffffff;
  --footer: #121212;
  --amber: #c47f26;
  --amber-dark: #a96812;
  --amber-soft: #f6ead4;
  --star: #e0a12b;
  --container: 1200px;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(20, 30, 15, .06);
  --shadow-md: 0 12px 34px rgba(20, 30, 15, .12);
  --shadow-lg: 0 24px 60px rgba(20, 30, 15, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Arimo', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0; letter-spacing: -0.5px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; width: 100%; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-mid);
}
.eyebrow--light { color: #bcd3b4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  padding: 16px 30px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .12s ease, background-color .2s ease, box-shadow .2s ease;
  line-height: 1;
  text-align: center;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--amber); color: #fff; box-shadow: 0 8px 20px rgba(196, 127, 38, .32); }
.btn--primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(196, 127, 38, .4); }
.btn--green { background: var(--green-dark); color: #fff; }
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid #cfd6c9; }
.btn--ghost:hover { border-color: var(--green-mid); color: var(--green-dark); }
.btn--block { width: 100%; }
.btn--lg { padding: 19px 36px; font-size: 18px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-deep);
  color: #dfe7db;
  font-size: 13.5px;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar__pts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__pts span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__pts svg { width: 15px; height: 15px; color: #9dc08e; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.header__logo img { height: 48px; width: auto; }
.header__spacer { flex: 1 1 auto; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 17px; }
.header__phone svg { width: 18px; height: 18px; color: var(--green-mid); }
.header__cta { padding: 12px 22px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #223a1e 0%, #2f4d28 100%);
  color: #eef3ea;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('assets/hero-forest.jpg') center/cover no-repeat;
  opacity: .20;
  mix-blend-mode: luminosity;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding-block: 76px 84px;
}
.hero__copy { max-width: 620px; }
.hero h1 { color: #fff; font-size: 54px; letter-spacing: -1.2px; }
.hero h1 em { font-style: normal; color: #e7b866; }
.hero__sub { margin: 22px 0 26px; font-size: 19px; line-height: 1.55; color: #d7e2d1; }
.hero__ticks { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.hero__ticks li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: #eaf1e6; }
.hero__ticks svg { width: 22px; height: 22px; flex: none; color: #8fc47d; margin-top: 1px; }
.hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__meta { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #c3d3bc; }
.hero__stars { display: inline-flex; gap: 2px; }
.hero__stars svg { width: 16px; height: 16px; color: var(--star); }

/* Quote form card */
.quote-card {
  background: var(--white);
  color: var(--body);
  border-radius: 20px;
  padding: 30px 30px 28px;
  box-shadow: var(--shadow-lg);
}
.quote-card__head { text-align: center; margin-bottom: 20px; }
.quote-card__head h2 { font-size: 24px; color: var(--ink); }
.quote-card__head p { margin: 6px 0 0; font-size: 14.5px; color: #6c7568; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field input, .field select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 14px;
  border: 1.5px solid #d5dbcf;
  border-radius: 10px;
  background: #fbfcfa;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(75, 111, 68, .15);
}
.quote-card__note { margin: 14px 0 0; font-size: 12.5px; color: #8a9284; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.quote-card__note svg { width: 14px; height: 14px; color: var(--green-mid); }
.quote-success {
  display: none;
  text-align: center;
  padding: 26px 8px;
}
.quote-success svg { width: 54px; height: 54px; color: var(--green-mid); margin: 0 auto 12px; }
.quote-success h3 { font-size: 22px; margin-bottom: 6px; }
.quote-success p { margin: 0; color: #6c7568; font-size: 15px; }
.quote-card.is-sent .quote-form { display: none; }
.quote-card.is-sent .quote-success { display: block; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--cream); border-bottom: 1px solid var(--line); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 30px; }
.trust { text-align: center; }
.trust__num { font-size: 34px; font-weight: 700; color: var(--green-dark); letter-spacing: -1px; line-height: 1; }
.trust__label { margin-top: 6px; font-size: 14px; color: #6c7568; }

/* ---------- Section shell ---------- */
.section { padding-block: 84px; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-dark); color: #dfe7db; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section__head h2 { font-size: 40px; margin: 12px 0 0; }
.section--green .section__head h2 { color: #fff; }
.section__head p { margin: 14px 0 0; font-size: 18px; color: #6c7568; }
.section--green .section__head p { color: #cddcc6; }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3dccb; }
.benefit__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--amber-soft); color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 20px; margin-bottom: 8px; }
.benefit p { margin: 0; font-size: 15px; color: #6a7365; line-height: 1.55; }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; display: block; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,15,0) 45%, rgba(20,30,15,.72) 100%);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card__name {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-weight: 700; font-size: 18px; letter-spacing: .3px;
  display: flex; align-items: center; gap: 6px;
}
.cat-card__name svg { width: 16px; height: 16px; opacity: 0; transform: translateX(-6px); transition: .25s ease; }
.cat-card:hover .cat-card__name svg { opacity: 1; transform: translateX(0); }
.cat-cta { text-align: center; margin-top: 40px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { margin: 0; font-size: 15.5px; color: #6a7365; }
.section--green .step h3 { color: #fff; }
.section--green .step p { color: #cddcc6; }
.section--green .step__num { background: var(--amber); }

/* ---------- Testimonials ---------- */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.testi__stars { display: inline-flex; gap: 3px; }
.testi__stars svg { width: 18px; height: 18px; color: var(--star); }
.testi__quote { font-size: 16.5px; color: #2f382b; line-height: 1.6; flex: 1 1 auto; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-mid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testi__name { font-weight: 700; color: var(--ink); font-size: 15px; }
.testi__role { font-size: 13px; color: #7d8676; }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--green-dark); color: #eaf1e6; }
.guarantee__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px;
  align-items: center; padding-block: 60px;
}
.guarantee__badge {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--amber); color: #e7b866;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; flex: none;
}
.guarantee__badge svg { width: 40px; height: 40px; margin-bottom: 4px; }
.guarantee__badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.guarantee__text h2 { color: #fff; font-size: 30px; margin-bottom: 10px; }
.guarantee__text p { margin: 0; color: #cddcc6; font-size: 17px; max-width: 640px; }
.guarantee__cta { flex: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-size: 18px; font-weight: 700; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { flex: none; width: 26px; height: 26px; color: var(--green-mid); transition: transform .25s ease; }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 4px 24px; font-size: 16px; color: #5f6858; line-height: 1.65; max-width: 720px; }

/* ---------- Final CTA ---------- */
.final {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2f4d28 0%, #1c3019 100%);
  color: #eaf1e6; text-align: center;
}
.final__inner { position: relative; z-index: 1; padding-block: 84px; max-width: 720px; margin: 0 auto; }
.final h2 { color: #fff; font-size: 42px; margin-bottom: 16px; }
.final p { margin: 0 0 30px; font-size: 19px; color: #d0dfc9; }
.final__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: #fff; font-size: 18px; padding: 19px 10px; }
.final__phone svg { width: 20px; height: 20px; color: #8fc47d; }

/* ---------- Footer ---------- */
.footer { background: var(--footer); color: #cfd6cd; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-block: 60px 40px; }
.footer__brand img { height: 54px; width: auto; margin-bottom: 16px; }
.footer__brand p { margin: 0; font-size: 14px; color: #9aa398; max-width: 280px; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 11px; }
.footer__col a { font-size: 14.5px; color: #cfd6cd; }
.footer__col a:hover { color: #fff; }
.footer__col p { margin: 0 0 10px; font-size: 14.5px; color: #9aa398; }
.footer__bottom { border-top: 1px solid #2a2a2a; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-block: 20px; font-size: 13px; color: #8a9384; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #333; display: inline-flex; align-items: center; justify-content: center; }
.footer__social svg { width: 17px; height: 17px; fill: #cfd6cd; }

/* ---------- Generic lead form / success ---------- */
.lead-success { display: none; }
[data-lead-wrap].is-sent .lead-form { display: none; }
[data-lead-wrap].is-sent .lead-success { display: block; }

/* ---------- Offer flag (hero badge) ---------- */
.offer-flag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--amber-soft); color: #7a4b0e;
  border: 1px solid #e6c583;
  font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.offer-flag svg { width: 16px; height: 16px; color: var(--amber-dark); }
.offer-flag b { color: var(--amber-dark); }

/* ---------- Problem / agitation ---------- */
.section--dark { background: #16260f; color: #d6e2cf; }
.section--dark .section__head h2 { color: #fff; }
.section--dark .section__head p { color: #b8c9ac; }
.painlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px; max-width: 900px; margin: 0 auto; }
.pain { display: flex; align-items: flex-start; gap: 14px; }
.pain__x {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(197, 74, 46, .18); color: #e8927a;
  display: flex; align-items: center; justify-content: center;
}
.pain__x svg { width: 18px; height: 18px; }
.pain p { margin: 0; font-size: 16px; color: #e4ecdd; line-height: 1.5; padding-top: 5px; }
.pain-close { text-align: center; margin: 44px auto 0; max-width: 760px; font-size: 21px; font-weight: 700; color: #fff; line-height: 1.4; }
.pain-close b { color: #e7b866; }

/* ---------- Product range ---------- */
.range-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.range-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 28px 26px;
  display: flex; flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.range-card:hover { box-shadow: var(--shadow-md); border-color: #d3dccb; }
.range-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 6px; }
.range-card h3 { font-size: 22px; }
.range-card__tag {
  flex: none; font-size: 11.5px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; color: var(--green-dark);
  background: #e8efe3; border-radius: 6px; padding: 5px 9px; white-space: nowrap;
}
.range-card__lead { margin: 4px 0 16px; font-size: 15.5px; color: #5f6858; line-height: 1.5; }
.range-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.range-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: #3f483a; line-height: 1.45; }
.range-card li svg { flex: none; width: 17px; height: 17px; color: var(--green-mid); margin-top: 2px; }

/* ---------- Audience ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.aud {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .18s ease, box-shadow .18s ease;
}
.aud:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aud__icon { width: 46px; height: 46px; border-radius: 11px; background: var(--amber-soft); color: var(--amber-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.aud__icon svg { width: 24px; height: 24px; }
.aud h3 { font-size: 18px; margin-bottom: 7px; }
.aud p { margin: 0; font-size: 14px; color: #6a7365; line-height: 1.5; }

/* ---------- Founder note ---------- */
.founder { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--green-mid); border-radius: var(--radius); padding: 40px 44px; box-shadow: var(--shadow-sm); }
.founder h3 { font-size: 24px; margin-bottom: 16px; }
.founder p { margin: 0 0 15px; font-size: 16.5px; color: #3f483a; line-height: 1.65; }
.founder__sign { margin-top: 22px; font-weight: 700; color: var(--ink); }
.founder__sign span { display: block; font-weight: 400; font-size: 14px; color: #7d8676; }

/* ---------- Offer band ---------- */
.offer { background: linear-gradient(135deg, #b5731f 0%, #8f550f 100%); color: #fff2df; overflow: hidden; position: relative; }
.offer__inner { position: relative; z-index: 1; text-align: center; padding-block: 74px; max-width: 720px; margin: 0 auto; }
.offer__kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #ffe4bd; margin-bottom: 14px; }
.offer h2 { color: #fff; font-size: 42px; margin-bottom: 14px; }
.offer h2 span { color: #2a3f22; background: #ffd99a; padding: 0 10px; border-radius: 6px; }
.offer p { margin: 0 0 26px; font-size: 18px; color: #ffe9cf; }
.offer-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; background: #fff; border-radius: 12px; padding: 8px; box-shadow: var(--shadow-md); }
.offer-form input { flex: 1 1 auto; border: 0; outline: 0; font-family: inherit; font-size: 16px; padding: 12px 14px; color: var(--ink); background: transparent; min-width: 0; }
.offer-form .btn { flex: none; }
.offer__fine { margin: 16px 0 0; font-size: 13px; color: #ffe4bd; }
.offer .lead-success { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: 12px; padding: 24px; max-width: 520px; margin: 0 auto; }
.offer .lead-success h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.offer .lead-success p { margin: 0; color: #ffe9cf; font-size: 15px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-block: 54px 60px; }
  .hero h1 { font-size: 44px; }
  .quote-card { max-width: 480px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; justify-items: center; }
  .guarantee__text p { margin-inline: auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .testis { grid-template-columns: 1fr; }
  .header__phone { display: none; }
  .painlist { grid-template-columns: 1fr; gap: 14px; }
  .range-grid { grid-template-columns: 1fr; }
  .founder { padding: 30px 26px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding-block: 60px; }
  .hero h1 { font-size: 34px; }
  .hero__sub { font-size: 17px; }
  .section__head h2, .final h2 { font-size: 30px; }
  .benefits { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar__pts span:nth-child(n+2) { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .audience-grid { grid-template-columns: 1fr; }
  .offer h2, .final h2 { font-size: 28px; }
  .offer-form { flex-direction: column; }
  .offer-form .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .benefit:hover, .cat-card:hover img { transform: none !important; }
}
