/* ============================================================
   Big Ben's Tree Trimming & Complete Removal
   Brand: Faith · Family · Friendship — Help Everything Grow
   Palette: black header · green nav · orange CTAs · cream paper
   ============================================================ */

:root {
  --black: #0b0c0b;
  --green: #1c8043;          /* nav / primary */
  --green-dark: #1a6b3c;     /* boxes */
  --green-deep: #0f3d22;     /* overlays / footer */
  --green-soft: #e7f1e8;
  --orange: #ed7d1c;         /* CTA */
  --orange-dark: #d06a12;
  --cream: #f4f1e8;          /* page background (paper) */
  --cream-2: #efeadd;
  --ink: #1d211e;
  --slate: #54605a;
  --line: #e0dccf;
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(15, 61, 34, .10);
  --shadow-md: 0 8px 22px rgba(15, 61, 34, .14);
  --shadow-lg: 0 22px 54px rgba(11, 12, 11, .28);

  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1200px;

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background-color: var(--cream);
  /* subtle paper texture */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.7), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,.018), transparent 45%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.14; font-weight: 700; color: var(--green-deep); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 78px 0; }
.section--cream2 { background: var(--cream-2); }

.section-title { text-align: center; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 8px; }
.section-title::after { content: ""; display: block; width: 84px; height: 3px; background: var(--green); margin: 16px auto 0; border-radius: 3px; }
.section-intro { text-align: center; max-width: 660px; margin: 14px auto 46px; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: 13px 26px; border-radius: 8px; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 1.04rem; }

