  /* ── Self-hosted fonts (latin woff2, font-display swap) ── */
  @font-face { font-family:'Barlow'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/barlow-400.woff2') format('woff2'); }
  @font-face { font-family:'Barlow'; font-style:normal; font-weight:500; font-display:swap; src:url('fonts/barlow-500.woff2') format('woff2'); }
  @font-face { font-family:'Barlow'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/barlow-600.woff2') format('woff2'); }
  @font-face { font-family:'Barlow Condensed'; font-style:normal; font-weight:500; font-display:swap; src:url('fonts/barlow-condensed-500.woff2') format('woff2'); }
  @font-face { font-family:'Barlow Condensed'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/barlow-condensed-600.woff2') format('woff2'); }
  @font-face { font-family:'Barlow Condensed'; font-style:normal; font-weight:700; font-display:swap; src:url('fonts/barlow-condensed-700.woff2') format('woff2'); }
  @font-face { font-family:'Barlow Condensed'; font-style:normal; font-weight:800; font-display:swap; src:url('fonts/barlow-condensed-800.woff2') format('woff2'); }
  @font-face { font-family:'Barlow Condensed'; font-style:normal; font-weight:900; font-display:swap; src:url('fonts/barlow-condensed-900.woff2') format('woff2'); }

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

  :root {
    --green:       #2D6A2D;
    --green-dark:  #1a4a1a;
    --green-deep:  #0f2e0f;
    --green-mid:   #245424;
    --green-light: #3d8c3d;
    --green-bright:#7ecb7e;
    --green-pale:  #e8f4e8;
    --white:       #ffffff;
    --off-white:   #f6f9f5;
    --gray-light:  #eef3ed;
    --text:        #16210f;
    --text-mid:    #4a5547;
    --stripe-a:    #1e5320;
    --stripe-b:    #1a4a1a;
    --shadow:      0 12px 40px rgba(15,46,15,.14);
  }

  html { scroll-behavior: smooth; color-scheme: only light; }
  :root { color-scheme: only light; }

  body {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── Mowing-stripe motif (reusable) ── */
  .stripes {
    background-image: repeating-linear-gradient(
      115deg,
      var(--stripe-a) 0px, var(--stripe-a) 46px,
      var(--stripe-b) 46px, var(--stripe-b) 92px
    );
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
  .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

  /* ── NAV ── */
  nav {
    position: fixed; inset: 0 0 auto 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    height: 74px; padding: 0 clamp(1.1rem, 5vw, 3rem);
    background: rgba(15,46,15,.82);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .3s ease, height .3s ease, box-shadow .3s ease;
  }
  nav.scrolled {
    background: var(--green-deep);
    height: 64px;
    box-shadow: 0 6px 30px rgba(0,0,0,.35);
  }

  .nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; z-index: 210; }
  .nav-logo img { height: 54px; width: auto; display: block; transition: height .3s ease; }
  nav.scrolled .nav-logo img { height: 44px; }

  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,.82); text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
    font-size: .98rem; letter-spacing: .1em; text-transform: uppercase;
    position: relative; transition: color .2s;
  }
  .nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
    background: var(--green-bright); transition: width .25s ease;
  }
  .nav-links a:not(.nav-cta):hover { color: #fff; }
  .nav-links a:not(.nav-cta):hover::after { width: 100%; }

  .nav-cta {
    background: var(--green-bright); color: var(--green-deep) !important;
    padding: .55rem 1.25rem; border-radius: 4px; letter-spacing: .08em;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  }
  .nav-cta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(126,203,126,.35); }

  .hamburger {
    display: none; flex-direction: column; gap: 6px; cursor: pointer;
    background: none; border: none; padding: 6px; z-index: 210;
  }
  .hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; display: block; transition: transform .3s ease, opacity .2s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px clamp(1.1rem,5vw,3rem) 140px; overflow: hidden;
    background:
      linear-gradient(150deg, rgba(15,46,15,.94) 0%, rgba(26,74,26,.86) 45%, rgba(45,106,45,.78) 100%),
      repeating-linear-gradient(115deg,#1e5320 0,#1e5320 46px,#163f17 46px,#163f17 92px);
  }
  /* soft vignette + light beam */
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(120% 90% at 80% 10%, rgba(126,203,126,.18), transparent 55%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(126,203,126,.12); border: 1px solid rgba(126,203,126,.3);
    color: var(--green-bright); font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
    padding: .42rem .95rem; border-radius: 100px; margin-bottom: 1.5rem;
  }
  .hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 0 rgba(126,203,126,.7); animation: pulse 2.4s infinite; }
  @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(126,203,126,.6)} 70%{box-shadow:0 0 0 9px rgba(126,203,126,0)} 100%{box-shadow:0 0 0 0 rgba(126,203,126,0)} }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: clamp(2.9rem, 6vw, 5.2rem); line-height: .96; color: #fff;
    text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 1.3rem;
  }
  .hero h1 span { color: var(--green-bright); }

  .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.74); max-width: 480px; margin-bottom: 2.2rem; line-height: 1.7; }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary, .btn-secondary {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.02rem;
    letter-spacing: .07em; text-transform: uppercase; padding: .9rem 2rem;
    border-radius: 5px; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  }
  .btn-primary { background: var(--green-bright); color: var(--green-deep); box-shadow: 0 10px 26px rgba(126,203,126,.28); }
  .btn-primary:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(126,203,126,.4); }
  .btn-secondary { border: 2px solid rgba(255,255,255,.4); color: #fff; }
  .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-3px); }
  .btn-primary svg, .btn-secondary svg { width: 18px; height: 18px; }

  .hero-stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px; overflow: hidden; margin-top: 2.6rem; max-width: 470px;
  }
  .stat { padding: 1.15rem .8rem; background: rgba(15,46,15,.4); text-align: center; }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.1rem; color: var(--green-bright); line-height: 1; }
  .stat-label { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .12em; margin-top: .35rem; }

  /* hero logo card */
  .hero-visual { display: flex; justify-content: center; }
  .hero-logo-card {
    width: 100%; max-width: 440px; padding: 2.6rem 2.2rem;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px; text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 60px rgba(0,0,0,.3);
  }
  .hero-logo-card img { width: 100%; height: auto; display: block; margin: 0 auto .6rem; }
  .hero-logo-card .tag {
    font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
    letter-spacing: .28em; font-size: .76rem; color: rgba(255,255,255,.55); font-weight: 600;
  }

  /* grass blade silhouette at hero bottom */
  .hero-grass { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; width: 100%; height: auto; display: block; }

  /* ── SECTION BASE ── */
  section { padding: clamp(56px, 8vw, 96px) clamp(1.1rem,5vw,3rem); }
  .section-inner { max-width: 1180px; margin: 0 auto; }

  .section-label {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; letter-spacing: .24em;
    text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: .7rem;
  }
  .section-label::before { content: ''; width: 26px; height: 3px; background: var(--green); border-radius: 3px; }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: clamp(2.1rem, 4vw, 3rem); text-transform: uppercase; line-height: 1.04;
    color: var(--text); margin-bottom: 1rem;
  }
  .section-title span { color: var(--green); }
  .section-intro { font-size: 1.04rem; color: var(--text-mid); max-width: 560px; line-height: 1.7; margin-bottom: 2.8rem; }

  /* ── TRUST STRIP ── */
  .trust { background: var(--green-deep); padding: 0; }
  .trust-inner {
    max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr);
  }
  .trust-item {
    display: flex; align-items: center; gap: .85rem; padding: 1.6rem clamp(1rem,2.5vw,1.8rem);
    border-right: 1px solid rgba(255,255,255,.07);
  }
  .trust-item:last-child { border-right: none; }
  .trust-item svg { width: 26px; height: 26px; stroke: var(--green-bright); fill: none; stroke-width: 1.9; flex-shrink: 0; }
  .trust-item b { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 1rem; color: #fff; line-height: 1.15; }
  .trust-item span { font-size: .8rem; color: rgba(255,255,255,.55); }

  /* ── SERVICES ── */
  .services { background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.1rem; }

  .service-card {
    background: #fff; border: 1px solid #e2ece1; border-radius: 12px; padding: 1.8rem;
    transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
    position: relative; overflow: hidden;
  }
  .service-card::after { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--green); transform:scaleY(0); transform-origin:top; transition:transform .3s ease; }
  .service-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: #cfe3cd; }
  .service-card:hover::after { transform: scaleY(1); }

  .service-icon { width: 52px; height: 52px; background: var(--green-pale); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
  .service-icon svg { width: 27px; height: 27px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .service-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.22rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: .4rem; }
  .service-desc { font-size: .92rem; color: var(--text-mid); line-height: 1.6; }
  .soon { display:inline-block; margin-top:.7rem; font-family:'Barlow Condensed',sans-serif; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700; color:var(--green-light); background:var(--green-pale); padding:.2rem .6rem; border-radius:100px; }

  /* ── STRIPE DIVIDER ── */
  .stripe-divider {
    height: clamp(120px, 18vw, 200px); position: relative; display: flex; align-items: center; justify-content: center;
    background:
      linear-gradient(120deg, rgba(15,46,15,.86), rgba(45,106,45,.7)),
      repeating-linear-gradient(115deg,#1e5320 0,#1e5320 46px,#163f17 46px,#163f17 92px);
    text-align: center;
  }
  .stripe-divider p {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
    color: #fff; font-size: clamp(1.3rem, 3vw, 2rem); letter-spacing: .04em; line-height: 1.2; padding: 0 1.2rem;
  }
  .stripe-divider p span { color: var(--green-bright); }

  /* ── PRICING ── */
  .pricing { background: #fff; }
  .pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .pricing-card {
    background:
      linear-gradient(150deg, rgba(15,46,15,.95), rgba(45,106,45,.85)),
      repeating-linear-gradient(115deg,#1e5320 0,#1e5320 46px,#163f17 46px,#163f17 92px);
    border-radius: 16px; padding: 2.8rem; color: #fff; box-shadow: var(--shadow);
  }
  .price-from { font-family:'Barlow Condensed',sans-serif; text-transform:uppercase; letter-spacing:.2em; font-size:.8rem; color:var(--green-bright); margin-bottom:.4rem; }
  .price-range { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem,7vw,4.4rem); line-height: 1; color: #fff; }
  .price-range small { font-size: 1.5rem; color: rgba(255,255,255,.6); font-weight: 700; }
  .price-sub { font-size: .92rem; color: rgba(255,255,255,.7); margin-top: .8rem; line-height: 1.6; }
  .price-list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
  .price-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; color: rgba(255,255,255,.85); }
  .price-list svg { width: 18px; height: 18px; stroke: var(--green-bright); fill: none; stroke-width: 2.4; flex-shrink: 0; margin-top: 3px; }

  .quote-steps { display: flex; flex-direction: column; gap: 1.3rem; }
  .qstep { display: flex; gap: 1.1rem; align-items: flex-start; }
  .qstep-num { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: var(--green-pale); color: var(--green); font-family:'Barlow Condensed',sans-serif; font-weight: 900; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; }
  .qstep h4 { font-family:'Barlow Condensed',sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .03em; margin-bottom: .15rem; }
  .qstep p { font-size: .92rem; color: var(--text-mid); line-height: 1.55; }

  /* ── LIVE SEASON BANNER ── */
  .season-banner {
    display: flex; align-items: center; justify-content: center; gap: .9rem; flex-wrap: wrap;
    background: var(--green-pale); border: 1px solid #c8e6c8; border-radius: 12px;
    padding: 1rem 1.4rem; margin-bottom: 2.4rem; text-align: center;
  }
  .season-banner .pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-light); box-shadow: 0 0 0 0 rgba(61,140,61,.6); animation: pulse 2.4s infinite; flex-shrink: 0; }
  .season-banner p { font-family:'Barlow Condensed',sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; color: var(--green-dark); }
  .season-banner b { color: var(--green); }

  /* ── TIER TABLE ── */
  .tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.6rem; }
  .tier {
    background: #fff; border: 1px solid #e2ece1; border-radius: 14px; padding: 1.6rem 1.3rem;
    display: flex; flex-direction: column; text-align: center; position: relative; overflow: hidden;
    transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
  }
  .tier:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: #cfe3cd; }
  .tier.featured { border-color: var(--green); box-shadow: 0 14px 38px rgba(45,106,45,.16); }
  .tier-flag {
    position: absolute; top: 0; left: 0; right: 0; background: var(--green); color: #fff;
    font-family:'Barlow Condensed',sans-serif; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
    font-weight: 700; padding: .28rem; }
  .tier.featured .tier-head { margin-top: 1.1rem; }
  .tier-name { font-family:'Barlow Condensed',sans-serif; font-weight: 800; font-size: 1.35rem; text-transform: uppercase; color: var(--green-dark); letter-spacing: .02em; }
  .tier-size { font-size: .78rem; color: var(--text-mid); margin-top: .15rem; min-height: 2.1em; line-height: 1.3; }
  .tier-price { font-family:'Barlow Condensed',sans-serif; font-weight: 900; font-size: 2.6rem; color: var(--green); line-height: 1; margin: .9rem 0 .1rem; }
  .tier-price small { font-size: .9rem; color: var(--text-mid); font-weight: 600; display: block; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
  .tier-price.custom { font-size: 1.9rem; }
  .tier-season {
    margin-top: auto; padding-top: 1rem; border-top: 1px dashed #d4e2d2;
  }
  .tier-season .ts-amt { font-family:'Barlow Condensed',sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--green-dark); line-height: 1; }
  .tier-season .ts-label { font-size: .72rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; line-height: 1.35; }
  .tier-season .ts-custom { font-family:'Barlow Condensed',sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--green); text-transform: uppercase; letter-spacing: .03em; }

  .price-meta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.6rem 0 0;
  }
  .price-note {
    background: var(--green-pale); border: 1px solid #c8e6c8; border-radius: 12px; padding: 1.2rem 1.4rem;
  }
  .price-note h4 { font-family:'Barlow Condensed',sans-serif; font-weight: 800; text-transform: uppercase; font-size: 1rem; letter-spacing: .03em; color: var(--green-dark); margin-bottom: .35rem; display: flex; align-items: center; gap: .5rem; }
  .price-note h4 svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
  .price-note p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
  .price-fine { font-size: .8rem; color: var(--text-mid); line-height: 1.6; margin-top: 1.4rem; opacity: .85; }
  .quote-steps { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2.6rem; }

  /* ── SERVICE AREA ── */
  .area { background: var(--gray-light); }
  .area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .area-visual {
    background:
      linear-gradient(150deg, rgba(15,46,15,.95), rgba(45,106,45,.82)),
      repeating-linear-gradient(115deg,#1e5320 0,#1e5320 46px,#163f17 46px,#163f17 92px);
    border-radius: 16px; padding: 2.4rem; color: #fff; box-shadow: var(--shadow);
  }
  .area-tag { display:inline-block; background: rgba(126,203,126,.16); border:1px solid rgba(126,203,126,.34); color:var(--green-bright); font-family:'Barlow Condensed',sans-serif; font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; padding:.32rem .8rem; border-radius:100px; margin-bottom:1.2rem; }
  .area-city { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:2.2rem; text-transform:uppercase; line-height:1.08; margin-bottom:.7rem; }
  .area-city span { color: var(--green-bright); }
  .area-note { font-size:.92rem; color:rgba(255,255,255,.68); line-height:1.65; }
  .area-checklist { list-style:none; display:flex; flex-direction:column; gap:.9rem; }
  .area-checklist li { display:flex; gap:.7rem; align-items:flex-start; font-size:.98rem; color:var(--text-mid); line-height:1.5; }
  .check { width:22px; height:22px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
  .check svg { width:11px; height:11px; stroke:var(--green); fill:none; stroke-width:3; stroke-linecap:round; stroke-linejoin:round; }
  .area-checklist b { color: var(--text); }

  /* ── ABOUT ── */
  .about { background: #fff; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
  .brothers { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .bro-card {
    background: var(--off-white); border: 1px solid #e2ece1; border-radius: 14px; padding: 1.5rem;
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .bro-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
  .bro-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--green); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:1.4rem; margin-bottom: 1rem; }
  .bro-role { font-family:'Barlow Condensed',sans-serif; font-size:.72rem; color:var(--green-light); text-transform:uppercase; letter-spacing:.12em; font-weight:700; }
  .bro-name { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1.3rem; text-transform:uppercase; color:var(--green-dark); letter-spacing:.02em; margin:.1rem 0 .5rem; }
  .bro-desc { font-size:.86rem; color:var(--text-mid); line-height:1.55; }
  .about-promise { background: var(--green-pale); border:1px solid #c8e6c8; border-radius:14px; padding:1.6rem 1.8rem; margin-top:1.1rem; }
  .about-promise p { font-size:.96rem; color:var(--green-dark); line-height:1.7; font-style:italic; }
  .about-promise strong { font-style: normal; }

  /* ── CONTACT ── */
  .contact {
    position: relative;
    background:
      linear-gradient(150deg, rgba(15,46,15,.96), rgba(36,84,36,.9)),
      repeating-linear-gradient(115deg,#1e5320 0,#1e5320 46px,#163f17 46px,#163f17 92px);
  }
  .contact .section-label { color: var(--green-bright); }
  .contact .section-label::before { background: var(--green-bright); }
  .contact .section-title { color: #fff; }
  .contact .section-title span { color: var(--green-bright); }
  .contact .section-intro { color: rgba(255,255,255,.66); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 3rem; align-items: start; }
  .contact-info { color: rgba(255,255,255,.8); }
  .contact-detail { display:flex; gap:.8rem; align-items:flex-start; margin-bottom:1.3rem; }
  .contact-detail svg { width:20px; height:20px; stroke:var(--green-bright); fill:none; stroke-width:1.9; flex-shrink:0; margin-top:2px; }
  .contact-detail b { display:block; font-family:'Barlow Condensed',sans-serif; text-transform:uppercase; letter-spacing:.06em; color:#fff; font-size:.95rem; }
  .contact-detail span { font-size:.9rem; color:rgba(255,255,255,.6); }

  .form-wrap { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 2rem clamp(1.2rem,3vw,2.2rem); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
  label { font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.7); }
  input, textarea {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 6px;
    padding: .72rem .9rem; color: #fff; font-family:'Barlow',sans-serif; font-size: .95rem; width: 100%; outline: none;
    transition: border-color .2s, background .2s;
  }
  input::placeholder, textarea::placeholder { color: rgba(255,255,255,.32); }
  input:focus, textarea:focus { border-color: var(--green-bright); background: rgba(255,255,255,.12); }
  textarea { resize: vertical; min-height: 110px; }
  .form-note { font-size:.76rem; color:rgba(255,255,255,.4); margin-bottom:1.1rem; line-height:1.5; }
  .btn-submit {
    width: 100%; background: var(--green-bright); color: var(--green-deep);
    font-family:'Barlow Condensed',sans-serif; font-weight: 800; font-size: 1.05rem;
    letter-spacing: .07em; text-transform: uppercase; padding: .9rem 2rem; border-radius: 6px;
    border: none; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn-submit:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(126,203,126,.3); }
  .btn-submit:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }

  .form-success { display: none; text-align: center; padding: 1.5rem .5rem; }
  .form-success svg { width: 46px; height: 46px; stroke: var(--green-bright); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto .8rem; display: block; }
  .form-success h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 1.4rem; color: #fff; margin-bottom: .5rem; }
  .form-success p { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 380px; margin: 0 auto; }

  /* ── SOCIAL ── */
  .social-bar { background: var(--off-white); padding: 48px clamp(1.1rem,5vw,3rem); }
  .social-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.3rem; }
  .social-text { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:1.25rem; text-transform:uppercase; letter-spacing:.05em; }
  .social-text span { color: var(--green); }
  .social-text small { display:block; font-family:'Barlow',sans-serif; font-weight:400; text-transform:none; letter-spacing:0; font-size:.88rem; color:var(--text-mid); margin-top:.2rem; }
  .social-links { display: flex; gap: .7rem; flex-wrap: wrap; }
  .social-link {
    display:flex; align-items:center; gap:.5rem; padding:.6rem 1.1rem; border:1.5px solid #d4e2d2; border-radius:7px;
    text-decoration:none; font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:.86rem; letter-spacing:.05em;
    text-transform:uppercase; color:var(--text-mid); background:#fff; transition:all .2s ease;
  }
  .social-link:hover { border-color:var(--green); color:var(--green); background:var(--green-pale); transform:translateY(-2px); }
  .social-link svg { width:16px; height:16px; fill:currentColor; flex-shrink:0; }

  /* ── FOOTER ── */
  footer { background: var(--green-deep); color: rgba(255,255,255,.55); padding: 48px clamp(1.1rem,5vw,3rem) 26px; }
  .footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.3rem; }
  .footer-brand img { height: 46px; width: auto; max-width: 100%; margin-bottom: 1rem; display: block; }
  .footer-brand p { font-size: .88rem; line-height: 1.65; max-width: 300px; }
  .footer-col h5 { font-family:'Barlow Condensed',sans-serif; text-transform:uppercase; letter-spacing:.12em; color:#fff; font-size:.9rem; margin-bottom:1rem; font-weight:700; }
  .footer-col a, .footer-col p { display:block; color:rgba(255,255,255,.55); text-decoration:none; font-size:.9rem; margin-bottom:.55rem; transition:color .2s; }
  .footer-col a:hover { color: var(--green-bright); }
  .footer-copy { max-width:1180px; margin:0 auto; font-size:.74rem; text-align:center; color:rgba(255,255,255,.3); }
  .footer-copy span { color: rgba(255,255,255,.5); }
  .footer-copy a { color:#fff; text-decoration:underline; text-underline-offset:2px; }
  .footer-copy a:hover { color: var(--green-bright); }

  /* ── MOBILE ── */
  @media (max-width: 860px) {
    .hero-inner, .pricing-wrap, .area-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 2.2rem; }
    .trust-inner { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2) { border-right: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .tiers { grid-template-columns: 1fr 1fr; }
    .price-meta { grid-template-columns: 1fr; }
  }

  @media (max-width: 760px) {
    .nav-links {
      position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
      gap: 0; background: var(--green-deep); padding: .5rem 0 1.2rem;
      border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 18px 40px rgba(0,0,0,.4);
      transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .28s ease, opacity .28s ease;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 1rem clamp(1.1rem,5vw,3rem); font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.05); }
    .nav-links a:not(.nav-cta)::after { display: none; }
    .nav-links .nav-cta { margin: 1rem clamp(1.1rem,5vw,3rem) 0; text-align: center; justify-content: center; padding: .9rem; border-radius: 6px; }
    .hamburger { display: flex; }
    .hero { padding-top: 110px; }
    .hero-visual { order: 0; margin-top: .5rem; }
    .hero-logo-card { max-width: 360px; padding: 2rem 1.6rem; }
    .ba-wrap { max-width: 340px; }
    .hero h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); }
    .form-row { grid-template-columns: 1fr; }
    .social-inner { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .trust-inner { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
    .trust-item:last-child { border-bottom: none; }
    .brothers { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-stats { max-width: 100%; }
    .tiers { grid-template-columns: 1fr; }
  }

  /* ── SERVICE CARD PHOTOS ── */
  .service-photo {
    margin: -1.8rem -1.8rem 1.3rem; height: 158px; overflow: hidden;
    border-bottom: 3px solid var(--green); background: var(--green-pale);
  }
  .service-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .4s ease;
  }
  .service-card:hover .service-photo img { transform: scale(1.06); }

  /* ── SINGLE OWNER CARD ── */
  .brothers.solo { grid-template-columns: 1fr; }
  .brothers.solo .bro-card { padding: 1.8rem 2rem; }
  .brothers.solo .bro-card .bro-desc { font-size: .92rem; }

  /* ── WEATHER PROMISE BAND ── */
  .weather-promise { background: var(--green-pale); padding: clamp(40px,6vw,64px) clamp(1.1rem,5vw,3rem); }
  .wp-inner {
    max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 1.6rem;
    background: #fff; border: 1px solid #c8e6c8; border-left: 5px solid var(--green);
    border-radius: 14px; padding: 1.8rem 2rem; box-shadow: var(--shadow);
  }
  .wp-icon { flex-shrink: 0; width: 58px; height: 58px; border-radius: 12px; background: var(--green-pale);
    display: flex; align-items: center; justify-content: center; }
  .wp-icon svg { width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
  .wp-text h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase;
    letter-spacing: .03em; font-size: 1.35rem; color: var(--green-dark); margin-bottom: .35rem; line-height: 1.1; }
  .wp-text p { font-size: .95rem; color: var(--text-mid); line-height: 1.6; }
  .wp-text b { color: var(--text); }
  @media (max-width: 600px) {
    .wp-inner { flex-direction: column; align-items: flex-start; text-align: left; gap: 1.1rem; }
  }

  /* ── SOCIAL: COMING SOON STATE ── */
  .social-link.soon-link { cursor: default; opacity: .6; }
  .social-link.soon-link:hover { border-color: #d4e2d2; color: var(--text-mid); background: #fff; transform: none; }
  .social-link .soon-tag {
    font-size: .62rem; letter-spacing: .1em; background: var(--green-pale); color: var(--green-light);
    padding: .1rem .45rem; border-radius: 100px; margin-left: .1rem;
  }
  /* ── BEFORE/AFTER SLIDER ── */
  .ba-wrap { width: 100%; max-width: 440px; margin: 0 auto; }
  .ba {
    position: relative; width: 100%; aspect-ratio: 1000 / 1049;
    border-radius: 18px; overflow: hidden; user-select: none; touch-action: pan-y;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 60px rgba(0,0,0,.34);
    -webkit-tap-highlight-color: transparent;
  }
  .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; }
  .ba-beforewrap { position: absolute; top: 0; left: 0; bottom: 0; width: var(--pos); overflow: hidden; z-index: 1; }
  .ba-before { inset: 0 auto auto 0; width: auto; height: 100%; max-width: none; aspect-ratio: 1000 / 1049; object-fit: cover; }
  .ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.12); pointer-events: none; z-index: 2; }
  .ba-handle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 44px; height: 44px; border-radius: 50%; background: #fff;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.32);
  }
  .ba-handle svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
  .ba-tag {
    position: absolute; bottom: 14px; z-index: 3; pointer-events: none;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; font-size: .68rem; color: #fff;
    background: rgba(15,46,15,.82); padding: .32rem .7rem; border-radius: 100px;
    transition: opacity .18s ease;
  }
  .ba-tag.is-hidden { opacity: 0; }
  .ba-tag-before { left: 14px; }
  .ba-tag-after { right: 14px; }
  .ba { cursor: ew-resize; }
  .ba:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; }
  .ba-caption {
    text-align: center; margin-top: .9rem;
    font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
    letter-spacing: .12em; font-size: .76rem; color: rgba(255,255,255,.6); font-weight: 600;
  }
  .ba-caption span { color: var(--green-bright); }
  .ba::selection, .ba ::selection, .ba-img::selection { background: transparent; }
  .ba::-moz-selection, .ba *::-moz-selection { background: transparent; }

  /* ════════════════ INNER PAGES ════════════════ */
  .nav-links a.active { color: var(--green-bright); }
  .page-hero {
    position: relative; color:#fff; overflow: hidden;
    padding: calc(74px + clamp(46px,7vw,78px)) clamp(1.1rem,5vw,3rem) clamp(46px,7vw,78px);
    background:
      linear-gradient(150deg, rgba(15,46,15,.96), rgba(36,84,36,.9)),
      repeating-linear-gradient(115deg,#1e5320 0,#1e5320 46px,#163f17 46px,#163f17 92px);
  }
  .page-hero .section-inner { position: relative; z-index: 2; }
  .page-hero .section-label { color: var(--green-bright); }
  .page-hero .section-label::before { background: var(--green-bright); }
  .page-hero h1 { font-family:'Barlow Condensed',sans-serif; font-weight:900; text-transform:uppercase; font-size:clamp(2.3rem,6vw,3.7rem); line-height:1.02; margin-bottom:.85rem; }
  .page-hero h1 span { color: var(--green-bright); }
  .page-hero p { color: rgba(255,255,255,.74); max-width:640px; font-size:1.06rem; line-height:1.65; }

  .narrow { max-width: 820px; margin: 0 auto; }
  .prose p { color: var(--text-mid); line-height:1.75; margin-bottom:1.05rem; font-size:1.03rem; }
  .prose .lead { font-size:1.16rem; color: var(--text); }
  .prose h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; text-transform:uppercase; letter-spacing:.02em; font-size:1.5rem; color:var(--text); margin:2.1rem 0 .7rem; }
  .prose strong { color: var(--text); }
  .prose ul { list-style:none; padding:0; margin:0 0 1.1rem; }
  .prose ul li { position:relative; padding-left:1.6rem; margin-bottom:.6rem; color:var(--text-mid); line-height:1.65; }
  .prose ul li::before { content:''; position:absolute; left:0; top:.5em; width:8px; height:8px; background:var(--green); border-radius:2px; transform:rotate(45deg); }

  .svc-row { display:grid; grid-template-columns:104px 1fr; gap:1.5rem; align-items:start; padding:1.7rem 0; border-bottom:1px solid var(--gray-light); }
  .svc-row:last-child { border-bottom:none; }
  .svc-ico { width:104px; height:104px; border-radius:16px; overflow:hidden; background:var(--green-pale); flex-shrink:0; }
  .svc-ico img { width:100%; height:100%; object-fit:cover; display:block; }
  .svc-row h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; text-transform:uppercase; font-size:1.4rem; color:var(--text); margin-bottom:.4rem; }
  .svc-row p { color:var(--text-mid); line-height:1.65; }
  .svc-pill { display:inline-block; margin-top:.6rem; font-family:'Barlow Condensed',sans-serif; text-transform:uppercase; letter-spacing:.08em; font-size:.66rem; font-weight:700; color:var(--green); background:var(--green-pale); padding:.28rem .65rem; border-radius:100px; }
  @media (max-width:560px){ .svc-row{ grid-template-columns:72px 1fr; gap:1rem; } .svc-ico{ width:72px;height:72px; } }

  .faq { max-width:820px; margin:0 auto; }
  .faq-item { border-bottom:1px solid var(--gray-light); }
  .faq-q { width:100%; text-align:left; background:none; border:none; cursor:pointer; padding:1.3rem 2.6rem 1.3rem 0; position:relative; font-family:'Barlow Condensed',sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.02em; font-size:1.14rem; color:var(--text); }
  .faq-q::after { content:'+'; position:absolute; right:2px; top:50%; transform:translateY(-50%); font-size:1.6rem; line-height:1; color:var(--green); transition:transform .2s; }
  .faq-item.open .faq-q::after { transform:translateY(-50%) rotate(45deg); }
  .faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
  .faq-a p { color:var(--text-mid); line-height:1.7; padding:0 0 1.3rem; max-width:700px; }
  .faq-item.open .faq-a { max-height:520px; }

  .cta-band { background:var(--green-pale); text-align:center; }
  .cta-band h2 { font-family:'Barlow Condensed',sans-serif; font-weight:900; text-transform:uppercase; font-size:clamp(1.8rem,4vw,2.6rem); color:var(--green-dark); margin-bottom:.6rem; line-height:1.05; }
  .cta-band p { color:var(--text-mid); max-width:540px; margin:0 auto 1.6rem; line-height:1.6; }
  .cta-band .btn-primary { background:var(--green); color:#fff; display:inline-flex; box-shadow:0 10px 26px rgba(45,106,45,.26); }
  .cta-band .btn-primary:hover { background:var(--green-dark); transform:translateY(-3px); }

  .info-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.1rem; }
  .info-card { background:#fff; border:1px solid var(--gray-light); border-radius:14px; padding:1.6rem 1.7rem; box-shadow:var(--shadow); }
  .info-card h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; text-transform:uppercase; font-size:1.2rem; color:var(--text); margin-bottom:.5rem; }
  .info-card p { color:var(--text-mid); line-height:1.6; font-size:.96rem; }

  .form-group select {
    background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:6px;
    padding:.72rem .9rem; color:#fff; font-family:'Barlow',sans-serif; font-size:.95rem; width:100%; outline:none;
    transition:border-color .2s, background .2s; appearance:none; -webkit-appearance:none; cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right .9rem center;
  }
  .form-group select:focus { border-color:var(--green-bright); background-color:rgba(255,255,255,.12); }
  .form-group select option { color:#16210f; }
  .help-label { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:.82rem; text-transform:uppercase; letter-spacing:.1em; color:#fff; margin-bottom:.7rem; display:block; }
  .help-options { display:grid; grid-template-columns:1fr 1fr; gap:.6rem; margin-bottom:1.3rem; }
  .help-opt { position:relative; }
  .help-opt input { position:absolute; opacity:0; inset:0; width:100%; height:100%; cursor:pointer; margin:0; }
  .help-opt label { display:block; text-align:center; cursor:pointer; padding:.8rem; border:1.5px solid rgba(255,255,255,.28); border-radius:10px; background:rgba(255,255,255,.04); font-family:'Barlow Condensed',sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.04em; font-size:.86rem; color:#fff; line-height:1.15; transition:all .15s; }
  .help-opt label:hover { border-color:var(--green-bright); background:rgba(126,203,126,.12); }
  .help-opt input:checked + label { border-color:var(--green-bright); background:rgba(126,203,126,.2); box-shadow:inset 0 0 0 1px var(--green-bright); }
  .help-opt input:focus-visible + label { outline:2px solid var(--green-bright); outline-offset:2px; }
  @media (max-width:540px){ .help-options{ grid-template-columns:1fr; } }

  /* ════════════════ 2026 PREMIUM REFRESH ════════════════ */

  /* ── Inner page-hero depth (light beam, stripe sheen, bottom vignette) ── */
  .page-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      radial-gradient(120% 95% at 85% 0%, rgba(126,203,126,.18), transparent 55%),
      linear-gradient(to bottom, transparent 58%, rgba(15,46,15,.4));
  }
  .page-hero::after {
    content: ''; position: absolute; inset: -30% -10%; z-index: 1; pointer-events: none;
    background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.05) 50%, transparent 58%);
    background-size: 250% 100%; animation: heroSheen 9s linear infinite;
  }

  /* ── (2) stripe light-sweep ── */
  .hero::after {
    content: ''; position: absolute; inset: -20% -10%; z-index: 1; pointer-events: none;
    background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.05) 50%, transparent 58%);
    background-size: 250% 100%; animation: heroSheen 9s linear infinite;
  }
  @keyframes heroSheen { 0% { background-position: 130% 0; } 100% { background-position: -30% 0; } }

  /* shimmering edge on the bright primary CTA (adapted Magic-MCP idea, vanilla) */
  .btn-primary { position: relative; overflow: hidden; }
  .btn-primary::before {
    content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; z-index: 1;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-20deg); animation: ctaShine 4.5s ease-in-out infinite;
  }
  .btn-primary > * { position: relative; z-index: 2; }
  @keyframes ctaShine { 0%, 18% { left: -75%; } 36%, 100% { left: 130%; } }

  /* ── (4) Richer cards ── */
  .service-card, .tier, .info-card, .bro-card, .pkg-card {
    box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 2px 8px rgba(15,46,15,.05);
  }
  .service-card:hover, .tier:hover, .info-card:hover, .bro-card:hover {
    box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 22px 50px rgba(15,46,15,.18);
    transform: translateY(-6px); border-color: #cfe3cd;
  }
  .info-card { transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease; }

  /* ── (5/6) Size toggle + Basic/Standard/Premium packages ── */
  .pkg-toggle-label {
    text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--text-mid); margin-bottom: .9rem;
  }
  .pkg-toggle { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin: 0 auto 2.2rem; }
  .pkg-toggle button {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    font-size: .95rem; color: var(--green-dark); background: #fff; border: 1.5px solid #d4e2d2;
    padding: .55rem 1.15rem; border-radius: 100px; cursor: pointer; transition: all .18s ease; line-height: 1.05; text-align: center;
  }
  .pkg-toggle button small { display: block; font-family: 'Barlow', sans-serif; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .66rem; color: var(--text-mid); margin-top: .12rem; }
  .pkg-toggle button:hover { border-color: var(--green); }
  .pkg-toggle button.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(45,106,45,.25); }
  .pkg-toggle button.active small { color: rgba(255,255,255,.78); }
  .pkg-toggle button:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 2px; }

  .pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: stretch; }
  .pkg-card {
    position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid #e2ece1;
    border-radius: 16px; padding: 1.9rem 1.6rem 1.7rem; overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }
  .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(15,46,15,.18); border-color: #cfe3cd; }
  .pkg-card.featured {
    border-color: transparent; color: #fff;
    background:
      linear-gradient(155deg, rgba(15,46,15,.96), rgba(45,106,45,.9)),
      repeating-linear-gradient(115deg,#1e5320 0,#1e5320 46px,#163f17 46px,#163f17 92px);
    box-shadow: 0 22px 54px rgba(15,46,15,.3);
  }
  .pkg-flag {
    position: absolute; top: 0; left: 0; right: 0; text-align: center; background: var(--green-bright); color: var(--green-deep);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; padding: .34rem;
  }
  .pkg-card.featured .pkg-head { margin-top: 1.05rem; }
  .pkg-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.55rem; text-transform: uppercase; letter-spacing: .02em; color: var(--green-dark); line-height: 1; }
  .pkg-card.featured .pkg-name { color: #fff; }
  .pkg-tagline { font-size: .82rem; color: var(--text-mid); margin-top: .25rem; min-height: 2.5em; line-height: 1.32; }
  .pkg-card.featured .pkg-tagline { color: rgba(255,255,255,.74); }
  .pkg-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.8rem; line-height: 1; color: var(--green); margin: 1.05rem 0 .1rem; }
  .pkg-card.featured .pkg-price { color: var(--green-bright); }
  .pkg-price .cur { font-size: 1.3rem; vertical-align: .55rem; font-weight: 800; }
  .pkg-price.is-custom { font-size: 2rem; }
  .pkg-per { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mid); font-weight: 600; }
  .pkg-card.featured .pkg-per { color: rgba(255,255,255,.6); }
  .pkg-season { margin-top: .65rem; padding-top: .65rem; border-top: 1px dashed #d4e2d2; font-size: .85rem; color: var(--text-mid); line-height: 1.35; }
  .pkg-season b { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.45rem; color: var(--green-dark); line-height: 1; margin-bottom: .12rem; }
  .pkg-card.featured .pkg-season { border-top-color: rgba(255,255,255,.18); color: rgba(255,255,255,.78); }
  .pkg-card.featured .pkg-season b { color: #fff; }
  .pkg-season.is-hidden { display: none; }
  .pkg-uplift { font-size: .78rem; color: var(--green-light); font-weight: 700; margin-top: .4rem; min-height: 1.1em; }
  .pkg-card.featured .pkg-uplift { color: var(--green-bright); }
  .pkg-list { list-style: none; margin: 1.25rem 0 1.45rem; display: flex; flex-direction: column; gap: .58rem; }
  .pkg-list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; color: var(--text-mid); line-height: 1.4; }
  .pkg-card.featured .pkg-list li { color: rgba(255,255,255,.88); }
  .pkg-list svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
  .pkg-card.featured .pkg-list svg { stroke: var(--green-bright); }
  .pkg-list li.muted { color: #a6b2a5; }
  .pkg-list li.muted svg { stroke: #c6d1c5; }
  .pkg-cta {
    margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem;
    padding: .82rem 1rem; border-radius: 7px; text-decoration: none; transition: all .18s ease;
    background: var(--green-pale); color: var(--green-dark);
  }
  .pkg-cta:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
  .pkg-card.featured .pkg-cta { background: var(--green-bright); color: var(--green-deep); }
  .pkg-card.featured .pkg-cta:hover { background: #fff; }
  .pkg-foot { text-align: center; font-size: .82rem; color: var(--text-mid); margin-top: 1.5rem; line-height: 1.6; }
  .pkg-foot b { color: var(--green-dark); }
  @media (max-width: 860px) { .pkg-grid { grid-template-columns: 1fr; } }

  /* ── (7/8/9) Form groups, chips, conditional fields ── */
  .form-section { margin-bottom: 1.5rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .form-section:last-of-type { border-bottom: none; padding-bottom: 0; }
  .fs-head { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--green-bright); margin: 0 0 .9rem; display: flex; align-items: center; gap: .55rem; }
  .fs-head::before { content: ''; width: 20px; height: 2px; background: var(--green-bright); flex-shrink: 0; }
  .fs-head span { color: rgba(255,255,255,.4); font-weight: 500; letter-spacing: .04em; text-transform: none; }
  .chip-hint { font-size: .76rem; color: rgba(255,255,255,.5); margin: 0 0 .55rem; line-height: 1.45; }
  .chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .2rem; }
  .chip { position: relative; }
  .chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
  .chip label {
    display: inline-flex; align-items: center; gap: .4rem; cursor: pointer; padding: .5rem .85rem;
    border: 1.5px solid rgba(255,255,255,.24); border-radius: 100px; background: rgba(255,255,255,.05);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
    font-size: .8rem; color: rgba(255,255,255,.82); transition: all .15s; line-height: 1;
  }
  .chip label:hover { border-color: var(--green-bright); background: rgba(126,203,126,.1); }
  .chip input:checked + label { background: rgba(126,203,126,.22); border-color: var(--green-bright); color: #fff; }
  .chip input:checked + label::before { content: '✓'; font-size: .8rem; color: var(--green-bright); }
  .chip input:focus-visible + label { outline: 2px solid var(--green-bright); outline-offset: 2px; }
  .q-only { transition: opacity .2s ease; }
  .q-only.hidden { display: none; }

  /* ── (11) Sticky mini quote CTA ── */
  .quote-fab {
    position: fixed; right: clamp(1rem, 4vw, 2rem); bottom: 1.15rem; z-index: 150;
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--green-bright); color: var(--green-deep);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem;
    padding: .85rem 1.4rem; border-radius: 100px; text-decoration: none; box-shadow: 0 12px 30px rgba(15,46,15,.32);
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, background .2s ease;
  }
  .quote-fab.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .quote-fab:hover { background: #fff; transform: translateY(-3px); }
  .quote-fab svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
  @media (max-width: 600px) { .quote-fab { left: 1rem; right: 1rem; justify-content: center; } }

  /* ── (13) Reduced motion + focus ── */
  :focus-visible { outline: 2px solid var(--green-bright); outline-offset: 2px; border-radius: 4px; }
  .btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-submit:focus-visible, .nav-cta:focus-visible { outline-offset: 3px; }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .hero::after, .page-hero::after, .btn-primary::before { animation: none; }
    .btn-primary::before { display: none; }
  }
