/* =====================================================================
   C4 LANDSCAPING — Lawndale, NC
   Style: Clean & Modern + Outdoor / Editorial
   Palette: Forest greens · cream · earth brown · sun gold · waterfall blue
   Type: Strong geometric display (Archivo 900) + clean sans body (Inter)
   ===================================================================== */

:root {
  /* GREENS */
  --leaf:        #6FB23B;   /* the C4 letter green */
  --leaf-dark:   #4A8B25;   /* hover state */
  --forest:      #1E5128;   /* deep forest */
  --forest-2:    #0F2A1F;   /* near-black green */
  --moss:        #2E6B36;
  --sage:        #B8D4A0;

  /* EARTH */
  --bark:        #6F4A2D;
  --stone:       #8B5A2B;
  --rock:        #45382C;

  /* ACCENTS */
  --sun:         #FFA728;
  --sun-2:       #F58A1F;
  --water:       #5BC0EB;

  /* NEUTRALS */
  --cream:       #F5F1E8;   /* matches logo backdrop */
  --cream-2:     #EDE6D6;
  --cream-3:     #FAF7F0;
  --bone:        #FFFDF7;
  --ink:         #1F2A20;
  --ink-2:       #3D4A3D;
  --ink-3:       #6B7666;
  --line:        #D9D2BF;
  --line-2:      #BFB89D;

  --maxw: 1280px;
  --r-xs: 6px; --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-xl: 36px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15,42,31,.06), 0 2px 8px rgba(15,42,31,.05);
  --shadow:    0 8px 24px rgba(15,42,31,.10), 0 2px 6px rgba(15,42,31,.05);
  --shadow-lg: 0 28px 64px rgba(15,42,31,.18), 0 10px 24px rgba(15,42,31,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px; line-height: 1.6;
  font-feature-settings: "ss01","cv11","kern";
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Archivo', system-ui, sans-serif; font-feature-settings: "ss01"; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--moss); text-decoration: none; }
a:hover { color: var(--forest); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

/* ───────── ANNOUNCE BAR ───────── */
.announce {
  background: var(--forest-2); color: #C8DBC2;
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
}
.announce-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 16px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.announce a { color: #fff; }
.announce-left, .announce-right { display: flex; align-items: center; gap: 22px; }
.announce-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 3px 11px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.06);
}
.announce-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(111,178,59,.18); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
@media (max-width: 900px) { .announce-right .announce-pill:nth-child(2), .announce-left .announce-pill:nth-child(2) { display: none; } }
@media (max-width: 600px) { .announce-inner { font-size: 12px; height: 34px; padding: 0 14px; gap: 8px; } .announce-left .announce-pill:not(:first-child), .announce-right .announce-pill:not(:first-child) { display: none; } }

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,241,232,.94); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 24px;
  height: 88px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-img { height: 72px; width: auto; }
.brand-text { display: none; }

