/* 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:'Fraunces';font-style:normal;font-weight:400 800;font-display:swap;src:url(/fonts/fraunces-variable.woff2) format('woff2')}
@font-face{font-family:'Fraunces';font-style:italic;font-weight:400 800;font-display:swap;src:url(/fonts/fraunces-italic-variable.woff2) format('woff2')}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:400 800;font-display:swap;src:url(/fonts/dm-sans-variable.woff2) format('woff2')}

/* Silas Lawn Mowing — site styles.
   The look: a family-run, hand-lettered feel. Fraunces (a soft serif) for
   headings with the key word set in italic terracotta, DM Sans for the body.
   Palette comes off the round logo — deep green wordmark on a pale mint disc —
   plus an oat/cream paper and a terracotta accent lifted from the red mowers
   in Sila's own photos. Square-ish corners, 1.5px ink outlines and flat
   offset "sticker" shadows instead of blur — deliberately unlike the pill
   buttons and soft rounded cards on the other client sites. */

:root {
  --forest: #14532D;
  --forest-deep: #0E3B20;
  --green: #1E8A3C;
  --green-text: #177235;   /* small green text on white/oat: passes 4.5:1 */
  --mint: #E4F1E6;
  --mint-2: #CFE7D4;
  --oat: #F8F3E8;
  --oat-2: #EFE7D6;
  --clay: #C4502A;
  --clay-deep: #A63F1F;
  --clay-soft: #F6E3DA;
  --night: #0E2418;
  --ink: #1A2119;
  --ink-2: #26332A;
  --muted: #5B645C;
  --line: #DDD8CB;
  --outline: #1A2119;
  --white: #FFFFFF;
  --star: #F5B400;
  --radius: 6px;
  --radius-lg: 10px;
  --wrap: 1160px;
  --shadow-hard: 6px 6px 0 var(--forest);
  --shadow-hard-sm: 4px 4px 0 var(--forest);
  --shadow-soft: 0 10px 30px rgba(20, 83, 45, 0.10);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", 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: 600;
  font-variation-settings: "opsz" 96, "SOFT" 40;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ink-2);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.32rem; font-variation-settings: "opsz" 48, "SOFT" 30; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--clay); }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-sky { background: var(--mint); }
.section-sand { background: var(--oat); }
.section-forest { background: var(--night); color: rgba(255, 255, 255, 0.86); }
.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.72); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--clay); }
.section-forest .kicker { color: #F0A98C; }
.section-forest .kicker::before { background: #F0A98C; }
.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: 14px 26px; border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 1.5px solid var(--outline); cursor: pointer; line-height: 1.2;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
  font-family: var(--font-body);
  box-shadow: var(--shadow-hard-sm);
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--forest); }
.btn:active { transform: translate(4px, 4px); box-shadow: none; }
.btn-primary { background: var(--clay); color: #fff; border-color: var(--clay-deep); }
.btn-primary:hover { background: var(--clay-deep); }
.btn-dark { background: var(--forest); color: #fff; border-color: var(--forest-deep); box-shadow: 4px 4px 0 var(--mint-2); }
.btn-dark:hover { background: var(--forest-deep); box-shadow: 2px 2px 0 var(--mint-2); }
.btn-ghost { background: #fff; color: var(--ink-2); }
.btn-ghost:hover { background: var(--oat); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); box-shadow: none; }
.btn-outline:hover { background: var(--forest); color: #fff; transform: none; box-shadow: none; }
.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: 14px; margin-top: 8px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--oat);
  border-bottom: 1.5px solid var(--line);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-stuck { box-shadow: 0 4px 0 var(--mint-2); border-color: var(--outline); }
.header-row { display: flex; align-items: center; gap: 24px; min-height: 86px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand img { height: 62px; width: 62px; border-radius: 50%; border: 1.5px solid var(--outline); background: #fff; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.28rem; color: var(--forest); line-height: 1; letter-spacing: -0.01em; }
.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(--clay); margin-top: 5px; }
.nav { display: flex; gap: 2px; margin-left: auto; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 600; padding: 10px 13px; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease; }
.nav a:hover { color: var(--forest); border-color: var(--mint-2); }
.nav a[aria-current="page"] { color: var(--clay); border-color: var(--clay); }
.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: 700;
  padding: 11px 18px; border-radius: var(--radius); white-space: nowrap;
  border: 1.5px solid var(--forest-deep); box-shadow: 3px 3px 0 var(--clay);
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
}
.call-now:hover { background: var(--forest-deep); transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--clay); }
.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); font-variant-numeric: tabular-nums; }
@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: #fff; border: 1.5px solid var(--outline); color: var(--forest); width: 46px; height: 46px; border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; box-shadow: 3px 3px 0 var(--mint-2); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.is-open .ico-menu { display: none; }
.nav-toggle.is-open .ico-close { display: block; }

