:root{
  --forest: #1f3d2b;
  --beige: #f3eadb;
  --beige-2: rgba(243,234,219,0.80);
  --ink: rgba(16,32,24,0.92);
  --ink-soft: rgba(16,32,24,0.74);
  --card: rgba(255,255,255,0.70);
  --border: rgba(31,61,43,0.14);
  --shadow: 0 14px 40px rgba(0,0,0,0.10);

  --header-hide: 0px;
  --header-alpha: 1;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--beige);
  color: var(--ink);
  letter-spacing: 0.1px;
}
img{
  max-width:100%;
  display:block;
}
a{ color: inherit; text-decoration:none; }

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* -------------------------
   Top green strip
------------------------- */
.top-green-strip{
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(calc(-1 * var(--header-hide)));
  opacity: var(--header-alpha);
  transition: transform 70ms linear, opacity 70ms linear;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: rgba(243,234,219,0.96);
  margin-left: auto;
  flex: 0 0 auto;
}

.brand-logo{
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  flex: 0 0 36px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display:block;
}

.brand-text{
  display:flex;
  gap: 6px;
  align-items: baseline;
  font-size: 16px;
}
.brand-hanks{ font-weight: 900; }
.brand-land{ font-weight: 750; opacity: 0.95; }

.menu-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  display:grid;
  place-items:center;
  gap: 4px;
  cursor:pointer;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
}
.menu-btn span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(243,234,219,0.95);
  border-radius: 10px;
}

/* -------------------------
   Slide menu
------------------------- */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 900;
}

.side-menu{
  position: fixed;
  top: 0;
  left: -360px;
  width: 340px;
  height: 100vh;
  background: rgba(243,234,219,0.98);
  border-right: 1px solid rgba(31,61,43,0.14);
  z-index: 950;
  padding: 18px;
  transition: left 240ms ease;
  overflow-y: auto;
  display:flex;
  flex-direction: column;
}
.side-menu.open{ left: 0; }

.side-menu-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.side-brand{
  font-weight: 850;
  color: var(--forest);
  letter-spacing: 0.3px;
}
.menu-close{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(31,61,43,0.14);
  background: rgba(255,255,255,0.65);
  cursor:pointer;
  font-size: 18px;
}

.side-links{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.side-links a{
  display:block;
  padding: 12px 10px;
  border-radius: 14px;
  font-weight: 750;
  color: rgba(16,32,24,0.92);
}
.side-links a:hover{
  background: rgba(31,61,43,0.08);
}

.side-accordion{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 14px;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 750;
  color: rgba(16,32,24,0.92);
  cursor: pointer;
  text-align: left;
}
.side-accordion:hover{
  background: rgba(31,61,43,0.08);
}
.side-accordion .chev{
  opacity: 0.7;
}

.side-submenu{
  display:none;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid rgba(31,61,43,0.12);
}
.side-submenu.open{ display:block; }
.side-submenu a{
  padding: 10px 10px;
  border-radius: 12px;
}

.side-cta{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(31,61,43,0.14);
}
.side-note{
  margin: 10px 2px 0;
  font-size: 13px;
  color: rgba(16,32,24,0.70);
}

/* -------------------------
   Buttons
------------------------- */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.25px;
  border: 1px solid rgba(31,61,43,0.18);
  background: rgba(255,255,255,0.75);
  color: rgba(16,32,24,0.92);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.button:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}
.button.forest{
  background: var(--forest);
  border-color: rgba(255,255,255,0.14);
  color: rgba(243,234,219,0.96);
}
.button.ghost{
  background: rgba(255,255,255,0.75);
  color: rgba(16,32,24,0.92);
}
.button.ghost.light{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: rgba(243,234,219,0.96);
  box-shadow: none;
}
.button.full{ width: 100%; }

/* -------------------------
   Hero
------------------------- */
.hero-photo{
  position: relative;
  min-height: clamp(540px, 82vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow:hidden;
  background:
    linear-gradient(120deg, rgba(16,32,24,0.78), rgba(16,32,24,0.18)),
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.14) 100%),
    url("st-paul-lawn-maintenance-hanks-landscaping.webp") center/cover no-repeat;
}

.hero-wrap{
  position: relative;
  z-index: 40;
}

.hero-content{
  max-width: 820px;
  margin-bottom: 120px;
}

