/* ==========================================================================
   LawnWorx — Local Area Landing Suite
   Design system: light editorial canvas, ink-black chrome, botanical green.
   ========================================================================== */

:root {
  --green: #54931e;
  --green-deep: #3d6d14;
  --green-soft: #7ab73c;
  --green-mist: #eef5e4;
  --ink: #0b0d0a;
  --ink-2: #14170f;
  --ink-soft: #2a2f24;
  --body: #3d4438;
  --muted: #6b7364;
  --canvas: #ffffff;
  --canvas-2: #f7f9f3;
  --line: rgba(11, 13, 10, 0.09);
  --gold: #c9a227;
  --radius: 20px;
  --shadow-s: 0 2px 10px rgba(11, 13, 10, .05);
  --shadow-m: 0 18px 44px -22px rgba(11, 13, 10, .35);
  --shadow-l: 0 44px 90px -40px rgba(11, 13, 10, .45);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* Per-page accent shift (set on <body data-accent>) */
body[data-accent="gainesville"] { --green: #4d8d24; --green-deep: #37671a; --green-soft: #83bd45; --green-mist: #edf5e6; }
body[data-accent="lawrenceville"] { --green: #5a9a1c; --green-deep: #40701a; --green-soft: #86c341; --green-mist: #f0f6e6; }
body[data-accent="buford"] { --green: #4f9226; --green-deep: #396b19; --green-soft: #7cba3f; --green-mist: #ecf4e5; }
body[data-accent="alpharetta"] { --green: #598f18; --green-deep: #3f6a12; --green-soft: #8ac03e; --green-mist: #f1f6e7; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--canvas);
  font-size: 1.02rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.14;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }

a { color: var(--green-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--green); }

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

.wrap { width: min(1240px, 92vw); margin-inline: auto; }

section { position: relative; }

.sect { padding: clamp(64px, 8vw, 118px) 0; }
.sect--tint { background: var(--canvas-2); }
.sect--mist { background: linear-gradient(180deg, #fff 0%, var(--green-mist) 100%); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--green-deep);
  background: var(--green-mist); border: 1px solid rgba(84, 147, 30, .22);
  padding: .42rem .95rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.text-green { color: var(--green-deep) !important; }
.rule { width: 74px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--green), var(--green-soft)); margin: 1.1rem 0 1.5rem; }
.sect-head { max-width: 780px; margin-bottom: clamp(34px, 5vw, 62px); }
.sect-head.center { margin-inline: auto; text-align: center; }
.sect-head.center .rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn-lw {
  --btn-bg: var(--green);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 0;
  background: linear-gradient(120deg, var(--green-deep), var(--green) 55%, var(--green-soft));
  color: #fff; box-shadow: 0 14px 28px -14px rgba(84, 147, 30, .85);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn-lw:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(84, 147, 30, .9); filter: saturate(1.08); }
.btn-lw::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transition: transform .7s var(--ease);
}
.btn-lw:hover::after { transform: translateX(120%); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28); color: #fff; background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px); transition: all .3s var(--ease);
}
.btn-ghost:hover { color: var(--ink); background: #fff; border-color: #fff; transform: translateY(-3px); }
.btn-ghost--ink { border-color: rgba(11, 13, 10, .18); color: var(--ink); background: transparent; }
.btn-ghost--ink:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Header ---------- */
.lw-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8, 10, 7, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.lw-header.is-stuck { background: rgba(8, 10, 7, .98); box-shadow: 0 18px 40px -30px #000; }
.lw-bar { display: flex; align-items: center; gap: 1.2rem; min-height: 82px; }
.lw-logo { display: flex; align-items: center; }
.lw-logo img { height: 84px; width: auto; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .5)); }

.lw-nav { margin-inline: auto; display: flex; align-items: center; gap: .3rem; }
.lw-nav a {
  position: relative; font-family: var(--font-head); font-weight: 500; font-size: .93rem;
  color: rgba(255, 255, 255, .78); padding: .55rem .95rem; border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.lw-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: .28rem; width: 0; height: 2px;
  border-radius: 2px; background: var(--green-soft); transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.lw-nav a:hover, .lw-nav a.active { color: #fff; }
.lw-nav a:hover::after, .lw-nav a.active::after { width: 22px; }

.lw-call { display: flex; align-items: center; gap: .8rem; }
.lw-call .num { display: none; }
.lw-toggle {
  display: none; width: 46px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .05);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer;
}
.lw-toggle span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.lw-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lw-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lw-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lw-mobile {
  display: none; background: #080a07; border-top: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden; max-height: 0; transition: max-height .45s var(--ease);
}
.lw-mobile.open { max-height: 460px; }
.lw-mobile ul { list-style: none; margin: 0; padding: .8rem 0 1.4rem; }
.lw-mobile a.mlink {
  display: block; padding: .85rem .2rem; color: rgba(255, 255, 255, .8);
  font-family: var(--font-head); font-weight: 500; border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.lw-mobile a.mlink:hover { color: #fff; padding-left: .6rem; }
.lw-mobile .btn-lw { width: 100%; justify-content: center; margin-top: 1.1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroPan 22s var(--ease) infinite alternate; }
@keyframes heroPan { from { transform: scale(1.06) translate3d(0, 0, 0); } to { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(75% 90% at 12% 20%, rgba(8, 10, 7, .94), rgba(8, 10, 7, .62) 55%, rgba(8, 10, 7, .82)),
    linear-gradient(120deg, rgba(84, 147, 30, .34), transparent 60%);
}
.hero__inner { padding: clamp(86px, 12vw, 152px) 0 clamp(74px, 10vw, 128px); position: relative; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--green-soft); }
.hero p { color: rgba(255, 255, 255, .82); max-width: 60ch; font-size: 1.1rem; margin-top: 1.3rem; }
.hero .eyebrow { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .2); color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: clamp(46px, 6vw, 76px); background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); overflow: hidden; }
.hero-stats div { background: rgba(8, 10, 7, .55); padding: 1.35rem 1.2rem; backdrop-filter: blur(8px); }
.hero-stats b { display: block; font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.15rem); color: #fff; line-height: 1; }
.hero-stats span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }

.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; z-index: 0; }
.blob--a { width: 420px; height: 420px; background: rgba(84, 147, 30, .32); top: -120px; right: -80px; animation: float 16s ease-in-out infinite; }
.blob--b { width: 340px; height: 340px; background: rgba(122, 183, 60, .25); bottom: -140px; left: -90px; animation: float 20s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(24px, -30px, 0); } }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink-2); color: rgba(255, 255, 255, .72); overflow: hidden; padding: .9rem 0; border-block: 1px solid rgba(255, 255, 255, .07); }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: slide 30s linear infinite; font-family: var(--font-head); font-size: .84rem; letter-spacing: .18em; text-transform: uppercase; }
.marquee__track span { display: inline-flex; align-items: center; gap: 1rem; white-space: nowrap; }
.marquee__track span::after { content: "◆"; color: var(--green-soft); font-size: .6rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Cards / About ---------- */
.card-lw {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-s);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  height: 100%;
}
.card-lw:hover { transform: translateY(-7px); box-shadow: var(--shadow-m); border-color: rgba(84, 147, 30, .35); }
.card-lw .ic {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--green-mist); color: var(--green-deep); margin-bottom: 1.1rem; font-size: 1.3rem;
}
.card-lw h3 { font-size: 1.16rem; margin-bottom: .55rem; }
.card-lw p { margin: 0; font-size: .97rem; color: var(--muted); }

.frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-l); }
.frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s var(--ease); }
.frame:hover img { transform: scale(1.06); }
.frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11, 13, 10, .5)); }
.frame__tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2; color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(8, 10, 7, .55); border: 1px solid rgba(255, 255, 255, .22); padding: .4rem .9rem; border-radius: 999px; backdrop-filter: blur(6px);
}

.badge-strip { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.badge-strip span {
  font-family: var(--font-head); font-size: .82rem; font-weight: 500; color: var(--green-deep);
  background: var(--green-mist); border: 1px solid rgba(84, 147, 30, .2); border-radius: 999px; padding: .38rem .95rem;
}

/* ---------- Services zig-zag ---------- */
.svc { padding: clamp(46px, 6vw, 82px) 0; border-bottom: 1px dashed var(--line); }
.svc:last-child { border-bottom: 0; }
.svc:first-of-type {
  padding-top: 0;
}
.svc__row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 74px); align-items: center; }
.svc:nth-child(even) .svc__media { order: -1; }
.svc__num {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .2em;
  color: var(--green); display: block; margin-bottom: .5rem;
}
.svc h3 { margin-bottom: .9rem; }
.svc p { margin-bottom: 1rem; }
.svc__list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .5rem; }
.svc__list li { position: relative; padding-left: 1.7rem; font-size: .96rem; }
.svc__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-mist); color: var(--green-deep); font-size: .7rem; display: grid; place-items: center; margin-top: .3rem;
}
.svc__media { position: relative; }
.svc__media .frame img { aspect-ratio: 5/4; }
.svc__media::before {
  content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%;
  border: 2px solid rgba(84, 147, 30, .32); border-radius: var(--radius); z-index: -1;
}
/* ---------- Services zig-zag ---------- */


