/* =========================================================
   Balerio Reyes Lawncare & Landscaping — Design System
   ========================================================= */

:root {
  /* Brand colors */
  --evergreen: #18352B;
  --teal-1: #7C927E;
  --teal-2: #99AB96;
  --parchment: #F8F5EF;
  --linen: #F5F1E8;
  --graphite: #2F2F2F;
  --camel: #B89B72;
  --white: #FFFFFF;

  /* Derived tones */
  --evergreen-hover: #234a3c;
  --evergreen-soft: rgba(24, 53, 43, 0.08);
  --line: rgba(24, 53, 43, 0.12);
  --shadow-sm: 0 2px 10px rgba(24, 53, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(24, 53, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(24, 53, 43, 0.14);

  /* Typography */
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--parchment);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--evergreen); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.12rem; }
p { color: var(--graphite); }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-1);
  margin-bottom: 14px;
  display: inline-block;
}
.lead { font-size: 1.14rem; color: #47504b; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 900px; }
section { padding: 84px 0; }
.section-sm { padding: 60px 0; }
.bg-parchment { background: var(--parchment); }
.bg-linen { background: var(--linen); }
.bg-white { background: var(--white); }
.bg-evergreen { background: var(--evergreen); }
.bg-evergreen h1, .bg-evergreen h2, .bg-evergreen h3, .bg-evergreen p, .bg-evergreen li { color: #EFEAE0; }
.bg-evergreen .eyebrow { color: var(--teal-2); }
.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 14px; color: #55605a; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 15px 28px; border-radius: 40px; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  text-align: center; line-height: 1.2;
}
.btn-primary { background: var(--evergreen); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--evergreen-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--evergreen); border: 1.5px solid var(--evergreen); }
.btn-secondary:hover { background: var(--evergreen); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: #fff; color: var(--evergreen); }
.btn-camel { background: var(--camel); color: #fff; }
.btn-camel:hover { background: #a7885f; transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.text-link { font-family: var(--font-head); font-weight: 600; color: var(--evergreen); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s var(--ease), color .2s; }
.text-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.text-link:hover { gap: 11px; color: var(--teal-1); }
.text-link.light { color: var(--teal-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }
.logo { display: flex; align-items: center; line-height: 1; }
.logo .logo-mark { font-weight: 800; font-size: 1.28rem; color: var(--evergreen); letter-spacing: -0.02em; }
.logo .logo-sub { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-1); margin-top: 4px; font-weight: 600; }
/* Image logo (header + footer) — width:auto preserves the file's true aspect ratio */
.logo-img { display: block; height: 72px; width: auto; object-fit: contain; }
/* Footer sits on a dark background — render the logo white so it contrasts */
.footer-brand .logo-img { height: 71px; filter: brightness(0) invert(1); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.96rem;
  color: var(--graphite); padding: 10px 15px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.nav > li > a:hover { color: var(--evergreen); }
.nav > li.active > a { color: var(--evergreen); }
.nav > li.active > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px; background: var(--evergreen); border-radius: 2px;
}
.nav .caret { width: 10px; height: 10px; transition: transform .25s var(--ease); }
.has-dropdown:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 268px; padding: 10px; opacity: 0; visibility: hidden; transition: all .22s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; font-size: 0.95rem; font-family: var(--font-head); font-weight: 500; color: var(--graphite); transition: background .18s, color .18s; }
.dropdown a:hover { background: var(--linen); color: var(--evergreen); }
.dropdown a.overview { color: var(--evergreen); font-weight: 700; border-bottom: 1px solid var(--line); border-radius: 8px 8px 0 0; margin-bottom: 4px; padding-bottom: 13px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 20px; font-size: 0.9rem; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--evergreen); font-size: 0.92rem; white-space: nowrap; }
.header-phone svg { width: 17px; height: 17px; }

/* Hamburger */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line); align-items: center; justify-content: center; background: #fff; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--evergreen); position: relative; transition: .3s var(--ease); }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--evergreen); transition: .3s var(--ease); }
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .hamburger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--parchment); z-index: 999; transform: translateX(100%); transition: transform .32s var(--ease); overflow-y: auto; padding: 24px 28px 60px; }
body.menu-open .mobile-menu { transform: translateX(0); }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu > ul > li > a { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; padding: 16px 4px; border-bottom: 1px solid var(--line); color: var(--evergreen); }
.mobile-menu .m-toggle .caret { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--ease); }
.mobile-menu .subnav { padding: 4px 0 10px 14px; }
.mobile-menu .subnav a { display: block; padding: 11px 4px; font-size: 1rem; color: var(--graphite); font-family: var(--font-head); }
.mobile-menu .subnav a.overview { font-weight: 700; color: var(--evergreen); }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.mobile-cta .btn { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding: 72px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero p.lead { margin-bottom: 30px; max-width: 560px; }
.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4 / 3.4; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; }
.hero-badge .num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--evergreen); line-height: 1; }
.hero-badge .lbl { font-size: 0.82rem; color: #55605a; line-height: 1.3; }

/* Full-bleed homepage hero */
.hero-home { padding: 0; height: 80vh; max-height: 1200px; min-height: 540px; display: flex; align-items: flex-end; }
.hero-home .hero-home-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; border-radius: 0; }
.hero-home::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(24,53,43,0.78) 0%, rgba(24,53,43,0.45) 45%, rgba(24,53,43,0.15) 100%), linear-gradient(0deg, rgba(24,53,43,0.65) 0%, rgba(24,53,43,0) 55%); }
.hero-home-inner { position: relative; z-index: 2; width: 100%; max-width: 1600px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-top: 36px; padding-bottom: 52px; padding-left: clamp(28px, 5vw, 76px); padding-right: clamp(28px, 5vw, 76px); }
.hero-home-copy { max-width: 620px; }
.hero-home-copy .eyebrow { color: var(--camel); margin-bottom: 10px; }
.hero-home-copy h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 3.6vw, 2.95rem); }
.hero-home-copy p.lead { color: rgba(255,255,255,0.9); margin-bottom: 26px; max-width: 540px; font-size: 1rem; }
.hero-home-badges { display: flex; align-items: stretch; background: rgba(24,53,43,0.55); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); backdrop-filter: blur(6px); flex-shrink: 0; }
.hero-home-badges li { display: flex; align-items: center; gap: 12px; padding: 20px 24px; }
.hero-home-badges li + li { border-left: 1px solid rgba(255,255,255,0.16); }
.hero-home-badges svg { width: 26px; height: 26px; color: var(--teal-2); flex-shrink: 0; }
.hero-home-badges .bt { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: #fff; line-height: 1.2; }
.hero-home-badges .bs { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.72); line-height: 1.3; }
/* Hero height eases down as the screen gets wider (laptops 80vh → large monitors 60vh) */
@media (min-width: 1500px) { .hero-home { height: 70vh; } }
@media (min-width: 1728px) { .hero-home { height: 60vh; } }
/* Site-wide content column widens on large screens (laptops 1200 → large monitors 1600) */
@media (min-width: 1500px) { :root { --container: 1600px; } }

.hero-inner-page { padding: 60px 0; text-align: center; }
.hero-inner-page .container { max-width: 820px; }
.hero-inner-page p.lead { margin: 18px auto 28px; }

