/*
Theme Name: Shadow Mountain Tree Service
*/
:root{
  --bg:#f6f4ef;
  --text:#18211b;
  --muted:#5d675f;
  --green:#143b2f;
  --green-2:#2f8a58;
  --wood:#e7cba7;
  --card:#ffffff;
  --tint:#eef2ed;
  --dark:#101613;
  --line:#d7ddd7;
  --shadow:0 12px 30px rgba(0,0,0,.12);
  --radius:20px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,calc(100% - 32px));margin:0 auto}

.notice-bar{
  background:var(--green);
  color:#fff;
  font-weight:700;
  font-size:14px;
}
.notice-bar .container{
  padding:12px 0;
  text-align:center;
}
.notice-bar a{
  color:#fff;
  text-decoration:underline;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(7,14,10,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:box-shadow .2s ease;
}
.site-header.scrolled{
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  min-height:92px;
}
.logo{
  display:flex;
  align-items:center;
  min-width:0;
  flex:0 1 auto;
}
.logo-image{
  height:82px;
  width:auto;
  max-width:320px;
  object-fit:contain;
  display:block;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-weight:700;
}
.site-nav a{
  color:#fff;
}
.site-nav a:hover{
  color:#dfe9df;
}
.menu-toggle{
  display:none;
  border:0;
  background:var(--green);
  color:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:20px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--green-2);
  color:#fff;
  padding:15px 22px;
  border-radius:999px;
  font-weight:800;
  box-shadow:var(--shadow);
  border:1px solid transparent;
}
.btn:hover{filter:brightness(1.05)}
.btn-secondary{
  background:#fff;
  color:var(--green);
  border-color:var(--green);
}
.btn-call{
  background:#111;
  color:#fff;
}
.btn-light{
  background:#fff;
  color:#111;
}
.btn-small{
  padding:12px 16px;
  font-size:14px;
}

.hero{
  position:relative;
  background:
    linear-gradient(rgba(10,18,14,.56),rgba(10,18,14,.62)),
    url('./assets/job-bucket.jpeg') center/cover no-repeat;
  color:#fff;
  padding:72px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:stretch;
}
.hero-copy-wrap{padding:18px 0}
.eyebrow,.section-label{
  margin:0 0 10px;
  color:#f0d5b2;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:800;
}
.hero h1{
  font-size:clamp(38px,6vw,66px);
  line-height:1.02;
  margin:0 0 18px;
  max-width:11ch;
}
.hero-copy{
  font-size:20px;
  max-width:680px;
  color:rgba(255,255,255,.92);
}
.hero-actions,.mini-cta,.cta-actions,.slim-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  padding:0;
  margin:22px 0 0;
  list-style:none;
  font-weight:700;
}
.hero-points li::before{
  content:'• ';
  color:#f0d5b2;
}
.local-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.local-links a,.chips span{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
}

.hero-side-card{
  background:rgba(255,255,255,.96);
  color:var(--text);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  align-self:stretch;
}
.hero-side-photo{
  aspect-ratio:4/3;
  overflow:hidden;
}
.hero-side-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-logo-strip{
  padding:20px;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.hero-logo{
  height:92px;
  width:auto;
  object-fit:contain;
  max-width:100%;
}
.hero-side-content{padding:22px}
.hero-badge{
  display:inline-block;
  background:var(--tint);
  color:var(--green);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.hero-side-content h2{
  margin:14px 0 10px;
  font-size:30px;
  line-height:1.05;
}

.section{padding:72px 0}
.section-dark{
  background:var(--dark);
  color:#fff;
}
.section-tint{
  background:var(--tint);
}
.info-band{
  background:linear-gradient(180deg,#fff,#f0f3ef);
}
.cta-band{
  background:linear-gradient(120deg,var(--green),#0f2d24);
  color:#fff;
}

.stats-grid,.feature-grid,.service-photo-grid,.reviews-grid,.footer-grid,.link-grid{
  display:grid;
  gap:18px;
}
.stats-grid-4{
  grid-template-columns:repeat(4,1fr);
}
.stat-card,.feature-card,.review-card,.stack-card,.location-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}
.stat-card strong,.feature-card h3,.location-card h3{
  display:block;
  margin-bottom:8px;
}
.two-col,.page-split,.cta-flex,.section-head-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
}
.service-photo-grid{
  grid-template-columns:repeat(3,1fr);
}
.service-photo-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.service-photo{
  aspect-ratio:4/3;
}
.service-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-photo-copy{
  padding:20px;
}
.before-after-pair-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:22px;
  margin-top:18px;
}
.pair-header{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:end;
}
.pair-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:18px;
}
.pair-images figure{
  margin:0;
  background:#fff;
  color:var(--text);
  border-radius:20px;
  overflow:hidden;
}
.pair-images img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.pair-images figcaption{
  padding:12px 14px;
  font-weight:800;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 20px;
}
.chips span{
  background:#e3ebe4;
  color:var(--green);
  border:0;
}
.link-grid{
  grid-template-columns:repeat(2,1fr);
}
.location-card p,.review-card p,.stat-card p,.feature-card p,.stack-card p{
  margin:0;
  color:var(--muted);
}
.location-card:hover{
  transform:translateY(-2px);
}
.reviews-grid{
  grid-template-columns:repeat(3,1fr);
}
.stars{
  color:#d39d4b;
  letter-spacing:.1em;
  font-size:20px;
  margin-bottom:10px;
}
.review-name{
  font-weight:800;
  color:var(--text)!important;
  margin-top:12px!important;
}