/* Pure CSS alternating layout for desktop/tablet */
.svc:nth-child(even) .svc__row {
  grid-template-columns: 1fr 1.05fr; 
}

.svc:nth-child(even) .svc__media { 
  order: -1; 
}

/* Update Responsive section for screens below 991px */
@media (max-width: 991px) {
  /* ... existing code ... */
  .svc__row { grid-template-columns: 1fr; }
  
  /* Reset order on small screens so mobile stacks consistently (text then image, or image then text) */
  .svc:nth-child(even) .svc__media { order: 0; } 
}

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: s; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-7px); box-shadow: var(--shadow-m); }
.step::before {
  counter-increment: s; content: "0" counter(s);
  position: absolute; right: .6rem; top: -.4rem; font-family: var(--font-head); font-weight: 700;
  font-size: 3.6rem; color: rgba(84, 147, 30, .1);
}
.step h4 { font-size: 1.06rem; margin-bottom: .45rem; }
.step p { font-size: .94rem; color: var(--muted); margin: 0; }

/* ---------- Location ---------- */
.map-shell { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-l); position: relative; background: #e8ede3; }
.map-shell iframe { width: 100%; height: 460px; border: 0; display: block; filter: saturate(1.05) contrast(1.02); }
.map-pin {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%); z-index: 3; pointer-events: none;
  display: grid; place-items: center;
}
.map-pin .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--green); border: 3px solid #fff; box-shadow: 0 8px 18px rgba(0, 0, 0, .35); }
.map-pin .pulse { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: rgba(84, 147, 30, .55); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(4.6); opacity: 0; } }
.map-pin .label {
  margin-top: .5rem; background: #fff; color: var(--ink); font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; padding: .3rem .8rem; border-radius: 999px; box-shadow: var(--shadow-m); white-space: nowrap;
}
.hood-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; }
.hood-list li { font-size: .95rem; padding-left: 1.4rem; position: relative; }
.hood-list li::before { content: "◆"; position: absolute; left: 0; color: var(--green); font-size: .6rem; top: .45rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem;
  position: relative; height: 100%; box-shadow: var(--shadow-s);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-7px); box-shadow: var(--shadow-m); }
