  :root {
    --forest:   #142B07;
    --brand:    #2E6B12;
    --mid:      #3E8A1A;
    --lime:     #6BB83A;
    --yellow:   #F0C228;
    --white:    #FFFFFF;
    --offwhite: #F4F8F0;
    --muted:    #6B7A63;
    --border:   #DCE8D4;
    --shadow:   0 4px 24px rgba(30,70,10,.13);
    --radius:   12px;
    --trans:    .3s cubic-bezier(.4,0,.2,1);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; color: var(--forest); background: var(--white); overflow-x: hidden; }
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  .container { width: min(1180px, 92%); margin-inline: auto; }
  .tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--brand);
    background: rgba(107,184,58,.12); border-radius: 99px; padding: 4px 14px;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1.05rem; letter-spacing: .05em;
    text-transform: uppercase; border: none; cursor: pointer;
    border-radius: 8px; padding: 14px 32px;
    transition: var(--trans); position: relative; overflow: hidden;
  }
  .btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.12); opacity: 0; transition: opacity var(--trans); }
  .btn:hover::after { opacity: 1; }
  .btn-primary { background: var(--brand); color: var(--white); box-shadow: 0 4px 18px rgba(46,107,18,.35); }
  .btn-primary:hover { background: var(--mid); box-shadow: 0 6px 28px rgba(46,107,18,.5); transform: translateY(-2px); }
  .btn-yellow { background: var(--yellow); color: var(--forest); box-shadow: 0 4px 18px rgba(240,194,40,.4); }
  .btn-yellow:hover { background: #f5cc3a; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(240,194,40,.55); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
  .btn-green-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
  .btn-green-outline:hover { background: var(--brand); color: var(--white); }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
  .reveal-left.visible { opacity: 1; transform: none; }
  .reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .65s ease, transform .65s ease; }
  .reveal-right.visible { opacity: 1; transform: none; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0; transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease; background: transparent; backdrop-filter: none; }
  nav.scrolled { background: rgba(255,255,255,.15); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 2px 24px rgba(0,0,0,.12); border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 10px 0; gap: 16px; }
  /* Left phones */
  .nav-phones { display: flex; flex-direction: row; gap: 20px; align-items: center; }
  .nav-phones a { display: flex; align-items: center; gap: 7px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .04em; color: rgba(255,255,255,.9); transition: color var(--trans); }
  nav.scrolled .nav-phones a { color: var(--forest); }
  .nav-phones a:hover { color: var(--lime); }
  nav.scrolled .nav-phones a:hover { color: var(--brand); }
  .nav-phones svg { flex-shrink: 0; color: var(--lime); }
  /* Center logo */
  .nav-logo { display: flex; align-items: center; justify-content: center; }
  .nav-logo img { height: 120px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); transition: height .4s ease, filter .4s ease; }
  nav.scrolled .nav-logo img { height: 80px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.15)); }
  /* Right CTA */
  .nav-right { display: flex; justify-content: flex-end; }
  .nav-cta { font-size: .9rem !important; padding: 11px 24px !important; white-space: nowrap; }

  /* MOBILE CALL BAR */
  .mobile-call-bar { display: none; }

  /* HERO — full bleed photo, text on left */
  #hero { min-height: 88vh; position: relative; overflow: hidden; background: var(--forest); display: flex; flex-direction: column; }
  .hero-photo { position: absolute; inset: 0; width: 100%; z-index: 0; }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
  .hero-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,43,7,.97) 0%, rgba(20,43,7,.82) 32%, rgba(20,43,7,.45) 60%, rgba(20,43,7,.15) 100%); z-index: 1; }
  .hero-service-label { position: absolute; top: 86px; left: 50%; transform: translateX(-50%); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 12px; white-space: nowrap; z-index: 3; }
  .hero-service-label::before, .hero-service-label::after { content: ''; width: 44px; height: 1px; background: rgba(255,255,255,.18); }
  .hero-location { display: inline-flex; align-items: center; gap: 6px; background: var(--lime); color: var(--forest); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; border-radius: 4px; padding: 5px 8px; margin-bottom: 20px; width: fit-content; }
  .hero-left-col { position: relative; z-index: 2; width: 54%; padding: 140px 0 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
  .hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(5rem, 11vw, 12rem) !important; font-weight: 900; line-height: .9; color: #FFFFFF !important; text-transform: uppercase; margin-bottom: 26px; letter-spacing: -.02em; }
  .hero h1 em { font-style: normal; color: #F0C228; display: block; }
  .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 460px; margin-bottom: 28px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-stats-bar { position: relative; z-index: 2; width: 100%; display: flex; gap: 0; align-items: stretch; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding: 0; }
  .hero-stat { padding: 22px 40px 26px 0; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat .sv { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; line-height: 1; color: var(--lime); }
  .hero-stat .sl { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-top: 5px; }
  .hero-stat-sep { width: 1px; background: rgba(255,255,255,.12); margin: 20px 40px 20px 0; flex-shrink: 0; }
  /* sparks */
  .spark { position: absolute; border-radius: 50%; background: var(--lime); animation: sparkle 3s ease-in-out infinite; pointer-events: none; }
  @keyframes sparkle { 0%,100% { transform:scale(1);opacity:.55; } 50% { transform:scale(1.8);opacity:1; } }
  @keyframes pulse { 0%,100% { transform:scale(1);opacity:1; } 50% { transform:scale(1.5);opacity:.6; } }
  .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 2s infinite; display:inline-block; }

  /* MARQUEE TRUST BAR */
  #trust { background: var(--forest); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(107,184,58,.2); padding: 0; overflow: hidden; }
  .marquee-wrap { display: flex; overflow: hidden; position: relative; }
  .marquee-wrap::before, .marquee-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  }
  .marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--forest), transparent); }
  .marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--forest), transparent); }
  .marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee-scroll 22s linear infinite;
  }
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 20px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
    letter-spacing: .08em; color: var(--white); white-space: nowrap; flex-shrink: 0;
  }
  .marquee-item svg { color: var(--lime); flex-shrink: 0; }
  .marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); opacity: .5; flex-shrink: 0; }

  /* SECTION COMMONS */
  .section-eyebrow { margin-bottom: 12px; }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; color: var(--forest); margin-bottom: 18px; }
  .section-title span { color: var(--brand); }
  .section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 560px; }
  .section-header { margin-bottom: 60px; }

  /* FEATURES */
  #features { padding: 100px 0; background: var(--white); }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .feature-card { background: var(--offwhite); border-radius: var(--radius); padding: 36px 30px; border: 1.5px solid var(--border); transition: var(--trans); position: relative; overflow: hidden; }
  .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--lime)); transform: scaleX(0); transform-origin: left; transition: transform var(--trans); }
  .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(107,184,58,.3); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon { width: 54px; height: 54px; border-radius: 12px; background: linear-gradient(135deg, var(--brand), var(--lime)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; box-shadow: 0 4px 14px rgba(46,107,18,.25); }
  .feature-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--forest); margin-bottom: 10px; }
  .feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

  /* WHY US */
  #why { padding: 100px 0; background: var(--forest); position: relative; overflow: hidden; }
  #why::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=80') center/cover no-repeat; opacity: .08; }
  .why-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-image-wrap { position: relative; border-radius: 20px; overflow: hidden; }
  .why-image-wrap img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; }
  .why-badge-float { position: absolute; bottom: 24px; left: 24px; background: var(--yellow); border-radius: 12px; padding: 14px 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; color: var(--forest); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
  .why-badge-float span { display: block; font-size: 1.8rem; line-height: 1; }
  .why-content .tag { background: rgba(107,184,58,.2); color: var(--lime); margin-bottom: 20px; }
  .why-content .section-title { color: var(--white); }
  .why-content .section-title span { color: var(--lime); }
  .why-content .section-sub { color: rgba(255,255,255,.65); max-width: 100%; }
  .why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
  .why-item { display: flex; gap: 14px; align-items: flex-start; }
  .why-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 6px; background: var(--brand); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
  .why-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
  .why-item p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.6; }

  /* STATS */
  #stats { background: linear-gradient(135deg, var(--brand) 0%, var(--forest) 100%); padding: 70px 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
  .stat-num span { color: var(--lime); }
  .stat-label { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

  /* HONEST PRICING */
  #pricing { padding: 100px 0; background: var(--offwhite); }
  .pricing-cta-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    background: var(--white); border-radius: 24px;
    border: 1.5px solid var(--border);
    box-shadow: 0 16px 48px rgba(30,70,10,.08);
    overflow: hidden; margin-top: 56px;
  }
  .pricing-cta-left { padding: 56px 52px; }
  .pricing-cta-left .section-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 20px; }
  .pricing-cta-left p { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
  .price-promise-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
  .price-promise-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--forest); }
  .price-promise-list li .check-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
  .pricing-cta-right {
    background: linear-gradient(160deg, var(--forest) 0%, var(--brand) 100%);
    padding: 56px 48px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    height: 100%;
  }
  .pricing-cta-right h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
  .pricing-cta-right p { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 28px; }
  .pricing-highlight-pills { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .ph-pill { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 12px 16px; }
  .ph-pill .ph-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--white); }
  .ph-pill .ph-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--lime); margin-left: auto; }

  /* GALLERY */
  #gallery { padding: 100px 0; background: var(--white); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px; margin-top: 56px;
  }
  .gallery-item {
    position: relative; border-radius: 16px; overflow: hidden;
    cursor: pointer; background: var(--offwhite);
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover; min-height: 220px;
    transition: transform .5s ease;
    display: block;
  }
  .gallery-item.tall img { min-height: 460px; }
  .gallery-item.wide img { min-height: 280px; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,43,7,.75) 0%, transparent 60%);
    opacity: 0; transition: opacity var(--trans);
    display: flex; align-items: flex-end; padding: 20px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; color: var(--white); letter-spacing: .06em; }
  .gallery-placeholder {
    width: 100%; height: 100%; min-height: 220px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--offwhite); border: 2px dashed var(--border); border-radius: 16px;
    gap: 10px; padding: 24px; text-align: center;
  }
  .gallery-item.tall .gallery-placeholder { min-height: 460px; }
  .gallery-item.wide .gallery-placeholder { min-height: 280px; }
  .gallery-placeholder span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
  .gallery-placeholder .ph-icon { font-size: 2rem; }

  /* TESTIMONIALS */
  #testimonials { padding: 100px 0; background: var(--offwhite); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1.5px solid var(--border); transition: var(--trans); }
  .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-card blockquote { font-size: .95rem; color: var(--forest); line-height: 1.7; font-style: italic; margin-bottom: 22px; border-left: 3px solid var(--lime); padding-left: 14px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--lime)); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
  .author-name { font-weight: 600; font-size: .9rem; color: var(--forest); }
  .author-location { font-size: .78rem; color: var(--muted); }

  /* FAQ */
  #faq { padding: 100px 0; background: var(--white); }
  .faq-layout { display: block; }
  .faq-sidebar .section-title { margin-bottom: 20px; }
  .faq-sidebar p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--trans); }
  .faq-item.open { border-color: rgba(107,184,58,.4); }
  .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 22px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem; color: var(--forest); transition: color var(--trans); }
  .faq-item.open .faq-question { color: var(--brand); }
  .faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--offwhite); display: flex; align-items: center; justify-content: center; transition: background var(--trans), transform var(--trans); }
  .faq-item.open .faq-icon { background: var(--brand); transform: rotate(45deg); }
  .faq-icon svg { transition: stroke var(--trans); stroke: var(--muted); }
  .faq-item.open .faq-icon svg { stroke: white; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer-inner { padding: 0 22px 20px; font-size: .92rem; color: var(--muted); line-height: 1.7; }

  /* FORM */
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
  .form-group input, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--forest); background: var(--offwhite); outline: none; transition: border-color var(--trans), box-shadow var(--trans); }
  .form-group input:focus, .form-group select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(46,107,18,.12); background: var(--white); }
  .form-submit { width: 100%; font-size: 1.05rem; padding: 15px; margin-top: 6px; justify-content: center; }
  .form-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: 10px; }

  /* FINAL CTA */
  #cta { padding: 100px 0; background: var(--offwhite); position: relative; overflow: hidden; }
  #cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(107,184,58,.15) 0%, transparent 70%); }
  .cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
  .cta-text .section-title { margin-bottom: 20px; }
  .cta-text p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
  .cta-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .cta-checklist li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--forest); font-weight: 500; }
  .cta-checklist li::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
  .cta-form-card { background: var(--white); border-radius: 20px; padding: 44px 40px; box-shadow: 0 20px 60px rgba(30,70,10,.1); border: 1.5px solid var(--border); }
  .cta-urgency { display: flex; align-items: center; gap: 8px; background: rgba(240,194,40,.12); border: 1px solid rgba(240,194,40,.3); border-radius: 8px; padding: 10px 14px; margin-bottom: 24px; font-size: .85rem; color: #8A6A00; font-weight: 600; }

  /* FOOTER */
  footer { background: var(--forest); color: rgba(255,255,255,.65); padding: 20px 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
  .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: .88rem; transition: color var(--trans); }
  .footer-col ul li a:hover { color: var(--lime); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: .82rem; }
  .footer-phones { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
  .footer-phones a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--lime); transition: color var(--trans); }
  .footer-phones a:hover { color: var(--white); }

  @media (max-width: 900px) {
    .hero-photo { width: 100%; opacity: .3; }
    .hero-photo::before { background: linear-gradient(to bottom, var(--forest) 0%, rgba(20,43,7,.7) 100%); }
    .hero-left-col { width: 100%; padding-top: 130px; }
    .hero h1 { font-size: clamp(2.8rem, 8vw, 4rem) !important; }
    .hero-stats-bar { gap: 0; flex-wrap: wrap; }
    .hero-stat { padding: 20px 28px 24px 0; }
    .hero-stat-sep { margin: 16px 28px 16px 0; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-phones, .nav-right { display: none; }
    .nav-inner { grid-template-columns: 1fr; justify-items: center; }
    .nav-logo img { height: 70px; }
    nav.scrolled .nav-logo img { height: 56px; }
    body { padding-bottom: 56px; }
    .mobile-call-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--forest); }
    .mobile-call-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .04em; color: var(--white); }
    .mobile-call-bar a:first-child { border-right: 1px solid rgba(255,255,255,.15); }
    .mobile-call-bar svg { flex-shrink: 0; color: var(--lime); }
    .pricing-cta-wrap { grid-template-columns: 1fr; }
    .pricing-cta-right { padding: 40px 36px; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .hero-service-label { display: none; }
  }
  @media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .pricing-cta-left { padding: 36px 28px; }
    .hero-stats-bar { flex-direction: column; gap: 0; }
    .hero-stat-sep { display: none; }
    .hero-stat { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.08); }
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
  }
