/* Grass Guardian — site styles.
   Palette comes off the logo: deep green mower + lime tagline.
   Cream paper background, serif display headings, pill buttons. */

:root {
  --green: #15702A;
  --green-deep: #0B4A1A;
  --green-ink: #0D3B17;
  --lime: #72C231;
  --lime-deep: #4E9A1C;
  --lime-soft: #E6F3D5;
  --cream: #F5F1E6;
  --cream-2: #ECE6D4;
  --paper: #FFFDF8;
  --ink: #14201A;
  --muted: #5B675E;
  --line: #DDD6C4;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 10px;
  --wrap: 1180px;
  --shadow: 0 10px 30px rgba(20, 32, 26, 0.10);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--green-ink);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 12px;
}
.skip {
  position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: 10px 14px; z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(21, 112, 42, 0.28); }
.btn-primary:hover { background: var(--green-deep); }
.btn-lime { background: var(--lime); color: var(--green-ink); }
.btn-lime:hover { background: #82d244; }
.btn-outline { background: transparent; color: var(--green-ink); border-color: var(--green-ink); }
.btn-outline:hover { background: var(--green-ink); color: #fff; }
.btn-light { background: #fff; color: var(--green-ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #FFFDF8;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(20, 32, 26, 0.08); border-bottom-color: var(--line); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 66px; width: auto; }
.nav { display: flex; gap: 4px; }
.nav a {
  color: var(--green-ink); text-decoration: none; font-weight: 500; padding: 9px 14px; border-radius: 999px; font-size: 0.98rem;
}
.nav a:hover { background: var(--cream-2); }
.nav a[aria-current="page"] { background: var(--green-ink); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-now {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; text-decoration: none; font-weight: 600;
  padding: 10px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(21, 112, 42, 0.28);
}
.call-now:hover { background: var(--green-deep); }
.call-now svg { width: 18px; height: 18px; transform-origin: 50% 20%; animation: ring 2.2s ease-in-out infinite; }
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  64% { transform: rotate(-14deg); }
  68% { transform: rotate(12deg); }
  72% { transform: rotate(-10deg); }
  76% { transform: rotate(8deg); }
  80% { transform: rotate(0); }
}
.nav-toggle {
  display: none; background: none; border: 2px solid var(--green-ink); border-radius: 999px;
  width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; color: var(--green-ink); padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.is-open .ico-menu { display: none; }
.nav-toggle.is-open .ico-close { display: block; }

/* ---------- hero ---------- */
.hero { background: var(--cream); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; right: -120px; top: -160px; width: 520px; height: 520px; border-radius: 50%;
  background: var(--lime-soft); z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding-top: 64px; padding-bottom: 72px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero .lead { font-size: 1.2rem; color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover;
  border-radius: 260px 260px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}
.rating-chip {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; border-radius: 999px;
  padding: 8px 16px 8px 10px; box-shadow: 0 6px 18px rgba(20, 32, 26, 0.10); margin-top: 26px; font-size: 0.95rem; text-decoration: none; color: var(--ink);
}
.rating-chip .stars { color: #FBBC05; letter-spacing: 1px; font-size: 1rem; }
.rating-chip strong { color: var(--green-ink); }
.rating-chip .g { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); display: inline-flex; align-items: center; justify-content: center; }
.rating-chip .g svg { width: 16px; height: 16px; }

/* ---------- trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trustbar ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar li { display: flex; gap: 14px; align-items: flex-start; padding: 26px 22px; border-left: 1px solid var(--line); }
.trustbar li:first-child { border-left: 0; padding-left: 0; }
.trustbar svg { width: 30px; height: 30px; flex: 0 0 auto; color: var(--green); margin-top: 2px; }
.trustbar strong { display: block; color: var(--green-ink); font-size: 1rem; }
.trustbar small { color: var(--muted); font-size: 0.92rem; line-height: 1.4; display: block; }

/* ---------- services (numbered list) ---------- */
.svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.svc-item {
  display: grid; grid-template-columns: 90px 1fr 340px; gap: 32px; align-items: center;
  padding: 36px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit;
}
.svc-item .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 600; color: var(--lime-deep); line-height: 1; }
.svc-item h3 { font-size: 1.7rem; margin-bottom: 8px; }
.svc-item p { color: var(--muted); margin: 0 0 14px; max-width: 520px; }
.svc-item .more { font-weight: 600; color: var(--green); text-decoration: none; }
.svc-item .more::after { content: " →"; }
.svc-item img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); }
.svc-cta { margin-top: 32px; }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split .frame { position: relative; }
.split .frame::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--lime); border-radius: var(--radius); z-index: -1;
}
.split p { color: var(--muted); }
.split p.big { color: var(--ink); font-size: 1.15rem; }
.ticks { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks svg { width: 22px; height: 22px; color: var(--lime-deep); flex: 0 0 auto; margin-top: 3px; }

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; position: relative; }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 600; color: var(--lime-deep); display: block; margin-bottom: 8px; line-height: 1;
}
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- detailed services (services page) ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail.flip .svc-detail-img { order: 2; }
.svc-detail img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.svc-detail h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.svc-detail p { color: var(--muted); }