.hero-content h1{
  margin: 0 0 10px;
  color: rgba(243,234,219,0.94);
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.02;
  text-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.hero-content p{
  margin: 0 0 18px;
  color: rgba(243,234,219,0.86);
  font-weight: 560;
  font-size: clamp(16px, 1.6vw, 19px);
  text-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-fade{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  pointer-events: none;
  z-index: 50;
  --p: 0%;
  background: linear-gradient(
    to top,
    rgba(31,61,43,1) 0%,
    rgba(31,61,43,0.98) calc(20% + var(--p)),
    rgba(31,61,43,0.70) calc(45% + var(--p)),
    rgba(31,61,43,0.25) calc(68% + var(--p)),
    rgba(31,61,43,0.00) calc(92% + var(--p))
  );
  will-change: height;
}

/* -------------------------
   Curves / Waves
------------------------- */
.grass-wave{
  margin-top: -1px;
  line-height: 0;
  position: relative;
  z-index: 10;
  margin-bottom: -10px;
}
.grass-wave svg{
  display:block;
  width:100%;
  height:140px;
  transform: scaleY(-1);
  transform-origin: center;
}
.grass-wave svg path{ fill: var(--forest); }

.mid-wave{
  line-height: 0;
  position: relative;
  z-index: 10;
  margin-top: 8px;
  margin-bottom: -12px;
}
.mid-wave svg{
  display:block;
  width:100%;
  height:140px;
}
.mid-wave svg path{ fill: var(--forest); }
.mid-wave-up svg{ transform: none; }

.reviews-curve-bottom{
  line-height: 0;
  background: var(--beige);
  margin-top: -2px;
  overflow: hidden;
  position: relative;
  z-index: 12;
}
.reviews-curve-bottom svg{
  display: block;
  width: 100%;
  height: 150px;
  transform: scaleY(-1) translateY(1px);
  transform-origin: center;
}
.reviews-curve-bottom path{
  fill: var(--forest);
}

/* -------------------------
   Sections
------------------------- */
.section{ padding: 48px 0; }
.section-tight{ padding: 40px 0; }
.section-super-tight{ padding: 34px 0; }

.section-title h2{
  margin: 0 0 10px;
  color: var(--forest);
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: 1.08;
}
.section-title p{
  margin: 0;
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 560;
}
.section-title a{
  color: var(--forest);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* -------------------------
   Grids
------------------------- */
.grid{
  display:grid;
  gap: 16px;
}

.info-cards{
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.panel{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(31,61,43,0.14);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.panel h3{ margin: 0 0 6px; color: var(--forest); }
.panel p{ margin: 0; color: rgba(16,32,24,0.74); font-weight: 560; }

#about .section-title{
  margin-bottom: 10px;
}

#about .section-title a{
  text-decoration: none;
}

#about .section-title a:hover{
  text-decoration: none;
}

#about .info-cards{
  gap: 18px;
  margin-top: 54px;
}

#about .info-cards .panel{
  will-change: transform, opacity;
  transform: translateX(-220px);
  opacity: 0;
  background: var(--forest);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

#about .info-cards .panel h3{
  color: rgba(243,234,219,0.96);
}

#about .info-cards .panel p{
  color: rgba(243,234,219,0.84);
}

@media (prefers-reduced-motion: reduce){
  #about .info-cards .panel{
    transform:none !important;
    opacity:1 !important;
  }
}

/* -------------------------
   Services tiles
------------------------- */
.services-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid.services-grid-tight{
  gap: 10px;
  margin-top: 14px;
}

.service-tile{
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 22px;
  background: var(--forest);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.service-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0,0,0,0.16);
}

.service-tile-top{
  display:block;
  width:100%;
  min-height: 200px;
  padding: 10px;
  overflow: hidden;
  background: var(--forest);
}

.service-img,
.service-tile-top .service-img{
  display:block;
  width: 100%;
  height: 200px;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  opacity: 1;
  visibility: visible;
}

.service-tile-body{
  padding: 12px 14px 14px;
  color: rgba(243,234,219,0.90);
}
.service-tile-body h3{
  margin: 0 0 6px;
  color: rgba(243,234,219,0.96);
  font-weight: 900;
}
.service-tile-body p{
  margin: 0 0 10px;
  color: rgba(243,234,219,0.84);
  font-weight: 560;
  line-height: 1.30;
}
.service-tile-link{
  font-weight: 850;
  color: rgba(243,234,219,0.92);
}

/* -------------------------
   Dark sections
------------------------- */
.section-dark{
  background: var(--forest);
  color: rgba(243,234,219,0.92);
}
.section-title-light h2{ color: rgba(243,234,219,0.96); }
.section-title-light p{ color: rgba(243,234,219,0.82); }

