/* Self-hosted Google Fonts (latin subset, variable weight files). */
@font-face{font-family:'Oswald';font-style:normal;font-weight:400 700;font-display:swap;src:url(/fonts/oswald-variable.woff2) format('woff2')}
@font-face{font-family:'Figtree';font-style:normal;font-weight:400 800;font-display:swap;src:url(/fonts/figtree-variable.woff2) format('woff2')}

/* Shutt's Lawns & Gardens — site styles.
   Palette is lifted straight off the round logo: deep navy disc, lime-green
   wordmark and mower handle, white mower body, and the tan soil mound.
   Look: dark navy header and hero, lime accents, tall condensed headings,
   square-ish corners and a thin soil-brown rule under section titles. */

:root {
  --navy: #0B1C2A;
  --navy-deep: #081823;
  --navy-2: #13293B;
  --navy-3: #1B3549;
  --lime: #8CC818;
  --lime-bright: #A8E21C;
  --lime-deep: #6FA312;
  --lime-text: #4C7A0C;   /* lime for small text on white: passes 4.5:1 */
  --lime-soft: #EEF7D9;
  --soil: #A97957;
  --soil-light: #C79A72;
  --sand: #F6F1EA;
  --sand-2: #EBE2D5;
  --ink: #0F1B26;
  --ink-2: #1B2B3A;
  --muted: #55636F;
  --line: #DCE3E9;
  --white: #FFFFFF;
  --star: #F5B400;
  --radius: 6px;
  --radius-lg: 10px;
  --wrap: 1180px;
  --shadow: 0 18px 40px rgba(8, 24, 35, 0.18);
  --shadow-sm: 0 4px 14px rgba(8, 24, 35, 0.10);
  --font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Figtree", 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(--lime-text); }
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);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; letter-spacing: 0.02em; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 84px 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: rgba(255, 255, 255, 0.86); }
.section-navy h2, .section-navy 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 h2 { position: relative; padding-bottom: 14px; }
.section-head h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 4px; background: var(--soil-light); }
.section-head.center h2::after { left: 50%; transform: translateX(-50%); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section-navy .section-head p { color: rgba(255, 255, 255, 0.72); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-text);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--lime); }
.section-navy .kicker, .hero .kicker, .banner .kicker { color: var(--lime-bright); }
.skip { position: absolute; left: -999px; top: 0; background: var(--navy); 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 28px; border-radius: var(--radius); font-weight: 700; 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); text-transform: uppercase; letter-spacing: 0.04em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lime); color: var(--navy-deep); box-shadow: 0 10px 22px rgba(140, 200, 24, 0.32); }
.btn-primary:hover { background: var(--lime-bright); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); 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(--navy);
  border-bottom: 3px solid var(--lime);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 20px rgba(8, 24, 35, 0.35); }
.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: 64px; width: 64px; border-radius: 50%; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: #fff; line-height: 1; text-transform: uppercase; letter-spacing: 0.03em; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime-bright); margin-top: 5px; }
.nav { display: flex; gap: 2px; margin-left: auto; }
.nav a { color: rgba(255, 255, 255, 0.86); text-decoration: none; font-weight: 700; padding: 10px 14px; border-radius: var(--radius); transition: background .15s ease, color .15s ease; }
.nav a:hover { background: var(--navy-3); color: #fff; }
.nav a[aria-current="page"] { color: var(--lime-bright); box-shadow: inset 0 -3px 0 var(--lime); border-radius: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-now {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--lime); color: var(--navy-deep); text-decoration: none; font-weight: 800;
  padding: 12px 20px; border-radius: var(--radius); white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.call-now:hover { background: var(--lime-bright); 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(8, 24, 35, 0.3); }
@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(--navy-3); 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; color: #fff;
  background: var(--navy);
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 42px, rgba(255,255,255,0) 42px 84px),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  padding: 64px 0 80px;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--soil) 0 30%, var(--lime) 30% 100%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--lime-bright); }
.hero .lead { font-size: 1.18rem; color: rgba(255, 255, 255, 0.78); 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(--radius);
  padding: 9px 14px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); font-size: 0.95rem;
}
.rating-chip .stars { color: var(--star); letter-spacing: 1px; font-size: 1rem; }
.rating-chip .src { font-weight: 800; color: var(--navy); }
.hero-note { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; font-size: 0.95rem; }
.hero-note svg { width: 18px; height: 18px; color: var(--lime-bright); }
.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; border: 4px solid rgba(255,255,255,0.08); }
.hero-photo img { width: 100%; height: 460px; object-fit: cover; }
.hero-photo-2 {
  position: absolute; left: 0; bottom: -18px; width: 44%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 5px solid var(--lime);
}
.hero-photo-2 img { width: 100%; height: 220px; object-fit: cover; }
.hero-badge {
  position: absolute; right: 22px; top: -14px; background: var(--lime); color: var(--navy-deep);
  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(--navy-deep); flex: 0 0 auto; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- 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: var(--radius); background: var(--navy); color: var(--lime-bright); 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); border-top: 4px solid var(--navy);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--lime); }
.svc-card .ico { width: 54px; height: 54px; border-radius: var(--radius); background: var(--lime-soft); color: var(--navy); 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.25rem; 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(--lime-text); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; }
.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: -16px; top: 24px; width: 100%; height: 100%; border: 3px solid var(--lime); border-radius: var(--radius-lg); z-index: -1; }
.owner-badge {
  position: absolute; left: 22px; bottom: 22px; background: var(--navy); color: #fff; border-radius: var(--radius);
  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%; border: 2px solid var(--lime); }
