/* Self-hosted fonts (latin subset, variable weight files). */
@font-face{font-family:'Archivo';font-style:normal;font-weight:500 900;font-display:swap;src:url(/fonts/archivo-variable.woff2) format('woff2')}
@font-face{font-family:'Nunito Sans';font-style:normal;font-weight:400 800;font-display:swap;src:url(/fonts/nunito-sans-variable.woff2) format('woff2')}

/* OH Lawn Care — site styles.
   Palette straight off the badge logo: deep green outline, grass green
   mower, orange sun rays. Warm prairie cream grounds instead of plain
   white so the site does not read like every other green lawn site. */

:root {
  --green: #0B4A1C;
  --green-deep: #073514;
  --grass: #4E9A1E;
  --grass-deep: #3C7A14;
  --grass-text: #2F6410;
  --grass-soft: #E6F2DA;
  --orange: #F39200;
  --orange-deep: #D77E00;
  --orange-soft: #FFF0D6;
  --cream: #FBF7EE;
  --sand: #F2EBDA;
  --ink: #17261B;
  --muted: #5B675D;
  --line: #E3DCC9;
  --white: #FFFFFF;
  --star: #F5A800;
  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1180px;
  --shadow: 0 18px 40px rgba(11, 74, 28, 0.16);
  --shadow-sm: 0 4px 14px rgba(23, 38, 27, 0.08);
  --font-head: "Archivo", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Nunito Sans", 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(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--green);
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 84px 0; }
.section-white { background: var(--white); }
.section-sand { background: var(--sand); }
.section-green { background: var(--green); color: rgba(255, 255, 255, 0.88); }
.section-green h2, .section-green 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-green .section-head p { color: rgba(255, 255, 255, 0.74); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 30px; height: 4px; background: var(--orange); border-radius: 2px; }
.section-head.center .kicker::after { content: ""; width: 30px; height: 4px; background: var(--orange); border-radius: 2px; }
.section-green .kicker { color: var(--orange); }
.skip { position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: 10px 14px; z-index: 200; }
.skip:focus { left: 12px; top: 12px; }