/* About hero — lawn-care background image, left copy + CTA, right image box for the owner photo */
.ab-hero { position: relative; overflow: hidden; background: var(--linen); padding: 0; }
.ab-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ab-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* light scrim so the copy stays legible over the photo */
.ab-hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(245, 241, 232, 0.94) 0%, rgba(245, 241, 232, 0.80) 42%, rgba(245, 241, 232, 0.52) 100%); }
.ab-hero .container { position: relative; z-index: 2; }
.ab-hero-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; min-height: min(90vh, 820px); padding: clamp(40px, 5vw, 72px) 0; }
.ab-hero-content { max-width: 560px; }
.ab-hero-content .eyebrow { color: var(--camel); }
.ab-hero-content h1 { margin: 12px 0 20px; }
.ab-hero-content .lead { color: #55605a; }
.ab-hero-content .btn-row { margin-top: 32px; }
/* vertical image box placeholder for the owner photo */
.ab-hero-photo { aspect-ratio: 4 / 3; width: 100%; max-width: 660px; margin-left: auto; border-radius: var(--radius); overflow: hidden; }
.ab-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Services page hero — full-bleed evergreen panel + straddling photo card */
.services-hero {
  position: relative; overflow: hidden; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: min(90vh, 860px);
  background: #ece4d4;
}
/* Evergreen panel with a subtle wavy line pattern, reaching top & bottom */
.services-hero::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 36%; z-index: 0;
  background-color: var(--evergreen);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='90' viewBox='0 0 18 90'%3E%3Cpath d='M9 0 C 16 15 2 30 9 45 C 16 60 2 75 9 90' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2'/%3E%3C/svg%3E");
}
.services-hero-media { position: relative; z-index: 1; display: flex; align-items: center; justify-content: flex-end; padding: 56px 44px 56px 0; }
.services-hero-media img { width: min(82%, 470px); aspect-ratio: 3 / 3.7; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.services-hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 84px); max-width: 800px; }
.services-hero-content h1 { margin-bottom: 20px; }
.services-hero-content p.lead { margin-bottom: 32px; max-width: 560px; }

/* Lawn Care hero — full-bleed image, angled bottom edge, overlapping badge card */
.lc-hero { position: relative; padding: 0 0 clamp(24px, 3vw, 48px); }
.lc-hero-top {
  display: flex; align-items: center;
  min-height: min(85vh, 800px);
  padding: clamp(80px, 10vh, 118px) 0 clamp(120px, 13vh, 158px);
  background-image: linear-gradient(rgba(20, 42, 34, 0.72), rgba(20, 42, 34, 0.72)), url("../img/BalerioReyesImages/Lawncare/LawncareHero1.webp");
  background-size: cover; background-position: center; background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), 50% 100%, 0 calc(100% - 46px));
}
.lc-hero-content { max-width: 860px; margin: 0 auto; text-align: center; }
.lc-hero-content h1 { color: #fff; }
.lc-rule { display: block; width: 84px; height: 4px; background: var(--camel); border-radius: 2px; margin: 24px auto 26px; }
.lc-hero-content p.lead { color: rgba(255, 255, 255, 0.9); max-width: 660px; margin: 0 auto 32px; }
.lc-badges {
  position: relative; z-index: 2; max-width: 1040px; margin: -70px auto 0;
  background: #fff; border-top: 5px solid var(--camel); border-radius: 4px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 36px);
  padding: clamp(34px, 4vw, 46px) clamp(24px, 3vw, 38px); text-align: center;
}
.lc-badge-ic { width: 62px; height: 62px; border-radius: 50%; background: var(--camel); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.lc-badge-ic svg { width: 28px; height: 28px; }
.lc-badge h3 { font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.lc-badge p { color: #55605a; font-size: 0.95rem; }

/* Arched-image hero — text left + arched-top image right (Landscaping, Seasonal, …) */
.arch-hero { padding: clamp(44px, 6vw, 84px) 0; }
.arch-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.arch-hero-body h1 { margin: 10px 0 20px; }
.arch-hero-body p.lead { margin-bottom: 32px; max-width: 560px; }
.arch-hero-media img { width: 100%; aspect-ratio: 4 / 4.3; object-fit: cover; box-shadow: var(--shadow-lg); display: block; border-radius: 46% 12px 46% 12px / 32% 12px 32% 12px; }

/* Premium hero — split header + full-width image + 4 feature cards */
.pp-hero { padding: clamp(44px, 6vw, 78px) 0; }
.pp-hero-head { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: center; margin-bottom: clamp(30px, 3.5vw, 46px); }
.pp-hero-head-left h1 { margin: 8px 0 0; }
.pp-hero-head-left .eyebrow { color: var(--camel); }
.pp-hero-head-right p { color: #55605a; margin-bottom: 26px; }
.pp-hero-media img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.pp-hero-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 22px); margin-top: clamp(20px, 2.4vw, 30px); }
.pp-hero-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.4vw, 32px) clamp(22px, 2vw, 28px); }
.pp-hero-card-ic { display: inline-flex; color: var(--evergreen); margin-bottom: 16px; }
.pp-hero-card-ic svg { width: 34px; height: 34px; stroke-width: 1.6; }
.pp-hero-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.pp-hero-card p { color: #55605a; font-size: 0.93rem; }

/* Commercial hero — contained image with content overlaid at the bottom */
.cl-hero { padding: clamp(10px, 1.4vw, 22px) 0; }
/* widen past the standard container + trim side gutters so the image fills more of the screen */
.cl-hero .container { max-width: 1760px; padding-left: clamp(16px, 2.6vw, 44px); padding-right: clamp(16px, 2.6vw, 44px); }
.cl-hero-inner {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: min(80vh, 780px);
  display: flex; align-items: flex-end; box-shadow: var(--shadow-lg);
}
.cl-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cl-hero-inner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(20, 42, 34, 0.92) 0%, rgba(20, 42, 34, 0.62) 44%, rgba(20, 42, 34, 0.2) 74%, rgba(20, 42, 34, 0) 90%);
}
.cl-hero-content {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: end;
  padding: clamp(30px, 4.5vw, 60px);
}
.cl-hero-left .eyebrow { color: var(--camel); text-shadow: 0 1px 10px rgba(20, 42, 34, 0.6); }
.cl-hero-left h1 { color: #fff; margin: 0; text-shadow: 0 1px 14px rgba(20, 42, 34, 0.45); }
.cl-hero-right p { color: rgba(255, 255, 255, 0.92); margin-bottom: 26px; max-width: 520px; text-shadow: 0 1px 12px rgba(20, 42, 34, 0.5); }

/* What It Is — left content + two staggered images with offset outline frames */
.wi2-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 76px); align-items: center; }
.wi2-body h2 { margin: 8px 0 18px; }
.wi2-body p { color: #55605a; }
.wi2-media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 34px); align-items: start; }
.wi2-img { position: relative; }
.wi2-img img { position: relative; z-index: 1; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-md); display: block; }
/* offset decorative outline frame (brand camel) */
.wi2-img::before { content: ""; position: absolute; z-index: 0; width: 100%; height: 100%; border: 2px solid var(--camel); border-radius: 6px; }
.wi2-img-a { margin-top: clamp(24px, 4vw, 50px); }
.wi2-img-a::before { left: -20px; bottom: -20px; }
.wi2-img-b::before { right: -20px; top: -20px; }