/* ---------- photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photo-strip figure { margin: 0; }
.photo-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.photo-strip figcaption { font-size: 0.9rem; color: var(--muted); margin-top: 8px; }

/* ---------- banner (inner pages) ---------- */
.banner { background: var(--cream); padding: 64px 0 56px; position: relative; overflow: hidden; }
.banner::before {
  content: ""; position: absolute; right: -160px; top: -200px; width: 480px; height: 480px; border-radius: 50%; background: var(--lime-soft);
}
.banner-lime { background: var(--lime-soft); }
.banner-lime::before { background: rgba(255, 253, 248, 0.7); }
.banner .wrap { position: relative; }
.banner h1 { margin-bottom: 12px; max-width: 800px; }
.banner p { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0; }
.banner .btn-row { margin-top: 24px; }

/* ---------- reviews wrapper ---------- */
.reviews-wrap { margin-top: 8px; }
.review-links { text-align: center; margin-top: 28px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green-ink); color: #fff; padding: 64px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 560px; margin: 0 auto 24px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- contact ---------- */
.contact { padding: 72px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info p { color: var(--muted); }
.contact-info dl { margin: 28px 0 0; display: grid; gap: 18px; }
.contact-info dl > div { display: flex; gap: 14px; align-items: flex-start; }
.contact-info dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime-deep); font-weight: 600; margin-bottom: 2px; }
.contact-info dd { margin: 0; font-size: 1.05rem; }
.contact-info dd a { color: var(--green-ink); text-decoration: none; font-weight: 600; }
.contact-info dd a:hover { text-decoration: underline; }
.contact-info .ico { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--green); }
.contact-info .ico svg { width: 20px; height: 20px; }
.contact-info .review-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--green-ink); font-weight: 600; }
.contact-info .review-link svg { width: 20px; height: 20px; flex: 0 0 auto; }
.form-card { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); position: relative; }
.form-card h3 { margin-bottom: 4px; }
.form-card > p { color: var(--muted); margin-bottom: 20px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.92rem; font-weight: 600; color: var(--green-ink); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--lime); outline-offset: 1px; border-color: var(--lime-deep); }
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9AA39D; opacity: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.char-count { font-size: 12px; color: var(--muted); text-align: right; margin-top: -2px; }
.gotcha { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; opacity: 0; }
.form-error { display: none; color: #B42318; background: #FEF3F2; border: 1px solid #FECDCA; border-radius: var(--radius-sm); padding: 10px 12px; font-size: 0.95rem; margin-bottom: 14px; }
.form-error.is-on { display: block; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.is-on { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--lime-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.form-success .tick svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); margin: 0; }
.form-success a { color: var(--green-ink); font-weight: 600; }
.form-card .btn { width: 100%; }
.form-note { font-size: 0.85rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-ink); color: rgba(255, 255, 255, 0.85); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.footer-logo { display: inline-block; background: var(--cream); border-radius: 12px; padding: 10px 14px; margin-bottom: 14px; }
.footer-logo img { height: 70px; width: auto; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 20px; font-size: 0.9rem; }
.footer-credit { color: #fff; }
.footer-credit a { color: #fff; text-decoration: underline; }

/* ---------- chat popup ---------- */
.chat-toggle {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 64px; height: 64px; border-radius: 50%; border: 3px solid #fff; padding: 0; cursor: pointer;
  background: var(--green-ink); box-shadow: 0 10px 30px rgba(20, 32, 26, 0.28); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.chat-toggle img { width: 100%; height: 100%; object-fit: cover; }
.chat-toggle .ico-x { display: none; color: #fff; width: 26px; height: 26px; }
.chat-toggle.is-open img { display: none; }
.chat-toggle.is-open .ico-x { display: block; }
.chat-badge {
  position: fixed; right: 92px; bottom: 34px; z-index: 149; background: #fff; color: var(--green-ink);
  font-size: 0.9rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; box-shadow: 0 6px 18px rgba(20, 32, 26, 0.14); white-space: nowrap;
}
.chat-badge.is-hidden { display: none; }
.chat-panel {
  position: fixed; right: 20px; bottom: 96px; z-index: 150; width: 360px; max-width: calc(100vw - 40px);
  max-height: min(780px, calc(100vh - 116px)); overflow-y: auto;
  background: #fff; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(20, 32, 26, 0.28);
  display: none;
}
.chat-panel.is-open { display: block; }
.chat-head { display: flex; align-items: center; gap: 12px; background: var(--green-ink); color: #fff; padding: 14px 16px; }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #fff; }
.chat-head strong { display: block; font-size: 1rem; }
.chat-head small { color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; display: block; line-height: 1.3; }
.chat-close { margin-left: auto; background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; }
.chat-close svg { width: 20px; height: 20px; }
.chat-body { padding: 16px; position: relative; }
.chat-body [data-form-intro] { font-size: 0.92rem; color: var(--muted); margin: 0 0 12px; }
.chat-body .field { margin-bottom: 10px; gap: 3px; }
.chat-body .field label { font-size: 0.82rem; }
.chat-body .field input, .chat-body .field textarea { padding: 9px 12px; }
.chat-body .field textarea { min-height: 70px; }
.chat-body .char-count { margin-top: -4px; }
.chat-body .btn { width: 100%; padding: 12px 20px; }
.chat-body .form-success { padding: 18px 6px; }
@media (max-height: 800px) {
  .chat-body [data-form-intro] { display: none; }
  .chat-body .field textarea { min-height: 56px; }
}
@media (max-height: 720px) {
  .chat-head { padding: 10px 14px; }
  .chat-head img { width: 36px; height: 36px; }
  .chat-body { padding: 10px 12px 12px; }
  .chat-body .field { margin-bottom: 5px; gap: 2px; }
  .chat-body .field label { font-size: 0.78rem; }
  .chat-body .field input, .chat-body .field textarea { padding: 6px 10px; }
  .chat-body .field textarea { min-height: 46px; }
  .chat-body .btn { padding: 10px 20px; }
}

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 100px 0; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js-anim .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .js-anim .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-item { grid-template-columns: 70px 1fr 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 10px 20px 16px; gap: 4px; box-shadow: 0 16px 30px rgba(20, 32, 26, 0.10);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .call-now .call-number { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; padding-bottom: 48px; }
  .hero-media img { aspect-ratio: 4 / 3; border-radius: 160px 160px var(--radius) var(--radius); }
  .trustbar ul { grid-template-columns: 1fr 1fr; }
  .trustbar li { border-left: 0; padding: 18px 8px; }
  .svc-item { grid-template-columns: 1fr; gap: 18px; }
  .svc-item .num { font-size: 2rem; }
  .svc-item img { order: -1; }
  .split, .svc-detail, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail.flip .svc-detail-img { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand img { height: 50px; }
  .header-row { min-height: 66px; gap: 8px; }
  .call-now { padding: 9px 12px; }
  .trustbar ul { grid-template-columns: 1fr; }
  .trustbar li { padding: 14px 0; border-top: 1px solid var(--line); }
  .trustbar li:first-child { border-top: 0; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
  .chat-badge { display: none; }
  .chat-panel { right: 12px; bottom: 90px; max-width: calc(100vw - 24px); }
  .chat-toggle { right: 12px; bottom: 14px; }
  .split .frame::after { display: none; }
}

/* ---------- motion, second pass (all transform/opacity, skipped for reduced-motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Reveals slide in from the side on two-column blocks instead of straight up. */
  .js-anim .split > .reveal:first-child, .js-anim .svc-detail > .reveal:first-child { transform: translateX(-32px); }
  .js-anim .split > .reveal:last-child, .js-anim .svc-detail > .reveal:last-child { transform: translateX(32px); }
  .js-anim .svc-detail.flip > .reveal:first-child { transform: translateX(32px); }
  .js-anim .svc-detail.flip > .reveal:last-child { transform: translateX(-32px); }
  .js-anim .reveal.is-in { transform: none; }

  /* Hero and inner-page banners: a staggered entrance on load. */
  .js-anim .hero-text > *, .js-anim .banner .wrap > * {
    opacity: 0; transform: translateY(24px);
    animation: rise .75s cubic-bezier(.2, .7, .2, 1) forwards;
  }
  .js-anim .hero-text > :nth-child(1), .js-anim .banner .wrap > :nth-child(1) { animation-delay: .05s; }
  .js-anim .hero-text > :nth-child(2), .js-anim .banner .wrap > :nth-child(2) { animation-delay: .18s; }
  .js-anim .hero-text > :nth-child(3), .js-anim .banner .wrap > :nth-child(3) { animation-delay: .32s; }
  .js-anim .hero-text > :nth-child(4), .js-anim .banner .wrap > :nth-child(4) { animation-delay: .46s; }
  .js-anim .hero-text > :nth-child(5) { animation-delay: .6s; }
  .js-anim .hero-media img {
    opacity: 0; transform: scale(1.08) translateY(18px);
    animation: settle 1.1s cubic-bezier(.2, .7, .2, 1) .3s forwards;
  }
  @keyframes rise { to { opacity: 1; transform: none; } }
  @keyframes settle { to { opacity: 1; transform: none; } }

  /* The soft lime circle behind the hero and banners drifts very slowly. */
  .hero::before, .banner::before { animation: drift 16s ease-in-out infinite alternate; }
  @keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-50px, 36px) scale(1.08); } }

  /* Trust-row icons pop in just after their card fades up. */
  .js-anim .trustbar li.reveal svg { transform: scale(.5); transition: transform .55s .25s cubic-bezier(.34, 1.56, .64, 1); }
  .js-anim .trustbar li.reveal.is-in svg { transform: none; }

  /* Hover: photos ease in a touch, cards lift, numbers nudge, nav links underline. */
  .svc-item img, .split img, .svc-detail img, .photo-strip img { transition: transform .7s cubic-bezier(.2, .7, .2, 1), box-shadow .4s ease; }
  .svc-item:hover img, .split .frame:hover img, .svc-detail-img:hover img, .photo-strip figure:hover img { transform: scale(1.03) translateY(-4px); box-shadow: var(--shadow); }
  .svc-item .num { transition: transform .35s ease, color .35s ease; display: inline-block; }
  .svc-item:hover .num { transform: translateX(8px); color: var(--green); }
  .svc-item .more { display: inline-block; transition: transform .25s ease; }
  .svc-item:hover .more { transform: translateX(4px); }
  .steps li, .trustbar li, .form-card { transition: transform .35s ease, box-shadow .35s ease; }
  .steps li:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .steps li::before { transition: transform .35s ease; display: inline-block; }
  .steps li:hover::before { transform: scale(1.12); }
  .contact-info .ico { transition: transform .3s ease, background .3s ease; }
  .contact-info dl > div:hover .ico { transform: scale(1.1) rotate(-6deg); background: var(--lime-soft); }
  .nav a { position: relative; }
  .nav a:not([aria-current])::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; border-radius: 2px;
    background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
  }
  .nav a:not([aria-current]):hover::after { transform: scaleX(1); }
  .btn-primary:hover { box-shadow: 0 10px 26px rgba(21, 112, 42, 0.38); }
  .btn-lime:hover { box-shadow: 0 10px 26px rgba(78, 154, 28, 0.32); }
  .call-now:hover { transform: translateY(-1px); }
  .call-now { transition: transform .15s ease, background .15s ease; }

  /* The chat button breathes a lime ring so it gets noticed; the label bobs. */
  .chat-toggle:not(.is-open) { animation: pulse 2.8s ease-out infinite; }
  @keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(20, 32, 26, 0.28), 0 0 0 0 rgba(114, 194, 49, 0.6); }
    70% { box-shadow: 0 10px 30px rgba(20, 32, 26, 0.28), 0 0 0 18px rgba(114, 194, 49, 0); }
    100% { box-shadow: 0 10px 30px rgba(20, 32, 26, 0.28), 0 0 0 0 rgba(114, 194, 49, 0); }
  }
  .chat-badge { animation: bob 3.2s ease-in-out infinite; }
  @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
  .chat-panel.is-open { animation: popin .3s cubic-bezier(.2, .7, .2, 1); transform-origin: bottom right; }
  @keyframes popin { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }

  /* Rating chip stars twinkle once on load. */
  .js-anim .rating-chip .stars { display: inline-block; animation: twinkle 1.2s ease .9s 1; }
  @keyframes twinkle { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.18) rotate(-3deg); } 70% { transform: scale(.96); } }

  /* Footer credit and links: gentle underline slide. */
  .site-footer ul a { display: inline-block; transition: transform .2s ease; }
  .site-footer ul a:hover { transform: translateX(4px); }
}