/* Mown-stripes band: a thin repeating green stripe used as a divider. */
.stripes {
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--grass) 0 40px, var(--grass-deep) 40px 80px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 12px; font-weight: 800; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  font-family: var(--font-head); letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-orange { background: var(--orange); color: var(--green-deep); box-shadow: 0 8px 22px rgba(243, 146, 0, 0.32); }
.btn-orange:hover { background: #FFA41C; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { background: #fff; color: var(--green); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(23, 38, 27, 0.1); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--green); }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: 1.35rem; font-weight: 900; letter-spacing: -0.02em; }
.brand-text strong em { font-style: normal; color: var(--orange-deep); }
.brand-text small { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grass-text); margin-top: 3px; }
.nav { display: flex; gap: 6px; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 700; padding: 10px 14px; border-radius: 10px;
  font-family: var(--font-head); font-size: 0.98rem;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--grass-soft); color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.call-now {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: var(--green-deep); text-decoration: none;
  padding: 12px 18px; border-radius: 12px; font-weight: 800; font-family: var(--font-head);
  box-shadow: 0 6px 18px rgba(243, 146, 0, 0.3); transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.call-now:hover { background: #FFA41C; transform: translateY(-1px); }
.call-now svg { width: 20px; height: 20px; animation: ring 2.4s ease-in-out infinite; transform-origin: 50% 20%; }
@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); }
}
.call-number { padding-left: 9px; border-left: 2px solid rgba(11, 74, 28, 0.25); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 2px solid var(--green); background: #fff;
  border-radius: 12px; color: var(--green); cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.is-open .ico-menu { display: none; }
.nav-toggle.is-open .ico-close { display: block; }

/* ---------- hero (split: words left, photo stack right) ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::before {
  /* the sun rays off the badge, drawn big and faint behind the headline */
  content: ""; position: absolute; left: -12%; top: -55%; width: 70%; aspect-ratio: 1;
  background: repeating-conic-gradient(from -8deg, rgba(243, 146, 0, 0.16) 0 3deg, transparent 3deg 12deg);
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, #000 0 32%, transparent 62%);
  mask: radial-gradient(circle, #000 0 32%, transparent 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
  padding: 72px 0 84px;
}
.hero-grid > * { min-width: 0; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 em { font-style: normal; color: var(--orange-deep); }
.hero-lead { font-size: 1.22rem; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.98rem; color: var(--green); }
.hero-points svg { width: 20px; height: 20px; color: var(--grass); }
.hero-stack { position: relative; padding: 0 0 70px 60px; }
.hero-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 5px solid #fff; }
.hero-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.hero-side {
  position: absolute; left: 0; bottom: 0; width: 46%; border-radius: var(--radius); overflow: hidden;
  border: 5px solid #fff; box-shadow: var(--shadow); transform: rotate(-3deg);
}
.hero-side img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.hero-badge {
  position: absolute; right: -6px; top: -18px; background: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; transform: rotate(3deg);
}
.hero-badge svg { width: 30px; height: 30px; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.15rem; line-height: 1; color: var(--green); }
.hero-badge span { font-size: 0.8rem; color: var(--muted); font-weight: 700; }
.hero-badge .stars { color: var(--star); letter-spacing: 1px; font-size: 0.9rem; }

/* ---------- trust band ---------- */
.trust { background: var(--green); color: #fff; }
.trust ul { list-style: none; margin: 0; padding: 18px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; }
.trust li { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; }
.trust svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; }

/* ---------- service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-num {
  position: absolute; left: 16px; top: 16px; background: var(--orange); color: var(--green-deep);
  font-family: var(--font-head); font-weight: 900; padding: 6px 12px; border-radius: 10px; font-size: 0.95rem;
}
.svc-body { padding: 22px 24px 26px; }
.svc-body h3 { margin-bottom: 8px; }
.svc-body p { color: var(--muted); margin: 0 0 14px; }
.svc-link { font-family: var(--font-head); font-weight: 800; color: var(--grass-text); display: inline-flex; align-items: center; gap: 6px; }
.svc-link svg { width: 18px; height: 18px; }
.svc-winter { background: var(--green); color: rgba(255, 255, 255, 0.88); border-color: var(--green); }
.svc-winter .svc-img { background: radial-gradient(circle at 30% 30%, #1A6B2E, var(--green-deep)); display: grid; place-items: center; }
.svc-winter .svc-img svg { width: 42%; height: 42%; color: #fff; opacity: 0.95; }
.svc-winter h3 { color: #fff; }
.svc-winter p { color: rgba(255, 255, 255, 0.76); }
.svc-winter .svc-link { color: var(--orange); }
.svc-new {
  position: absolute; right: 16px; top: 16px; background: #fff; color: var(--green); font-family: var(--font-head);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 10px; border-radius: 8px;
}
.svc-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba { background: #fff; border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba figure { margin: 0; position: relative; border-radius: 10px; overflow: hidden; }
.ba figure img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.ba figcaption {
  position: absolute; left: 8px; bottom: 8px; padding: 4px 10px; border-radius: 8px; font-family: var(--font-head);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(23, 38, 27, 0.72);
}
.ba figure.after figcaption { background: var(--grass); }
.ba p { margin: 12px 6px 4px; font-weight: 700; color: var(--green); }

/* ---------- year-round timeline ---------- */
.seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 10px; }
.seasons::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 30px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--grass), var(--orange), #C98A2E, #A9C6D9);
}
.season { position: relative; text-align: center; padding: 0 16px; }
.season-dot {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  background: #fff; border: 4px solid var(--grass); box-shadow: var(--shadow-sm); position: relative; z-index: 1;
}
.season-dot svg { width: 30px; height: 30px; color: var(--green); }
.season:nth-child(2) .season-dot { border-color: var(--orange); }
.season:nth-child(3) .season-dot { border-color: #C98A2E; }
.season:nth-child(4) .season-dot { border-color: #7FA8C4; }
.season h3 { font-size: 1.15rem; margin-bottom: 6px; }
.season small { display: block; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; color: var(--orange-deep); margin-bottom: 8px; }
.season p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.section-green .season p { color: rgba(255, 255, 255, 0.74); }
.section-green .season h3 { color: #fff; }
.section-green .season-dot { background: var(--green-deep); }
.section-green .season-dot svg { color: #fff; }

/* ---------- reviews ---------- */
.rev-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 26px; margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.rev-score { display: flex; align-items: center; gap: 14px; }
.rev-score svg { width: 38px; height: 38px; }
.rev-score strong { font-family: var(--font-head); font-size: 2rem; line-height: 1; color: var(--green); }
.rev-score .stars { color: var(--star); font-size: 1.15rem; letter-spacing: 2px; display: block; line-height: 1.2; }
.rev-score small { color: var(--muted); font-weight: 700; }
.rev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.rev { background: #fff; border-radius: var(--radius-lg); padding: 26px 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.rev::before { content: "\201C"; position: absolute; right: 22px; top: 6px; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--orange-soft); }
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; flex: 0 0 auto; }
.rev-who strong { display: block; font-family: var(--font-head); color: var(--green); line-height: 1.15; }
.rev-who small { color: var(--muted); font-size: 0.85rem; }
.rev .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 8px; display: block; }
.rev p { margin: 0; position: relative; }
.rev-reply { margin-top: 14px; padding: 12px 14px; background: var(--cream); border-radius: 10px; font-size: 0.93rem; color: var(--muted); border-left: 3px solid var(--grass); }
.rev-reply strong { color: var(--green); }
.rev-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------- service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.towns { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.towns li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-weight: 700; font-family: var(--font-head);
  font-size: 0.95rem; color: var(--green); display: inline-flex; align-items: center; gap: 6px;
}
.towns li.home { background: var(--orange); border-color: var(--orange); color: var(--green-deep); }
.towns svg { width: 16px; height: 16px; color: var(--grass); }
.towns li.home svg { color: var(--green-deep); }
.area-note { color: var(--muted); margin-top: 18px; }
.area-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 5px solid #fff; }
.area-photo img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.area-photo.square img { aspect-ratio: 1; }

/* ---------- owner / about ---------- */
.owner-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.owner-photo { position: relative; }
.owner-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 5px solid #fff; aspect-ratio: 10 / 9; object-fit: cover; width: 100%; }
.owner-tag {
  position: absolute; left: 22px; bottom: -18px; background: var(--green); color: #fff; padding: 12px 18px; border-radius: 12px;
  font-family: var(--font-head); box-shadow: var(--shadow);
}
.owner-tag strong { display: block; font-size: 1.05rem; }
.owner-tag span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); font-weight: 700; }
.owner-copy .quote {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--green); line-height: 1.35;
  border-left: 5px solid var(--orange); padding-left: 18px; margin: 22px 0 26px;
}
.owner-copy p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.check-list svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--grass); margin-top: 2px; }
.section-green .check-list svg { color: var(--orange); }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--green);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--orange); font-weight: 400; flex: 0 0 auto; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 20px; }

