/* 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:'Figtree';font-style:normal;font-weight:400 700;font-display:swap;src:url(/fonts/figtree-variable.woff2) format('woff2')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:700 800;font-display:swap;src:url(/fonts/outfit-variable.woff2) format('woff2')}

/* Coast Care Lawn & Garden Maintenance Services — site styles.
   Palette comes off the logo: black badge, bright lime "CARE", deep forest
   green, a touch of sea blue. White and sand grounds, black dark sections. */

:root {
  --forest: #0F3D22;
  --forest-deep: #082A17;
  --lime: #74D318;
  --lime-deep: #58B00B;
  --lime-text: #3C7F05; /* small green text on white/sand: passes 4.5:1 */
  --lime-soft: #E9F7DA;
  --sand: #F5F7F0;
  --sand-2: #E9EEE0;
  --black: #0B0F0C;
  --charcoal: #171D18;
  --charcoal-2: #222A24;
  --ink: #14201A;
  --muted: #5A675F;
  --line: #DCE2D8;
  --white: #FFFFFF;
  --sea: #1E7EC0;
  --star: #F5B400;
  --radius: 10px;
  --radius-lg: 18px;
  --wrap: 1180px;
  --shadow: 0 14px 34px rgba(11, 15, 12, 0.14);
  --shadow-sm: 0 3px 10px rgba(11, 15, 12, 0.08);
  --font-head: "Outfit", "Segoe UI", Helvetica, Arial, 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(--forest); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
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: 80px 0; }
.section-sand { background: var(--sand); }
.section-dark { background: var(--black); color: rgba(255, 255, 255, 0.86); }
.section-dark h2, .section-dark 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-dark .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.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-text);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--lime); border-radius: 2px; }
.section-head.center .kicker::after { content: ""; width: 26px; height: 3px; background: var(--lime); border-radius: 2px; }
.section-dark .kicker { color: var(--lime); }
.skip { position: absolute; left: -999px; top: 0; background: var(--black); 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: 999px; 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-head); letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-primary { background: var(--lime); color: var(--black); box-shadow: 0 8px 20px rgba(116, 211, 24, 0.32); }
.btn-primary:hover { background: #86E12E; }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--forest); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: #fff; color: var(--black); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(11, 15, 12, 0.10); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--black); }
.brand img { height: 66px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: 1.28rem; font-weight: 800; letter-spacing: -0.01em; }
.brand-text strong em { font-style: normal; color: var(--lime-deep); }
.brand-text small { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 3px; }
.nav { display: flex; gap: 2px; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 600; padding: 10px 14px; border-radius: var(--radius); font-size: 0.98rem;
  position: relative;
}
.nav a:hover { color: var(--forest); background: var(--sand); }
.nav a[aria-current="page"] { color: var(--black); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px; border-radius: 2px; background: var(--lime);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-now {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: #fff; text-decoration: none; font-weight: 700; font-family: var(--font-head);
  padding: 11px 20px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(11, 15, 12, 0.28);
}
.call-now:hover { background: var(--forest); }
.call-now svg { width: 18px; height: 18px; color: var(--lime); transform-origin: 50% 20%; animation: ring 2.2s ease-in-out infinite; }
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  64% { transform: rotate(-14deg); }
  68% { transform: rotate(12deg); }
  72% { transform: rotate(-10deg); }
  76% { transform: rotate(8deg); }
  80% { transform: rotate(0); }
}
.nav-toggle {
  display: none; background: none; border: 2px solid var(--black); border-radius: 999px;
  width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; color: var(--black); padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.is-open .ico-menu { display: none; }
.nav-toggle.is-open .ico-close { display: block; }

/* ---------- hero (slideshow of real jobs behind the copy) ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--black); }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-slide figcaption {
  position: absolute; right: 20px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: rgba(255, 255, 255, 0.9);
  background: rgba(11, 15, 12, 0.55); backdrop-filter: blur(4px); padding: 7px 12px; border-radius: 999px;
}
.hero-slide figcaption b { color: var(--lime); font-family: var(--font-head); font-weight: 800; letter-spacing: 0.06em; }
.hero-slides::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(11, 15, 12, 0.92) 0%, rgba(11, 15, 12, 0.78) 40%, rgba(11, 15, 12, 0.30) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 104px 20px 120px; max-width: 720px; }
.hero .kicker { color: var(--lime); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero .lead { font-size: 1.22rem; color: rgba(255, 255, 255, 0.86); max-width: 580px; margin-bottom: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 32px; }
.rating-chip {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; border-radius: 999px;
  padding: 8px 16px 8px 10px; font-size: 0.95rem; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm);
}
.rating-chip .stars { color: var(--star); letter-spacing: 1px; font-size: 1rem; }
.rating-chip strong { color: var(--black); }
.rating-chip .g { width: 26px; height: 26px; border-radius: 50%; background: var(--sand); display: inline-flex; align-items: center; justify-content: center; }
.rating-chip .g svg { width: 16px; height: 16px; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.9); font-weight: 600; font-size: 0.95rem; }
.hero-note svg { width: 20px; height: 20px; color: var(--lime); }

/* ---------- trust strip ---------- */
.trust { margin-top: -44px; position: relative; z-index: 2; }
.trust ul {
  list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden;
}
.trust li { display: flex; gap: 14px; align-items: flex-start; padding: 26px 24px; border-left: 1px solid var(--line); }
.trust li:first-child { border-left: 0; }
.trust .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--lime-soft); color: var(--forest); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.trust .ico svg { width: 24px; height: 24px; }
.trust strong { display: block; color: var(--black); font-family: var(--font-head); font-size: 1.05rem; }
.trust small { color: var(--muted); font-size: 0.92rem; line-height: 1.4; display: block; }

/* ---------- before / after ---------- */
.ba-label {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; margin: 0 0 16px;
}
.ba-label.before { background: var(--sand-2); color: var(--ink); }
.ba-label.after { background: var(--black); color: var(--lime); }
.ba-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.ba-row:last-of-type { margin-bottom: 0; }
.ba-row figure { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba-row figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px; color: #fff; font-size: 0.92rem; font-weight: 600;
  background: linear-gradient(to top, rgba(11, 15, 12, 0.85), rgba(11, 15, 12, 0));
}
.ba-note { color: var(--muted); font-size: 0.95rem; margin-top: 20px; }

/* ---------- services cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; text-decoration: none; color: inherit; position: relative;
}
.svc-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-card .svc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; border-bottom: 5px solid var(--lime); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.svc-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); margin: 0 0 14px; font-size: 0.98rem; flex: 1; }
.svc-card .more { font-weight: 700; color: var(--forest); font-family: var(--font-head); }
.svc-card .more::after { content: " →"; }
.svc-cta { margin-top: 36px; text-align: center; }

/* ---------- who we work for ---------- */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.who-grid > * { min-width: 0; }
.who-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.who-list li { background: var(--charcoal-2); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 12px; align-items: flex-start; }
.who-list svg { width: 22px; height: 22px; color: var(--lime); flex: 0 0 auto; margin-top: 3px; }
.who-list strong { display: block; color: #fff; font-family: var(--font-head); }
.who-list small { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; line-height: 1.4; display: block; }
.who-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.who-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.who-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; color: #fff; font-size: 0.92rem;
  background: linear-gradient(to top, rgba(11, 15, 12, 0.9), rgba(11, 15, 12, 0));
}
.who-photo figcaption b { display: block; color: var(--lime); font-family: var(--font-head); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 4px; }

/* ---------- service area ---------- */
.area-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.area-grid > * { min-width: 0; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.chips li.home { background: var(--black); color: var(--lime); border-color: var(--black); }
.area-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
/* Grid children default to min-width:auto, which lets a long email address or
   a big photo push a 1fr column wider than the phone screen. */
.split > *, .svc-detail > *, .contact-grid > *, .footer-grid > * { min-width: 0; }
.split img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split .frame { position: relative; }
.split .frame::before {
  content: ""; position: absolute; left: -16px; bottom: -16px; width: 60%; height: 60%;
  background: repeating-linear-gradient(135deg, var(--lime) 0 4px, transparent 4px 12px); opacity: 0.6; border-radius: var(--radius-lg); z-index: -1;
}
.split .frame .owner-badge {
  position: absolute; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--radius); padding: 10px 16px 10px 10px; box-shadow: var(--shadow-sm);
}
.split .frame .owner-badge img { width: 52px; height: 52px; border-radius: 50%; aspect-ratio: 1; box-shadow: none; border: 2px solid var(--lime); }
.split .frame .owner-badge strong { display: block; color: var(--black); font-family: var(--font-head); line-height: 1.2; }
.split .frame .owner-badge small { color: var(--muted); font-size: 0.85rem; }
.split p { color: var(--muted); }
.split p.big { color: var(--ink); font-size: 1.15rem; }
.ticks { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks svg { width: 22px; height: 22px; color: var(--lime-deep); flex: 0 0 auto; margin-top: 3px; }
.ticks strong { color: var(--black); }

/* ---------- why strip (dark) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: var(--charcoal-2); border-radius: var(--radius-lg); padding: 30px 28px; border-top: 4px solid var(--lime); }
.why-card .ico { width: 48px; height: 48px; border-radius: 50%; background: rgba(116, 211, 24, 0.16); color: var(--lime); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-card .ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.why-card p { color: rgba(255, 255, 255, 0.72); margin: 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; color: #fff; font-size: 0.88rem; font-weight: 600;
  background: linear-gradient(to top, rgba(11, 15, 12, 0.85), rgba(11, 15, 12, 0));
}

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; position: relative; }
.steps::before { content: ""; position: absolute; left: 8%; right: 8%; top: 30px; height: 2px; background: var(--line); }
.steps li { position: relative; padding-top: 84px; text-align: center; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 62px; height: 62px; border-radius: 50%; background: var(--lime); color: var(--black);
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px var(--white);
}
.section-sand .steps li::before { box-shadow: 0 0 0 8px var(--sand); }
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- detailed services (services page) ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail.flip .svc-detail-img { order: 2; }
.svc-detail img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.svc-detail h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.svc-detail p { color: var(--muted); }
.svc-detail .ticks { margin-top: 6px; }
.svc-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.svc-jump a { background: rgba(255, 255, 255, 0.1); color: #fff; text-decoration: none; padding: 8px 14px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.2); }
.svc-jump a:hover { background: var(--lime); color: var(--black); border-color: var(--lime); }

/* before/after pair inside a service block */
.svc-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-ba figure { margin: 0; position: relative; }
.svc-ba img { aspect-ratio: 3 / 4; }
.svc-ba figcaption.ba-label { position: absolute; left: 12px; top: 12px; margin: 0; box-shadow: var(--shadow-sm); }

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

/* ---------- banner (inner pages) ---------- */
.banner { background: var(--black); color: #fff; padding: 72px 0 80px; position: relative; overflow: hidden; }
.banner::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 211, 24, 0.32), rgba(116, 211, 24, 0) 70%);
}
.banner::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--lime), var(--forest));
}
.banner .wrap { position: relative; }
.banner .kicker { color: var(--lime); }
.banner h1 { color: #fff; margin-bottom: 12px; max-width: 820px; font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.banner p { font-size: 1.15rem; color: rgba(255, 255, 255, 0.8); max-width: 640px; margin: 0; }
.banner .btn-row { margin-top: 26px; }

/* ---------- 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; }
.rating-big { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-bottom: 32px; }
.rating-big .num { font-family: var(--font-head); font-size: 4rem; font-weight: 800; color: var(--black); line-height: 1; }
.rating-big .stars { color: var(--star); font-size: 1.6rem; letter-spacing: 3px; }
.rating-big p { margin: 0; color: var(--muted); }

/* ---------- 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; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 22px);
}
.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; }

/* ---------- contact ---------- */
.contact { padding: 80px 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.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime-text); font-weight: 700; margin-bottom: 2px; font-family: var(--font-head); }
.contact-info .val { display: block; font-size: 1.05rem; }
.contact-info .val a { color: var(--black); text-decoration: none; font-weight: 700; }
.contact-info .val a:hover { text-decoration: underline; }
.contact-info .ico { width: 44px; height: 44px; 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(--black); font-weight: 700; }
.contact-info .review-link svg { width: 20px; height: 20px; flex: 0 0 auto; }
.contact-quick { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.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: 700; color: var(--black); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #FAFBF8; 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-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(--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(--black); font-weight: 700; }
.form-card .btn { width: 100%; }
.form-note { font-size: 0.85rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.map-wrap { margin-top: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: block; }
.map-wrap p { color: var(--muted); font-size: 0.92rem; margin: 10px 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--black); color: rgba(255, 255, 255, 0.82); padding: 60px 0 24px; border-top: 5px 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-block; margin-bottom: 14px; }
.footer-logo img { height: 120px; width: auto; }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
/* The email address is one long word. Shrink it on narrow screens so it fits on
   one line instead of snapping in half. */
.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-tag { color: var(--lime); font-family: var(--font-head); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; margin: 0 0 8px; }
.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: #fff; box-shadow: 0 10px 30px rgba(11, 15, 12, 0.28); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.chat-toggle img { width: 100%; height: 100%; object-fit: cover; }
.chat-toggle .ico-x { display: none; color: var(--black); 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(--black); color: #fff;
  font-size: 0.9rem; font-weight: 700; padding: 8px 14px; border-radius: 999px; box-shadow: 0 6px 18px rgba(11, 15, 12, 0.14); white-space: nowrap;
}
.chat-badge.is-hidden { display: none; }
.chat-panel {
  position: fixed; right: 20px; bottom: 96px; z-index: 150; width: 360px; max-width: calc(100vw - 40px);
  max-height: min(780px, calc(100vh - 116px)); overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(11, 15, 12, 0.28);
  display: none;
}
.chat-panel.is-open { display: block; }
.chat-head { display: flex; align-items: center; gap: 12px; background: var(--black); color: #fff; padding: 14px 16px; }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--lime); object-fit: cover; background: #fff; }
.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; }
}
@media (max-height: 720px) {
  .chat-head { padding: 10px 14px; }
  .chat-head img { width: 36px; height: 36px; }
  .chat-body { padding: 10px 12px 12px; }
  .chat-body .field { margin-bottom: 5px; gap: 2px; }
  .chat-body .field label { font-size: 0.78rem; }
  .chat-body .field input, .chat-body .field textarea { padding: 6px 10px; }
  .chat-body .field textarea { min-height: 46px; }
  .chat-body .btn { padding: 10px 20px; }
}

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

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

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

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-text { display: none; }
}
@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 10px 20px 16px; gap: 4px; box-shadow: 0 16px 30px rgba(11, 15, 12, 0.10);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: var(--sand); }
  /* Header standard: logo, hamburger, then Call Now at the right edge. */
  .nav-toggle { display: inline-flex; order: 1; }
  .header-actions .call-now { order: 2; }
  .call-now .call-number { display: none; }
  .hero-inner { padding: 64px 20px 100px; }
  .hero-slides::after { background: linear-gradient(180deg, rgba(11, 15, 12, 0.9) 0%, rgba(11, 15, 12, 0.84) 100%); }
  .hero-slide figcaption { display: none; }
  .trust ul { grid-template-columns: 1fr 1fr; }
  .trust li { border-left: 0; border-top: 1px solid var(--line); }
  .trust li:nth-child(-n+2) { border-top: 0; }
  .trust li:nth-child(even) { border-left: 1px solid var(--line); }
  .split, .svc-detail, .contact-grid, .who-grid, .area-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail.flip .svc-detail-img { order: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .ba-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .photo-strip { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .banner { padding: 56px 0 64px; }
  .who-photo img { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand img { height: 50px; }
  .header-row { min-height: 68px; gap: 8px; }
  .call-now { padding: 9px 12px; }
  .trust ul { grid-template-columns: 1fr; }
  .trust li { border-left: 0 !important; border-top: 1px solid var(--line); padding: 18px 20px; }
  .trust li:first-child { border-top: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .ba-row { grid-template-columns: 1fr; gap: 12px; }
  .who-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery figcaption { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
  .chat-badge { display: none; }
  .chat-panel { right: 12px; bottom: 90px; max-width: calc(100vw - 24px); }
  .chat-toggle { right: 12px; bottom: 14px; }
  .split .frame::before { display: none; }
  .split .frame .owner-badge { right: 10px; bottom: 10px; padding: 8px 12px 8px 8px; }
  .hero-proof { gap: 10px; }
  .rating-big .num { font-size: 3rem; }
  .map-wrap iframe { height: 280px; }
}

/* ---------- motion, second pass (transform/opacity only, skipped for reduced-motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  @media (min-width: 901px) {
    .js-anim .split > .reveal:first-child, .js-anim .svc-detail > .reveal:first-child { transform: translateX(-32px); }
    .js-anim .split > .reveal:last-child, .js-anim .svc-detail > .reveal:last-child { transform: translateX(32px); }
    .js-anim .svc-detail.flip > .reveal:first-child { transform: translateX(32px); }
    .js-anim .svc-detail.flip > .reveal:last-child { transform: translateX(-32px); }
    .js-anim .reveal.is-in { transform: none; }
  }

  .js-anim .hero-inner > *, .js-anim .banner .wrap > * {
    opacity: 0; transform: translateY(24px);
    animation: rise .75s cubic-bezier(.2, .7, .2, 1) forwards;
  }
  .js-anim .hero-inner > :nth-child(1), .js-anim .banner .wrap > :nth-child(1) { animation-delay: .05s; }
  .js-anim .hero-inner > :nth-child(2), .js-anim .banner .wrap > :nth-child(2) { animation-delay: .18s; }
  .js-anim .hero-inner > :nth-child(3), .js-anim .banner .wrap > :nth-child(3) { animation-delay: .32s; }
  .js-anim .hero-inner > :nth-child(4), .js-anim .banner .wrap > :nth-child(4) { animation-delay: .46s; }
  .js-anim .hero-inner > :nth-child(5) { animation-delay: .6s; }
  @keyframes rise { to { opacity: 1; transform: none; } }

  .svc-card, .why-card, .gallery figure, .form-card, .ba-row figure { transition: transform .35s ease, box-shadow .35s ease; }
  .svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .svc-card img, .split img, .svc-detail img, .photo-strip img, .gallery img, .ba-row img { transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
  .svc-card:hover img, .split .frame:hover img:first-child, .svc-detail-img:hover img, .photo-strip figure:hover img, .gallery figure:hover img, .ba-row figure:hover img { transform: scale(1.04); }
  .why-card:hover { transform: translateY(-4px); }
  .contact-info .ico { transition: transform .3s ease, background .3s ease; }
  .contact-info .clist > li:hover .ico { transform: scale(1.08) rotate(-4deg); background: var(--lime-soft); }
  .trust .ico { transition: transform .3s ease; }
  .trust li:hover .ico { transform: translateY(-3px) rotate(-4deg); }
  .btn-primary:hover { box-shadow: 0 12px 28px rgba(116, 211, 24, 0.42); }
  .call-now { transition: transform .15s ease, background .15s ease; }
  .call-now:hover { transform: translateY(-1px); }

  .chat-toggle:not(.is-open) { animation: pulse 2.8s ease-out infinite; }
  @keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(11, 15, 12, 0.28), 0 0 0 0 rgba(116, 211, 24, 0.6); }
    70% { box-shadow: 0 10px 30px rgba(11, 15, 12, 0.28), 0 0 0 18px rgba(116, 211, 24, 0); }
    100% { box-shadow: 0 10px 30px rgba(11, 15, 12, 0.28), 0 0 0 0 rgba(116, 211, 24, 0); }
  }
  .chat-badge { animation: bob 3.2s ease-in-out infinite; }
  @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
  .chat-panel.is-open { animation: popin .3s cubic-bezier(.2, .7, .2, 1); transform-origin: bottom right; }
  @keyframes popin { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }

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

  .site-footer ul a { display: inline-block; transition: transform .2s ease; }
  .site-footer ul a:hover { transform: translateX(4px); }
}
