/* ============================================================
   SITELY DEMO — "Evergreen Grounds & Landscape" (fictional)
   Shared stylesheet for all landscaping demo pages.
   ============================================================ */
:root {
  --pine: #1e3a2a;
  --pine-2: #162c20;
  --pine-3: #0f2117;
  --leaf: #5f9e3e;
  --leaf-dark: #4c8130;
  --moss: #6f8261;
  --sand: #f1ecdf;
  --sand-2: #e7e0cd;
  --cream: #faf8f1;
  --page: #ffffff;
  --ink: #22301f;
  --body-green: #55614f;
  --gold: #e2a72e;
  --font-head: 'Fraunces', serif;
  --font-body: 'Karla', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--page); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, 94%); margin: 0 auto; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; letter-spacing: -.01em; }

.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  letter-spacing: .02em; text-decoration: none; text-align: center;
  padding: .8rem 1.7rem; border-radius: 999px; cursor: pointer; border: 0;
  transition: background .15s ease, transform .15s ease, color .15s ease;
}
.btn-leaf { background: var(--leaf); color: #fff; }
.btn-leaf:hover { background: var(--leaf-dark); }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-2); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.75); padding: calc(.8rem - 2px) 1.7rem; }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-sand { background: var(--sand); color: var(--pine); }
.btn-sand:hover { background: var(--sand-2); }

/* ---------- Promo bar ---------- */
.promo {
  background: var(--pine-3); color: #e8efe3; text-align: center;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 14px;
}
.promo a { color: #a9d97f; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header { background: #fff; color: var(--pine); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #e4e2d6; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand { text-decoration: none; line-height: 1.05; flex: none; display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--pine);
  display: grid; place-items: center; color: #b8dd8f;
}
.brand-mark svg { display: block; }
.brand .brand-top { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; color: var(--pine); }
.brand .brand-sub { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--moss); margin-top: 1px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav > a, .drop > button {
  background: none; border: 0; color: var(--pine); font-family: var(--font-body);
  font-size: .86rem; font-weight: 700; letter-spacing: .04em;
  text-decoration: none; cursor: pointer; padding: 8px 0;
}
.nav > a:hover, .drop > button:hover { color: var(--leaf); }
.drop { position: relative; }
.drop > button::after { content: " ▾"; font-size: .68rem; color: var(--leaf); }
.drop-menu {
  position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff; color: var(--ink);
  border-radius: 10px; box-shadow: 0 14px 34px rgba(18, 33, 23, .22); padding: 8px 0;
  display: none; z-index: 60; border: 1px solid #e7e4d8;
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: block; }
.drop-menu a { display: block; padding: 10px 18px; text-decoration: none; font-size: .86rem; font-weight: 700; }
.drop-menu a:hover { background: #eef4e6; color: var(--leaf-dark); }
.header-btns { display: flex; gap: 10px; flex: none; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--pine); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(15, 33, 23, .82) 0%, rgba(15, 33, 23, .55) 55%, rgba(15, 33, 23, .3) 100%);
}
.hero-inner { padding: 76px 0 88px; max-width: 660px; }
.hero .kicker {
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: #b8dd8f; margin-bottom: 14px;
}
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 600; margin-bottom: 16px; }
.hero .hero-sub { color: #dfe9d8; font-size: 1.02rem; max-width: 540px; margin-bottom: 26px; }
.zip-form {
  display: flex; gap: 8px; background: #fff; border-radius: 999px; padding: 6px;
  max-width: 480px; box-shadow: 0 14px 40px rgba(10, 24, 16, .35); margin-bottom: 16px;
}
.zip-form input {
  flex: 1; min-width: 0; border: 0; outline: none; background: transparent;
  font-family: var(--font-body); font-size: .95rem; padding: .55rem 1rem; color: var(--ink);
}
.zip-form .btn { flex: none; }
.hero-toggle { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-toggle a { color: #e8efe3; font-size: .88rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.hero-toggle a:hover { color: #b8dd8f; }
.page-hero .hero-inner { padding: 52px 0 66px; max-width: 740px; }
.page-hero .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Section headings ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.sec-head .kicker { font-size: .72rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--leaf-dark); margin-bottom: 8px; }
.sec-head h2 { color: var(--pine); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 10px; }
.sec-head p { color: var(--body-green); font-size: .96rem; }

/* ---------- Services grid (home) ---------- */
.svc-band { background: var(--cream); padding: 64px 0 72px; }
.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  background: #fff; border-radius: 14px; overflow: hidden; text-decoration: none;
  border: 1px solid #e7e4d8; box-shadow: 0 6px 18px rgba(30, 58, 42, .07);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(30, 58, 42, .14); }
.svc-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { color: var(--pine); font-size: 1.12rem; margin-bottom: 8px; }
.svc-card p { color: var(--body-green); font-size: .88rem; flex: 1; margin-bottom: 12px; }
.svc-card .more { color: var(--leaf-dark); font-weight: 700; font-size: .85rem; }
.svc-card:hover .more { text-decoration: underline; }

/* ---------- Residential / Commercial split ---------- */
.rescom { display: grid; grid-template-columns: 1fr 1fr; }
.rescom-tile { position: relative; isolation: isolate; min-height: 380px; display: flex; align-items: flex-end; text-decoration: none; }
.rescom-tile img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.rescom-tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,33,23,.05) 30%, rgba(15,33,23,.78) 100%); }
.rescom-tile:hover img { transform: scale(1.04); }
.rescom-body { padding: 30px 8% 36px; }
.rescom-body h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.rescom-body p { color: #dfe9d8; font-size: .92rem; max-width: 420px; margin-bottom: 16px; }
.rescom-body span.btn { pointer-events: none; }

/* ---------- Promise band ---------- */
.promise { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--sand); }
.promise-media { min-height: 460px; }
.promise-media img { width: 100%; height: 100%; object-fit: cover; }
.promise-body { padding: 64px 7% 64px 6%; }
.promise-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--pine); color: #b8dd8f;
  border-radius: 999px; padding: .45rem 1.1rem; font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px;
}
.promise-body h2 { color: var(--pine); font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 16px; }
.promise-body p { color: var(--body-green); font-size: .95rem; margin-bottom: 14px; }
.promise-body .btn { margin-top: 10px; }
.tick-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px; margin: 18px 0 14px; list-style: none; }
.tick-cols li { font-size: .9rem; font-weight: 700; color: var(--pine); padding-left: 24px; position: relative; }
.tick-cols li::before { content: "✓"; position: absolute; left: 0; color: var(--leaf); font-weight: 800; }

