/* Self-hosted Google Fonts (latin subset, variable weight files), so the page
   does not wait on two extra hosts before it can paint text on a phone. */
@font-face{font-family:'Nunito';font-style:normal;font-weight:400 800;font-display:swap;src:url(/fonts/nunito-variable.woff2) format('woff2')}
@font-face{font-family:'Sora';font-style:normal;font-weight:600 800;font-display:swap;src:url(/fonts/sora-variable.woff2) format('woff2')}

/* Ginday Lawns and Gardens — site styles.
   Palette comes off the round logo: deep green wordmark, leaf-green mower,
   sky-blue and fresh-grass disc behind it. Soft sky sections, warm sand
   sections, pill buttons and big rounded cards — a lighter, rounder look
   than the other client sites. */

:root {
  --forest: #0F5C2E;
  --forest-deep: #0A4322;
  --leaf: #2FA255;
  --leaf-deep: #23823F;
  --leaf-text: #1E7A3A;  /* small green text on white/sky: passes 4.5:1 */
  --leaf-soft: #DDF3E3;
  --lime: #9BE15D;
  --sky: #E9F4FB;
  --sky-2: #D3E9F6;
  --sky-deep: #A9D3EE;
  --sand: #F7F5EE;
  --sand-2: #EEEAE0;
  --ink: #14231B;
  --ink-2: #1D3527;
  --muted: #5A665E;
  --line: #D9E3DC;
  --white: #FFFFFF;
  --star: #F5B400;
  --radius: 12px;
  --radius-lg: 22px;
  --pill: 999px;
  --wrap: 1180px;
  --shadow: 0 16px 40px rgba(15, 60, 35, 0.14);
  --shadow-sm: 0 4px 14px rgba(15, 60, 35, 0.08);
  --font-head: "Sora", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Nunito", 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(--forest); }
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.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
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: 84px 0; }
.section-sky { background: var(--sky); }
.section-sand { background: var(--sand); }
.section-forest { background: var(--forest); color: rgba(255, 255, 255, 0.88); }
.section-forest h2, .section-forest 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-forest .section-head p { color: rgba(255, 255, 255, 0.76); }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf-text);
  background: var(--leaf-soft);
  border-radius: var(--pill);
  padding: 6px 14px;
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }
.section-forest .kicker { background: rgba(255, 255, 255, 0.12); color: var(--lime); }
.section-forest .kicker::before { background: var(--lime); }
.skip { position: absolute; left: -999px; top: 0; background: var(--forest); 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-body);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--leaf); color: #fff; box-shadow: 0 10px 22px rgba(47, 162, 85, 0.32); }
.btn-primary:hover { background: var(--leaf-deep); }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-deep); }
.btn-ghost { background: #fff; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.section-forest .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.section-forest .btn-outline:hover { background: #fff; color: var(--forest); }
.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.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); }
.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: 66px; width: 66px; border-radius: 50%; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--forest); line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf-text); margin-top: 3px; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 700; padding: 10px 14px; border-radius: var(--pill); transition: background .15s ease, color .15s ease; }
.nav a:hover { background: var(--sky); color: var(--forest); }
.nav a[aria-current="page"] { background: var(--leaf-soft); color: var(--leaf-text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-now {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--forest); color: #fff; text-decoration: none; font-weight: 800;
  padding: 12px 20px; border-radius: var(--pill); white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 92, 46, 0.28);
  transition: background .15s ease, transform .15s ease;
}
.call-now:hover { background: var(--forest-deep); 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(--sky); border: 0; color: var(--forest); 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: linear-gradient(180deg, var(--sky) 0%, #F4FAFD 60%, #fff 100%);
  padding: 56px 0 72px;
}
.hero::before {
  content: ""; position: absolute; right: -140px; top: -140px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--sky-2) 0%, rgba(211, 233, 246, 0) 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy .kicker { background: #fff; box-shadow: var(--shadow-sm); }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--leaf-text); }
.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 9px 12px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); font-size: 0.95rem;
}
.rating-chip .g { display: inline-flex; width: 20px; height: 20px; }
.rating-chip .g svg { width: 20px; height: 20px; }
.rating-chip .stars { color: var(--star); letter-spacing: 1px; font-size: 1rem; }
.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(--leaf-text); }
.hero-art { position: relative; min-height: 440px; }
.hero-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); width: 86%; margin-left: auto; }
.hero-photo img { width: 100%; height: 460px; object-fit: cover; }
.hero-photo-2 {
  position: absolute; left: 0; bottom: -18px; width: 44%; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); border: 5px solid #fff;
}
.hero-photo-2 img { width: 100%; height: 220px; object-fit: cover; }
.hero-badge {
  position: absolute; right: 22px; top: -14px; background: var(--forest); color: #fff;
  border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow); font-size: 0.9rem; line-height: 1.3;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge svg { width: 22px; height: 22px; color: var(--lime); flex: 0 0 auto; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; }

