:root{
    --forest: #1F3D2B;
    --forest-light: #2C5238;
    --grass: #4A7C3F;
    --orange: #E8622C;
    --orange-dark: #C94F1F;
    --cream: #FAF7F0;
    --cream-dim: #F1ECE0;
    --ink: #2A2A24;
    --ink-soft: #5B5B52;
    --line: #E3DDCC;
    --radius: 10px;
  }

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

  html{ scroll-behavior: smooth; }

  body{
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.5;
  }

  h1, h2, h3{
    font-family: 'Space Grotesk', system-ui, sans-serif;
    color: var(--forest);
    letter-spacing: -0.01em;
  }

  a{ color: inherit; text-decoration: none; }

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

  .wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- Header ---------- */
  header{
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }

  .brand{
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--forest);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .brand-mark{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }

  .brand-mark img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nav-links{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }

  .nav-links a{
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-soft);
    white-space: nowrap;
  }
  .nav-links a:hover{ color: var(--forest); }

  .nav-dropdown{ position: relative; flex-shrink: 0; }
  .nav-dropdown-toggle{
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    white-space: nowrap;
  }
  .nav-dropdown-toggle:hover{ color: var(--forest); }
  .nav-dropdown-toggle::after{ content: "▾"; font-size: 0.7rem; }

  .nav-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(31,61,43,0.12);
    padding: 8px;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 60;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu{
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown-menu a{
    display: block;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--ink);
    white-space: nowrap;
  }
  .nav-dropdown-menu a:hover{ background: var(--cream-dim); color: var(--forest); }

  .nav-right{ display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

  .phone-link{
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }

  .btn-primary{
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232,98,44,0.28);
  }
  .btn-primary:hover{ background: var(--orange-dark); transform: translateY(-1px); }

  .btn-outline{
    background: transparent;
    border: 1.5px solid var(--forest);
    color: var(--forest);
  }
  .btn-outline:hover{ background: var(--forest); color: #fff; }

  /* ---------- Hero ---------- */
  .hero{
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }

  /* Mowed-stripe texture: alternating faint bands, like fresh-cut lawn lines */
  .hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      115deg,
      rgba(74,124,63,0.05) 0px,
      rgba(74,124,63,0.05) 46px,
      rgba(74,124,63,0.10) 46px,
      rgba(74,124,63,0.10) 92px
    );
    pointer-events: none;
  }

  .hero-inner{
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 72px;
    align-items: start;
  }

  .rating-pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 26px;
  }
  .rating-pill .stars{ color: var(--orange); letter-spacing: 1px; }

  .hero h1{
    font-size: clamp(2.3rem, 4.4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 22px;
  }
  .hero h1 .accent{ color: var(--orange); }

  .hero p.lede{
    font-size: 1.08rem;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-bottom: 28px;
  }

  .guarantee{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,98,44,0.1);
    color: var(--orange-dark);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
  }

  .checklist{
    list-style: none;
    margin-bottom: 30px;
  }
  .checklist li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 9px;
    font-size: 0.96rem;
    color: var(--ink);
  }
  .checklist li::before{
    content: "✓";
    color: var(--grass);
    font-weight: 700;
    flex-shrink: 0;
  }

  .hero-cta{ display: flex; gap: 14px; flex-wrap: wrap; }

  /* ---------- Quote card ---------- */
  .quote-card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(31,61,43,0.10);
  }

  .quote-card h2{ font-size: 1.35rem; margin-bottom: 6px; }
  .quote-card .sub{ font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 22px; }

  .field{ margin-bottom: 16px; }
  .field label{
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .field input, .field select, .field textarea{
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.94rem;
    background: var(--cream-dim);
    color: var(--ink);
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    outline: 2px solid var(--grass);
    outline-offset: 1px;
    background: #fff;
  }
  .field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .quote-card .btn{ width: 100%; margin-top: 4px; }

  .form-success{
    display: none;
    background: rgba(74,124,63,0.12);
    color: var(--forest);
    border: 1px solid rgba(74,124,63,0.3);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
  }
  .form-success:not(:empty){ display: none; }
  .form-success[data-fs-active]{ display: block; }

  .form-error{
    display: none;
    background: rgba(200,60,40,0.08);
    color: #a23c26;
    border: 1px solid rgba(200,60,40,0.25);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.88rem;
    margin-bottom: 18px;
  }
  .form-error:not(:empty){ display: none; }
  .form-error[data-fs-active]{ display: block; }

  .field-error{
    display: block;
    color: #a23c26;
    font-size: 0.78rem;
    margin-top: 5px;
  }

  [data-fs-submit-btn]:disabled{
    opacity: 0.6;
    cursor: not-allowed;
  }

  .form-note{
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 12px;
    text-align: center;
  }

  /* ---------- Pain points (dark) ---------- */
  .pain-section{
    background: var(--forest);
    color: #fff;
    padding: 88px 0;
  }
  .pain-section .eyebrow{ color: var(--orange); }
  .pain-section h2{
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    max-width: 22ch;
    margin-bottom: 16px;
  }
  .pain-section .lede{
    color: rgba(255,255,255,0.65);
    max-width: 56ch;
    margin-bottom: 48px;
    font-size: 1.02rem;
  }
  .pain-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pain-card{
    display: flex;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 24px;
  }
  .pain-icon{
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(232,98,44,0.18);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
  }
  .pain-card h3{
    color: var(--orange);
    font-size: 1.05rem;
    margin-bottom: 6px;
  }
  .pain-card p{
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
  }

  /* ---------- Process ---------- */
  .process-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
  }
  .step{ position: relative; padding-left: 4px; }
  .step-num{
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 14px;
  }
  .step h3{ font-size: 1.1rem; margin-bottom: 8px; }
  .step p{ font-size: 0.92rem; color: var(--ink-soft); }

  /* ---------- Testimonials ---------- */
  .testi-head{
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .testi-score{
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
  }
  .testi-stars{ color: var(--orange); letter-spacing: 2px; }
  .testi-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .testi-card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
  }
  .testi-card .testi-stars{ display: block; margin-bottom: 12px; font-size: 0.95rem; }
  .testi-card p.quote{
    font-size: 0.98rem;
    color: var(--ink);
    margin-bottom: 16px;
    font-style: italic;
  }
  .testi-card .who{
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
  }
  .testi-card .who span{
    display: block;
    font-weight: 400;
    color: var(--ink-soft);
    font-size: 0.82rem;
  }

  /* ---------- Testimonial carousel ---------- */
  .testi-carousel-wrap{ position: relative; }

  .testi-carousel{
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }
  .testi-carousel:active{ cursor: grabbing; }
  .testi-carousel::-webkit-scrollbar{ display: none; }

  .testi-slide{
    flex: 0 0 auto;
    width: min(420px, 82vw);
    scroll-snap-align: start;
  }
  .testi-slide .testi-card{ height: 100%; }

  /* ---------- Gallery ---------- */
  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .gallery-item{
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-dim);
    border: 1px solid var(--line);
  }
  .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  .gallery-item:hover img{ transform: scale(1.05); }

  @media (max-width: 880px){
    .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 1240px) and (min-width: 881px){
    .phone-link{ display: none; }
    .nav-links{ gap: 14px; }
  }

  .testi-dots{
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
  }
  .testi-dots .dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .testi-dots .dot.active{
    background: var(--orange);
    transform: scale(1.35);
  }
  .testi-placeholder{
    border: 1.5px dashed var(--line);
    background: transparent;
  }
  .testi-placeholder p.quote{ color: var(--ink-soft); }

  /* ---------- Trust bar ---------- */
  .trust-bar{
    background: var(--cream-dim);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  .trust-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
  }
  .trust-item{
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .trust-item::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grass);
  }

  /* ---------- Service area ---------- */
  .area-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .area-inner-solo{
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .area-inner-solo p{ margin-left: auto; margin-right: auto; }
  .area-inner-solo h2{ margin-left: auto; margin-right: auto; }
  .area-inner-solo .area-list{ text-align: left; }
  .area-list{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .area-list li{
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .area-list li::before{ content: "📍"; font-size: 0.85rem; }

  .area-list li:last-child:nth-child(odd){
    grid-column: 1 / -1;
    max-width: 220px;
    margin: 0 auto;
    justify-content: center;
  }
  .area-map{
    border-radius: 16px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .area-map iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  /* ---------- FAQ ---------- */
  .faq-list{ max-width: 760px; }
  .faq-item{
    border-bottom: 1px solid var(--line);
  }
  .faq-item summary{
    cursor: pointer;
    padding: 20px 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--forest);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
  }
  .faq-item summary::-webkit-details-marker{ display: none; }
  .faq-item summary::after{
    content: "+";
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
  }
  .faq-item[open] summary::after{ transform: rotate(45deg); }
  .faq-item p{
    padding: 0 4px 22px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    max-width: 62ch;
  }

  /* ---------- Why us ---------- */
  .section{ padding: 84px 0; }
  .section-alt{ background: var(--cream-dim); }

  .eyebrow{
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grass);
    margin-bottom: 12px;
  }

  .section h2{
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    max-width: 20ch;
    margin-bottom: 46px;
  }

  .cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
  }

  .card .icon{
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(74,124,63,0.12);
    color: var(--grass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .card h3{ font-size: 1.08rem; margin-bottom: 8px; }
  .card p{ font-size: 0.92rem; color: var(--ink-soft); }

  /* ---------- Services ---------- */
  .services-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .service{
    padding: 22px;
    border-radius: var(--radius);
    background: var(--forest);
    color: #fff;
  }
  .service h3{ color: #fff; font-size: 1rem; margin-bottom: 6px; }
  .service p{ color: rgba(255,255,255,0.75); font-size: 0.86rem; }

  /* ---------- Footer CTA ---------- */
  .cta-band{
    background: var(--forest);
    color: #fff;
    text-align: center;
    padding: 64px 0;
  }
  .cta-band h2{ color: #fff; margin-bottom: 14px; }
  .cta-band p{ color: rgba(255,255,255,0.75); margin-bottom: 28px; }
  .cta-band .btn-outline{ border-color: #fff; color: #fff; }
  .cta-band .btn-outline:hover{ background: #fff; color: var(--forest); }

  footer{
    padding: 36px 0;
    text-align: center;
    font-size: 0.84rem;
    color: var(--ink-soft);
  }

  /* ---------- Mobile menu ---------- */
  .mobile-menu-btn{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .mobile-menu-btn span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .mobile-menu-btn.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .mobile-menu-btn.open span:nth-child(2){ opacity: 0; }
  .mobile-menu-btn.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu{
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px 24px 24px;
    background: #fff;
    border-top: 1px solid var(--line);
    max-height: 75vh;
    overflow-y: auto;
  }
  .mobile-menu.open{ display: flex; }
  .mobile-menu a{
    padding: 12px 4px;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--cream-dim);
  }
  .mobile-menu .phone-link{
    border-bottom: none;
    color: var(--forest);
    font-weight: 600;
  }
  .mobile-menu-group{
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-label{
    padding: 14px 4px 4px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--grass);
  }
  .mobile-menu .btn{
    justify-content: center;
    margin-top: 10px;
  }
  body.menu-open{ overflow: hidden; }

  /* ---------- Responsive ---------- */
  @media (max-width: 880px){
    .hero-inner{ grid-template-columns: 1fr; }
    .nav-links{ display: none; }
    .nav-right .phone-link{ display: none; }
    .mobile-menu-btn{ display: flex; }
    .cards{ grid-template-columns: 1fr; }
    .pain-grid{ grid-template-columns: 1fr; }
    .services-grid{ grid-template-columns: 1fr 1fr; }
    .process-grid{ grid-template-columns: 1fr; gap: 28px; }
    .testi-grid{ grid-template-columns: 1fr; }
    .area-inner{ grid-template-columns: 1fr; }
    .area-list{ grid-template-columns: 1fr; }
    .trust-row{ gap: 18px 28px; }
    .field-row{ grid-template-columns: 1fr; }
    .hero h1{ font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .hero p.lede{ font-size: 1rem; }
    .rating-pill{ font-size: 0.8rem; padding: 7px 14px; }
  }

  @media (max-width: 480px){
    .brand{ font-size: 0.88rem; gap: 8px; }
    .brand-mark{ width: 34px; height: 34px; }
    .nav-right .btn{ padding: 9px 12px; font-size: 0.78rem; }
    .nav-right{ gap: 8px; }
    .wrap.nav{ padding-left: 20px; padding-right: 28px; }
  }