.site-footer{
  background:#0f1411;
  color:#fff;
  padding:40px 0 60px;
}
.footer-grid{
  grid-template-columns:1.2fr .8fr .8fr;
}
.footer-logo{
  height:64px;
  width:auto;
  margin-bottom:14px;
}
.site-footer a{
  color:#fff;
  text-decoration:underline;
}

.mobile-cta-bar{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:1000;
  display:none;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.mobile-cta-bar a{
  padding:14px 18px;
  border-radius:999px;
  text-align:center;
  font-weight:800;
  box-shadow:var(--shadow);
}
.mobile-cta-call{
  background:#111;
  color:#fff;
}
.mobile-cta-text{
  background:var(--green-2);
  color:#fff;
}

.page-hero{
  padding:56px 0;
  background:linear-gradient(120deg,var(--green),#24493f);
  color:#fff;
}
.page-hero h1{
  font-size:clamp(34px,5vw,56px);
  line-height:1.04;
  margin:0 0 12px;
}
.page-hero p{
  font-size:18px;
  max-width:820px;
  color:rgba(255,255,255,.92);
}
.content-card,.quote-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.form-grid .full{
  grid-column:1/-1;
}
label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}
input,select,textarea{
  width:100%;
  padding:14px 14px;
  border:1px solid #cfd6cf;
  border-radius:14px;
  font:inherit;
  background:#fff;
}
textarea{
  min-height:130px;
  resize:vertical;
}
.price-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.price-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow);
}
.price-card h3{
  margin:0 0 8px;
}
.range{
  font-size:28px;
  font-weight:900;
  color:var(--green);
}
.cost-factors{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.factor{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.factor h3{
  margin:0 0 8px;
}
.quote-output{
  margin-top:14px;
  padding:18px;
  border-radius:18px;
  background:var(--tint);
  border:1px solid var(--line);
  font-weight:700;
}

@media (max-width: 980px){
  .hero-grid,.two-col,.page-split,.cta-flex,.section-head-split,.pair-header,.footer-grid{
    grid-template-columns:1fr;
  }
  .service-photo-grid,.reviews-grid,.stats-grid-4,.price-grid,.cost-factors{
    grid-template-columns:1fr 1fr;
  }
  .link-grid{
    grid-template-columns:1fr;
  }
  .site-nav{
    position:absolute;
    right:16px;
    top:88px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    min-width:220px;
  }
  .site-nav a{
    color:var(--text);
  }
  .site-nav.open{
    display:flex;
  }
  .menu-toggle{
    display:block;
  }
  .site-nav .btn-small{
    width:100%;
  }
  .logo-image{
    height:72px;
    max-width:280px;
  }
  .hero h1{
    max-width:none;
  }
  .hero-logo{
    height:64px;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 20px,1120px);
  }
  .hero{
    padding:52px 0 40px;
  }
  .hero-copy{
    font-size:18px;
  }
  .service-photo-grid,.reviews-grid,.stats-grid-4,.price-grid,.cost-factors,.form-grid{
    grid-template-columns:1fr;
  }
  .pair-images{
    grid-template-columns:1fr;
  }
  .btn{
    width:100%;
  }
  .hero-actions .btn,.cta-actions .btn,.mini-cta .btn{
    width:100%;
    flex:1 1 100%;
  }
  .mobile-cta-bar{
    display:none;
  }
  .site-footer{
    padding-bottom:60px;
  }
  .logo-image{
    height:76px;
    max-width:min(72vw,290px);
  }
}