.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: 15px;
  letter-spacing: .01em; padding: 8px 0;
  position: relative;
}
.nav-links a.active, .nav-links a:hover { color: var(--forest); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--leaf); border-radius: 3px;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-fb {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-2); color: var(--forest);
  transition: all .2s ease;
}
.nav-fb:hover { background: var(--forest); color: #fff; transform: translateY(-1px); }
.nav-fb svg { width: 18px; height: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--forest); font-size: 16px;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--leaf); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  cursor: pointer; transition: all .22s ease;
  border: 0; white-space: nowrap;
}
.btn-primary { background: var(--leaf); color: var(--forest-2); box-shadow: 0 6px 18px rgba(111,178,59,.36); }
.btn-primary:hover { background: var(--leaf-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(74,139,37,.46); }
.btn-secondary { background: var(--forest); color: #fff; }
.btn-secondary:hover { background: var(--moss); color: #fff; }
.btn-ghost { background: transparent; color: var(--forest); border: 2px solid var(--line-2); }
.btn-ghost:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-sun { background: var(--sun); color: var(--ink); box-shadow: 0 6px 18px rgba(255,167,40,.36); }
.btn-sun:hover { background: var(--sun-2); color: #fff; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }

.nav-toggle { display: none; background: var(--forest); color: #fff; border: 0; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right .nav-phone { display: none; }
  .nav-right .btn { display: none; }
  .nav-right { margin-left: auto; align-items: center; gap: 10px; }
  .brand { margin-right: auto; }
  /* Equalize sizes + ensure vertical centering */
  .nav-fb,
  .nav-toggle {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    margin: 0;
    padding: 0;
  }
  .nav-fb { background: var(--cream-2); color: var(--forest); border-radius: 50%; }
  .nav-toggle { background: var(--forest); color: #fff; border-radius: 50%; }
  .nav-fb svg, .nav-toggle svg { display: block; }
}
@media (max-width: 720px) {
  .nav-inner { height: 68px; padding: 0 14px; gap: 12px; align-items: center; }
  .brand-img { height: 52px; }
  .nav-fb, .nav-toggle { width: 42px; height: 42px; }
}

/* Mobile drawer */
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 90vw; background: var(--forest-2); color: #fff; padding: 30px 28px; transform: translateX(110%); transition: transform .28s ease; z-index: 100; box-shadow: var(--shadow-lg); }
.drawer.open { transform: translateX(0); }
.drawer-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,.08); border: 0; color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }
.drawer h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin: 24px 0 12px; }
.drawer a { display: block; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.10); font-weight: 600; font-size: 17px; }
.drawer a:hover { color: var(--leaf); }
.drawer .btn { width: 100%; margin-top: 18px; }
.drawer-fb { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(255,255,255,.08); border-radius: var(--r-pill); margin-top: 12px; }
.drawer-fb svg { width: 16px; height: 16px; }
.scrim { position: fixed; inset: 0; background: rgba(15,42,31,.55); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ───────── HERO ───────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--cream);
}
.hero-bg { display: none; }
.hero-mobile-logo { display: none; }

.hero-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 90px 28px 110px;
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr);
  gap: 70px; align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 0; padding: 60px 22px 80px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(111,178,59,.14); border: 1px solid rgba(74,139,37,.32);
  color: var(--forest); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 3px rgba(111,178,59,.25); }

.hero h1 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 96px); line-height: .98; letter-spacing: -.04em;
  color: var(--forest-2); margin: 0 0 22px;
  text-transform: none;
}
.hero h1 em {
  font-family: 'Archivo', system-ui, sans-serif; font-style: italic;
  color: var(--leaf-dark); position: relative;
  font-weight: 800;
}
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 6px; background: var(--sun);
  border-radius: 3px;
}
.hero-sub {
  font-size: 19px; line-height: 1.6; color: var(--ink-2);
  max-width: 540px; margin: 0 0 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-stat .num { font-family: 'Archivo', system-ui, sans-serif; font-size: 36px; font-weight: 800; color: var(--forest); letter-spacing: -.02em; line-height: 1; }
.hero-stat .num em { font-style: italic; color: var(--sun-2); }
.hero-stat .lbl { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; margin-top: 8px; }

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(15,42,31,.35));
}

.hero-callout {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 3;
  background: rgba(255,253,247,.96); backdrop-filter: blur(8px);
  padding: 18px 22px; border-radius: var(--r);
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow);
}
.hero-callout .ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--leaf); color: var(--forest-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-callout h5 { margin: 0 0 2px; font-size: 16px; font-weight: 800; color: var(--forest-2); letter-spacing: -.01em; }
.hero-callout p { margin: 0; font-size: 13.5px; color: var(--ink-3); }

@media (max-width: 980px) { .hero-callout { left: 16px; right: 16px; bottom: 16px; } }

/* ───────── TRUST STRIP ───────── */
.trust {
  background: var(--cream-3);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--leaf); color: var(--forest-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item .ico svg { width: 22px; height: 22px; }
.trust-item .ttl { font-weight: 800; font-size: 15px; color: var(--forest-2); letter-spacing: -.005em; }
.trust-item .sub { font-size: 13px; color: var(--ink-3); }
@media (max-width: 720px) { .trust-row { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ───────── SECTION ───────── */
section { padding: 120px 0; }
@media (max-width: 720px) { section { padding: 70px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--leaf); }

.h-display {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4.8vw, 72px); line-height: 1.0; letter-spacing: -.035em;
  color: var(--forest-2); margin: 0 0 20px;
}
.h-display em { font-style: italic; font-weight: 800; color: var(--leaf-dark); }
.lede { font-size: 19px; line-height: 1.65; color: var(--ink-2); max-width: 700px; }

/* ───────── SERVICES — MAGAZINE LAYOUT ───────── */
.svc-head {
  display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 40px; margin-bottom: 60px;
}
@media (max-width: 720px) { .svc-head { grid-template-columns: 1fr; gap: 16px; } }

.svc-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}
.svc-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); background: var(--bone);
  box-shadow: var(--shadow-sm);
  transition: all .28s ease;
  border: 1px solid var(--line);
  grid-column: span 4;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--leaf); }