/* ---------- Top bar (black) ---------- */
.topbar { background: var(--black); color: #e8e6dd; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 16px; }
.topbar__phone { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: #fff; }
.topbar__phone svg { color: var(--orange); }
.topbar__logo { height: 88px; width: auto; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { width: 34px; height: 34px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; color: #fff; transition: .2s; }
.topbar__social a:hover { background: var(--orange); border-color: var(--orange); }

/* ---------- Nav (green) ---------- */
.header { position: sticky; top: 0; z-index: 60; background: var(--green); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: center; min-height: 56px; position: relative; }
.nav__links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav__links > li { position: relative; }
.nav__links a { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #fff; padding: 16px 18px; position: relative; }
.nav__links a:hover { color: #ffe9cf; }
.nav__links a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 10px; height: 2px; background: #fff; transform: scaleX(0); transition: transform .2s ease; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__sep { color: rgba(255,255,255,.35); }
/* dropdown */
.has-drop > a::before { content: ""; }
.dropdown { position: absolute; top: 100%; left: 8px; min-width: 220px; background: #fff; border-radius: 10px; box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; list-style: none; z-index: 5; }
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { color: var(--ink); padding: 10px 14px; border-radius: 7px; font-size: .94rem; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--green-soft); color: var(--green-dark); }

.nav__toggle { display: none; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.nav__toggle span { display: block; width: 26px; height: 2.6px; background: #fff; margin: 5px auto; border-radius: 2px; transition: .25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.hero__panel { position: relative; display: flex; align-items: center; padding: 70px 6% 70px 0; overflow: hidden; }
.hero__panel { background: linear-gradient(120deg, #0e2c1a, #16402600 70%), url("../img/hero-forest.svg"); background-size: cover; background-position: center; }
.hero__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,28,16,.82), rgba(8,28,16,.5)); }
.hero__inner { position: relative; z-index: 2; max-width: 560px; margin-left: auto; padding-left: 22px; color: #fff; }
.hero__inner h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.5px; text-transform: uppercase; }
.hero__inner h1 span { display: block; }
.hero__brand { margin: 22px 0 6px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.hero__motto { color: #ffd9a8; font-weight: 600; font-style: italic; margin-bottom: 26px; }
.hero__media { background: #14361f url("../../images/gallery/photo-trim.jpg") center/cover; }

/* feature tiles under hero */
.feature-tiles { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-tile { position: relative; min-height: 188px; display: grid; place-items: center; text-align: center; overflow: hidden; color: #fff; }
.feature-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-tile::after { content: ""; position: absolute; inset: 0; background: rgba(11,30,18,.55); transition: background .3s; }
.feature-tile:hover img { transform: scale(1.07); }
.feature-tile:hover::after { background: rgba(11,30,18,.4); }
.feature-tile span { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.feature-tile .stars { display: block; color: var(--orange); font-size: 1.1rem; margin-top: 4px; letter-spacing: 3px; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.about__media { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md); }
.about__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
.about__box { background: var(--green-dark); color: #eef6ef; padding: 44px 42px; border-radius: 8px; box-shadow: var(--shadow-md); margin-left: -40px; position: relative; z-index: 2; }
.about__box h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 16px; }
.about__box h2::after { content: ""; display: block; width: 60px; height: 3px; background: var(--orange); margin-top: 14px; border-radius: 3px; }
.about__box p { color: #d9e8db; font-size: 1.02rem; }

/* ---------- Why choose us ---------- */
.why { position: relative; color: #fff; }
.why__bg { position: absolute; inset: 0; background: url("../img/why-bg.svg") center/cover; }
.why__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,24,14,.9) 40%, rgba(8,24,14,.5)); }
.why .container { position: relative; z-index: 2; }
.why h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 26px; }
.accordion { max-width: 620px; }
.acc-item { border-bottom: 1px solid rgba(255,255,255,.18); }
.acc-head { width: 100%; background: none; border: 0; color: #fff; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 18px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; text-align: left; }
.acc-head .acc-ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; color: var(--orange); }
.acc-head .acc-chev { margin-left: auto; transition: transform .25s; }
.acc-item.is-open .acc-chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body p { padding: 0 4px 20px 60px; color: #d4e4d6; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.svc { position: relative; min-height: 260px; border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(10,26,16,.55), rgba(10,26,16,.72)); transition: background .3s; }
.svc:hover img { transform: scale(1.06); }
.svc:hover::after { background: linear-gradient(rgba(10,26,16,.45), rgba(10,26,16,.62)); }
.svc__inner { position: relative; z-index: 2; padding: 30px 26px; max-width: 460px; }
.svc__inner h3 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.svc__inner p { color: #eef2ec; font-size: .98rem; margin-bottom: 18px; }

/* ---------- Trusted choice ---------- */
.trusted { position: relative; color: #fff; }
.trusted__bg { position: absolute; inset: 0; background: url("../img/trusted-bg.svg") center/cover; }
.trusted__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,24,14,.35), rgba(8,24,14,.82)); }
.trusted .container { position: relative; z-index: 2; display: flex; justify-content: flex-end; }
.trusted__box { max-width: 560px; text-align: right; padding: 76px 0; }
.trusted__box h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.trusted__box h2::after { content: ""; display: block; width: 90px; height: 3px; background: var(--orange); margin: 14px 0 0 auto; }
.trusted__box p { color: #e3ece3; }
.estimate-bar { background: var(--cream); }
.estimate-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 30px; padding-bottom: 30px; border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); flex-wrap: wrap; }
.estimate-bar h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--green-deep); }
.estimate-bar .phone { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--green-dark); display: inline-flex; gap: 10px; align-items: center; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.review .stars { color: var(--orange); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review p { color: var(--slate); font-style: italic; margin-bottom: 16px; }
.review .who { font-family: var(--font-head); font-weight: 600; color: var(--green-deep); font-style: normal; }
.reviews-cta { text-align: center; margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Service areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 26px; max-width: 980px; margin: 0 auto; }
.areas-grid li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-weight: 600; color: var(--ink); list-style: none; }
.areas-grid svg { color: var(--green); flex: none; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 1/1; background: var(--green-soft); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 12px; background: linear-gradient(transparent, rgba(10,26,16,.85)); color: #fff; font-weight: 600; font-size: .9rem; opacity: 0; transition: opacity .25s; }
.gallery-item:hover .gallery-item__cap { opacity: 1; }
.gallery-item__tag { position: absolute; top: 10px; left: 10px; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .68rem; padding: 4px 10px; border-radius: 6px; }
.gallery-empty { grid-column: 1/-1; text-align: center; padding: 50px 20px; color: var(--slate); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,12,9,.93); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; padding: 0 20px; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.14); border: 0; color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--orange); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact__info { display: grid; gap: 20px; align-content: start; }
.info-item { display: flex; gap: 15px; align-items: flex-start; }
.info-item__icon { width: 46px; height: 46px; border-radius: 10px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.info-item h4 { font-size: 1.04rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--slate); }
.info-item a:hover { color: var(--green-dark); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); }
.form .field { margin-bottom: 16px; }
.form label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; color: var(--green-deep); font-family: var(--font-head); }
.form input, .form select, .form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 9px; font-family: var(--font-body); font-size: .98rem; background: var(--cream); transition: border .2s, background .2s; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form textarea { resize: vertical; min-height: 110px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__status { margin-top: 12px; font-weight: 600; display: none; }
.form__status.is-ok { display: block; color: var(--green-dark); }
.form__status.is-err { display: block; color: #c0392b; }
.form__note { font-size: .84rem; color: var(--slate); margin-top: 8px; }

/* ---------- Footer ---------- */
.footer-cta { background: var(--green); color: #fff; }
.footer-cta .container { display: flex; align-items: center; justify-content: space-around; gap: 24px; padding: 34px 22px; flex-wrap: wrap; }
.footer-cta__item { display: flex; align-items: center; gap: 14px; }
.footer-cta__item svg { color: #fff; flex: none; }
.footer-cta h4 { color: #fff; font-size: 1.05rem; margin-bottom: 2px; }
.footer-cta a, .footer-cta p { color: #e9f3ea; }
.footer { background: var(--black); color: #9fa89f; padding: 50px 0 26px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-family: var(--font-head); }
.footer a:hover { color: var(--orange); }
.footer__links { list-style: none; display: grid; gap: 8px; }
.footer__motto { color: #ffd9a8; font-style: italic; font-weight: 600; margin: 12px 0; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 20px; flex-wrap: wrap; gap: 8px; font-size: .84rem; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; color: #fff; text-align: center; padding: 64px 0; background: var(--green-deep) url("../img/why-bg.svg") center/cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(8,24,14,.78); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero p { color: #d6e6d8; margin-top: 10px; }
.breadcrumb { color: #bcd3bf; font-size: .9rem; margin-bottom: 12px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { min-height: 240px; order: 2; }
  .hero__panel { padding: 60px 22px; }
  .hero__inner { margin: 0 auto; padding-left: 0; }
  .feature-tiles { grid-template-columns: 1fr 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__box { margin-left: 0; margin-top: -24px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .trusted .container { justify-content: center; }
  .trusted__box { text-align: center; }
  .trusted__box h2::after { margin: 14px auto 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .topbar .container { min-height: 0; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .topbar__logo { height: 66px; order: -1; }
  .topbar__phone { font-size: 1.1rem; }
  .nav { justify-content: flex-start; }
  .nav__links { display: none; }
  .nav__sep { display: none; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--green); padding: 8px 14px 16px; gap: 0; box-shadow: var(--shadow-md); align-items: stretch; }
  .nav.is-open .nav__links a { padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.16); }
  .nav.is-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.08); margin: 4px 0; }
  .nav.is-open .dropdown a { color: #eaf6ec; }
  .nav__toggle { display: block; }
  .nav__brand-m { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: var(--font-head); font-weight: 700; padding: 14px 6px; }
  .feature-tiles { grid-template-columns: 1fr; }
  .feature-tile { min-height: 130px; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .estimate-bar .container { flex-direction: column; text-align: center; }
}
