/* Self-hosted Google Fonts (latin subset, variable weight files). */
@font-face{font-family:'Outfit';font-style:normal;font-weight:400 800;font-display:swap;src:url(/fonts/outfit-variable.woff2) format('woff2')}
@font-face{font-family:'Nunito Sans';font-style:normal;font-weight:400 800;font-display:swap;src:url(/fonts/nunito-sans-variable.woff2) format('woff2')}

/* RNH Lawn Care & Services — site styles.
   Palette comes off the round logo (black wordmark on white, vivid grass
   greens) and the green grass-blade favicon. Look: light and airy, white and
   soft green panels, deep forest green for the dark bands, rounded corners,
   pill buttons, Outfit headings in sentence case. Deliberately not the dark
   navy / condensed-caps look used on other builds. */

:root {
  --g900: #0E3A1D;
  --g800: #14522A;
  --g700: #1B6B33;
  --g600: #23863F;
  --g500: #34A24F;
  --g400: #5FBF6A;
  --g100: #E4F4E6;
  --g50:  #F2FAF3;
  --lime: #A7E35B;
  --lime-deep: #7FCB2B;
  --ink: #14211A;
  --ink-2: #24352B;
  --muted: #5C6E62;
  --line: #DCE8DF;
  --cream: #FBFAF5;
  --white: #FFFFFF;
  --star: #F5B400;
  --r: 14px;
  --r-lg: 22px;
  --pill: 999px;
  --wrap: 1180px;
  --shadow: 0 22px 48px rgba(14, 58, 29, 0.14);
  --shadow-sm: 0 6px 18px rgba(14, 58, 29, 0.08);
  --font-head: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito Sans", 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(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--g700); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-soft { background: var(--g50); }
.section-cream { background: var(--cream); }
.section-green { background: var(--g900); color: rgba(255, 255, 255, 0.86); }
.section-green h2, .section-green h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section-green .section-head p { color: rgba(255, 255, 255, 0.72); }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g600);
  background: var(--g100);
  border-radius: var(--pill);
  padding: 6px 14px;
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--g500); }
.section-green .kicker, .cta-band .kicker { background: rgba(255,255,255,0.1); color: var(--lime); }
.section-green .kicker::before, .cta-band .kicker::before { background: var(--lime); }
.skip { position: absolute; left: -999px; top: 0; background: var(--g900); color: #fff; padding: 10px 14px; z-index: 200; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--pill); font-weight: 800; 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, color .15s ease;
  font-family: var(--font-head); letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--g700); color: #fff; box-shadow: 0 10px 24px rgba(27, 107, 51, 0.28); }