/* Who It's For — left header + offset "brick" feature grid with hairline dividers */
.diff-head { max-width: 800px; margin-bottom: clamp(44px, 5vw, 68px); }
.diff-head h2 { margin: 10px 0 18px; }
.diff-head p { color: #55605a; }
.diff-grid { display: grid; grid-template-columns: repeat(6, 1fr); row-gap: clamp(40px, 5vw, 60px); }
.diff-item { padding: 0 clamp(26px, 3vw, 44px); border-left: 1px solid var(--line); }
.diff-item:nth-child(1) { grid-column: 1 / span 2; }
.diff-item:nth-child(2) { grid-column: 3 / span 2; }
.diff-item:nth-child(3) { grid-column: 5 / span 2; }
.diff-item:nth-child(4) { grid-column: 2 / span 2; }
.diff-item:nth-child(5) { grid-column: 4 / span 2; }
.diff-item:nth-child(1), .diff-item:nth-child(4) { border-left: 0; padding-left: 0; }
.diff-item h3 { font-size: 1.22rem; margin-bottom: 12px; }
.diff-item p { color: #55605a; font-size: 0.96rem; }

/* Staggered two-feature layout — image + content, alternating & offset (interlocking) */
.stag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
.stag-col { display: flex; flex-direction: column; gap: clamp(34px, 4.5vw, 60px); }
.stag-col-right { margin-top: clamp(44px, 7vw, 100px); }  /* offset down so the columns interlock */
.stag-media img { width: 90%; aspect-ratio: 9 / 10; margin-inline: auto; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.stag-body { display: flex; flex-direction: column; justify-content: center; }
.stag-body h2 { margin: 8px 0 16px; }
.stag-body p { color: #55605a; }
.stag-body .btn-row { margin-top: 26px; }

/* Good Fits — split header (heading | divider | paragraph) + 2×3 horizontal feature items */
.cf-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: stretch; margin-bottom: clamp(40px, 5vw, 64px); }
.cf-head-left h2 { margin-top: 8px; }
.cf-head-right { border-left: 1px solid var(--line); padding-left: clamp(28px, 3vw, 48px); display: flex; align-items: center; }
.cf-head-right p { color: #55605a; }
.cf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.2vw, 44px) clamp(30px, 3.4vw, 54px); }
.cf-item { display: flex; gap: 18px; align-items: flex-start; }
.cf-ic { width: 54px; height: 54px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--camel); }
.cf-ic svg { width: 26px; height: 26px; }
.cf-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.cf-item p { color: #55605a; font-size: 0.93rem; }

/* Services Offered — split header + masonry-style cards with a dark hover */
.svcoff-head { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: clamp(30px, 3.5vw, 44px); }
.svcoff-head h2 { margin-top: 8px; }
.svcoff-head .btn { flex-shrink: 0; }
.svcoff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 22px); }
.svcoff-card {
  grid-column: span 1; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: clamp(28px, 2.6vw, 40px) clamp(24px, 2.2vw, 34px);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.svcoff-card.wide { grid-column: span 2; }
.svcoff-ic { display: inline-flex; color: var(--camel); margin-bottom: 22px; transition: color .3s var(--ease); }
.svcoff-ic svg { width: 34px; height: 34px; stroke-width: 1.6; }
.svcoff-card h3 { font-size: 1.2rem; margin-bottom: 12px; transition: color .3s var(--ease); }
.svcoff-card p { color: #55605a; font-size: 0.96rem; transition: color .3s var(--ease); }
/* Dark hover state (the dark card in the reference) */
.svcoff-card:hover { background: var(--evergreen); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svcoff-card:hover h3 { color: var(--camel); }
.svcoff-card:hover p { color: rgba(239, 234, 224, 0.82); }
.svcoff-card:hover .svcoff-ic { color: var(--camel); }

/* Feature split — image + content with a 2×2 numbered feature grid (alternating side) */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: stretch; }
.feat.reverse .feat-media { order: 2; }
.feat-media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.feat-body { display: flex; flex-direction: column; justify-content: center; }
.feat-body h2 { margin: 8px 0 0; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 2.4vw, 30px) clamp(24px, 3vw, 40px); margin: clamp(26px, 3vw, 36px) 0 clamp(28px, 3vw, 36px); }
.feat-item-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.feat-num { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--camel); flex-shrink: 0; }
.feat-item h3 { font-size: 1.02rem; }
.feat-item p { color: #55605a; font-size: 0.93rem; }
/* Landscaping/Seasonal content sections — consistent image + section sizing, ~80vh each */
.land-sec { display: flex; align-items: center; min-height: min(80vh, 660px); padding: clamp(36px, 4.5vh, 60px) 0; }
.land-sec > .container { width: 100%; }
.land-sec .feat, .land-sec .split { align-items: center; }
.land-sec .feat-media img, .land-sec .split-media img { height: min(56vh, 440px); min-height: 0; aspect-ratio: auto; object-fit: cover; }

/* What's Included — sticky image (left) + numbered list (right) */
.wi-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 4vw, 64px); align-items: start; }
.wi-media { position: sticky; top: calc(var(--header-h) + 24px); }
.wi-media img { width: 100%; aspect-ratio: 4 / 3.6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.wi-list { display: grid; gap: 16px; }
.wi-item {
  display: flex; gap: clamp(16px, 2vw, 26px); align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.2vw, 26px) clamp(22px, 2.4vw, 30px);
}
.wi-num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; line-height: 1.15; color: var(--camel); flex-shrink: 0; min-width: 42px; }
.wi-item h3 { font-size: 1.08rem; margin-bottom: 5px; }
.wi-item p { color: #55605a; font-size: 0.95rem; }

/* Why It Matters — header + (image | features) with a full-height image on the right */
.wim-grid { display: grid; grid-template-columns: 1.85fr 1fr; gap: clamp(30px, 3.5vw, 56px); align-items: stretch; }
.wim-body { display: flex; flex-direction: column; }
.wim-head { margin-bottom: clamp(26px, 3vw, 38px); }
.wim-head h2 { margin: 6px 0 16px; }
.wim-head p { color: #55605a; max-width: 640px; }
.wim-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 3vw, 42px); align-items: start; }
.wim-small img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.wim-features { display: flex; flex-direction: column; }
.wim-feature { display: flex; gap: 16px; align-items: flex-start; }
.wim-feature + .wim-feature { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 22px; }
.wim-ic { flex-shrink: 0; color: var(--evergreen); }
.wim-ic svg { width: 40px; height: 40px; stroke-width: 1.4; }
.wim-feature h3 { font-size: 1.06rem; margin-bottom: 6px; }
.wim-feature p { color: #55605a; font-size: 0.94rem; }
.wim-features .btn-row { margin-top: 28px; }
.wim-tall img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }

/* Maintenance schedules — centered header with an italic accent word + simple cards */
.sched-head { max-width: 820px; }
.sched-head h2 span { color: var(--teal-1); font-style: italic; }
.sched-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.sched-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(26px, 3vw, 34px) clamp(20px, 2.4vw, 28px); text-align: center; }
.sched-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.sched-card p { color: #55605a; font-size: 0.95rem; }

/* Quality Over Quick Cuts — split header + features / layered image composition */
.qoc-head { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: center; margin-bottom: clamp(40px, 4vw, 56px); }
.qoc-head h2 { margin-top: 6px; }
.qoc-head p { color: #55605a; }
.qoc-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 4vw, 64px); align-items: center; }
.qoc-features { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 28px); }
.qoc-feature { display: flex; gap: 16px; align-items: flex-start; }
.qoc-ic { width: 46px; height: 46px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 10px; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: var(--camel); }
.qoc-ic svg { width: 22px; height: 22px; }
.qoc-feature h3 { font-size: 1.05rem; margin-bottom: 5px; }
.qoc-feature p { color: #55605a; font-size: 0.94rem; }

.qoc-media { position: relative; padding: 0 clamp(20px, 3vw, 40px) clamp(28px, 3vw, 44px) 0; }
.qoc-main { position: relative; }
.qoc-main img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.qoc-caption { position: absolute; left: 0; bottom: 34px; background: #fff; padding: 14px 22px; border-radius: 0 10px 10px 0; box-shadow: var(--shadow-md); }
.qoc-caption strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--evergreen); font-size: 1rem; }
.qoc-caption span { display: block; font-size: 0.85rem; color: #55605a; margin-top: 2px; }
.qoc-inset { position: absolute; right: 0; bottom: 0; width: 44%; }
.qoc-inset img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-lg); border: 6px solid var(--linen); display: block; }