/* ---------- trust strip ---------- */
.trust { padding: 26px 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: 44px; height: 44px; border-radius: 50%; background: var(--leaf-soft); color: var(--leaf-text); 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: 18px; }
.svc-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg); padding: 26px 24px;
  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(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card .ico { width: 54px; height: 54px; border-radius: 16px; background: var(--sky); color: var(--forest); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-card .ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.98rem; margin: 0 0 14px; flex: 1; }
.svc-card .more { font-weight: 800; color: var(--leaf-text); font-size: 0.92rem; }
.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: 56px; 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(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 520px; object-fit: cover; }
.frame::after { content: ""; position: absolute; left: -18px; bottom: -18px; width: 45%; height: 45%; border-radius: var(--radius-lg); background: var(--lime); opacity: 0.55; z-index: -1; }
.owner-badge {
  position: absolute; left: 22px; bottom: 22px; background: #fff; border-radius: var(--pill);
  display: flex; align-items: center; gap: 12px; padding: 8px 18px 8px 8px; box-shadow: var(--shadow);
}
.owner-badge img { width: 48px; height: 48px; border-radius: 50%; }
.owner-badge strong { display: block; font-family: var(--font-head); font-size: 0.95rem; }
.owner-badge small { color: var(--muted); 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(--leaf); 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.08); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); padding: 30px 26px; }
.why-card .ico { width: 52px; height: 52px; border-radius: 50%; background: var(--lime); color: var(--forest-deep); 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.2rem; }
.why-card p { margin: 0; color: rgba(255, 255, 255, 0.78); }

/* ---------- reviews wrapper ---------- */
.reviews-wrap { margin-top: 8px; }
.review-links { text-align: center; margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; }
.gallery figure { margin: 0; position: relative; border-radius: 16px; overflow: hidden; background: var(--sand-2); }
.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(--ink-2);
  font-size: 0.8rem; font-weight: 800; 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(--radius-lg); padding: 32px 26px 26px; position: relative; border: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: -18px; left: 24px;
  background: var(--leaf); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
  padding: 7px 14px; border-radius: var(--pill); box-shadow: 0 6px 14px rgba(47, 162, 85, 0.3);
}
.steps h3 { font-size: 1.15rem; 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(--forest); color: #fff; border-color: var(--forest); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; 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.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(--leaf-text); 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: linear-gradient(180deg, var(--sky) 0%, #fff 100%); padding: 64px 0 48px; }
.banner h1 { margin-bottom: 12px; }
.banner p { color: var(--muted); font-size: 1.15rem; max-width: 640px; margin-bottom: 20px; }

/* ---------- service detail rows ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 40px 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(--radius-lg); box-shadow: var(--shadow-sm); width: 100%; height: 340px; object-fit: cover; }
.svc-detail h2 { font-size: 1.7rem; }
.svc-detail p { color: var(--muted); }
.svc-detail .num { font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; color: var(--leaf-text); letter-spacing: 0.1em; margin-bottom: 8px; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: #fff; padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; left: -120px; bottom: -220px; width: 420px; height: 420px; border-radius: 50%; background: rgba(155, 225, 93, 0.16); }
.cta-band::after { content: ""; position: absolute; right: -100px; top: -220px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); }
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 580px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--forest); }

/* ---------- contact ---------- */
.contact { padding: 84px 0; background: var(--sand); }
.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(--leaf-text); font-weight: 800; margin-bottom: 2px; }
.contact-info .val { display: block; font-size: 1.05rem; }
.contact-info .val a { color: var(--forest-deep); 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: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--forest); box-shadow: var(--shadow-sm); }
.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(--forest-deep); font-weight: 800; }
.contact-info .review-link svg { width: 20px; height: 20px; flex: 0 0 auto; }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 36px; 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: 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(--radius);
  background: #FAFBFA; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--leaf); outline-offset: 1px; border-color: var(--leaf-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: 50%; background: var(--leaf-soft); color: var(--forest); 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(--forest-deep); 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(--forest-deep); color: rgba(255, 255, 255, 0.82); padding: 60px 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: 64px; width: 64px; border-radius: 50%; }