/* ---------- contact block ---------- */
.contact { background: var(--green); color: rgba(255, 255, 255, 0.88); padding: 84px 0; position: relative; overflow: hidden; }
.contact::after {
  content: ""; position: absolute; right: -10%; bottom: -60%; width: 50%; aspect-ratio: 1; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(243, 146, 0, 0.18) 0 3deg, transparent 3deg 12deg);
  -webkit-mask: radial-gradient(circle, #000 0 30%, transparent 62%); mask: radial-gradient(circle, #000 0 30%, transparent 62%);
  pointer-events: none;
}
.contact h2 { color: #fff; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info p { color: rgba(255, 255, 255, 0.78); }
.contact-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, 0.1); display: grid; place-items: center; flex: 0 0 auto; }
.contact-list .ico svg { width: 22px; height: 22px; color: var(--orange); }
.contact-list strong { display: block; font-family: var(--font-head); color: #fff; }
.contact-list a { color: #fff; text-decoration: none; font-weight: 700; }
.contact-list a:hover { text-decoration: underline; }
.contact-list span { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }
.form-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 6px; }
.form-card .form-intro { color: var(--muted); margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 6px; color: var(--green); }
input, textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 13px 14px; border: 2px solid var(--line); border-radius: 10px; background: var(--cream);
  color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--grass); box-shadow: 0 0 0 4px rgba(78, 154, 30, 0.18); background: #fff; }