/* ---------- hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--oat);
  background-image: radial-gradient(var(--mint-2) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  padding: 64px 0 80px;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--forest) 0 28px, var(--clay) 28px 40px, var(--mint-2) 40px 56px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero .lead { font-size: 1.16rem; color: var(--muted); max-width: 560px; margin-bottom: 26px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 30px; }
.rating-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--outline); border-radius: var(--radius);
  padding: 8px 14px 8px 11px; text-decoration: none; color: var(--ink); box-shadow: 3px 3px 0 var(--mint-2); font-size: 0.95rem; font-weight: 600;
}
.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: 600; font-size: 0.95rem; }
.hero-note svg { width: 18px; height: 18px; color: var(--clay); }
.hero-art { position: relative; min-height: 440px; }
.hero-photo { border: 1.5px solid var(--outline); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hard); width: 88%; margin-left: auto; background: #fff; }
.hero-photo img { width: 100%; height: 440px; object-fit: cover; }
.hero-photo-2 {
  position: absolute; left: 0; bottom: -10px; width: 42%; overflow: hidden;
  background: #fff; padding: 8px 8px 12px; border: 1.5px solid var(--outline); border-radius: 4px;
  box-shadow: 4px 4px 0 var(--clay); transform: rotate(-3deg);
}
.hero-photo-2 img { width: 100%; height: 200px; object-fit: cover; }
.hero-badge {
  position: absolute; right: 18px; top: -16px; background: var(--forest); color: #fff;
  border: 1.5px solid var(--outline); border-radius: var(--radius); padding: 12px 16px; box-shadow: 4px 4px 0 var(--clay); font-size: 0.9rem; line-height: 1.3;
  display: flex; align-items: center; gap: 10px; transform: rotate(2deg);
}
.hero-badge svg { width: 22px; height: 22px; color: #F0A98C; flex: 0 0 auto; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; }

/* ---------- trust strip ---------- */
.trust { padding: 28px 0; background: #fff; border-bottom: 1.5px solid var(--line); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink-2); }
.trust .ico { width: 46px; height: 46px; border-radius: var(--radius); background: var(--mint); border: 1.5px solid var(--forest); color: var(--forest); 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: 500; 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: 1.5px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.svc-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); border-color: var(--outline); }
.svc-card .ico { width: 52px; height: 52px; border-radius: var(--radius); background: var(--mint); 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.18rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.98rem; margin: 0 0 14px; flex: 1; }
.svc-card .more { font-weight: 700; color: var(--clay); 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-family: var(--font-head); font-style: italic; font-weight: 500; font-size: 1.35rem; color: var(--forest); }
.split p { color: var(--muted); }
.split p.big { color: var(--forest); }
.frame { position: relative; }
.frame > img { border: 1.5px solid var(--outline); border-radius: var(--radius-lg); box-shadow: var(--shadow-hard); width: 100%; height: 520px; object-fit: cover; background: #fff; }
.frame::after { content: ""; position: absolute; left: -22px; top: -22px; width: 55%; height: 55%; border-radius: var(--radius-lg); background-image: radial-gradient(var(--clay) 1.6px, transparent 1.6px); background-size: 12px 12px; opacity: 0.5; z-index: -1; }
.owner-badge {
  position: absolute; left: 22px; bottom: 22px; background: #fff; border: 1.5px solid var(--outline); border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px; padding: 8px 18px 8px 8px; box-shadow: 3px 3px 0 var(--clay);
}
.owner-badge img { width: 48px; height: 48px; border-radius: 50%; }
.owner-badge strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1rem; }
.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(--green); 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: rgba(255, 255, 255, 0.05); border: 1.5px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius-lg); padding: 30px 26px; }
.why-card .ico { width: 52px; height: 52px; border-radius: var(--radius); background: var(--clay); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.25); }
.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.76); }