.section-dark .panel{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
.section-dark .panel h3{ color: rgba(243,234,219,0.96); }
.section-dark .panel p{ color: rgba(243,234,219,0.84); }

/* FAQ */
.faq{
  margin-top: 12px;
  display:grid;
  gap: 12px;
}
.faq-item{
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  padding: 14px 16px;
}
.faq-item summary{
  cursor:pointer;
  font-weight: 900;
  color: rgba(243,234,219,0.96);
}
.faq-body{
  margin-top: 10px;
  color: rgba(243,234,219,0.84);
  font-weight: 560;
}

/* Quote band */
.cta-band{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}
.cta-band h2{ margin: 0 0 6px; color: rgba(243,234,219,0.96); }
.cta-band p{ margin: 0; color: rgba(243,234,219,0.84); font-weight: 560; }
.cta-actions{ display:flex; gap: 12px; flex-wrap: wrap; }

/* -------------------------
   Contact band + footer
------------------------- */
.site-footing{
  background: var(--beige);
  color: var(--forest);
  padding: 22px 0;
  border-top: none !important;
  border-top-width: 0 !important;
}
.site-footing-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footing .left{
  font-weight: 950;
  letter-spacing: 0.2px;
  color: rgba(31,61,43,0.95);
  font-size: 16px;
}
.site-footing .right{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}
.site-footing .right a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,61,43,0.16);
  background: rgba(255,255,255,0.55);
  color: rgba(16,32,24,0.86);
  font-weight: 850;
}
.site-footing .right a:hover{ text-decoration: underline; }

.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(243,234,219,0.84);
  background: var(--forest);
}
.footer-inner{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  gap: 10px;
  text-align: center;
}
.footer-cities{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(243,234,219,0.78);
  line-height: 1.35;
  max-width: 1000px;
}

/* Responsive */
@media (max-width: 1040px){
  .info-cards{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; }
  .site-footing-inner{ justify-content: flex-start; }
}

@media (max-width: 768px){
  .hero-photo{
    min-height: 470px;
    background-position: 20% center;
  }

  .hero-content{
    max-width: 620px;
    margin-bottom: 68px;
  }

  .hero-content h1{
    font-size: clamp(20px, 3.8vw, 26px);
    line-height: 1.08;
    max-width: 18ch;
    font-weight: 650;
  }

  .hero-content p{
    font-size: 11.5px;
    line-height: 1.28;
    max-width: 56ch;
    font-weight: 500;
  }

  #about .section-title{
    margin-bottom: 10px;
  }

  #about .info-cards{
    gap: 12px;
    margin-top: 40px;
  }

  #about .info-cards .panel{
    padding: 16px;
    border-radius: 16px;
    transform: translateX(-180px);
  }

  #about .info-cards .panel h3{
    font-size: 21px;
    line-height: 1.12;
  }

  #about .info-cards .panel p{
    font-size: 15px;
    line-height: 1.42;
  }
}

@media (max-width: 520px){
  .hero-photo{
    min-height: 400px;
    background-position: 12% center;
  }

  .hero-content{
    max-width: 100%;
    margin-bottom: 52px;
  }

  .hero-content h1{
    font-size: 18px;
    line-height: 1.08;
    max-width: 24ch;
    margin-bottom: 7px;
    font-weight: 620;
  }

  .hero-content p{
    font-size: 10px;
    line-height: 1.24;
    max-width: 62ch;
    margin-bottom: 11px;
    font-weight: 500;
  }

  .hero-actions{
    gap: 10px;
  }

  .button{
    padding: 11px 15px;
  }

  .services-grid{
    grid-template-columns: 1fr;
  }

  .services-grid.services-grid-tight{
    gap: 8px;
  }

  .service-tile-top{
    min-height: 160px;
  }

  .service-img,
  .service-tile-top .service-img{
    height: 160px;
    min-height: 160px;
  }

  #about .info-cards{
    gap: 10px;
    margin-top: 34px;
  }

  #about .info-cards .panel{
    padding: 15px 14px;
    border-radius: 15px;
    transform: translateX(-150px);
  }

  #about .info-cards .panel h3{
    font-size: 19px;
  }

  #about .info-cards .panel p{
    font-size: 14px;
    line-height: 1.42;
  }
}

@media (max-width: 360px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .hero-photo{
    background-position: 10% center;
    min-height: 380px;
  }

  .hero-content h1{
    font-size: 17px;
    max-width: 22ch;
    font-weight: 620;
  }

  .hero-content p{
    font-size: 9.5px;
    max-width: 56ch;
    font-weight: 500;
  }
}

body.scroll-locked{
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
/* Hide hero text on mobile but keep buttons */

@media (max-width: 768px){

  .hero-content h1,
  .hero-content p{
    display: none;
  }

  .hero-content{
    margin-bottom: 40px;
  }

  .hero-actions{
    display: flex;
    justify-content: center;
    gap: 12px;
  }

}