/* Self-hosted Google Fonts (latin subset, variable weight files), so the page
   never waits on two extra hosts before it can paint text on a phone. */
@font-face{font-family:'Oswald';font-style:normal;font-weight:200 700;font-display:swap;src:url(/fonts/oswald-variable.woff2) format('woff2')}
@font-face{font-family:'Figtree';font-style:normal;font-weight:300 900;font-display:swap;src:url(/fonts/figtree-variable.woff2) format('woff2')}

/* Elite Lawn Mowing — site styles.
   Palette is taken off the client's olive banner: a muted olive green, pale
   sage stripes and white. The look is deliberately different from the other
   client sites: dark olive header and footer, a full-bleed photo hero, tall
   condensed uppercase headings, square corners and thin rules instead of
   pills and big rounded cards. */

:root {
  --olive: #485647;
  --olive-deep: #353F34;
  --olive-ink: #1E251F;
  --sage: #C4D7B9;
  --sage-soft: #E6EDE0;
  --sage-text: #4E6A44;   /* small sage-ish text on white: passes 4.5:1 */
  --moss: #4E8A2E;
  --moss-deep: #3F7224;
  --cream: #F5F4EE;
  --cream-2: #EAE9E0;
  --ink: #1B211C;
  --ink-2: #2A332B;
  --muted: #5F6862;
  --line: #D8DDD2;
  --white: #FFFFFF;
  --star: #F2B01E;
  --radius: 4px;
  --radius-lg: 8px;
  --wrap: 1180px;
  --shadow: 0 18px 44px rgba(30, 37, 31, 0.18);
  --shadow-sm: 0 4px 14px rgba(30, 37, 31, 0.08);
  --font-head: "Oswald", "Arial Narrow", Impact, "Segoe UI", sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
/* No overflow rule on html: that turns body into the scroll container and the
   sticky header stops sticking. body's overflow-x below propagates to the viewport. */
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(--olive-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 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: 88px 0; }
.section-cream { background: var(--cream); }
.section-olive { background: var(--olive); color: rgba(255, 255, 255, 0.88); }
.section-olive h2, .section-olive h3 { color: #fff; }
.section-head { max-width: 760px; 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-olive .section-head p { color: rgba(255, 255, 255, 0.78); }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 34px; height: 3px; background: var(--moss); }
.section-head.center .kicker::after { content: ""; width: 34px; height: 3px; background: var(--moss); }
.section-olive .kicker { color: var(--sage); }
.section-olive .kicker::before, .section-olive .kicker::after { background: var(--sage); }
.skip { position: absolute; left: -999px; top: 0; background: var(--olive-ink); 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(--radius); font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.02rem; font-weight: 500;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--moss); color: #fff; box-shadow: 0 10px 22px rgba(78, 138, 46, 0.3); }
.btn-primary:hover { background: var(--moss-deep); }
.btn-dark { background: var(--olive-ink); color: #fff; }
.btn-dark:hover { background: var(--olive-deep); }
.btn-ghost { background: transparent; color: var(--olive-ink); border-color: var(--olive); }
.btn-ghost:hover { background: var(--olive-ink); color: #fff; border-color: var(--olive-ink); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.65); }
.btn-light:hover { background: #fff; color: var(--olive-ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--olive);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(30, 37, 31, 0.28); }
.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; color: #fff; }
.brand img { height: 52px; width: 52px; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; line-height: 0.95; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.brand-name small { display: block; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.3em; color: var(--sage); margin-top: 4px; }
.nav { display: flex; gap: 2px; margin-left: auto; }
.nav a {
  color: rgba(255, 255, 255, 0.86); text-decoration: none; font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 14px; border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: #fff; border-color: var(--sage); }
.nav a[aria-current="page"] { color: #fff; border-color: var(--sage); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-now {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sage); color: var(--olive-ink); text-decoration: none; font-weight: 700;
  padding: 12px 20px; border-radius: var(--radius); white-space: nowrap;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; font-size: 1.02rem;
  transition: background .15s ease, transform .15s ease;
}
.call-now:hover { background: #fff; 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(30, 37, 31, 0.28); font-family: var(--font-body); letter-spacing: 0; font-weight: 700; }
@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: rgba(255, 255, 255, 0.12); border: 0; color: #fff; width: 46px; height: 46px; border-radius: var(--radius); 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: var(--olive-ink); color: #fff; min-height: 640px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30, 37, 31, 0.94) 0%, rgba(30, 37, 31, 0.78) 40%, rgba(30, 37, 31, 0.28) 100%);
}
.hero .wrap { position: relative; padding-top: 88px; padding-bottom: 150px; }
.hero-copy { max-width: 700px; }
.hero .kicker { color: var(--sage); }
.hero .kicker::before { background: var(--sage); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--sage); }
.hero .lead { font-size: 1.2rem; color: rgba(255, 255, 255, 0.86); max-width: 560px; margin-bottom: 28px; }
.hero-phone { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: #fff; text-decoration: none; font-weight: 700; font-size: 1.05rem; }
.hero-phone svg { width: 20px; height: 20px; color: var(--sage); }
.hero-phone span { border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.hero-phone:hover span { border-color: #fff; }

/* Fact strip overlapping the bottom of the hero */
.facts { position: relative; z-index: 2; margin-top: -84px; }
.facts ul {
  list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; box-shadow: var(--shadow); border-top: 4px solid var(--moss);
}
.facts li { display: flex; align-items: center; gap: 14px; padding: 24px 22px; border-right: 1px solid var(--line); font-weight: 700; color: var(--ink-2); }
.facts li:last-child { border-right: 0; }
.facts .ico { width: 46px; height: 46px; background: var(--sage-soft); color: var(--olive-deep); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: var(--radius); }
.facts .ico svg { width: 24px; height: 24px; }
.facts small { display: block; font-weight: 500; color: var(--muted); font-size: 0.88rem; }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  display: flex; flex-direction: column; background: #fff; text-decoration: none; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card .pic { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.svc-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .pic img { transform: scale(1.04); }
.svc-card .num {
  position: absolute; left: 14px; top: 14px; background: var(--olive-ink); color: var(--sage);
  font-family: var(--font-head); font-weight: 500; letter-spacing: 0.1em; font-size: 0.9rem; padding: 5px 10px; border-radius: var(--radius);
}
.svc-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.98rem; margin: 0 0 16px; flex: 1; }
.svc-card .more { font-weight: 700; color: var(--moss-deep); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-head); font-weight: 500; }
.svc-card .more::after { content: " \2192"; }
.svc-cta { text-align: center; margin-top: 40px; }

/* ---------- split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .big { font-size: 1.25rem; color: var(--ink-2); font-weight: 600; }
.split p { color: var(--muted); }
.split p.big { color: var(--ink-2); }
.frame { position: relative; padding: 0 24px 24px 0; }
.frame > img { border-radius: var(--radius-lg); width: 100%; height: 560px; object-fit: cover; position: relative; z-index: 1; }
.frame::after { content: ""; position: absolute; right: 0; bottom: 0; width: 70%; height: 70%; border-radius: var(--radius-lg); background: var(--olive); }
.owner-badge {
  position: absolute; left: 20px; bottom: 44px; z-index: 2; background: var(--olive-ink); color: #fff; border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px; box-shadow: var(--shadow);
}
.owner-badge img { width: 44px; height: 44px; border-radius: var(--radius); }
.owner-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.owner-badge small { color: var(--sage); font-size: 0.82rem; }
.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(--moss); border-radius: var(--radius); padding: 4px; margin-top: 2px; }
.ticks strong { color: var(--ink-2); }

/* ---------- why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255, 255, 255, 0.16); }
.why-card { padding: 34px 30px; border-right: 1px solid rgba(255, 255, 255, 0.16); }
.why-card:last-child { border-right: 0; }
.why-card .ico { width: 52px; height: 52px; border-radius: var(--radius); background: var(--sage); color: var(--olive-ink); 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.3rem; }
.why-card p { margin: 0; color: rgba(255, 255, 255, 0.8); }

/* ---------- reviews wrapper ----------
   Kept on the page but hidden until there are real Google reviews to bake in.
   Drop the "reviews-pending" class once the block between the REVIEWS markers
   has content. */
.reviews-pending { display: none; }
.reviews-wrap { margin-top: 8px; }
.review-links { text-align: center; margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps li { counter-increment: step; background: #fff; border-radius: var(--radius-lg); padding: 30px 28px 28px; border: 1px solid var(--line); border-top: 4px solid var(--olive); }
.steps li::before {
  content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--sage); margin-bottom: 12px;
}
.steps h3 { font-size: 1.25rem; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- areas ---------- */
.area-grid { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-grid li { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 20px; font-family: var(--font-head); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; color: var(--ink-2); }
.area-grid li svg { width: 22px; height: 22px; color: var(--moss); flex: 0 0 auto; }
.area-grid li.more { background: var(--olive); color: #fff; border-color: var(--olive); }
.area-grid li.more svg { color: var(--sage); }
.area .btn-row { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--olive); border-radius: var(--radius); 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-weight: 700; font-size: 1.02rem; 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(--moss-deep); 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 { background: var(--olive-ink); color: #fff; padding: 72px 0 56px; position: relative; overflow: hidden; }
.banner::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35;
  background: repeating-linear-gradient(115deg, transparent 0 46px, rgba(196, 215, 185, 0.08) 46px 92px);
}
.banner .wrap { position: relative; }
.banner .kicker { color: var(--sage); }
.banner .kicker::before { background: var(--sage); }
.banner h1 { color: #fff; margin-bottom: 12px; }
.banner p { color: rgba(255, 255, 255, 0.82); font-size: 1.15rem; max-width: 660px; margin-bottom: 20px; }

/* ---------- service detail rows ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 48px 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 { position: relative; padding: 0 16px 16px 0; }
.svc-detail-img img { border-radius: var(--radius-lg); width: 100%; height: 360px; object-fit: cover; position: relative; z-index: 1; }
.svc-detail-img::after { content: ""; position: absolute; right: 0; bottom: 0; width: 60%; height: 60%; border-radius: var(--radius-lg); background: var(--sage-soft); }
.svc-detail h2 { font-size: 1.9rem; }
.svc-detail p { color: var(--muted); }
.svc-detail .num { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; line-height: 1; color: var(--sage); margin-bottom: 8px; display: block; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; padding: 88px 0; text-align: center; overflow: hidden; background: var(--olive-ink); }
.cta-band .cta-bg { position: absolute; inset: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(30, 37, 31, 0.82); }
.cta-band .wrap { position: relative; }
.cta-band .kicker { color: var(--sage); }
.cta-band .kicker::before, .cta-band .kicker::after { background: var(--sage); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.84); max-width: 600px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- contact ---------- */
.contact { padding: 88px 0; background: var(--olive); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { color: #fff; }
.contact-info .kicker { color: var(--sage); }
.contact-info .kicker::before { background: var(--sage); }
.contact-info p { color: rgba(255, 255, 255, 0.82); }
.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-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sage); font-weight: 500; margin-bottom: 2px; }
.contact-info .val { display: block; font-size: 1.05rem; color: #fff; }
.contact-info .val a { color: #fff; text-decoration: none; font-weight: 700; }
.contact-info .val a:hover { text-decoration: underline; }
.contact-info .ico { width: 46px; height: 46px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.1); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--sage); }
.contact-info .ico svg { width: 20px; height: 20px; }
.form-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); position: relative; border-top: 4px solid var(--moss); }
.form-card h3 { margin-bottom: 4px; }
.form-card > p { color: var(--muted); margin-bottom: 20px; }
.form-card > p a { color: var(--moss-deep); font-weight: 700; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.92rem; font-weight: 700; 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(--radius);
  background: #FAFAF7; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--moss); outline-offset: 1px; border-color: var(--moss-deep); }
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #98A29B; 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); 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: var(--radius); background: var(--sage-soft); color: var(--olive-deep); 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(--moss-deep); font-weight: 700; }
.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(--olive-ink); 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: 52px; width: 52px; }
.footer-logo strong { font-family: var(--font-head); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.site-footer h4 { color: var(--sage); font-size: 0.85rem; letter-spacing: 0.22em; margin-bottom: 14px; font-weight: 500; }
.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 #fff; padding: 0; cursor: pointer;
  background: var(--olive); box-shadow: 0 10px 30px rgba(30, 37, 31, 0.35); 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(--olive-ink);
  font-size: 0.9rem; font-weight: 700; padding: 8px 14px; border-radius: var(--radius); box-shadow: 0 6px 18px rgba(30, 37, 31, 0.18); 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-lg); box-shadow: 0 20px 50px rgba(30, 37, 31, 0.32);
  display: none;
}
.chat-panel.is-open { display: block; }
.chat-head { display: flex; align-items: center; gap: 12px; background: var(--olive); color: #fff; padding: 14px 16px; }
.chat-head img { width: 42px; height: 42px; border-radius: var(--radius); border: 2px solid var(--sage); object-fit: cover; }
.chat-head strong { display: block; font-size: 1rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.chat-head small { color: var(--sage); 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-body { padding: 12px; }
  .chat-body .field { margin-bottom: 7px; }
  .chat-head { padding: 10px 14px; }
}

/* ---------- 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; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .facts ul { grid-template-columns: repeat(2, 1fr); }
  .facts li:nth-child(2) { border-right: 0; }
  .facts li:nth-child(1), .facts li:nth-child(2) { border-bottom: 1px solid var(--line); }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .why-card:last-child { border-bottom: 0; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--olive-deep); flex-direction: column;
    padding: 12px 16px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); box-shadow: var(--shadow); gap: 2px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav a[aria-current="page"], .nav a:hover { border-color: var(--sage); }
  .nav-toggle { display: inline-flex; }
  .header-row { min-height: 72px; gap: 12px; }
  .brand img { height: 46px; width: 46px; }
  .call-now .call-number { display: none; }
  .section { padding: 64px 0; }
  .hero { min-height: 0; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(30, 37, 31, 0.9) 0%, rgba(30, 37, 31, 0.78) 100%); }
  .hero .wrap { padding-top: 64px; padding-bottom: 130px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .frame > img { height: 400px; }
  .svc-detail { grid-template-columns: 1fr; gap: 26px; padding: 34px 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: 20px; }
  .form-card { padding: 26px 20px; }
}
@media (max-width: 560px) {
  .hero .wrap { padding-top: 48px; padding-bottom: 120px; }
  .hero .lead { font-size: 1.06rem; margin-bottom: 20px; }
  .facts { margin-top: -70px; }
  .facts ul { grid-template-columns: 1fr; }
  .facts li { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 18px; }
  .facts li:last-child { border-bottom: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .call-now { padding: 11px 14px; }
  .brand-name { font-size: 1.25rem; }
  .chat-badge { display: none; }
  .frame { padding: 0 12px 12px 0; }
  .frame > img { height: 340px; }
  .owner-badge { left: 12px; bottom: 28px; padding: 9px 14px 9px 9px; }
  .area-grid { grid-template-columns: 1fr; }
  .section-head.center .kicker::after { display: none; }
}
@media (max-width: 360px) {
  .brand img { height: 42px; width: 42px; }
  .call-now { padding: 10px 12px; font-size: 0.92rem; }
  .nav-toggle { width: 42px; height: 42px; }
  .brand-name small { display: none; }
  h1 { font-size: 2.2rem; }
}

/* ---------- 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,
  .hero-phone { 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; }
  .steps li { padding: 26px 22px 22px; }
  .contact { padding: 56px 0; }
  .cta-band { padding: 60px 0; }
  .site-footer { padding: 44px 0 20px; }
  .footer-grid { padding-bottom: 28px; }
}
@media (max-width: 560px) {
  .section { padding: 44px 0; }
  .banner { padding: 44px 0 34px; }
  /* The chat bubble sits bottom-right; keep the last CTA clear of it. */
  .site-footer { padding-bottom: 84px; }
}