/* ---------- 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: var(--radius-lg); overflow: hidden; background: var(--oat-2); border: 1.5px solid var(--line); }
.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(--oat); color: var(--ink-2); border: 1.5px solid var(--outline);
  font-size: 0.8rem; font-weight: 700; padding: 5px 11px; border-radius: var(--radius); box-shadow: 2px 2px 0 var(--forest);
}

/* ---------- 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: 34px 26px 26px; position: relative; border: 1.5px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: -18px; left: 22px;
  background: var(--clay); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 5px 12px; border-radius: var(--radius); border: 1.5px solid var(--outline); box-shadow: 3px 3px 0 var(--forest);
}
.steps h3 { font-size: 1.18rem; 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: 1.5px solid var(--outline); border-radius: var(--radius); padding: 8px 18px; font-weight: 600; color: var(--ink-2); box-shadow: 3px 3px 0 var(--mint-2); }
.area-pills li.hi { background: var(--forest); color: #fff; box-shadow: 3px 3px 0 var(--clay); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 0 22px; }
.faq-item[open] { border-color: var(--outline); box-shadow: var(--shadow-hard-sm); }
.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: 600; font-size: 1.12rem; 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(--clay); 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(--oat); background-image: radial-gradient(var(--mint-2) 1.2px, transparent 1.2px); background-size: 22px 22px; padding: 64px 0 48px; border-bottom: 1.5px solid var(--line); margin-bottom: 20px; }
.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: 1.5px solid var(--line); }
.svc-detail:last-of-type { border-bottom: 0; }
.svc-detail.flip .svc-detail-img { order: 2; }
.svc-detail-img img { border: 1.5px solid var(--outline); border-radius: var(--radius-lg); box-shadow: var(--shadow-hard-sm); width: 100%; height: 340px; object-fit: cover; background: #fff; }
.svc-detail h2 { font-size: 1.8rem; }
.svc-detail p { color: var(--muted); }
.svc-detail .num { font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: 1.1rem; color: var(--clay); margin-bottom: 6px; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: #fff; padding: 76px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1.4px, transparent 1.4px); background-size: 22px 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; }
.cta-band .btn-primary { box-shadow: 4px 4px 0 var(--night); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); box-shadow: 4px 4px 0 var(--night); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--forest); }

/* ---------- contact ---------- */
.contact { padding: 88px 0; background: var(--oat); }
.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.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clay); font-weight: 700; 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: 700; }
.contact-info .val a:hover { text-decoration: underline; }
.contact-info .ico { width: 46px; height: 46px; border-radius: var(--radius); background: #fff; border: 1.5px solid var(--outline); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--forest); box-shadow: 3px 3px 0 var(--mint-2); }
.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: 700; }
.contact-info .review-link svg { width: 20px; height: 20px; flex: 0 0 auto; }
.form-card { background: #fff; border: 1.5px solid var(--outline); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-hard); 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: 700; color: var(--ink-2); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--oat); color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--clay); outline-offset: 1px; border-color: var(--outline); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9AA097; 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: 1.5px solid #FECDCA; border-radius: var(--radius); padding: 10px 12px; font-size: 0.95rem; margin-bottom: 14px; }
.form-error.is-on { display: block; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.is-on { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: var(--radius); background: var(--mint); border: 1.5px solid var(--forest); color: var(--forest); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 3px 3px 0 var(--clay); }
.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: 700; }
.form-card .btn { width: 100%; }
.form-note { font-size: 0.85rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--night); color: rgba(255, 255, 255, 0.8); padding: 60px 0 24px; border-top: 6px solid var(--clay); }
.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.14); }
.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%; background: #fff; }
.footer-logo strong { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.site-footer h4 { color: #F0A98C; font-family: var(--font-body); font-size: 0.78rem; 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: 2px solid var(--outline); padding: 0; cursor: pointer;
  background: var(--forest); box-shadow: 4px 4px 0 var(--clay); 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: 94px; bottom: 34px; z-index: 149; background: var(--oat); color: var(--forest-deep); border: 1.5px solid var(--outline);
  font-size: 0.9rem; font-weight: 700; padding: 7px 13px; border-radius: var(--radius); box-shadow: 3px 3px 0 var(--forest); 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: 1.5px solid var(--outline); border-radius: var(--radius-lg); box-shadow: 6px 6px 0 var(--forest);
  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 #F0A98C; object-fit: cover; background: #fff; }
.chat-head strong { display: block; font-size: 1.05rem; font-family: var(--font-head); font-weight: 600; }
.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; }
.js-anim .hero-photo-2.reveal.is-in { transform: rotate(-3deg); }
.js-anim .hero-badge.reveal.is-in { transform: rotate(2deg); }

/* ---------- 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: 18px; }
  .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(--oat); flex-direction: column;
    padding: 12px 16px 18px; border-bottom: 1.5px solid var(--outline); box-shadow: 0 6px 0 var(--mint-2); 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: 10px; 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: 10px 13px; }
  .chat-badge { display: none; }
  .frame::after { display: none; }
}
@media (max-width: 360px) {
  .brand img { height: 46px; width: 46px; }
  .call-now { padding: 9px 11px; font-size: 0.92rem; }
  .nav-toggle { width: 42px; height: 42px; }
}

/* ---------- mobile: touch targets and vertical budget ----------
   Everything below only fires on a phone/tablet, so the desktop layout is
   untouched. */
@media (max-width: 860px) {
  a[href^="tel:"], a[href^="mailto:"] { padding-block: 11px; }
  .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; }
  .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; }
}