.svc-card.large { grid-column: span 8; }
.svc-card.wide { grid-column: span 6; }
.svc-photo { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.svc-card:hover .svc-photo img { transform: scale(1.05); }
.svc-card.large .svc-photo { aspect-ratio: 16/10; }
.svc-body { padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.svc-number { font-family: 'Archivo', system-ui, sans-serif; font-size: 14px; font-weight: 800; color: var(--leaf-dark); letter-spacing: .04em; margin-bottom: 8px; }
.svc-body h3 { font-family: 'Archivo', system-ui, sans-serif; font-size: 26px; font-weight: 800; color: var(--forest-2); letter-spacing: -.01em; margin: 0 0 12px; line-height: 1.1; }
.svc-body p { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; margin: 0 0 18px; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--forest); font-size: 14px; letter-spacing: .02em;
  align-self: flex-start;
}
.svc-link:hover { color: var(--leaf-dark); gap: 12px; }
.svc-link svg { transition: transform .2s; }
.svc-link:hover svg { transform: translateX(3px); }
@media (max-width: 980px) {
  .svc-card, .svc-card.large, .svc-card.wide { grid-column: span 6; }
}
/* On phones: 2-column compact tile grid instead of full-width stack.
   Cuts services-section scroll roughly in half. */
@media (max-width: 720px) {
  .svc-grid { gap: 14px; }
  .svc-card, .svc-card.large, .svc-card.wide { grid-column: span 6; }
  .svc-photo, .svc-card.large .svc-photo { aspect-ratio: 4/3; }
  .svc-body { padding: 16px 16px 20px; }
  .svc-body h3 { font-size: 17px; margin-bottom: 6px; line-height: 1.15; }
  .svc-body p { font-size: 13px; line-height: 1.4; margin-bottom: 10px; }
  .svc-number { font-size: 11px; margin-bottom: 4px; }
  .svc-link { font-size: 12px; }
}

/* ───────── HOA / PROPERTY-MAINTENANCE CALLOUT ─────────
   Sits above the numbered service grid. Two stacked rows:
   row 1 = title / lede / CTAs, row 2 = 4-image picture listing. */
.hoa-feature {
  padding: 80px 0 40px;
  background:
    linear-gradient(180deg, rgba(15,42,31,0) 0%, var(--cream-3) 60%, var(--cream-3) 100%);
}
.hoa-row {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 48px 40px;
  box-shadow: var(--shadow-sm);
}
.hoa-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.hoa-head h2 { margin: 6px 0 14px; }
.hoa-head p.lede { grid-column: 1 / -1; max-width: 880px; margin: 0; font-size: 16.5px; color: var(--ink-2); line-height: 1.55; }
.hoa-head .hoa-cta { grid-column: 2; align-self: end; display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 820px) {
  .hoa-feature { padding: 50px 0 30px; }
  .hoa-row { padding: 28px 22px 26px; border-radius: var(--r); }
  .hoa-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; }
  .hoa-head .hoa-cta { grid-column: 1; justify-content: flex-start; }
  .hoa-head h2 { font-size: 30px; }
  .hoa-head p.lede { font-size: 14.5px; }
}
.hoa-pics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hoa-pics figure {
  margin: 0;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  background: #000;
}
.hoa-pics img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.hoa-pics figure:hover img { transform: scale(1.05); }
.hoa-pics figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(15,42,31,0.92); color: #fff;
  padding: 8px 12px; border-radius: 6px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .hoa-pics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hoa-pics figure { aspect-ratio: 4/5; }
  .hoa-pics figcaption { font-size: 10.5px; padding: 6px 10px; left: 8px; right: 8px; bottom: 8px; }
}