/* Form + direct-contact aside (form left, contact info & hours right) */
.fc-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.fc-aside { background: var(--linen); border-radius: var(--radius); padding: clamp(28px, 3.4vw, 42px); }
.fc-aside h3 { font-size: clamp(1.35rem, 2.2vw, 1.72rem); margin-bottom: 12px; }
.fc-items { display: flex; flex-direction: column; gap: 22px; margin: 28px 0 32px; }
.fc-item { display: flex; gap: 14px; align-items: flex-start; }
.fc-ic { flex-shrink: 0; display: inline-flex; color: var(--teal-1); margin-top: 2px; }
.fc-ic svg { width: 22px; height: 22px; }
/* overflow-wrap lets the long email break instead of overflowing at 360px */
.fc-item a, .fc-item strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--evergreen); overflow-wrap: anywhere; }
.fc-item a:hover { color: var(--teal-1); }
.fc-item > div > span { display: block; font-size: 0.88rem; color: #55605a; margin-top: 3px; }
.fc-hours-label { display: block; margin-bottom: 12px; }
.fc-hours { display: flex; flex-direction: column; }
.fc-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.fc-hours li:first-child { border-top: 1px solid var(--line); }
.fc-hours li span:first-child { font-family: var(--font-head); font-weight: 600; }
.fc-note { margin-top: 18px; font-size: 0.88rem; }
/* Dark text on the light aside (overrides the section's bg-evergreen light-text rules) */
.bg-evergreen .fc-aside h3 { color: var(--evergreen); }
.bg-evergreen .fc-aside p { color: #55605a; }
.bg-evergreen .fc-aside .fc-note { color: #7a827d; }
.bg-evergreen .fc-aside li { color: var(--graphite); }
.bg-evergreen .fc-aside .fc-hours li span:last-child { color: #55605a; }
.bg-evergreen .fc-aside .eyebrow { color: var(--teal-1); }

/* Trust strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 34px; }
.trust-strip li { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; font-weight: 600; font-family: var(--font-head); color: var(--evergreen); }
.trust-strip svg { width: 20px; height: 20px; color: var(--teal-1); flex-shrink: 0; }

/* =========================================================
   Cards & grids
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  box-shadow: var(--shadow-sm); height: 100%;
}
.card h3 { margin-bottom: 10px; }
.card p { color: #55605a; font-size: 0.98rem; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--evergreen-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg { width: 26px; height: 26px; color: var(--evergreen); }

/* Services overview — sticky intro (left) + clickable service rows (right) */
.services-intro-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 60px; align-items: start; }
.services-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.services-aside h2 { margin-top: 14px; }
.services-aside .aside-rule { display: block; height: 1px; background: var(--line); margin: 26px 0; }
.services-aside p { color: #55605a; }

.services-rows { display: grid; gap: 24px; }
.svc-row {
  position: relative; display: block;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 40px 32px; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.svc-row-icon { position: absolute; top: 30px; right: 34px; color: var(--teal-1); transition: color .28s var(--ease); }
.svc-row-icon svg { width: 50px; height: 50px; stroke-width: 1.5; }
.svc-row h3 { margin-top: 56px; margin-bottom: 12px; padding-right: 66px; }
.svc-row p { color: #55605a; font-size: 0.99rem; margin-bottom: 20px; }
.svc-row-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--evergreen); transition: gap .2s var(--ease), color .2s; }
.svc-row-link svg { width: 18px; height: 18px; }
.svc-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-2); }
.svc-row:hover .svc-row-icon { color: var(--evergreen); }
.svc-row:hover .svc-row-link { gap: 12px; color: var(--teal-1); }
/* Informational (non-clickable) variant — same look, no interactive hover */
.svc-row.plain { cursor: default; }
.svc-row.plain:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--line); }
/* Icon-free variant — streamlined title + description, no corner icon (h3 sits at the top) */
.svc-row.noicon { padding: clamp(28px, 3vw, 38px) clamp(26px, 2.6vw, 38px); }
.svc-row.noicon h3 { margin-top: 0; padding-right: 0; }

/* Approach — owner quote card + image + info/CTA */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; grid-template-areas: "quote media info"; gap: 30px; align-items: stretch; }
.approach-quote {
  grid-area: quote; display: flex; flex-direction: column; justify-content: space-between; gap: 44px;
  background: rgba(184, 155, 114, 0.16); border-radius: var(--radius); padding: 44px 40px;
}
.approach-quote .quote-mark { color: var(--camel); opacity: 0.55; line-height: 0; }
.approach-quote .quote-mark svg { width: 58px; height: auto; }
.approach-quote blockquote p { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; line-height: 1.42; color: var(--evergreen); }
.approach-quote blockquote footer { margin-top: 20px; font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; color: var(--evergreen); }
.approach-quote blockquote footer span { display: block; font-weight: 600; font-size: 0.8rem; color: var(--teal-1); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }

.approach-media { grid-area: media; }
.approach-media img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }

.approach-info { grid-area: info; display: flex; flex-direction: column; justify-content: center; }
.approach-info h2 { margin: 6px 0 16px; }
.approach-info p { color: #55605a; }

/* Flagship feature — light inset container inside the evergreen section, image left */
.flagship-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch;
  background: var(--linen); border-radius: var(--radius); padding: clamp(26px, 3.5vw, 52px);
}
.flagship-media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.flagship-body { display: flex; flex-direction: column; justify-content: center; }
.flagship-body p + p { margin-top: 14px; }
/* Restore dark text on the light card (overrides the section's bg-evergreen light-text rules) */
.bg-evergreen .flagship-body .eyebrow { color: var(--camel); }
.bg-evergreen .flagship-feature h2 { color: var(--evergreen); margin: 8px 0 16px; }
.bg-evergreen .flagship-feature p { color: #55605a; }

/* Who We Serve — two-column header + bordered audience grid */
.audience-head { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; margin-bottom: 40px; }
.audience-head-left h2 { margin-top: 8px; }
.audience-head-lead { color: #55605a; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.audience-cell { padding: clamp(30px, 3vw, 44px) clamp(26px, 2.6vw, 38px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-ic { display: inline-flex; color: var(--camel); margin-bottom: 22px; }
.audience-ic svg { width: 34px; height: 34px; stroke-width: 1.6; }
.audience-cell h3 { font-size: 1.2rem; margin-bottom: 10px; }
.audience-cell p { color: #55605a; font-size: 0.97rem; }
/* About "Our Difference" — the audience grid framed to ~90vh, vertically centered */
.od-section { display: flex; align-items: center; min-height: min(90vh, 940px); padding-top: clamp(44px, 5vh, 68px); padding-bottom: clamp(44px, 5vh, 68px); }
.od-section .container { width: 100%; }

/* Commercial spotlight — image left, two-tone heading + arrow bullets right */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: stretch; }
.spotlight-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.spotlight-body { display: flex; flex-direction: column; justify-content: center; }
.spotlight-h2 { margin-bottom: 4px; }
.spotlight-h2 span { color: var(--teal-1); }
.spotlight-sub { font-size: clamp(1.25rem, 2vw, 1.55rem); color: var(--evergreen); margin-bottom: 18px; }
.spotlight-body p { color: #55605a; }
.spotlight-list { display: flex; flex-direction: column; gap: 15px; margin-top: 26px; }
.spotlight-list li { display: flex; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 700; font-size: 1.03rem; color: var(--evergreen); }
.spotlight-list li svg { width: 20px; height: 20px; color: var(--teal-1); flex-shrink: 0; }

/* Why Choose Us — header (text + image) + bordered-icon feature row */
.wcs-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: center; margin-bottom: clamp(48px, 5vw, 72px); }
.wcs-head-body h2 { margin: 6px 0 18px; }
.wcs-head-body p { color: #55605a; }
.wcs-head-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.wcs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 4vw, 52px) clamp(32px, 4vw, 60px); }
.wcs-item-head { display: flex; align-items: center; gap: 15px; margin-bottom: 14px; }
.wcs-ic { width: 48px; height: 48px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--camel); }
.wcs-ic svg { width: 24px; height: 24px; }
.wcs-item h3 { font-size: 1.18rem; }
.wcs-item p { color: #55605a; font-size: 0.97rem; }

/* Feature list with checks */
.check-list { display: grid; gap: 12px; }
.check-list.cols-2 { grid-template-columns: 1fr 1fr; gap: 12px 30px; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 21px; height: 21px; border-radius: 50%;
  background: var(--evergreen-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318352B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.bg-evergreen .check-list li::before { background-color: rgba(255,255,255,0.14); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2399AB96' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* Split / media-text rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.split-body h2 { margin-bottom: 16px; }
.split-body p + p { margin-top: 14px; }
.split-body .btn-row, .split-body .check-list { margin-top: 24px; }

/* Who We Help — feature image + text cards */
.audience-layout { display: grid; grid-template-columns: minmax(280px, 0.8fr) 2fr; gap: 26px; align-items: stretch; }
.audience-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 440px; }
.audience-figure img { width: 100%; height: 100%; object-fit: cover; }
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.audience-card { display: flex; flex-direction: column; padding: 34px; }
.audience-card h3 { margin-bottom: 20px; }
.audience-rule { display: block; height: 1px; background: var(--line); margin-bottom: 20px; }
.audience-card p { margin-bottom: 22px; }
.audience-link { margin-top: auto; align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--camel); border-bottom: 2px solid rgba(184,155,114,0.35); padding-bottom: 2px; transition: border-color .2s, color .2s; }
.audience-link:hover { color: #9c7f56; border-bottom-color: var(--camel); }

/* What We Do — card overlapping feature image */
.feature-overlap { position: relative; }
.feature-overlap .fo-media { width: 60%; margin-left: auto; }
.feature-overlap .fo-media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.feature-overlap .fo-card {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48%; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 48px 46px; overflow: hidden;
}
.feature-overlap .fo-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--evergreen); }
.feature-overlap .fo-card .eyebrow { color: var(--evergreen); }
.feature-overlap .fo-card h2 { margin-bottom: 18px; }
.feature-overlap .fo-card p { color: #55605a; margin-bottom: 30px; }

/* Why Choose Us — full-bleed image + intro + feature grid */
.why-choose { padding: 0; display: grid; grid-template-columns: 25% 1fr; align-items: stretch; }
.why-choose .wc-media { overflow: hidden; }
.why-choose .wc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-choose .wc-content { display: grid; grid-template-columns: minmax(300px, 1fr) 2.1fr; gap: 64px; align-items: center; padding: 64px 56px; }
.wc-intro h2 { margin-bottom: 18px; }
.wc-intro p { color: rgba(239,234,224,0.82); }
.wc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 36px; }
.wc-feature .wc-ic { display: inline-flex; color: var(--teal-2); margin-bottom: 16px; }
.wc-feature .wc-ic svg { width: 30px; height: 30px; }
.wc-feature h3 { font-size: 1.14rem; margin-bottom: 14px; }
.wc-rule { display: block; height: 1px; background: rgba(255,255,255,0.16); margin-bottom: 14px; }
.wc-feature p { color: rgba(239,234,224,0.72); font-size: 0.95rem; }

/* How It Works — intro + step cards */
.process-intro { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: stretch; margin-bottom: 60px; }
.hiw-text { display: flex; flex-direction: column; }
.hiw-text h2 { margin-bottom: 0; max-width: 640px; }
.hiw-text p { margin-top: auto; padding-top: 40px; color: #55605a; max-width: 620px; }
.hiw-media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.hiw-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hiw-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 64px; min-height: 220px;
  padding: 30px 30px 26px; background: var(--linen); border-radius: var(--radius); color: var(--evergreen);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.hiw-card h4 { color: inherit; font-size: 1.18rem; line-height: 1.25; }
.hiw-foot { display: flex; align-items: center; justify-content: space-between; }
.hiw-num { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: inherit; }
.hiw-arrow { display: inline-flex; color: inherit; }
.hiw-arrow svg { width: 22px; height: 22px; }
.hiw-card:hover { background: var(--evergreen); color: var(--parchment); transform: translateY(-4px); }
.hiw-card:hover h4 { color: var(--camel); }

/* Process steps — divided columns with a large numeral pinned to the bottom */
.steps-row { display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.step-col { display: flex; flex-direction: column; padding: 0 clamp(18px, 1.8vw, 30px); border-left: 1px solid var(--line); }
.step-col:first-child { border-left: 0; }
.step-col h3 { font-size: 1.1rem; margin-bottom: 12px; }
.step-col p { color: #55605a; font-size: 0.95rem; }
.step-figure { margin-top: auto; padding-top: 44px; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 2.8vw, 2.8rem); line-height: 1; color: var(--camel); }

/* =========================================================
   Before / After slider
   ========================================================= */
.ba-slider { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); user-select: none; cursor: ew-resize; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 8px rgba(0,0,0,0.3); }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ba-handle svg { width: 22px; height: 22px; color: var(--evergreen); }
.ba-tag { position: absolute; top: 14px; padding: 5px 12px; border-radius: 30px; font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(24,53,43,0.82); color: #fff; pointer-events: none; }
.ba-tag.before { left: 14px; }
.ba-tag.after { right: 14px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

.ba-caption h4 { margin-bottom: 8px; }
.ba-caption p { color: #55605a; font-size: 0.97rem; }

/* Photo gallery (non before/after) */
.photo-grid img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--evergreen); }
.faq-q .plus { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform .3s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--teal-1); border-radius: 2px; }
.faq-q .plus::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq-q .plus::after { left: 11px; top: 3px; bottom: 3px; width: 2px; transition: opacity .3s; }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: #55605a; }
.faq-cat-title { font-size: 1.35rem; margin: 44px 0 6px; }
.faq-cat-title:first-child { margin-top: 0; }

/* =========================================================
   FAQ page — wide/short hero, sticky topic nav (scrollspy),
   two-column topics with sticky titles
   ========================================================= */
/* Hero: wide content on a parallax image background, light text (shared: FAQ + Contact) */
.faq-hero, .contact-hero {
  position: relative; overflow: hidden;
  padding: clamp(52px, 6.5vw, 90px) 0;
  background-color: var(--evergreen);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-attachment: fixed;
}
.faq-hero { background-image: linear-gradient(rgba(20, 42, 34, 0.66), rgba(20, 42, 34, 0.66)), url("../img/BalerioReyesImages/FAQ/FAQHero1.webp"); }
.contact-hero { background-image: linear-gradient(rgba(20, 42, 34, 0.66), rgba(20, 42, 34, 0.66)), url("../img/BalerioReyesImages/Landscaping/Landscaping2.webp"); }
.faq-hero .container, .contact-hero .container { max-width: 1060px; }
.faq-hero .eyebrow, .contact-hero .eyebrow { color: var(--camel); }
.faq-hero h1, .contact-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); color: #fff; }
.faq-hero p.lead, .contact-hero p.lead { max-width: 860px; margin: 18px auto 0; color: rgba(255, 255, 255, 0.9); }
/* Parallax fixed backgrounds misbehave on mobile — fall back to scroll (same as .cta-image) */
@media (max-width: 820px) { .faq-hero, .contact-hero { background-attachment: scroll; } }

.faq-shell { --faq-nav-h: 64px; }

/* Sticky topic navigation — sits directly under the header */
.faq-nav { position: sticky; top: var(--header-h); z-index: 500; background: rgba(248, 245, 239, 0.94); backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-nav-track { display: flex; align-items: center; gap: 10px; height: var(--faq-nav-h); overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.faq-nav-track::-webkit-scrollbar { display: none; }
.faq-nav-btn { flex: 0 0 auto; white-space: nowrap; padding: 9px 18px; border-radius: 30px; border: 1px solid var(--line); background: #fff; color: var(--evergreen); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.faq-nav-btn:hover { border-color: var(--camel); color: var(--camel); }
.faq-nav-btn.is-active { background: var(--evergreen); border-color: var(--evergreen); color: #fff; }

/* Topics — title left (sticky), accordion cards right */
.faq-topics { padding: clamp(40px, 5vw, 72px) 0; }
.faq-topic { scroll-margin-top: var(--faq-nav-h); }
/* gap between topics as margin (outside the border box) so anchoring lands the title just under the nav */
.faq-topic + .faq-topic { margin-top: clamp(48px, 5.5vw, 84px); }
.faq-topic-grid { display: grid; grid-template-columns: 0.8fr 1.6fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.faq-topic-head { position: sticky; top: calc(var(--header-h) + var(--faq-nav-h) + 20px); align-self: start; }
.faq-topic-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; }

/* FAQ items styled as cards inside a topic */
.faq-topic-list { max-width: none; margin: 0; }
.faq-topic-list .faq-item { border-bottom: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 0 clamp(18px, 2vw, 26px); }
.faq-topic-list .faq-item + .faq-item { margin-top: 14px; }
.faq-topic-list .faq-q { padding: 20px 0; }
.faq-topic-list .faq-q .plus { background: var(--evergreen-soft); border-radius: 50%; }
.faq-topic-list .faq-a-inner { padding: 0 0 22px; }
/* Mobile: title stacks above its questions (not sticky); nav stays sticky + scrollable */
@media (max-width: 900px) {
  .faq-topic-grid { grid-template-columns: 1fr; gap: 18px; }
  .faq-topic-head { position: static; top: auto; margin-bottom: 2px; }
}
@media (max-width: 560px) {
  .faq-nav-btn { padding: 8px 15px; font-size: 0.85rem; }
  .faq-topic + .faq-topic { margin-top: 40px; }
}

/* =========================================================
   Forms
   ========================================================= */
.form-section { position: relative; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
/* Keep the white card's text dark even inside a .bg-evergreen section
   (.bg-evergreen p/h2 would otherwise force light cream text onto the white card) */
.form-card h2, .form-card h3 { margin-bottom: 8px; color: var(--evergreen); }
.form-card .eyebrow { color: var(--teal-1); }
.form-card .form-privacy { color: #6e756f; }
.form-card .form-privacy a { color: var(--evergreen); }
.form-card .form-foot { color: #55605a; }
.form-card .form-sub { color: #55605a; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--evergreen); }
.field label .req { color: var(--camel); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--graphite);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--parchment);
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-1); box-shadow: 0 0 0 3px rgba(124,146,126,0.18); background: #fff; }
.form-card .btn { width: 100%; margin-top: 8px; }
.form-foot { text-align: center; margin-top: 16px; font-size: 0.92rem; color: #55605a; }
.form-foot a { color: var(--evergreen); font-weight: 600; }
.form-privacy { font-size: 0.8rem; color: #7a827d; margin-top: 14px; text-align: center; }

/* Contact page split */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 10px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--evergreen-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item .ic svg { width: 22px; height: 22px; color: var(--evergreen); }
.info-item .t { font-family: var(--font-head); font-weight: 700; color: var(--evergreen); font-size: 0.95rem; margin-bottom: 2px; }
.info-item .d, .info-item .d a { color: #55605a; font-size: 0.98rem; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { background: var(--evergreen); border-radius: 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; border-radius: 50%; background: rgba(153,171,150,0.1); }
.cta-band .container { position: relative; z-index: 2; text-align: center; max-width: 760px; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #cdd6cd; margin-bottom: 28px; font-size: 1.1rem; }
.cta-band .phone-link { color: var(--teal-2); font-family: var(--font-head); font-weight: 600; }
/* Image-background CTA with parallax */
.cta-image {
  padding: 124px 0;
  background-image: linear-gradient(rgba(20,42,34,0.62), rgba(20,42,34,0.62)), url("../img/BalerioReyesImages/Homepage/HomepageCTA1.webp");
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-attachment: fixed;
}
/* Per-page ending-CTA background overrides */
.page-faq .cta-image { background-image: linear-gradient(rgba(20,42,34,0.62), rgba(20,42,34,0.62)), url("../img/BalerioReyesImages/FAQ/FAQCTA2.webp"); }
.page-contact .cta-image { background-image: linear-gradient(rgba(20,42,34,0.62), rgba(20,42,34,0.62)), url("../img/BalerioReyesImages/Homepage/HeroImagev2.webp"); }
.cta-image::after { display: none; }
.cta-image p { color: rgba(255,255,255,0.88); }
.cta-inline { background: var(--linen); border-radius: var(--radius); padding: 40px; text-align: center; }
.cta-inline h3 { margin-bottom: 12px; }
.cta-inline p { color: #55605a; margin-bottom: 22px; }

/* =========================================================
   Local / SEO section
   ========================================================= */
.local-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.local-wrap h2 { margin-bottom: 18px; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--evergreen); aspect-ratio: 4/3; }
.map-frame img { width: 100%; height: 100%; object-fit: cover; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Proudly Local — image with decorative circle + text */
.local-feature { display: grid; grid-template-columns: 0.75fr 1fr; gap: 84px; align-items: center; }
.local-media { position: relative; }
.local-circle { position: absolute; z-index: 0; width: 58%; aspect-ratio: 1; border-radius: 50%; background: var(--camel); right: -7%; bottom: -10%; }
.local-img { position: relative; z-index: 1; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--evergreen); }
.local-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.local-img iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; display: block; }
.local-body h2 { margin-bottom: 16px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--evergreen); color: #cdd6cd; padding: 66px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo .logo-mark { color: #fff; }
.footer-brand .logo .logo-sub { color: var(--teal-2); }
.footer-brand p { color: #a9b6ab; font-size: 0.94rem; margin-top: 16px; max-width: 320px; }
.footer-brand .f-phone { margin-top: 18px; display: inline-flex; align-items: center; gap: 9px; color: #fff; font-family: var(--font-head); font-weight: 600; }
.footer-brand .f-phone svg { width: 18px; height: 18px; color: var(--teal-2); }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #a9b6ab; font-size: 0.94rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-size: 0.86rem; color: #a9b6ab; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   Thank you page
   ========================================================= */
.thankyou { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; text-align: center; padding: 60px 0; }
.thankyou .container { max-width: 640px; }
.ty-icon { width: 88px; height: 88px; border-radius: 50%; background: var(--evergreen-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.ty-icon svg { width: 44px; height: 44px; color: var(--evergreen); }
.thankyou h1 { margin-bottom: 16px; }
.thankyou p { font-size: 1.12rem; color: #55605a; margin-bottom: 12px; }
.thankyou .btn-row { margin-top: 30px; justify-content: center; }

/* =========================================================
   Legal page
   ========================================================= */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { color: #47504b; margin-bottom: 12px; }
.legal-body .updated { color: #7a827d; font-size: 0.9rem; margin-bottom: 30px; }
.legal-contact { background: var(--linen); border-radius: var(--radius); padding: 26px 30px; margin-top: 16px; }
.legal-contact p { margin-bottom: 4px; }

/* =========================================================
   Misc
   ========================================================= */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.pill-tag { display: inline-block; background: var(--evergreen-soft); color: var(--evergreen); font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; padding: 6px 14px; border-radius: 30px; text-transform: uppercase; letter-spacing: 0.06em; }
.addon-banner { background: var(--linen); border: 1px dashed var(--teal-1); border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 22px; align-items: center; }
.addon-banner .pill-tag { background: var(--camel); color: #fff; flex-shrink: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Commercial — Why It Matters (container-within-container:
   two-tone inner card = image + content, then 4-feature row)
   ========================================================= */
/* Section runs to ~85vh and the card fills more of the width (reduced side gutters) */
.cm-section { display: flex; align-items: center; min-height: min(85vh, 880px); padding-top: clamp(40px, 5vh, 60px); padding-bottom: clamp(40px, 5vh, 60px); }
.cm-section .container { max-width: 1400px; padding-left: clamp(16px, 1.8vw, 28px); padding-right: clamp(16px, 1.8vw, 28px); }
.cm-card { width: 100%; background: #ece6db; border-radius: var(--radius); padding: clamp(28px, 3.4vw, 52px); }
.cm-top { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 4vw, 60px); align-items: center; margin-bottom: clamp(30px, 3.6vw, 48px); }
.cm-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-md); display: block; }
.cm-body .eyebrow { color: var(--camel); }
.cm-body h2 { margin: 8px 0 16px; }
.cm-body p { color: #55605a; }
.cm-body .btn-row { margin-top: 26px; }
.cm-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
.cm-feature-ic { display: inline-flex; color: var(--evergreen); margin-bottom: 16px; }
.cm-feature-ic svg { width: 28px; height: 28px; stroke-width: 1.6; }
.cm-feature h3 { font-size: 1.14rem; margin-bottom: 12px; }
.cm-feature-rule { display: block; height: 1px; background: rgba(24, 53, 43, 0.16); margin-bottom: 14px; }
.cm-feature p { color: #55605a; font-size: 0.93rem; }

/* =========================================================
   Our Approach — left copy (numbered points) + right image
   collage, with a decorative line running through the section
   ========================================================= */
.oa-section { position: relative; overflow: hidden; padding-top: clamp(72px, 7vw, 116px); }
.oa-line { position: absolute; inset: 0; z-index: 0; color: rgba(24, 53, 43, 0.16); pointer-events: none; }
.oa-line svg { width: 100%; height: 100%; display: block; }
.oa-section .container { position: relative; z-index: 1; }
.oa-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(40px, 5vw, 96px); align-items: center; }
.oa-body .eyebrow { color: var(--camel); }
.oa-body h2 { margin: 8px 0 16px; }
.oa-body > p { color: #55605a; max-width: 40ch; }
.oa-divider { display: block; height: 0; border-top: 1px dashed rgba(24, 53, 43, 0.3); margin: clamp(24px, 2.8vw, 34px) 0; }
.oa-points { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.oa-point h3 { font-size: 1.06rem; margin-bottom: 10px; }
.oa-num { color: var(--camel); font-weight: 800; margin-right: 4px; }
.oa-point p { color: #55605a; font-size: 0.93rem; }
/* Right-side collage: two on top (right one larger), one wide below */
.oa-collage { display: grid; grid-template-columns: 0.85fr 1.15fr; grid-template-rows: clamp(250px, 25vw, 330px) clamp(150px, 16vw, 210px); gap: clamp(12px, 1.4vw, 18px); }
.oa-img-a { grid-area: 1 / 1; }
.oa-img-b { grid-area: 1 / 2; }
.oa-img-c { grid-area: 2 / 1 / 3 / 3; }
.oa-img { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); }
.oa-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 760px) {
  .process-intro { grid-template-columns: 1fr; gap: 26px; margin-bottom: 44px; }
  .hiw-text h2 { max-width: none; }
  .hiw-text p { margin-top: 16px; padding-top: 0; max-width: none; }
  .hiw-media img { aspect-ratio: 16 / 10; }
  .hiw-cards { grid-template-columns: repeat(2, 1fr); }
  .local-feature { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 520px) {
  .hiw-cards { grid-template-columns: 1fr; }
  .hiw-card { min-height: 0; gap: 44px; }
}
@media (max-width: 1024px) {
  .nav, .header-cta .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  section { padding: 68px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 560px; }
  .hero-home-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-home-badges { width: 100%; }
  .hero-home-badges li { flex: 1; justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .audience-layout { grid-template-columns: 1fr; }
  .audience-figure { min-height: 300px; max-height: 380px; }
  .why-choose { grid-template-columns: 1fr; }
  .why-choose .wc-media { height: 300px; }
  .why-choose .wc-content { grid-template-columns: 1fr; gap: 44px; padding: 56px 44px; }
  /* Steps wrap to 2 columns; vertical dividers give way to gaps */
  .steps-row { grid-template-columns: repeat(2, 1fr); column-gap: clamp(24px, 3vw, 44px); row-gap: 38px; }
  .step-col { border-left: 0; padding: 0; }
  .step-figure { padding-top: 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  /* Approach: info on top (centered), quote + image below */
  .approach-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "info info" "quote media"; }
  .approach-info { text-align: center; align-items: center; margin-bottom: 6px; }
  .approach-media img { min-height: 340px; }
  .approach-quote blockquote p { font-size: 1.18rem; }
}
@media (max-width: 900px) {
  /* Services hero stacks: evergreen photo band on top, copy + CTAs below */
  .services-hero { grid-template-columns: 1fr; min-height: 0; }
  .services-hero::before { display: none; }
  .services-hero-media {
    order: 2; justify-content: center; padding: 48px 28px;
    background-color: var(--evergreen);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='90' viewBox='0 0 18 90'%3E%3Cpath d='M9 0 C 16 15 2 30 9 45 C 16 60 2 75 9 90' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2'/%3E%3C/svg%3E");
  }
  .services-hero-media img { width: min(100%, 440px); aspect-ratio: 4 / 3.4; }
  .services-hero-content { order: 1; justify-content: flex-start; padding: 44px 28px 28px; max-width: none; }
  /* Services intro/cards stack; left column stops being sticky */
  .services-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-aside { position: static; top: auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .wcs-grid { grid-template-columns: repeat(2, 1fr); }
  .svcoff-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-hero-cards { grid-template-columns: repeat(2, 1fr); }
  .cf-grid { grid-template-columns: repeat(2, 1fr); }
  /* What's Included stacks; image stops being sticky */
  .wi-grid { grid-template-columns: 1fr; gap: 32px; }
  .wi-media { position: static; top: auto; }
  .wi-media img { aspect-ratio: 16 / 10; }
  /* Why It Matters stacks; tall image drops below the content */
  .wim-grid { grid-template-columns: 1fr; gap: 32px; }
  .wim-tall img { min-height: 0; aspect-ratio: 16 / 10; }
  /* Quality Over Quick Cuts stacks: features, then image composition */
  .qoc-body { grid-template-columns: 1fr; gap: 40px; }
  /* Form + contact aside stacks: form first, then contact info */
  .fc-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Why It Matters feature row: 4 → 2 columns */
  .cm-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  /* Approach stacks: info, image, quote */
  .approach-grid { grid-template-columns: 1fr; grid-template-areas: "info" "media" "quote"; gap: 24px; }
  .approach-media img { min-height: 260px; }
  .approach-quote { padding: 34px 28px; min-height: 300px; }
  /* Lawn Care hero badges stack */
  .lc-badges { grid-template-columns: 1fr; gap: 30px; }
  .sched-grid { grid-template-columns: 1fr; }
  /* Services Offered header stacks: heading, then View All below */
  .svcoff-head { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 820px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  /* Curb Appeal (land-sec split): image above the text on mobile */
  .land-sec .split-media { order: -1; }
  /* What We Do: card first, image below (no overlap) on mobile */
  .feature-overlap { display: flex; flex-direction: column; }
  .feature-overlap .fo-media { width: 100%; margin-left: 0; order: 2; }
  .feature-overlap .fo-media img { aspect-ratio: 16 / 10; }
  .feature-overlap .fo-card { position: static; transform: none; width: 100%; margin: 0; order: 1; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid .contact-info { order: 2; }
  .local-wrap { grid-template-columns: 1fr; gap: 30px; }
  .check-list.cols-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band p { font-size: 1rem; }
  .cta-image { background-attachment: scroll; padding: 84px 0; }
  /* Flagship stacks: image on top, content below */
  .flagship-feature { grid-template-columns: 1fr; gap: 28px; }
  .flagship-media img { min-height: 0; aspect-ratio: 16 / 10; }
  /* Who We Serve header stacks: heading on top, lead below */
  .audience-head { grid-template-columns: 1fr; gap: 16px; align-items: start; margin-bottom: 32px; }
  /* Commercial spotlight stacks: image on top, content below */
  .spotlight { grid-template-columns: 1fr; gap: 30px; }
  .spotlight-media img { min-height: 0; aspect-ratio: 16 / 10; }
  /* Why Choose header stacks: text on top, image below */
  .wcs-head { grid-template-columns: 1fr; gap: 32px; }
  /* Lawn Care hero: shallower angle, smaller card overlap */
  .lc-hero-top { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px)); padding: 88px 0 116px; }
  .lc-badges { margin-top: -50px; }
  /* Quality Over Quick Cuts header stacks */
  .qoc-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  /* Premium hero header stacks: heading on top, copy + CTA below */
  .pp-hero-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .pp-hero-media img { aspect-ratio: 16 / 9; }
  /* Commercial hero: overlay content stacks; scrim covers more of the taller block */
  .cl-hero-inner { min-height: min(80vh, 640px); }
  .cl-hero-content { grid-template-columns: 1fr; gap: 18px; }
  .cl-hero-inner::after { background: linear-gradient(0deg, rgba(20, 42, 34, 0.92) 0%, rgba(20, 42, 34, 0.58) 52%, rgba(20, 42, 34, 0.05) 84%); }
  /* Good Fits header stacks: heading on top, paragraph below (divider off) */
  .cf-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .cf-head-right { border-left: 0; padding-left: 0; }
  /* What It Is stacks: content on top, the two-image cluster below */
  .wi2-grid { grid-template-columns: 1fr; gap: 44px; }
  .wi2-media { max-width: 520px; }
  /* Who It's For — offset grid becomes a simple 2-column grid */
  .diff-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .diff-grid .diff-item { grid-column: auto; padding: 0 0 0 clamp(24px, 3vw, 36px); border-left: 1px solid var(--line); }
  .diff-grid .diff-item:nth-child(odd) { padding-left: 0; border-left: 0; }
  /* Staggered features stack into a clean per-feature order (image, text, text, image) */
  .stag-grid { display: flex; flex-direction: column; gap: 34px; }
  .stag-col { display: contents; }
  .stag-a-img { order: 1; }
  .stag-a-txt { order: 2; }
  .stag-b-txt { order: 3; }
  .stag-b-img { order: 4; }
  .stag-media img { aspect-ratio: 16 / 11; }
  /* Arched-image hero stacks: text on top, arched image below (shallower arch) */
  .arch-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .arch-hero-media { max-width: 460px; }
  .arch-hero-media img { aspect-ratio: 4 / 3.7; border-radius: 34% 12px 34% 12px / 22% 12px 22% 12px; }
  /* Feature splits stack: image on top (both directions), then content */
  .feat { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .feat.reverse .feat-media { order: 0; }
  .feat-media img { min-height: 0; height: auto; aspect-ratio: 16 / 10; }
  /* Why It Matters card: image + content stack, image drops on top */
  .cm-top { grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
  .cm-media img { aspect-ratio: 16 / 10; }
  /* Our Approach stacks: copy on top, collage below; through-line drops out */
  .oa-grid { grid-template-columns: 1fr; gap: 40px; }
  .oa-line { display: none; }
  .oa-collage { grid-template-rows: clamp(240px, 40vw, 340px) clamp(150px, 26vw, 220px); }
  /* About hero stacks: centered copy on top, image box below */
  .ab-hero-grid { grid-template-columns: 1fr; gap: 34px; min-height: 0; text-align: center; }
  .ab-hero-content { max-width: 620px; margin: 0 auto; }
  .ab-hero-content .btn-row { justify-content: center; }
  .ab-hero-photo { margin: 0 auto; max-width: 360px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  section { padding: 54px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .audience-cards { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; row-gap: 32px; }
  .form-card, .cta-inline, .addon-banner { padding: 26px 22px; }
  .feature-overlap .fo-card { padding: 30px 24px; margin-top: 0; }
  .why-choose .wc-media { height: 220px; }
  .why-choose .wc-content { padding: 44px 22px; }
  .wc-features { grid-template-columns: 1fr; }
  .addon-banner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-badge { left: 0; padding: 13px 18px; }
  .hero-home { height: auto; min-height: 86vh; }
  .hero-home-inner { padding-top: 56px; padding-bottom: 52px; }
  .hero-home-badges { flex-direction: column; }
  .hero-home-badges li { justify-content: flex-start; }
  .hero-home-badges li + li { border-left: none; border-top: 1px solid rgba(255,255,255,0.16); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .hero-inner-page .btn-row.center { flex-direction: column; }
  .svc-row { padding: 28px 24px; }
  .svc-row h3 { margin-top: 46px; padding-right: 54px; }
  .svc-row-icon { top: 24px; right: 24px; }
  .svc-row-icon svg { width: 42px; height: 42px; }
  .audience-grid { grid-template-columns: 1fr; }
  .wcs-grid { grid-template-columns: 1fr; }
  .svcoff-grid { grid-template-columns: 1fr; }
  .svcoff-card.wide { grid-column: span 1; }
  .pp-hero-cards { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr; }
  /* Who It's For — single column, no dividers */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-grid .diff-item { padding-left: 0; border-left: 0; }
  /* smaller offset frames on narrow screens so they don't crowd */
  .wi2-img-a::before { left: -12px; bottom: -12px; }
  .wi2-img-b::before { right: -12px; top: -12px; }
  .feat-grid { grid-template-columns: 1fr; gap: 20px; }
  .wim-row { grid-template-columns: 1fr; gap: 26px; }
  .qoc-media { padding: 0 16px 24px 0; }
  /* keep the caption clear of the overlapping inset on narrow screens */
  .qoc-caption { padding: 11px 16px; bottom: 24px; max-width: 52%; }
  .qoc-caption strong { font-size: 0.92rem; }
  .qoc-caption span { font-size: 0.78rem; }
  .fc-item a, .fc-item strong { font-size: 0.96rem; }
  /* Why It Matters feature row: single column */
  .cm-features { grid-template-columns: 1fr; }
  /* Our Approach: numbered points stack, intro can run full width */
  .oa-points { grid-template-columns: 1fr; }
  .oa-body > p { max-width: none; }
}
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.95rem; }
}
