/* ============================================================
   Lumberton Green Thumbs — styles
   Palette: lawn green, white, deep navy text, warm CTA
   ============================================================ */

:root {
  --green:       #2e9e4f;
  --green-dark:  #1f7a3c;
  --green-soft:  #eaf6ee;
  --navy:        #16241c;
  --ink:         #2b3b32;
  --muted:       #5d6f64;
  --bg:          #ffffff;
  --bg-alt:      #f5faf6;
  --line:        #e4ece6;
  --accent:      #ffd34e;       /* warm sun accent */
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 10px 30px rgba(20, 60, 35, 0.10);
  --shadow-sm:   0 4px 14px rgba(20, 60, 35, 0.08);
  --max:         1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green-dark); text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}
.container--narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 12px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-dark); color: #fff; }
.btn--ghost { background: #fff; color: var(--green-dark); border-color: var(--green); }
.btn--ghost:hover { background: var(--green-soft); }
.btn--lg { padding: 15px 28px; font-size: 1.05rem; }
.btn--small { padding: 9px 16px; font-size: .92rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--navy); font-size: 1.12rem; }
.brand__leaf { font-size: 1.3rem; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav__links a:hover { color: var(--green-dark); }
.nav__links .btn--primary { color: #fff; }
.nav__links .nav__crew {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--line);
}
.nav__links .nav__crew:hover {
  background: var(--bg-alt);
  color: var(--green-dark);
  border-color: var(--green);
}
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--green-soft), transparent 60%),
    linear-gradient(180deg, #fbfffc 0%, #ffffff 100%);
  padding: 70px 0 60px;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.accent { color: var(--green); }
.hero__sub { font-size: 1.16rem; color: var(--muted); margin: 18px 0 26px; max-width: 32ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; color: var(--ink); font-weight: 600; font-size: .95rem; }

/* hero quote card */
.hero__card { display: flex; justify-content: center; }
.quotecard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  width: 100%;
  max-width: 380px;
}
.quotecard h3 { font-size: 1.4rem; color: var(--navy); }
.quotecard__lead { color: var(--muted); margin: 6px 0 18px; }
.quotecard__steps { list-style: none; display: grid; gap: 12px; margin-bottom: 20px; }
.quotecard__steps li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.quotecard__steps span {
  display: grid; place-items: center;
  width: 28px; height: 28px; flex: 0 0 28px;
  background: var(--green-soft); color: var(--green-dark);
  border-radius: 50%; font-size: .9rem; font-weight: 800;
}
.quotecard__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 12px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy); color: #fff; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 0; text-align: center; }
.trust__item strong { display: block; font-size: 1.7rem; color: var(--accent); font-weight: 800; }
.trust__item span { color: #cfe0d6; font-size: .92rem; }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}
.section__title--left { text-align: left; }
.section__sub { text-align: center; color: var(--muted); font-size: 1.08rem; max-width: 56ch; margin: 12px auto 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: var(--green); color: #fff;
  border-radius: 14px; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.card h3 { color: var(--navy); font-size: 1.16rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: .03em;
}
.plan h3 { color: var(--navy); font-size: 1.3rem; }
.plan__price { font-size: 2.4rem; font-weight: 800; color: var(--green-dark); margin: 10px 0 18px; }
.plan__price span { font-size: .9rem; font-weight: 600; color: var(--muted); display: block; }
.plan__price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.plan ul { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.plan li { padding-left: 26px; position: relative; color: var(--ink); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.plan .btn { margin-top: auto; }
.pricing__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 26px; max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ---------- Detailed Pricing Breakdown ---------- */
.pricing-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.pricing-details__col h4 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}
.pricing-details__desc {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-details__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-details__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
  font-size: .98rem;
  color: var(--ink);
}
.pricing-details__list li span {
  font-weight: 600;
}
.pricing-details__list li strong {
  color: var(--green-dark);
  font-weight: 700;
}
.promo-tag {
  font-size: 0.78rem;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 8px;
  font-weight: 700;
}

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.team__copy p { color: var(--muted); margin-top: 14px; }
.team__copy .section__title { margin-bottom: 4px; }
.checklist { list-style: none; display: grid; gap: 10px; margin: 22px 0 26px; }
.checklist li { padding-left: 28px; position: relative; font-weight: 600; color: var(--ink); }
.checklist li::before { content: "🌿"; position: absolute; left: 0; }
.team__photo-ph {
  display: grid; place-items: center; aspect-ratio: 4 / 3;
  background: var(--green-soft); border: 2px dashed var(--green);
  border-radius: var(--radius); color: var(--green-dark); font-weight: 700; font-size: 1.1rem;
}
.team__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Summer insights ---------- */
.insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.insight {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green);
}
.insight__stat {
  font-size: 2.6rem; font-weight: 800; color: var(--green-dark);
  line-height: 1; margin-bottom: 14px;
}
.insight__stat small { font-size: 1rem; font-weight: 700; color: var(--muted); margin-left: 4px; }
.insight h3 { color: var(--navy); font-size: 1.16rem; margin-bottom: 8px; }
.insight p { color: var(--muted); font-size: .97rem; }
.insights__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--navy);
  padding: 16px 0; list-style: none; position: relative; padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--green); font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 0 18px; }

/* ---------- CTA / Quote ---------- */
.section--cta {
  background:
    radial-gradient(900px 400px at 50% 0%, var(--green-soft), transparent 65%),
    var(--bg-alt);
}
.link-strong { font-weight: 800; color: var(--green-dark); white-space: nowrap; }
.quote-form {
  margin-top: 34px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fcfdfc; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft);
}
.quote-form .btn { grid-column: 1 / -1; }
.quote-form__note { grid-column: 1 / -1; text-align: center; color: var(--muted); font-size: .85rem; }
.quote-form__done { grid-column: 1 / -1; text-align: center; padding: 24px 12px; font-size: 1.15rem; font-weight: 700; color: var(--green-dark); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #cfe0d6; padding-top: 44px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; }
.footer__brand strong { color: #fff; font-size: 1.15rem; display: block; margin: 6px 0; }
.footer__brand p { color: #a9c2b3; max-width: 34ch; }
.footer__contact { display: grid; gap: 8px; align-content: start; }
.footer__contact a { color: #fff; font-weight: 600; }
.footer__contact a:hover { color: var(--accent); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 0; font-size: .88rem; color: #a9c2b3; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__sub { max-width: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 22px 18px; box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__links .btn {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
    padding: 9px 16px;
  }
  .nav__toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .insights { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .pricing-details { grid-template-columns: 1fr; gap: 32px; }
  .plan--featured { transform: none; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .quote-form { grid-template-columns: 1fr; padding: 24px; }
}

@media (max-width: 420px) {
  .cards { grid-template-columns: 1fr; }
  .hero__badges { gap: 10px; }
}