.owner-badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; }
.owner-badge small { color: rgba(255,255,255,0.72); 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: var(--navy-deep); background: var(--lime); 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: 20px; }
.why-card { background: var(--navy-2); border: 1px solid rgba(255, 255, 255, 0.08); border-left: 4px solid var(--lime); border-radius: var(--radius-lg); padding: 30px 26px; }
.why-card .ico { width: 52px; height: 52px; border-radius: var(--radius); background: var(--lime); color: var(--navy-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.3rem; }
.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(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; border-left: 5px solid var(--lime); }
.rv-score { display: flex; align-items: center; gap: 10px; }
.rv-score strong { font-family: var(--font-head); font-size: 2rem; line-height: 1; color: var(--navy); }
.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(--navy); }
.rv-cta { margin-left: auto; }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rv-card { background: #fff; border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; border-top: 3px solid var(--navy); }
.rv-head { display: flex; align-items: center; gap: 12px; }
.rv-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--lime-bright); font-family: var(--font-head); font-weight: 600; 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-text::before { content: "\201C"; color: var(--lime); font-family: var(--font-head); font-size: 1.6rem; line-height: 0; margin-right: 4px; vertical-align: -0.35em; }
.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(--lime); }
.review-links { text-align: center; margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
/* Placeholder for the Google reviews widget once Mark has a Google Business Profile. */
.widget-placeholder { margin-top: 28px; border: 2px dashed var(--soil-light); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; color: var(--muted); background: rgba(255,255,255,0.6); }
.widget-placeholder strong { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.widget-placeholder p { margin: 0; font-size: 0.95rem; }

/* ---------- before / after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; margin: 0 auto; }
.ba figure { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--sand-2); }
.ba img { width: 100%; height: 340px; object-fit: cover; }
.ba figcaption { position: absolute; left: 12px; top: 12px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9rem; padding: 6px 12px; border-radius: var(--radius); background: var(--navy); color: #fff; }
.ba figure.after figcaption { background: var(--lime); color: var(--navy-deep); }

/* ---------- 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(--radius-lg); 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: var(--navy); color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; padding: 6px 12px; border-radius: var(--radius);
}

/* ---------- 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(--navy); color: var(--lime-bright); font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 6px 14px; border-radius: var(--radius); box-shadow: 0 6px 14px rgba(8, 24, 35, 0.3);
}
.steps h3 { font-size: 1.25rem; 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(--radius); padding: 9px 18px; font-weight: 700; color: var(--ink-2); }
.area-pills li.hi { background: var(--navy); color: var(--lime-bright); border-color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); 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-body); font-weight: 800; 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(--lime-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: var(--navy); color: #fff; padding: 64px 0 52px; border-bottom: 6px solid var(--lime); position: relative; overflow: hidden; }
.banner::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 42px, rgba(255,255,255,0) 42px 84px); }
.banner .wrap { position: relative; }
.banner h1 { color: #fff; margin-bottom: 12px; }
.banner p { color: rgba(255, 255, 255, 0.76); 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: 2rem; }
.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: 600; font-size: 0.9rem; color: var(--lime-text); letter-spacing: 0.14em; margin-bottom: 8px; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; padding: 72px 0; text-align: center; position: relative; overflow: hidden; border-top: 6px solid var(--lime); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 42px, rgba(255,255,255,0) 42px 84px); }
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 580px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- 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(--lime-text); font-weight: 800; margin-bottom: 2px; }
.contact-info .val { display: block; font-size: 1.05rem; }
.contact-info .val a { color: var(--navy); text-decoration: none; font-weight: 800; }
.contact-info .val a:hover { text-decoration: underline; }
.contact-info .ico { width: 46px; height: 46px; border-radius: var(--radius); background: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--lime-bright); box-shadow: var(--shadow-sm); }
.contact-info .ico svg { width: 20px; height: 20px; }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); position: relative; border-top: 5px solid var(--lime); }
.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: #FAFBFC; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--lime); outline-offset: 1px; border-color: var(--lime-deep); }
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #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-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(--lime-soft); color: var(--lime-text); 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(--navy); 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(--navy-deep); color: rgba(255, 255, 255, 0.8); padding: 60px 0 24px; border-top: 6px solid var(--lime); }
.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.2rem; text-transform: uppercase; letter-spacing: 0.04em; }
.site-footer h4 { color: var(--lime-bright); font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.16em; 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(--navy); box-shadow: 0 10px 30px rgba(8, 24, 35, 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: var(--lime); color: var(--navy-deep);
  font-size: 0.9rem; font-weight: 800; padding: 8px 14px; border-radius: var(--radius); box-shadow: 0 6px 18px rgba(8, 24, 35, 0.2); 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(8, 24, 35, 0.35);
  display: none;
}
.chat-panel.is-open { display: block; }
.chat-head { display: flex; align-items: center; gap: 12px; background: var(--navy); color: #fff; padding: 14px 16px; border-bottom: 3px solid var(--lime); }
.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.05rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; }
.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; }
}

/* ---------- 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; }
  .rv-grid { grid-template-columns: repeat(2, 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: var(--navy); flex-direction: column;
    padding: 12px 16px 18px; border-bottom: 3px solid var(--lime); box-shadow: var(--shadow); gap: 2px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--lime); padding-left: 18px; }
  .nav-toggle { display: inline-flex; order: 1; }
  .header-actions .call-now { order: 2; }
  .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; }
  .rv-cta { margin-left: 0; width: 100%; }
}
@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; }
  .rv-grid { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .ba img { height: 260px; }
  .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 ---------- */
@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 { 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; }
  .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; }
}