/* ───────── RECENT WORK GALLERY ─────────
   6 tiles → 3-col on desktop (2 rows), 2-col on mobile (3 rows). */
.recent-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 820px) {
  .recent-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
}

/* ───────── FULL CAPABILITIES LIST ───────── */
.capability-bar {
  margin-top: 60px; padding: 36px 40px;
  background: var(--forest-2); border-radius: var(--r-lg);
  color: #fff;
}
.capability-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.capability-head h3 { margin: 0; font-family: 'Archivo', system-ui, sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
.capability-head p { margin: 4px 0 0; color: var(--sage); font-size: 15px; }
.capability-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.capability { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,.06); border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.08); }
.capability:hover { background: rgba(111,178,59,.18); border-color: var(--leaf); }
.capability .ico { width: 32px; height: 32px; border-radius: 8px; background: var(--leaf); color: var(--forest-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.capability .ico svg { width: 16px; height: 16px; }
.capability span { color: #fff; font-weight: 600; font-size: 14px; }

/* ───────── SPLIT (about / story) ───────── */
.split {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 80px; align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.split-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-photo .quote {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  background: var(--bone); padding: 18px 22px; border-radius: var(--r);
  font-family: 'Archivo', system-ui, sans-serif; font-style: italic; font-size: 17px;
  color: var(--forest-2); line-height: 1.45;
  box-shadow: var(--shadow);
}
.split-photo .quote small { display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: 12px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .12em; margin-top: 8px; }

.split-content p { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin: 0 0 18px; max-width: 540px; }

/* ───────── PROCESS — TIMELINE ───────── */
.process { background: var(--forest-2); color: #fff; position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; top: 50%; right: -180px;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,178,59,.16), transparent 65%);
}
.process .h-display { color: #fff; }
.process .h-display em { color: var(--leaf); }
.process .lede { color: var(--sage); }
.process .eyebrow { color: var(--leaf); }
.process .eyebrow::before { background: var(--leaf); }

.process-head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); gap: 60px; align-items: end; margin-bottom: 70px; }
@media (max-width: 900px) { .process-head { grid-template-columns: 1fr; gap: 24px; } }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; gap: 18px; } }

.step {
  padding: 34px 28px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(111,178,59,.22); border-radius: var(--r);
  position: relative; transition: all .25s ease;
}
.step:hover { background: rgba(111,178,59,.10); transform: translateY(-3px); border-color: var(--leaf); }
.step-num {
  position: absolute; top: -22px; left: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--leaf); color: var(--forest-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', system-ui, sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.02em;
  box-shadow: 0 6px 18px rgba(111,178,59,.42);
}
.step h4 { margin: 22px 0 10px; font-family: 'Archivo', system-ui, sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--sage); font-size: 14.5px; line-height: 1.6; }