textarea { min-height: 120px; resize: vertical; }
.char-count { font-size: 12px; color: var(--muted); text-align: right; margin-top: 4px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.form-foot small { color: var(--muted); }
.form-error { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: #FFF1F0; color: #9A2B22; border: 1px solid #F3C6C2; font-weight: 600; }
.form-error.is-on { display: block; }
.form-success { display: none; text-align: center; padding: 24px 8px; }
.form-success.is-on { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--grass-soft); color: var(--grass-text); display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .tick svg { width: 34px; height: 34px; }
.form-success p { color: var(--muted); }

/* ---------- cta band (pages without the form) ---------- */
.cta-band { background: var(--green); color: rgba(255, 255, 255, 0.85); padding: 72px 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -10%; bottom: -70%; width: 46%; aspect-ratio: 1; border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(243, 146, 0, 0.18) 0 3deg, transparent 3deg 12deg); -webkit-mask: radial-gradient(circle, #000 0 30%, transparent 62%); mask: radial-gradient(circle, #000 0 30%, transparent 62%); pointer-events: none; }
.cta-band-row { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.74); margin: 0; font-size: 1.08rem; }
.cta-band .kicker { color: var(--orange); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--green); color: #fff; padding: 70px 0 64px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -8%; top: -70%; width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(243, 146, 0, 0.2) 0 3deg, transparent 3deg 12deg);
  -webkit-mask: radial-gradient(circle, #000 0 30%, transparent 62%); mask: radial-gradient(circle, #000 0 30%, transparent 62%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.78); font-size: 1.15rem; max-width: 680px; margin: 0; }
.page-hero .kicker { color: var(--orange); }

/* ---------- services page: zig-zag rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 0; }
.svc-row:nth-child(even) .svc-row-img { order: 2; }
.svc-row-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 5px solid #fff; background: #fff; }
.svc-row-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-row-img.tall img { aspect-ratio: 3 / 4; object-position: center 30%; }
.svc-row-img.dark { background: radial-gradient(circle at 30% 30%, #1A6B2E, var(--green-deep)); aspect-ratio: 4 / 3; display: grid; place-items: center; }
.svc-row-img.dark svg { width: 40%; height: 40%; color: #fff; }
.svc-row .num { font-family: var(--font-head); font-weight: 900; color: var(--orange); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 8px; display: block; }
.svc-row h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.svc-row p { color: var(--muted); }
.svc-row .pill { display: inline-block; background: var(--orange); color: var(--green-deep); font-family: var(--font-head); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 8px; margin-left: 10px; vertical-align: middle; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step .n { width: 46px; height: 46px; border-radius: 12px; background: var(--orange); color: var(--green-deep); font-family: var(--font-head); font-weight: 900; display: grid; place-items: center; font-size: 1.2rem; margin-bottom: 16px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { padding: 10px 14px; font-size: 0.9rem; color: var(--muted); font-weight: 600; }

/* ---------- about page extras ---------- */
.photo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.photo-trio figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.photo-trio img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-trio figcaption { padding: 10px 14px; font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); padding: 26px; }
.value svg { width: 34px; height: 34px; color: var(--orange); margin-bottom: 12px; }
.value h3 { color: #fff; font-size: 1.15rem; }
.value p { color: rgba(255, 255, 255, 0.74); margin: 0; }

/* ---------- map ---------- */
.map { border-radius: var(--radius-lg); overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow); }
.map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 100px 0; }
.notfound h1 { font-size: clamp(3rem, 8vw, 6rem); }

/* ---------- footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255, 255, 255, 0.78); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; margin-bottom: 14px; }
.footer-brand .tile { background: #fff; border-radius: 12px; padding: 4px; width: 62px; height: 62px; flex: 0 0 auto; }
.footer-brand strong { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; display: block; line-height: 1.05; }
.footer-brand strong em { font-style: normal; color: var(--orange); }
.footer-brand small { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); font-weight: 700; }
.site-footer p { color: rgba(255, 255, 255, 0.66); font-size: 0.97rem; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer li a { color: rgba(255, 255, 255, 0.82); text-decoration: none; font-weight: 600; }
.site-footer li a:hover { color: var(--orange); }
.footer-towns { font-size: 0.93rem; color: rgba(255, 255, 255, 0.66); line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 20px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.footer-bottom a { color: #fff; text-decoration: none; }
.footer-bottom a u { text-decoration: underline; }

/* ---------- chat popup (Jared, bottom right) ---------- */
.chat-toggle {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 66px; height: 66px; border-radius: 50%; border: 3px solid var(--orange); padding: 0; cursor: pointer;
  background: #fff; box-shadow: 0 10px 30px rgba(11, 74, 28, 0.3); overflow: hidden;
  display: grid; place-items: center;
}
.chat-toggle { transition: transform .25s cubic-bezier(.2, .8, .3, 1.3), border-color .25s ease, box-shadow .25s ease; }
.chat-toggle img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.chat-toggle:hover, .chat-toggle:focus-visible { transform: scale(1.1) rotate(-6deg); border-color: var(--green); box-shadow: 0 14px 34px rgba(11, 74, 28, 0.38), 0 0 0 6px rgba(243, 146, 0, 0.28); animation: none; outline: none; }
.chat-toggle:hover img, .chat-toggle:focus-visible img { transform: scale(1.12); }
.chat-toggle:active { transform: scale(0.96); }
.chat-badge { transition: transform .25s ease, background .25s ease; }
.chat-toggle:hover ~ .chat-badge, .chat-badge:hover { background: var(--orange); color: var(--green-deep); transform: translateX(-4px); }
.chat-toggle:hover ~ .chat-badge::after, .chat-badge:hover::after { border-left-color: var(--orange); }
.chat-badge { cursor: pointer; }
.chat-toggle .ico-x { display: none; color: var(--green); 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: 32px; z-index: 149; background: var(--green); color: #fff; padding: 9px 14px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.chat-badge::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--green); border-right: 0; }
.chat-badge.is-hidden { display: none; }
.chat-panel {
  position: fixed; right: 20px; bottom: 98px; z-index: 150; width: 360px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(11, 74, 28, 0.32); display: none; overflow: hidden;
  border: 1px solid var(--line);
}
.chat-panel.is-open { display: block; }
.chat-head { background: var(--green); color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.chat-head img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--orange); object-fit: cover; }
.chat-head strong { display: block; font-family: var(--font-head); line-height: 1.1; }
.chat-head small { color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; }
.chat-close { margin-left: auto; background: transparent; border: 0; color: #fff; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; display: grid; place-items: center; }
.chat-close:hover { background: rgba(255, 255, 255, 0.12); }
.chat-close svg { width: 20px; height: 20px; }
.chat-body { padding: 14px 16px 16px; max-height: calc(100vh - 190px); overflow: auto; }
.chat-body label { margin-bottom: 3px; font-size: 0.86rem; }
.chat-body .bubble { background: var(--cream); border-radius: 12px 12px 12px 4px; padding: 10px 14px; font-size: 0.95rem; margin-bottom: 14px; color: var(--ink); }
.chat-body .form-grid { gap: 8px; }
.chat-body input, .chat-body textarea { padding: 9px 12px; }
.chat-body textarea { min-height: 72px; }
.chat-body .char-count { margin-top: -2px; }
.chat-body .btn { width: 100%; }
@media (max-height: 760px) { .chat-body textarea { min-height: 56px; } .chat-body .bubble { display: none; } .chat-body .char-count { display: none; } }

/* ---------- reveal on scroll (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; }
@media (prefers-reduced-motion: no-preference) {
  @media (min-width: 901px) {
    .hero-copy > * { animation: rise .7s ease both; }
    .hero-copy > *:nth-child(2) { animation-delay: .08s; }
    .hero-copy > *:nth-child(3) { animation-delay: .16s; }
    .hero-copy > *:nth-child(4) { animation-delay: .24s; }
    .hero-copy > *:nth-child(5) { animation-delay: .32s; }
    .hero-stack { animation: rise .8s ease .15s both; }
  }
  @keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  @keyframes pulse { 0% { box-shadow: 0 10px 30px rgba(11, 74, 28, 0.3), 0 0 0 0 rgba(243, 146, 0, 0.55); } 100% { box-shadow: 0 10px 30px rgba(11, 74, 28, 0.3), 0 0 0 18px rgba(243, 146, 0, 0); } }
  .chat-toggle:not(.is-open) { animation: pulse 2.6s ease-out infinite; }
  @keyframes popin { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }
  .chat-panel.is-open { animation: popin .28s cubic-bezier(.2, .7, .2, 1); transform-origin: bottom right; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .services-grid, .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 10px 20px 18px; box-shadow: 0 16px 30px rgba(23, 38, 27, 0.12);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; order: 1; }
  .header-actions .call-now { order: 2; }
  .call-number { display: none; }
  .header-row { height: 74px; }
  .brand img { width: 52px; height: 52px; }
  .brand-text strong { font-size: 1.15rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 64px; }
  .hero-stack { padding: 0 0 60px 40px; }
  .hero::before { width: 120%; left: -30%; top: -30%; }
  .seasons { grid-template-columns: 1fr 1fr; gap: 34px 16px; }
  .seasons::before { display: none; }
  .area-grid, .owner-grid, .contact-grid, .svc-row, .cta-band-row { grid-template-columns: 1fr; gap: 34px; }
  .cta-band-actions { justify-content: flex-start; }
  .svc-row:nth-child(even) .svc-row-img { order: 0; }
  .svc-row { padding: 44px 0; }
  .rev-grid { grid-template-columns: 1fr; }
  .steps, .gallery, .photo-trio, .values { grid-template-columns: 1fr 1fr; }
  .owner-tag { bottom: -14px; left: 14px; }
  .trust ul { justify-content: flex-start; gap: 10px 22px; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .brand-text small { display: none; }
  .brand-text strong { font-size: 1rem; white-space: nowrap; }
  .brand { gap: 8px; }
  .services-grid, .ba-grid, .steps, .gallery, .photo-trio, .values { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .hero-stack { padding: 0 0 54px 24px; }
  .hero-side { width: 52%; }
  .hero-badge { right: -4px; top: -14px; padding: 9px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .chat-panel { right: 12px; bottom: 92px; max-width: calc(100vw - 24px); }
  .chat-toggle { right: 12px; bottom: 14px; }
  .chat-badge { right: 86px; bottom: 26px; }
  .seasons { grid-template-columns: 1fr; }
  .rev-bar { justify-content: center; text-align: center; }
  .btn-lg { width: 100%; }
  .hero-actions .btn { width: 100%; }
}
@media (max-width: 400px) {
  .brand-text { display: none; }
}
@media (max-width: 360px) {
  .call-now { padding: 11px 13px; }
  .call-now span:not(.call-number) { display: none; }
  .chat-badge { display: none; }
}