.quote::before { content: "”"; font-family: var(--font-head); font-size: 5rem; line-height: .7; color: rgba(84, 147, 30, .16); position: absolute; top: 1.2rem; right: 1.4rem; }
.stars { color: var(--gold); letter-spacing: .16em; font-size: .95rem; margin-bottom: .8rem; }
.quote p { font-size: 1rem; color: var(--body); }
.who { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--green-deep), var(--green-soft)); color: #fff; font-family: var(--font-head); font-weight: 600; }
.who b { display: block; font-family: var(--font-head); color: var(--ink); font-size: .96rem; }
.who small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq .accordion-item { border: 1px solid var(--line); border-radius: 16px !important; margin-bottom: .8rem; overflow: hidden; background: #fff; box-shadow: var(--shadow-s); }
.faq .accordion-button {
  font-family: var(--font-head); font-weight: 600; color: var(--ink); background: #fff;
  font-size: 1.02rem; padding: 1.15rem 1.3rem;
}
.faq .accordion-button:not(.collapsed) { color: var(--green-deep); background: var(--green-mist); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(84, 147, 30, .18); border-color: transparent; }
.faq .accordion-button::after { filter: grayscale(1) brightness(.4); }
.faq .accordion-body { color: var(--muted); padding: 0 1.3rem 1.3rem; }

/* ---------- Contact ---------- */
.contact-card { background: var(--ink); color: #fff; border-radius: 26px; padding: clamp(28px, 4vw, 46px); position: relative; overflow: hidden; box-shadow: var(--shadow-l); }
.contact-card h2 { color: #fff; }
.contact-card p { color: rgba(255, 255, 255, .75); }
.contact-card::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(84, 147, 30, .5), transparent 68%); top: -180px; right: -160px; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.contact-line .ic { width: 44px; height: 44px; border-radius: 13px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: var(--green-soft); flex: 0 0 auto; }
.contact-line b { display: block; font-family: var(--font-head); color: #fff; font-size: .96rem; }
.contact-line a, .contact-line span { color: rgba(255, 255, 255, .72); font-size: .95rem; }
.contact-line a:hover { color: var(--green-soft); }

.form-lw .form-control, .form-lw .form-select {
  background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: .85rem 1rem;
  font-size: .96rem; color: var(--ink); box-shadow: none;
}
.form-lw .form-control:focus, .form-lw .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(84, 147, 30, .16); }
.form-lw label { font-family: var(--font-head); font-size: .84rem; font-weight: 500; color: var(--ink); margin-bottom: .35rem; }
.form-note { font-size: .86rem; color: var(--muted); }

/* ---------- Footer ---------- */
.lw-footer { background: var(--ink); color: rgba(255, 255, 255, .68); padding: clamp(52px, 7vw, 88px) 0 0; }
.lw-footer h5 { font-family: var(--font-head); color: #fff; font-size: 1rem; letter-spacing: .04em; margin-bottom: 1.1rem; }
.lw-footer img.flogo { height: 46px; margin-bottom: 1.1rem; }
.lw-footer a { color: rgba(255, 255, 255, .68); }
.lw-footer a:hover { color: var(--green-soft); }
.lw-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .95rem; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .09); margin-top: clamp(34px, 5vw, 56px); padding: 1.4rem 0; font-size: .87rem; color: rgba(255, 255, 255, .5); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .lw-nav a { padding: .5rem .7rem; font-size: .88rem; }
}
@media (max-width: 991px) {
  .lw-nav { display: none; }
  .lw-toggle { display: flex; }
  .lw-mobile { display: block; }
  .lw-call .btn-lw { display: none; }
  .lw-bar { justify-content: space-between; min-height: 72px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .svc__row { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc__media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  body { font-size: .99rem; }
  .hood-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .map-shell iframe { height: 340px; }
  .lw-logo img { height: 36px; }
}


@media (max-width: 768px) {
  /* ... existing code ... */
  .svc__row { grid-template-columns: 1fr !important; }
}