/* ───────── CTA BAND — Outdoor scene ───────── */
.cta-band {
  position: relative; overflow: hidden;
  background:
    linear-gradient(115deg, rgba(15,42,31,.85) 0%, rgba(30,81,40,.7) 60%, rgba(74,139,37,.55) 100%),
    url('../images/hero-lawn.jpg') center / cover no-repeat;
  color: #fff;
}
.cta-grid { display: grid; grid-template-columns: minmax(0,1.4fr) auto; gap: 50px; align-items: center; }
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; } }
.cta-band h2 { font-family: 'Archivo', system-ui, sans-serif; font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -.015em; font-weight: 800; color: #fff; margin: 0 0 14px; }
.cta-band h2 em { font-style: italic; color: var(--leaf); }
.cta-band p { color: rgba(255,255,255,.88); font-size: 17px; margin: 0; max-width: 580px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
@media (max-width: 820px) { .cta-actions { justify-content: center; } }
.cta-band .btn-primary { background: #fff; color: var(--forest-2); }
.cta-band .btn-primary:hover { background: var(--leaf); color: var(--forest-2); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ───────── SERVICE DETAIL HERO ───────── */
.page-hero {
  background: linear-gradient(180deg, var(--cream-3) 0%, var(--cream) 100%);
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; font-weight: 600; color: var(--ink-3); margin-bottom: 22px; }
.breadcrumb a { color: var(--moss); }
.page-hero h1 { font-family: 'Archivo', system-ui, sans-serif; font-size: clamp(44px, 5vw, 72px); line-height: 1.04; letter-spacing: -.02em; font-weight: 900; color: var(--forest-2); margin: 0 0 18px; max-width: 900px; }
.page-hero h1 em { font-style: italic; color: var(--leaf-dark); font-weight: 400; }
.page-hero p { font-size: 19px; color: var(--ink-2); max-width: 720px; line-height: 1.6; }

/* ───────── SERVICE DETAIL BLOCKS ───────── */
.svc-detail-row {
  display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
  gap: 60px; align-items: start;
}
@media (max-width: 980px) { .svc-detail-row { grid-template-columns: 1fr; gap: 36px; } }

.svc-block {
  background: var(--bone); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.svc-block .photo { aspect-ratio: 16/9; overflow: hidden; }
.svc-block .photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-block .body { padding: 36px 40px 40px; }
.svc-block .body h3 { font-family: 'Archivo', system-ui, sans-serif; font-size: 30px; font-weight: 800; color: var(--forest-2); letter-spacing: -.015em; margin: 0 0 14px; line-height: 1.1; }
.svc-block .body p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin: 0 0 16px; }
.svc-block .bullets { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.svc-block .bullets li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-2); }
.svc-block .bullets li::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: var(--leaf); color: var(--forest-2); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 3px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F2A1F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: 12px; background-position: center; background-repeat: no-repeat; }

.aside-card {
  position: sticky; top: 110px;
  background: var(--forest-2); color: #fff;
  border-radius: var(--r-lg); padding: 34px 32px;
  box-shadow: var(--shadow);
}
.aside-card h4 { margin: 0 0 10px; font-family: 'Archivo', system-ui, sans-serif; font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.aside-card p { color: var(--sage); font-size: 15px; line-height: 1.6; margin: 0 0 24px; }
.aside-card .info-row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.10); }
.aside-card .info-row:first-of-type { border-top: 0; padding-top: 0; }
.aside-card .info-row .ico { width: 42px; height: 42px; border-radius: 50%; background: var(--leaf); color: var(--forest-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aside-card .info-row .ttl { font-size: 11.5px; color: var(--sage); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.aside-card .info-row .val { font-size: 15.5px; color: #fff; font-weight: 700; margin-top: 3px; }
.aside-card .info-row a { color: #fff; }
.aside-card .btn { width: 100%; margin-top: 22px; }

/* ───────── SERVICE AREAS ───────── */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 40px;
}
@media (max-width: 800px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-tile {
  background: var(--bone); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  transition: all .22s ease;
}
.area-tile:hover { border-color: var(--leaf); background: var(--cream-3); transform: translateY(-2px); }
.area-tile .pin { width: 36px; height: 36px; border-radius: 50%; background: var(--cream-2); color: var(--forest); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-tile .pin svg { width: 18px; height: 18px; }
.area-tile h5 { margin: 0; font-size: 15.5px; font-weight: 800; color: var(--forest-2); letter-spacing: -.005em; }
.area-tile small { color: var(--ink-3); font-size: 12.5px; }

/* ───────── FAQ ───────── */
.faq-list { max-width: 880px; margin: 50px auto 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item details summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: 'Archivo', system-ui, sans-serif; font-size: 22px; font-weight: 800; color: var(--forest-2); letter-spacing: -.01em;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after {
  content: "+"; font-size: 28px; font-weight: 400; color: var(--forest);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--leaf); border-radius: 50%;
  flex-shrink: 0; transition: transform .25s ease;
  background: var(--cream-3);
}
.faq-item details[open] summary::after { content: "−"; transform: rotate(180deg); background: var(--leaf); color: var(--forest-2); }
.faq-item p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin: 16px 0 0; }

/* ───────── CONTACT FORM ───────── */
.contact-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 56px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

.contact-card {
  background: var(--bone); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 40px 42px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-family: 'Archivo', system-ui, sans-serif; font-size: 28px; font-weight: 800; color: var(--forest-2); letter-spacing: -.015em; margin: 0 0 10px; }
.contact-card p { color: var(--ink-2); font-size: 15.5px; margin: 0 0 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--forest-2); margin-bottom: 6px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: 15px; color: var(--forest-2); background: #fff;
  transition: all .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(111,178,59,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-full { grid-column: 1 / -1; }

.contact-info-card {
  background: var(--forest-2); color: #fff;
  border-radius: var(--r-lg); padding: 40px 38px;
}
.contact-info-card h3 { color: #fff; font-family: 'Archivo', system-ui, sans-serif; font-size: 28px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.015em; }
.contact-info-card .sub { color: var(--sage); font-size: 15.5px; margin: 0 0 30px; }
.contact-info-card .info-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.10); }
.contact-info-card .info-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-info-card .info-row .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--leaf); color: var(--forest-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .info-row .ttl { font-size: 11.5px; color: var(--sage); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.contact-info-card .info-row .val { font-size: 17px; color: #fff; font-weight: 700; margin-top: 3px; }
.contact-info-card .info-row a { color: #fff; }
.contact-info-card .btn { margin-top: 26px; width: 100%; }
.contact-info-card .fb-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; background: rgba(255,255,255,.08); border-radius: var(--r-pill);
  font-weight: 700; color: #fff; font-size: 14.5px; margin-top: 18px;
}
.contact-info-card .fb-link:hover { background: rgba(91,192,235,.18); color: #fff; }
.contact-info-card .fb-link svg { width: 18px; height: 18px; }

/* ───────── FOOTER ───────── */
footer {
  background: var(--forest-2); color: var(--sage);
  padding: 90px 0 30px;
}
.foot-grid { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(3, 1fr); gap: 50px; margin-bottom: 50px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

.foot-brand img { width: 240px; height: auto; margin-bottom: 22px; }
.foot-brand p { color: var(--sage); font-size: 14.5px; line-height: 1.7; max-width: 380px; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; transition: all .2s; }
.foot-social a:hover { background: var(--leaf); color: var(--forest-2); }
.foot-social a svg { width: 18px; height: 18px; }

.foot-col h5 { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin: 8px 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.foot-col ul a { color: var(--sage); font-size: 15px; }
.foot-col ul a:hover { color: var(--leaf); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--sage);
}
.foot-bottom a { color: var(--sage); }

/* ───────── STICKY MOBILE CTA ───────── */
.mob-cta {
  display: none;
  position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 60;
  background: var(--bone); border-radius: var(--r);
  padding: 10px;
  box-shadow: 0 12px 32px rgba(15,42,31,.22);
  border: 1px solid var(--line);
}
.mob-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mob-cta-row .btn { height: 48px; }
@media (max-width: 720px) { .mob-cta { display: block; } body { padding-bottom: 78px; } }

/* ───────── UTIL + REVEAL ───────── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
  [data-reveal].in { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════ */
/* ═══════ MOBILE — FULL-BLEED HERO + EVERYTHING TUNED  ═══════ */
@media (max-width: 720px) {
  section { padding: 56px 0; }
  .page-hero { padding: 60px 0 44px; }

  /* HERO — fills viewport with bg image */
  .hero {
    position: relative;
    min-height: calc(100vh - 106px);
    min-height: calc(100dvh - 106px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-bg {
    display: block;
    position: absolute; inset: 0; z-index: -2;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(245,241,232,.86) 0%, rgba(245,241,232,.7) 50%, rgba(15,42,31,.78) 100%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 22px 38px;
    gap: 0;
    width: 100%;
    align-items: center;
    justify-items: center;
  }
  .hero-text { width: 100%; max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero-mobile-logo {
    display: block;
    width: min(78%, 280px);
    height: auto;
    margin: 0 auto 22px;
    filter: drop-shadow(0 10px 28px rgba(15,42,31,.32));
  }
  .hero-eyebrow {
    margin: 0 0 18px;
    background: rgba(255,253,247,.86);
    border-color: rgba(74,139,37,.32);
    backdrop-filter: blur(6px);
  }
  .hero h1 {
    text-align: center;
    font-size: clamp(36px, 8.4vw, 52px);
    line-height: 1.04;
    margin-bottom: 18px;
    color: var(--forest-2);
  }
  .hero h1 em { color: var(--leaf-dark); }
  .hero h1 .underline::after { height: 5px; bottom: -4px; }
  .hero-sub {
    text-align: center;
    font-size: 16px; line-height: 1.55;
    margin: 0 auto 26px;
    max-width: 360px;
    color: var(--ink-2);
  }
  .hero-ctas {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
  }
  .hero-ctas .btn-lg { width: 100%; height: 56px; padding: 0 22px; font-size: 16px; flex: none; }
  .hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 20px;
    margin: 0 auto;
    max-width: 360px;
    border-top: 1px solid rgba(15,42,31,.16);
  }
  .hero-stat { text-align: center; }
  .hero-stat .num { font-size: 26px; }
  .hero-stat .lbl { font-size: 10.5px; letter-spacing: .12em; }
  .hero-photo { display: none; }

  /* Trust strip */
  .trust { padding: 24px 0 !important; }
  .trust-row { gap: 18px 14px; }
  .trust-item .ttl { font-size: 13.5px; }
  .trust-item .sub { font-size: 11.5px; }
  .trust-item .ico { width: 38px; height: 38px; }

  /* Headlines + ledes */
  .h-display { font-size: clamp(32px, 8vw, 44px); margin-bottom: 14px; }
  .lede { font-size: 16.5px; }
  .eyebrow { font-size: 12px; margin-bottom: 12px; }

  /* Service cards */
  .svc-head { margin-bottom: 30px; gap: 14px; }
  .svc-grid { gap: 16px; }
  .svc-body { padding: 22px 24px 26px; }
  .svc-body h3 { font-size: 22px; }
  .svc-body p { font-size: 14.5px; margin-bottom: 14px; }
  .svc-number { font-size: 13px; }

  /* Capability bar */
  .capability-bar { padding: 26px 22px; margin-top: 36px; }
  .capability-head h3 { font-size: 22px; }
  .capability-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .capability { padding: 11px 12px; gap: 10px; }
  .capability .ico { width: 28px; height: 28px; }
  .capability span { font-size: 13px; }

  /* Split */
  .split { gap: 30px; }
  .split-content p { font-size: 15.5px; }
  .split-photo .quote { left: 16px; right: 16px; bottom: 16px; padding: 14px 16px; font-size: 15px; }

  /* Process */
  .process-head { gap: 18px; margin-bottom: 44px; }
  .step { padding: 26px 24px; }
  .step h4 { font-size: 20px; }
  .step p { font-size: 14px; }
  .step-num { width: 42px; height: 42px; font-size: 18px; }

  /* CTA band */
  .cta-band h2 { font-size: clamp(28px, 7vw, 38px); }
  .cta-band p { font-size: 15.5px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }

  /* FAQ */
  .faq-list { margin-top: 30px; }
  .faq-item { padding: 18px 0; }
  .faq-item details summary { font-size: 17px; gap: 14px; }
  .faq-item details summary::after { width: 30px; height: 30px; font-size: 22px; }

  /* Service detail */
  .page-hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .page-hero p { font-size: 16px; }
  .svc-block .body { padding: 24px 24px 28px; }
  .svc-block .body h3 { font-size: 24px; }
  .svc-block .body p { font-size: 15px; }
  .svc-detail-row { gap: 24px; }
  .aside-card { padding: 26px 22px; position: static; }

  /* Areas */
  .areas-grid { gap: 10px; }
  .area-tile { padding: 14px 16px; gap: 12px; }

  /* Contact */
  .contact-card { padding: 26px 22px 30px; }
  .contact-info-card { padding: 28px 22px; }
  .contact-card h3, .contact-info-card h3 { font-size: 22px; }

  /* Footer */
  footer { padding: 60px 0 24px; }
  .foot-grid { gap: 28px; margin-bottom: 32px; }
  .foot-brand img { width: 200px; }
  .foot-brand p { font-size: 13.5px; }
}