.btn-primary:hover { background: var(--g600); }
.btn-dark { background: var(--ink-2); color: #fff; }
.btn-dark:hover { background: var(--g900); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-ghost:hover { background: #fff; color: var(--g900); }
.btn-outline { background: transparent; color: var(--g700); border-color: var(--g700); }
.btn-outline:hover { background: var(--g700); color: #fff; }
.btn-lime { background: var(--lime); color: var(--g900); }
.btn-lime:hover { background: #B9EE74; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 8px 24px rgba(14, 58, 29, 0.10); }
.header-row { display: flex; align-items: center; gap: 24px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand img { height: 60px; width: 60px; border-radius: 50%; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--ink-2); line-height: 1; letter-spacing: -0.01em; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g600); margin-top: 5px; }
.nav { display: flex; gap: 2px; margin-left: auto; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 700; padding: 9px 14px; border-radius: var(--pill); transition: background .15s ease, color .15s ease; }
.nav a:hover { background: var(--g100); color: var(--g800); }
.nav a[aria-current="page"] { color: var(--g800); background: var(--g100); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-now {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--g700); color: #fff; text-decoration: none; font-weight: 800;
  padding: 12px 20px; border-radius: var(--pill); white-space: nowrap; font-family: var(--font-head);
  transition: background .15s ease, transform .15s ease; box-shadow: 0 8px 20px rgba(27, 107, 51, 0.25);
}
.call-now:hover { background: var(--g600); transform: translateY(-1px); }
.call-now svg { width: 18px; height: 18px; animation: ring 2.4s ease-in-out infinite; transform-origin: 50% 20%; }
.call-now .call-number { padding-left: 9px; border-left: 1px solid rgba(255, 255, 255, 0.35); }
@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(-4deg); } 84% { transform: rotate(0); }
}
.nav-toggle { display: none; background: var(--g100); border: 0; color: var(--g900); width: 46px; height: 46px; border-radius: 50%; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.is-open .ico-menu { display: none; }
.nav-toggle.is-open .ico-close { display: block; }

/* ---------- hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 70% at 88% 10%, rgba(167, 227, 91, 0.30) 0%, rgba(167, 227, 91, 0) 60%),
    radial-gradient(45% 55% at 6% 90%, rgba(52, 162, 79, 0.16) 0%, rgba(52, 162, 79, 0) 60%),
    linear-gradient(180deg, #F4FBF4 0%, #FFFFFF 100%);
  padding: 72px 0 84px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 18px; color: var(--ink-2); }
.hero h1 em { font-style: normal; color: var(--g700); position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.28em; background: rgba(167, 227, 91, 0.55); z-index: -1; border-radius: 4px; }
.hero .lead { font-size: 1.18rem; color: var(--muted); max-width: 560px; margin-bottom: 26px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 28px; }
.rating-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: var(--pill);
  padding: 9px 16px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); font-size: 0.95rem; border: 1px solid var(--line);
}
.rating-chip .stars { color: var(--star); letter-spacing: 1px; font-size: 1rem; }
.rating-chip .src { font-weight: 800; color: var(--g800); }
.hero-note { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); font-weight: 700; font-size: 0.95rem; }
.hero-note svg { width: 18px; height: 18px; color: var(--g600); }
.hero-art { position: relative; min-height: 480px; }
.hero-photo {
  width: 78%; margin-left: auto; overflow: hidden; box-shadow: var(--shadow);
  border-radius: 220px 220px var(--r-lg) var(--r-lg);
  border: 6px solid #fff; background: var(--g100);
}
.hero-photo img { width: 100%; height: 540px; object-fit: cover; object-position: 50% 40%; }
.hero-card {
  position: absolute; left: 0; bottom: 36px; background: #fff; border-radius: var(--r-lg); padding: 16px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 300px;
}
.hero-card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--g100); flex: 0 0 auto; }
.hero-card strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--ink-2); line-height: 1.2; }
.hero-card small { color: var(--muted); font-size: 0.86rem; line-height: 1.35; display: block; }
.hero-badge {
  position: absolute; right: 8px; top: 16px; background: var(--g900); color: #fff;
  border-radius: var(--r); padding: 12px 16px; box-shadow: var(--shadow); font-size: 0.88rem; line-height: 1.3;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge svg { width: 24px; height: 24px; color: var(--lime); flex: 0 0 auto; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; color: #fff; }
.hero-blob { position: absolute; z-index: -1; border-radius: 50%; }

/* ---------- trust strip ---------- */
.trust { padding: 28px 0; background: #fff; border-bottom: 1px solid var(--line); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink-2); }
.trust .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--g100); color: var(--g700); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.trust .ico svg { width: 22px; height: 22px; }
.trust small { display: block; font-weight: 600; color: var(--muted); font-size: 0.88rem; }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  --py: 24px; --px: 22px;
  display: flex; flex-direction: column; background: #fff; border-radius: var(--r-lg); padding: var(--py) var(--px); overflow: hidden;
  text-decoration: none; color: var(--ink); border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--g400); }
.svc-card .svc-img { width: calc(100% + var(--px) * 2); max-width: none; height: 160px; object-fit: cover; margin: calc(var(--py) * -1) calc(var(--px) * -1) 0; transition: transform .4s ease; }
.svc-card:hover .svc-img { transform: scale(1.04); }
.svc-card .ico { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 50%; background: var(--g700); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-card .svc-img + .ico { margin-top: -27px; border: 4px solid #fff; box-shadow: var(--shadow-sm); }
.svc-card .ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.97rem; margin: 0 0 14px; flex: 1; }
.svc-card .more { font-weight: 800; color: var(--g700); font-size: 0.92rem; font-family: var(--font-head); }
.svc-card .more::after { content: " \2192"; }
.svc-cta { text-align: center; margin-top: 36px; }

/* ---------- split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .big { font-size: 1.25rem; color: var(--ink-2); font-weight: 700; }
.split p { color: var(--muted); }
.split p.big { color: var(--ink-2); }
.frame { position: relative; }
.frame > img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; height: 520px; object-fit: cover; position: relative; z-index: 1; }
.frame::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 60%; height: 60%; background: var(--g100); border-radius: var(--r-lg); z-index: 0; }
.frame::before { content: ""; position: absolute; left: -14px; top: -14px; width: 120px; height: 120px; border-radius: 50%; background: rgba(167, 227, 91, 0.5); z-index: 0; }
.owner-badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 2; background: #fff; color: var(--ink-2); border-radius: var(--pill);
  display: flex; align-items: center; gap: 12px; padding: 6px 18px 6px 6px; box-shadow: var(--shadow);
}
.owner-badge img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--g100); object-fit: cover; }
.owner-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.owner-badge small { color: var(--muted); font-size: 0.8rem; }
.ticks { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.ticks svg { width: 22px; height: 22px; flex: 0 0 auto; color: #fff; background: var(--g600); border-radius: 50%; padding: 4px; margin-top: 2px; }
.ticks strong { color: var(--ink-2); }

/* ---------- why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--r-lg); padding: 30px 26px; }
.why-card .ico { width: 52px; height: 52px; border-radius: 50%; background: var(--lime); color: var(--g900); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card .ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.25rem; }
.why-card p { margin: 0; color: rgba(255, 255, 255, 0.74); }

/* ---------- reviews ---------- */
.reviews-wrap { margin-top: 8px; }
.rv-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; background: #fff; border-radius: var(--r-lg); padding: 20px 26px; box-shadow: var(--shadow-sm); margin-bottom: 20px; border: 1px solid var(--line); }
.rv-score { display: flex; align-items: center; gap: 10px; }
.rv-score strong { font-family: var(--font-head); font-size: 2.1rem; line-height: 1; color: var(--g800); }
.rv-stars { color: var(--star); letter-spacing: 2px; font-size: 18px; line-height: 1; white-space: nowrap; }
.rv-count { color: var(--muted); font-size: 0.95rem; }
.rv-src { font-weight: 800; color: var(--g800); }
.rv-cta { margin-left: auto; }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; margin: 0; padding: 0; }
.rv-card { background: #fff; border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--line); }
.rv-head { display: flex; align-items: center; gap: 12px; }
.rv-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--g100); color: var(--g800); font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.rv-who { display: flex; flex-direction: column; min-width: 0; }
.rv-who strong { color: var(--ink); font-size: 1rem; line-height: 1.3; }
.rv-who small { color: var(--muted); font-size: 0.82rem; }
.rv-text { color: var(--ink); font-size: 1rem; line-height: 1.55; margin: 0; flex: 1; }
.rv-source { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.rv-source::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--g500); }
.review-links { text-align: center; margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.pull-quote { margin: 0; background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--g500); border-radius: var(--r-lg); padding: 26px 30px; box-shadow: var(--shadow-sm); max-width: 820px; }
.pull-quote p { font-size: 1.12rem; color: var(--ink-2); margin: 0 0 12px; }
.pull-quote footer { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.92rem; }
.pull-quote footer .rv-stars { font-size: 15px; }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 10px; box-shadow: var(--shadow-sm); }
.ba figure { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; background: var(--g100); }
.ba img { width: 100%; height: 250px; object-fit: cover; }
.ba figcaption { position: absolute; left: 10px; top: 10px; font-family: var(--font-head); font-weight: 800; font-size: 0.82rem; padding: 5px 12px; border-radius: var(--pill); background: rgba(20, 33, 26, 0.85); color: #fff; }
.ba figure.after figcaption { background: var(--g600); }
.ba-caption { grid-column: 1 / -1; padding: 6px 8px 4px; color: var(--muted); font-size: 0.95rem; }
.ba-caption strong { color: var(--ink-2); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--g100); }
.gallery figure.tall { grid-row: span 2; }
.gallery figure.wide { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 12px; bottom: 12px; background: rgba(255, 255, 255, 0.92); color: var(--g900);
  font-family: var(--font-head); font-weight: 800; font-size: 0.82rem; padding: 6px 12px; border-radius: var(--pill);
}

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps li { counter-increment: step; background: #fff; border-radius: var(--r-lg); padding: 34px 26px 26px; position: relative; border: 1px solid var(--line); }
.steps li::before {
  content: counter(step); position: absolute; top: -22px; left: 24px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--g700); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 14px rgba(27, 107, 51, 0.3);
}
.steps h3 { font-size: 1.2rem; margin-top: 6px; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- area pills ---------- */
.area { text-align: center; }
.area-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.area-pills li { background: #fff; border: 1px solid var(--line); border-radius: var(--pill); padding: 9px 18px; font-weight: 700; color: var(--ink-2); }
.area-pills li.hi { background: var(--g700); color: #fff; border-color: var(--g700); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 0 22px; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--g600); transition: transform .2s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { color: var(--muted); margin: 0 0 20px; }

/* ---------- inner page banner ---------- */
.banner {
  position: relative; overflow: hidden; padding: 64px 0 56px;
  background:
    radial-gradient(50% 80% at 92% 0%, rgba(167, 227, 91, 0.35) 0%, rgba(167, 227, 91, 0) 60%),
    linear-gradient(180deg, #EEF8EF 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--line);
}
.banner .wrap { position: relative; }
.banner h1 { margin-bottom: 12px; }
.banner p { color: var(--muted); font-size: 1.15rem; max-width: 640px; margin-bottom: 20px; }
.banner p a { color: var(--g700); font-weight: 800; text-decoration: none; }

/* ---------- service detail rows ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-of-type { border-bottom: 0; }
.svc-detail.flip .svc-detail-img { order: 2; }
.svc-detail-img img { border-radius: var(--r-lg); box-shadow: var(--shadow-sm); width: 100%; height: 340px; object-fit: cover; }
.svc-detail h2 { font-size: 1.9rem; }
.svc-detail p { color: var(--muted); }
.svc-detail ul { color: var(--muted); padding-left: 20px; margin: 0 0 18px; }
.svc-detail .num { font-family: var(--font-head); font-weight: 800; font-size: 0.86rem; color: var(--g600); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--g800); color: #fff; padding: 76px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(167, 227, 91, 0.16); right: -160px; top: -260px; }
.cta-band::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); left: -120px; bottom: -200px; }
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 580px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- contact ---------- */
.contact { padding: 88px 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 .clist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.contact-info .clist > li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .lbl { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--g600); font-weight: 800; margin-bottom: 2px; }
.contact-info .val { display: block; font-size: 1.05rem; }
.contact-info .val a { color: var(--ink-2); text-decoration: none; font-weight: 800; }
.contact-info .val a:hover { text-decoration: underline; }
.contact-info .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--g700); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: #fff; box-shadow: var(--shadow-sm); }
.contact-info .ico svg { width: 20px; height: 20px; }
.form-card { background: #fff; border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow); position: relative; border: 1px solid var(--line); }
.form-card::before { content: ""; position: absolute; left: 36px; right: 36px; top: 0; height: 5px; background: linear-gradient(90deg, var(--g600), var(--lime)); border-radius: 0 0 6px 6px; }
.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: 800; color: var(--ink-2); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--r);
  background: #F8FBF8; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--g400); outline-offset: 1px; border-color: var(--g600); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #93A197; 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(--r); padding: 10px 12px; font-size: 0.95rem; margin-bottom: 14px; }
.form-error.is-on { display: block; }
.form-error a { color: #B42318; font-weight: 800; }
.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(--g100); color: var(--g700); 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(--g800); font-weight: 800; }
.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(--g900); color: rgba(255, 255, 255, 0.8); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; text-decoration: none; color: #fff; }
.footer-logo img { height: 60px; width: 60px; border-radius: 50%; }
.footer-logo strong { font-family: var(--font-head); font-size: 1.15rem; }
.site-footer h4 { color: var(--lime); font-family: var(--font-head); font-size: 0.9rem; 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[href^="mailto"] { white-space: nowrap; }
@media (max-width: 420px) {
  .site-footer a[href^="mailto"] { font-size: 0.84rem; letter-spacing: -0.01em; }
  .contact-info .val a[href^="mailto"] { font-size: 0.95rem; }
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer ul a { display: inline-block; padding: 4px 0; }
.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 var(--lime); padding: 0; cursor: pointer;
  background: var(--g900); box-shadow: 0 10px 30px rgba(14, 58, 29, 0.35);
  display: flex; align-items: center; justify-content: center;
}
.chat-toggle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.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-dot { position: absolute; right: -2px; bottom: -2px; width: 15px; height: 15px; border-radius: 50%; background: #31C74A; border: 2.5px solid #fff; }
.chat-toggle.is-open .chat-dot { display: none; }
.chat-badge {
  position: fixed; right: 92px; bottom: 34px; z-index: 149; background: #fff; color: var(--g900); border: 1px solid var(--line);
  font-size: 0.9rem; font-weight: 800; padding: 8px 14px; border-radius: var(--pill); box-shadow: 0 6px 18px rgba(14, 58, 29, 0.16); 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(--r-lg); box-shadow: 0 20px 50px rgba(14, 58, 29, 0.3);
  display: none;
}
.chat-panel.is-open { display: block; }
.chat-head { display: flex; align-items: center; gap: 12px; background: var(--g900); color: #fff; padding: 14px 16px; }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--lime); object-fit: cover; }
.chat-head strong { display: block; font-size: 1.02rem; font-family: var(--font-head); }
.chat-head small { color: rgba(255, 255, 255, 0.78); 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; }
}
/* Short windows (360x640 and 320x568 phones): the whole form must still fit
   with no inner scroll, so the toggle shrinks, the panel drops lower and every
   gap tightens. Measured: the loose layout needs 586px at 640 tall and only
   524 is available; this compact one needs ~406. */
@media (max-height: 700px) {
  .chat-toggle { width: 52px; height: 52px; bottom: 14px; right: 14px; }
  .chat-panel { right: 14px; bottom: 76px; max-height: calc(100vh - 84px); max-width: calc(100vw - 28px); }
  .chat-head { padding: 8px 12px; }
  .chat-head img { width: 32px; height: 32px; }
  .chat-head small { display: none; }
  .chat-body { padding: 10px; }
  .chat-body .field { margin-bottom: 6px; gap: 0; position: relative; }
  /* Labels go visually hidden (still read by screen readers); the placeholders
     carry the same words, and it buys the 80px that keeps the form whole. */
  .chat-body .field label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .chat-body .field input, .chat-body .field textarea { padding: 6px 10px; }
  .chat-body .field textarea { min-height: 40px; }
  .chat-body .char-count { font-size: 11px; margin-top: -3px; }
  .chat-body .btn { padding: 10px 16px; }
}

/* ---------- 404 ---------- */
.notfound { padding: 100px 0; text-align: center; }
.notfound p { color: var(--muted); max-width: 480px; margin: 0 auto 24px; }
.notfound .btn-row { justify-content: center; }

/* ---------- motion (opt-in from JS) ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .chat-toggle { animation: chat-float 3.2s ease-in-out 1.6s infinite; }
  .chat-toggle:hover { animation: none; }
  @keyframes chat-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust ul { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; margin-top: 20px; }
  .hero-photo { width: 100%; border-radius: var(--r-lg); }
  .hero-photo img { height: 420px; object-position: 50% 45%; }
  .hero-card { bottom: 16px; left: 16px; }
  .hero-badge { right: 16px; top: 16px; }
  .brand-name { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; flex-direction: column;
    padding: 12px 16px 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 4px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 16px; }
  .nav-toggle { display: inline-flex; order: 1; }
  .header-actions .call-now { order: 2; }
  .header-row { min-height: 72px; gap: 12px; }
  .brand img { height: 52px; width: 52px; }
  .call-now .call-number { display: none; }
  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .frame > img { height: 380px; }
  .svc-detail { grid-template-columns: 1fr; gap: 22px; padding: 30px 0; }
  .svc-detail.flip .svc-detail-img { order: 0; }
  .svc-detail-img img { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .form-card { padding: 26px 20px; }
  .form-card::before { left: 20px; right: 20px; }
  .rv-cta { margin-left: 0; width: 100%; }
}
@media (max-width: 560px) {
  .hero { padding: 40px 0 56px; }
  .hero-photo img { height: 320px; }
  .hero-card { max-width: calc(100% - 32px); padding: 12px 14px; }
  .hero-card img { width: 46px; height: 46px; }
  .hero-badge { padding: 9px 12px; font-size: 0.8rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust ul { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery figure.wide { grid-column: span 2; }
  .rv-grid { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .ba img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .call-now { padding: 11px 14px; }
  .chat-badge { display: none; }
  .frame::after, .frame::before { display: none; }
}
@media (max-width: 360px) {
  .brand img { height: 46px; width: 46px; }
  .call-now { padding: 10px 12px; font-size: 0.92rem; }
  .nav-toggle { width: 42px; height: 42px; }
}

/* ---------- mobile: touch targets and vertical budget ---------- */
@media (max-width: 860px) {
  a[href^="tel:"], a[href^="mailto:"] { padding-block: 11px; }
  .contact-info .val a,
  .footer-credit a,
  .rating-chip { min-height: 44px; display: inline-flex; align-items: center; }
  .contact-info .val a { padding-block: 0; }
  .site-footer ul { gap: 0; }
  .site-footer ul a { padding: 11px 0; min-height: 44px; }
  .site-footer ul li:not(:has(a)) { padding: 11px 0; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .svc-card { --py: 22px; --px: 20px; }
  .steps li { padding: 30px 22px 22px; }
  .contact { padding: 56px 0; }
  .cta-band { padding: 56px 0; }
  .site-footer { padding: 44px 0 20px; }
  .footer-grid { padding-bottom: 28px; }
  .area-pills { gap: 8px; }
  .area-pills li { padding: 8px 14px; font-size: 0.95rem; }
}
@media (max-width: 560px) {
  .section { padding: 44px 0; }
  .banner { padding: 40px 0 32px; }
  .site-footer { padding-bottom: 84px; }
  .hero .kicker { margin-bottom: 12px; }
  .hero h1 { margin-bottom: 14px; }
  .hero .lead { font-size: 1.05rem; margin-bottom: 20px; }
}