/* ---------- Reviews band (home + reviews page) ---------- */
.reviews-band { background: var(--cream); padding: 64px 0 72px; }
.g-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.g-score { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--pine); }
.g-stars { color: var(--gold); letter-spacing: 2px; }
.g-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g-cards.five { grid-template-columns: repeat(5, 1fr); }
.g-card { background: #fff; border: 1px solid #e7e4d8; border-radius: 14px; padding: 20px 18px 16px; display: flex; flex-direction: column; box-shadow: 0 6px 18px rgba(30, 58, 42, .06); }
.g-card .g-stars { font-size: .9rem; margin-bottom: 10px; }
.g-card p { font-size: .86rem; color: var(--body-green); flex: 1; }
.g-card .read-more { font-size: .78rem; color: var(--leaf-dark); text-decoration: underline; margin-top: 6px; }
.g-user { display: flex; align-items: center; gap: 9px; margin-top: 14px; }
.g-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center;
  color: #fff; font-size: .8rem; font-weight: 700; background: var(--leaf);
}
.g-user b { font-size: .82rem; color: var(--pine); line-height: 1.2; display: block; }
.g-user span { font-size: .7rem; color: var(--body-green); display: block; }
.reviews-more { text-align: center; margin-top: 30px; }

/* ---------- Values band ---------- */
.values { background: var(--pine); padding: 64px 0 72px; }
.values .sec-head h2, .values .sec-head .kicker { color: #fff; }
.values .sec-head .kicker { color: #b8dd8f; }
.values .sec-head p { color: #cfe0c4; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value { text-align: center; padding: 0 6px; }
.value-icon {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(184, 221, 143, .16); border: 2px solid #b8dd8f; color: #b8dd8f;
  display: grid; place-items: center; font-size: 1.35rem; font-weight: 800; font-family: var(--font-head);
}
.value h3 { color: #fff; font-size: 1.08rem; margin-bottom: 8px; }
.value p { color: #cfe0c4; font-size: .86rem; }

/* ---------- Service area band ---------- */
.areas { background: var(--moss); padding: 56px 0 62px; text-align: center; }
.areas h2 { color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.85rem); margin-bottom: 10px; }
.areas > .container > p { color: #eef2e8; font-size: .92rem; max-width: 620px; margin: 0 auto 22px; }
.areas .zip-form { margin: 0 auto 26px; box-shadow: 0 10px 26px rgba(15, 33, 23, .28); }
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 32px; list-style: none; max-width: 920px; margin: 0 auto; }
.areas-list a { color: #f3f6ee; font-size: .9rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.areas-list a:hover { color: #fff; }

/* ---------- Services directory (home) ---------- */
.directory { background: #fff; padding: 64px 0 70px; }
.dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.dir-col { background: var(--cream); border: 1px solid #e7e4d8; border-radius: 14px; padding: 28px 30px 30px; }
.dir-col h3 { color: var(--pine); font-size: 1.25rem; margin-bottom: 6px; }
.dir-col > p { color: var(--body-green); font-size: .88rem; margin-bottom: 16px; }
.dir-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; }
.dir-col li a { font-size: .88rem; font-weight: 700; color: var(--leaf-dark); text-decoration: underline; text-underline-offset: 3px; }
.dir-col li a:hover { color: var(--pine); }

/* ---------- Resources cards ---------- */
.resources { background: var(--sand); padding: 64px 0 72px; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.res-card { background: #fff; border-radius: 14px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; border: 1px solid #e7e4d8; }
.res-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.res-body { padding: 18px 20px 22px; }
.res-card h3 { color: var(--pine); font-size: 1.05rem; margin-bottom: 8px; }
.res-card p { font-size: .86rem; color: var(--body-green); margin-bottom: 10px; }
.res-card .more { color: var(--leaf-dark); font-weight: 700; font-size: .85rem; }
.res-card:hover h3 { color: var(--leaf-dark); }

/* ---------- Careers band ---------- */
.careers { position: relative; isolation: isolate; text-align: center; padding: 84px 0; }
.careers-bg { position: absolute; inset: 0; z-index: -2; }
.careers-bg img { width: 100%; height: 100%; object-fit: cover; }
.careers::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15, 33, 23, .74); }
.careers h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.careers p { color: #dfe9d8; font-size: .95rem; max-width: 560px; margin: 0 auto 24px; }

/* ---------- Centered intro (subpages) ---------- */
.intro { padding: 60px 0 52px; text-align: center; }
.intro h2 { color: var(--pine); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; }
.intro p { color: var(--body-green); font-size: .95rem; max-width: 800px; margin: 0 auto 12px; }
.intro .btn { margin-top: 12px; }

/* ---------- Detail cards (service pages) ---------- */
.detail-wrap { padding: 0 0 64px; display: grid; gap: 30px; }
.detail-card {
  display: grid; grid-template-columns: 1fr 1.15fr; background: var(--cream);
  border: 1px solid #e7e4d8; border-radius: 16px; overflow: hidden;
}
.detail-media { min-height: 340px; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-body { padding: 40px 5% 44px; }
.detail-body h3 { color: var(--pine); font-size: 1.4rem; margin-bottom: 6px; }
.detail-tag { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--leaf-dark); margin-bottom: 12px; }
.detail-body > p { color: var(--body-green); font-size: .92rem; margin-bottom: 16px; }
.detail-list { list-style: none; margin-bottom: 20px; }
.detail-list li { font-size: .88rem; color: var(--body-green); padding-left: 24px; position: relative; margin-bottom: 8px; }
.detail-list li::before { content: "✓"; position: absolute; left: 0; color: var(--leaf); font-weight: 800; }
.detail-list li b { color: var(--pine); }
.detail-card.rev .detail-media { order: 2; }

/* ---------- Plan cards (lawn-care page) ---------- */
.plans { background: var(--sand); padding: 64px 0 72px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: #fff; border: 1px solid #e7e4d8; border-radius: 16px; padding: 30px 26px 30px; text-align: center; display: flex; flex-direction: column; }
.plan.featured { background: var(--pine); border-color: var(--pine); color: #fff; }
.plan h3 { color: var(--pine); font-size: 1.2rem; margin-bottom: 4px; }
.plan.featured h3 { color: #fff; }
.plan .plan-tag { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--leaf-dark); margin-bottom: 14px; }
.plan.featured .plan-tag { color: #b8dd8f; }
.plan .price { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--pine); line-height: 1; }
.plan.featured .price { color: #fff; }
.plan .per { font-size: .78rem; color: var(--body-green); margin-bottom: 18px; }
.plan.featured .per { color: #cfe0c4; }
.plan ul { list-style: none; text-align: left; margin-bottom: 22px; flex: 1; }
.plan li { font-size: .86rem; color: var(--body-green); padding-left: 22px; position: relative; margin-bottom: 8px; }
.plan.featured li { color: #dfe9d8; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--leaf); font-weight: 800; }
.plan.featured li::before { color: #b8dd8f; }

/* ---------- Steps (design page) ---------- */
.steps-band { background: var(--cream); padding: 60px 0 66px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid #e7e4d8; border-radius: 14px; padding: 26px 22px 26px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--leaf); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 14px;
}
.step h3 { color: var(--pine); font-size: 1.02rem; margin-bottom: 8px; }
.step p { color: var(--body-green); font-size: .86rem; }

/* ---------- Checklist band (irrigation page) ---------- */
.check-band { background: var(--sand); padding: 60px 0 66px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 34px; max-width: 860px; margin: 0 auto; list-style: none; }
.check-grid li { background: #fff; border: 1px solid #e7e4d8; border-radius: 10px; padding: 12px 16px 12px 40px; font-size: .9rem; font-weight: 700; color: var(--pine); position: relative; }
.check-grid li::before { content: "✓"; position: absolute; left: 16px; color: var(--leaf); font-weight: 800; }

/* ---------- Photo strip ---------- */
.photo-strip { background: var(--pine); padding: 26px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.strip-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }

/* ---------- Client type tiles (commercial page) ---------- */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.client-tile { position: relative; isolation: isolate; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1.05; display: grid; place-items: end center; text-decoration: none; }
.client-tile img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.client-tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,33,23,.06) 35%, rgba(15,33,23,.8) 100%); }
.client-tile span { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; text-align: center; padding: 0 12px 20px; }

/* ---------- Connect band (subpages) ---------- */
.connect-band { background: var(--sand); padding: 62px 0; text-align: center; }
.connect-band h2 { color: var(--pine); font-size: clamp(1.4rem, 2.8vw, 2rem); max-width: 760px; margin: 0 auto 12px; }
.connect-band p { color: var(--body-green); font-size: .94rem; max-width: 620px; margin: 0 auto 22px; }
.connect-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 44px; padding: 56px 0 66px; align-items: start; }
.contact-side h3 { font-size: 1.05rem; color: var(--pine); margin: 26px 0 8px; font-family: var(--font-head); }
.contact-side h3:first-child { margin-top: 0; }
.contact-side p { font-size: .89rem; color: var(--body-green); margin-bottom: 10px; }
.contact-side a { color: var(--leaf-dark); }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px; height: 36px; display: grid; place-items: center; background: var(--pine);
  color: #fff; border-radius: 50%; text-decoration: none; font-weight: 700; font-size: .8rem;
  transition: background .15s ease;
}
.social-icons a:hover { background: var(--leaf); }
.contact-form { background: var(--cream); border: 1px solid #e7e4d8; border-radius: 16px; padding: 42px 5% 48px; }
.contact-form h2 { text-align: center; color: var(--pine); font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin-bottom: 26px; }
.f-label { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pine); margin: 16px 0 8px; }
.f-label .req { color: #b3401e; }
.check-list { display: grid; gap: 7px; }
.check-list label, .radio-row label { display: flex; align-items: flex-start; gap: 8px; font-size: .87rem; color: var(--body-green); font-weight: 500; }
.check-list input, .radio-row input { margin-top: 4px; accent-color: var(--leaf); }
.radio-row { display: flex; gap: 22px; flex-wrap: wrap; }
.f-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"],
.contact-form select, .contact-form textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid #d4d0bf; border-radius: 8px;
  font-family: var(--font-body); font-size: .92rem; background: #fff; color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid #b8dd8f; border-color: var(--leaf); }
.form-status { margin-top: 14px; font-weight: 700; font-size: .9rem; color: var(--leaf-dark); }
.contact-form .btn { margin-top: 22px; }
.map-band iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-2); padding: 58px 0 42px; color: #cfe0c4; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1fr; gap: 40px; }
.site-footer h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 14px; color: #fff; }
.site-footer p, .site-footer li, .site-footer a { font-size: .88rem; color: #cfe0c4; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #b8dd8f; text-decoration: underline; }
.footer-brand-top { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: #fff; line-height: 1.1; }
.footer-brand-sub { display: block; font-size: .58rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: #8fa886; margin: 3px 0 14px; }
.footer-map { border: 0; width: 100%; height: 190px; border-radius: 10px; background: #2a4534; }
.footer-social { display: flex; gap: 8px; margin: 12px 0 16px; }
.footer-social a {
  width: 32px; height: 32px; display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff;
  border-radius: 50%; font-size: .72rem; font-weight: 700; text-decoration: none;
}
.footer-social a:hover { background: var(--leaf); text-decoration: none; }

/* ---------- Credit bar ---------- */
.credit { background: var(--pine-3); text-align: center; padding: 16px 14px; font-size: .8rem; color: #9db894; }
.credit a { color: #fff; font-weight: 700; text-decoration: none; }
.credit a:hover { text-decoration: underline; }

/* ---------- Sitely demo chip ---------- */
.demo-chip {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: flex; align-items: center; gap: 8px;
  background: #ffffff; color: #101828; text-decoration: none;
  border-radius: 999px; padding: .55rem 1rem .55rem .7rem;
  font-size: .85rem; font-weight: 600; box-shadow: 0 10px 30px rgba(2, 8, 20, .35);
  border: 1px solid #e4e9f0; transition: transform .16s ease;
}
.demo-chip:hover { transform: translateY(-2px); }
.demo-chip svg { flex: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .svc-cards, .value-grid, .client-grid { grid-template-columns: repeat(2, 1fr); }
  .g-cards.five { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .promise, .detail-card, .rescom { grid-template-columns: 1fr; }
  .detail-card.rev .detail-media { order: 0; }
  .promise-media, .detail-media { min-height: 280px; }
  .rescom-tile { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .plan-grid, .res-grid, .g-cards { grid-template-columns: 1fr; }
  .g-cards.five { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 4px; background: #fff; padding: 82px 6vw 24px; display: none;
    box-shadow: 0 20px 40px rgba(15, 33, 23, .25); border-bottom: 1px solid #e4e2d6;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; position: relative; z-index: 80; }
  .header-btns .btn-leaf { display: none; }
  .header-btns .call-num { display: none; }
  .brand .brand-top { font-size: 1.2rem; }
  .brand .brand-sub { letter-spacing: .24em; }
  .drop-menu { position: static; box-shadow: none; border: 0; background: #eef4e6; margin-top: 4px; }
  .hero-inner { padding: 54px 0 66px; }
  .zip-form { flex-direction: column; border-radius: 18px; }
  .zip-form input { padding: .7rem 1rem; }
  .svc-cards, .value-grid, .client-grid, .steps { grid-template-columns: 1fr; }
  .g-cards.five { grid-template-columns: 1fr; }
  .dir-col ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .f-grid2 { grid-template-columns: 1fr; }
  .tick-cols { grid-template-columns: 1fr; }
}