.footer-logo strong { font-family: var(--font-head); font-size: 1.05rem; }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.14em; 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 #fff; padding: 0; cursor: pointer;
  background: var(--forest); box-shadow: 0 10px 30px rgba(15, 60, 35, 0.3); 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(--forest-deep);
  font-size: 0.9rem; font-weight: 800; padding: 8px 14px; border-radius: var(--pill); box-shadow: 0 6px 18px rgba(15, 60, 35, 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(--radius-lg); box-shadow: 0 20px 50px rgba(15, 60, 35, 0.3);
  display: none;
}
.chat-panel.is-open { display: block; }
.chat-head { display: flex; align-items: center; gap: 12px; background: var(--forest); 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: 1rem; font-family: var(--font-head); }
.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; }
}

/* ---------- 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); }
  .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; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; margin-top: 12px; }
  .hero-photo { width: 100%; }
  .hero-photo img { height: 380px; }
  .hero-photo-2 { display: none; }
  .brand-name { display: none; }
}
@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: 2px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; }
  .nav-toggle { display: inline-flex; }
  .header-row { min-height: 72px; gap: 12px; }
  .brand img { height: 54px; width: 54px; }
  .call-now .call-number { display: none; }
  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .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: 28px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .form-card { padding: 26px 20px; }
}
@media (max-width: 560px) {
  .hero { padding: 36px 0 56px; }
  .hero-photo img { height: 280px; }
  .hero-badge { right: 12px; top: -10px; padding: 9px 12px; font-size: 0.82rem; }
  .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; }
  .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 { 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 ----------
   Measured on a 375px viewport: 20 links were under Google's 44px minimum
   tap target, and the home page ran to 13,750px of scroll. Everything below
   only fires on a phone/tablet, so the desktop layout is untouched. */
@media (max-width: 860px) {
  /* A phone number or address inside a sentence is still a real tap target.
     Vertical padding on an inline element grows the hit area without
     changing the line box, so the copy does not reflow. */
  a[href^="tel:"], a[href^="mailto:"] { padding-block: 11px; }

  /* Links that sit on their own line get a proper 44px box instead. */
  .contact-info .val a,
  .contact-info .review-link,
  .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; }

  /* Less dead space between sections, so the phone reaches the quote form
     and the reviews sooner. */
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .svc-card { padding: 22px 20px; }
  .steps li { padding: 28px 22px 22px; }
  .contact { padding: 56px 0; }
  .cta-band { padding: 56px 0; }
  .site-footer { padding: 44px 0 20px; }
  .footer-grid { padding-bottom: 28px; }

  /* Ten suburb pills need to stay readable when they wrap. */
  .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; }
  /* The chat bubble sits bottom-right; keep the last CTA clear of it. */
  .site-footer { padding-bottom: 84px; }
}

@media (max-width: 560px) {
  /* The lead now names four suburbs, which pushed "Get a Free Quote" down the
     phone screen. Tighten the hero type so the CTA comes back up. */
  .hero .kicker { margin-bottom: 12px; }
  .hero h1 { margin-bottom: 14px; }
  .hero .lead { font-size: 1.05rem; margin-bottom: 20px; }
}
