:root {
  --navy: #052742;
  --navy-dark: #001b32;
  --navy-soft: #082f50;
  --green: #46a900;
  --green-bright: #59ba0c;
  --green-dark: #2f8300;
  --ink: #061931;
  --muted: #5f6b78;
  --line: #d8dee4;
  --soft: #f4f7f8;
  --white: #fff;
  --shadow: 0 18px 38px rgba(2, 22, 40, .14);
  --shadow-soft: 0 8px 22px rgba(2, 22, 40, .09);
  --radius: 7px;
  --container: 1160px;
  --section-y: clamp(48px, 6vw, 76px);
  --section-y-tight: clamp(38px, 4.8vw, 56px);
  --grid-gap: clamp(16px, 2vw, 24px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.56;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.icon {
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.icon-fill { fill: currentColor; stroke: none; }
.icon-line { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.icon-green-fill { fill: var(--green); stroke: none; }
.icon-green-line { fill: none; stroke: var(--green); stroke-linecap: round; stroke-linejoin: round; }
.icon-dark-line { fill: none; stroke: #111923; stroke-linecap: round; stroke-linejoin: round; }
.icon-navy-line { fill: none; stroke: #0b4773; stroke-linecap: round; stroke-linejoin: round; }
.icon-white-fill { fill: #fff; stroke: none; }
svg.icon::before, svg.icon::after { content: none !important; display: none !important; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: absolute; top: -44px; left: 12px; z-index: 30; background: var(--green); color: #fff; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

h1, h2, h3 {
  margin: 0 0 14px;
  color: var(--navy-dark);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.85rem, 5.1vw, 4.45rem); }
h2 { font-size: clamp(1.55rem, 2.25vw, 2.18rem); }
h3 { font-size: .96rem; line-height: 1.16; }
p { margin: 0 0 18px; max-width: 68ch; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .76rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button__icon { width: 17px; height: 17px; margin-right: 8px; stroke-width: 3.4; flex: 0 0 auto; }
.button--primary { background: linear-gradient(180deg, var(--green-bright), var(--green)); color: #fff; box-shadow: inset 0 -1px 0 rgba(0,0,0,.16); }
.button--outline { color: #fff; border-color: rgba(255,255,255,.76); background: rgba(0,0,0,.15); }
.button--outline-dark { color: var(--navy); border-color: var(--navy); background: #fff; }
.button--dark { background: var(--navy-dark); color: #fff; }
.button--large { min-height: 50px; padding-inline: 24px; }

.site-header { position: sticky; top: 0; z-index: 20; background: #fff; box-shadow: 0 2px 12px rgba(2, 22, 40, .08); }
.topbar { background: var(--navy-dark); color: #fff; font-size: .76rem; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.topbar__trust, .topbar__contact { display: flex; align-items: center; gap: 16px; }
.topbar__trust span, .topbar a { display: inline-flex; align-items: center; gap: 7px; position: relative; white-space: nowrap; }
.topbar__trust span + span { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.5); }
.topbar a { color: #fff; font-weight: 900; text-decoration: none; white-space: nowrap; }
.icon--topbar { width: 15px; height: 15px; color: var(--green-bright); stroke-width: 4; }

.header-main { height: 88px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; min-width: 270px; text-decoration: none; }
.brand__logo { width: 270px; height: auto; object-fit: contain; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.4vw, 18px); margin-left: auto; }
.primary-nav a { color: var(--navy-dark); font-size: .7rem; font-weight: 950; line-height: 1.2; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.primary-nav a.is-active { color: var(--green-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown__toggle { display: inline-flex; align-items: center; }
.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 25;
  width: 310px;
  display: grid;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .15s ease, transform .15s ease;
}
.nav-dropdown__menu a {
  padding: 10px 11px;
  border-radius: 4px;
  white-space: normal;
}
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus { background: var(--soft); color: var(--green-dark); }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.primary-nav__estimate { color: var(--green-dark) !important; }
.nav-caret { width: 11px; height: 11px; margin-left: 2px; stroke-width: 4; vertical-align: -1px; }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 10px; }
.header-call { color: var(--navy-dark); font-size: .76rem; font-weight: 950; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: var(--green); padding: 8px; }
.nav-toggle span { display: block; width: 27px; height: 3px; margin: 5px auto; border-radius: 3px; background: currentColor; }

.mockup-hero {
  position: relative;
  min-height: 386px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 27, 50, .98) 0%, rgba(0, 27, 50, .94) 28%, rgba(0, 27, 50, .56) 44%, rgba(0, 27, 50, .06) 66%),
    url("../assets/brand/commercial-landscape-hero.webp") right center / cover no-repeat;
  color: #fff;
}
.mockup-hero__content { padding: 48px 0 44px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 348px; align-items: center; gap: clamp(32px, 5vw, 58px); }
.mockup-hero h1 { max-width: 780px; color: #fff; font-size: clamp(2.9rem, 4.6vw, 4.08rem); text-shadow: 0 2px 12px rgba(0,0,0,.28); }
.mockup-hero h1 span, .estimate-hero h1 span { display: block; color: #fff; }
.mockup-hero h1 strong, .estimate-hero h1 strong { display: block; color: var(--green-bright); font: inherit; }
.mockup-hero h1 strong { font-size: .48em; line-height: 1.08; }
.estimate-hero h1 strong { font-size: .74em; line-height: 1.08; }
.mockup-hero p { max-width: 590px; color: #fff; font-size: 1.04rem; line-height: 1.48; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.mini-trust { margin-top: 18px; color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 850; text-transform: uppercase; }
.hero-check-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.hero-check-card h2 { margin-bottom: 0; color: var(--navy-dark); font-size: 1.18rem; }
.hero-check-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.hero-check-card li { color: var(--ink); font-size: .9rem; font-weight: 800; }
.hero-check-card li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--green); }

.trust-bar { background: var(--navy-dark); color: #fff; }
.trust-bar__grid { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: center; }
.trust-bar__grid > div { min-height: 54px; display: grid; grid-template-columns: 50px 1fr; column-gap: 12px; align-items: center; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.24); }
.trust-bar__grid > div:first-child { border-left: 0; padding-left: 0; }
.trust-bar strong, .trust-bar em { display: block; grid-column: 2; font-style: normal; }
.trust-bar strong { color: #fff; font-size: .82rem; font-weight: 950; line-height: 1.2; text-transform: uppercase; }
.trust-bar em { color: rgba(255,255,255,.9); font-size: .8rem; line-height: 1.32; }

.line-icon { position: relative; grid-row: 1 / span 2; display: inline-block; width: 42px; height: 42px; color: var(--green-bright); stroke-width: 3.6; }
.line-icon::before, .line-icon::after { content: ""; position: absolute; box-sizing: border-box; }
.line-icon--pin::before { left: 8px; top: 4px; width: 28px; height: 28px; border: 4px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.line-icon--pin::after { left: 18px; top: 14px; width: 8px; height: 8px; border: 3px solid currentColor; border-radius: 50%; }
.line-icon--shield::before { left: 7px; top: 4px; width: 30px; height: 34px; border: 4px solid currentColor; border-top-width: 5px; border-radius: 16px 16px 20px 20px; clip-path: polygon(50% 0, 100% 20%, 88% 72%, 50% 100%, 12% 72%, 0 20%); }
.line-icon--shield::after { left: 17px; top: 14px; width: 12px; height: 18px; border-right: 4px solid currentColor; border-bottom: 4px solid currentColor; transform: rotate(35deg); }
.line-icon--dollar::before { inset: 3px; border: 4px solid currentColor; border-radius: 50%; }
.line-icon--dollar::after { content: "$"; left: 13px; top: 2px; color: currentColor; font-size: 31px; font-weight: 900; line-height: 40px; }
.line-icon--people::before { left: 4px; top: 8px; width: 15px; height: 15px; border: 3px solid currentColor; border-radius: 50%; box-shadow: 22px 0 0 -3px transparent, 22px 0 0 0 currentColor; }
.line-icon--people::after { left: 0; bottom: 5px; width: 42px; height: 18px; border: 4px solid currentColor; border-radius: 18px 18px 4px 4px; border-bottom-width: 3px; }

.section { padding: var(--section-y) 0; }
.section-heading { max-width: 790px; margin: 0 auto clamp(24px, 3vw, 34px); text-align: center; }
.section-heading p:last-child { margin-bottom: 0; }
.eyebrow { margin: 0 0 8px; color: var(--green); font-size: .7rem; font-weight: 950; line-height: 1.15; text-transform: uppercase; }
.services-overview { background: #fff; }
.service-grid { display: grid; gap: var(--grid-gap); }
.service-grid--mockup { grid-template-columns: repeat(6, 1fr); }
.service-card {
  min-height: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 8px rgba(2, 22, 40, .03);
  text-align: center;
}
.service-card h3 { margin-bottom: 8px; color: var(--navy-dark); font-size: .88rem; }
.service-card p { margin: 0; color: var(--ink); font-size: .8rem; line-height: 1.38; }
.service-card a {
  margin-top: auto;
  padding-top: 12px;
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 950;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}
.service-card__icon {
  display: block;
  width: 74px;
  height: 60px;
  margin-bottom: 9px;
  object-fit: contain;
  object-position: center;
}
.service-card__icon--mower { width: 78px; }
.service-card__icon--leaf { width: 72px; }
.service-card__icon--sprout { width: 66px; }
.service-card__icon--grass { width: 68px; }
.service-card__icon--weed { width: 74px; }
.service-card__icon--snow { width: 66px; }
.section-action { display: flex; justify-content: center; margin: 24px 0 0; }
.service-list-grid--six { grid-template-columns: repeat(3, 1fr); }
.service-row a, .service-index-grid a { color: var(--green-dark); font-size: .78rem; font-weight: 950; text-decoration: none; text-transform: uppercase; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--navy-dark);
  font-size: .82rem;
  font-weight: 850;
}
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.inline-cta strong { color: var(--navy-dark); font-size: 1.08rem; }
.promise-card {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 5px solid var(--green);
  background: var(--soft);
  color: var(--navy-dark);
  font-size: 1.04rem;
  font-weight: 900;
}

.property-band { background: var(--navy-dark); color: #fff; overflow: hidden; }
.property-band__grid { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 248px; }
.property-band__copy { padding: 42px 36px 40px 0; }
.property-band h2 { color: #fff; }
.property-type-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 26px; }
.property-type-grid span { display: grid; gap: 7px; justify-items: center; color: #fff; font-size: .78rem; line-height: 1.22; text-align: center; }
.property-type__icon { display: block; width: 50px; height: 50px; object-fit: contain; object-position: center; }
.property-type-grid i { display: block; width: 34px; height: 34px; border: 3px solid var(--green-bright); border-radius: 2px; position: relative; }
.property-type-grid i::before { content: ""; position: absolute; left: 6px; top: -8px; width: 16px; height: 8px; border: 3px solid var(--green-bright); border-bottom: 0; }
.property-type-grid i::after { content: ""; position: absolute; inset: 7px 6px; border-left: 3px solid var(--green-bright); border-right: 3px solid var(--green-bright); }
.property-quote-card {
  position: relative;
  min-height: 248px;
  display: flex;
  align-items: center;
  padding: 36px;
  background:
    linear-gradient(108deg, rgba(70,169,0,.95) 0%, rgba(70,169,0,.9) 43%, rgba(70,169,0,.15) 44%, rgba(70,169,0,.05) 100%),
    url("../assets/brand/commercial-landscape-cta.webp") right center / cover no-repeat;
}
.property-quote-card h2 { color: #fff; font-size: 1.2rem; }
.property-quote-card p { max-width: 330px; color: #fff; font-size: .92rem; font-weight: 650; }
.quote-phone { margin: 12px 0 0; font-size: .9rem; }
.quote-phone a { font-size: 1.08rem; font-weight: 950; text-decoration: none; }

.estimate-hero {
  min-height: 274px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 27, 50, .98) 0%, rgba(0, 27, 50, .94) 34%, rgba(0, 27, 50, .52) 56%, rgba(0, 27, 50, .06) 100%),
    url("../assets/brand/commercial-landscape-hero.webp") right center / cover no-repeat;
}
.estimate-hero .container { padding: 34px 0 68px; }
.estimate-hero h1 { max-width: 820px; color: #fff; }
.estimate-hero h1 { font-size: clamp(2.65rem, 4.7vw, 3.85rem); }
.estimate-hero p { max-width: 660px; color: #fff; font-size: 1rem; line-height: 1.43; }
.estimate-shell { padding: 0 0 14px; background: linear-gradient(#fff 0, #fff 70%, var(--soft) 70%); }
.estimate-layout { display: grid; grid-template-columns: minmax(0, 1fr) 292px; gap: var(--grid-gap); align-items: start; margin-top: -62px; }
.estimate-layout--home { grid-template-columns: minmax(0, 1fr) 348px; margin-top: 0; }
.estimate-card, .side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.estimate-card { padding: clamp(20px, 2.4vw, 28px); }
.estimate-sidebar { display: grid; gap: 13px; }
.side-panel { padding: 22px; }
.side-panel h2 { margin-bottom: 14px; font-size: 1.02rem; }
.side-panel--dark { background: var(--navy-dark); color: #fff; border-color: var(--navy-dark); }
.side-panel--dark h2 { color: var(--green-bright); font-size: .98rem; }
.reason-list { display: grid; gap: 16px; list-style: none; margin: 0; padding: 0; }
.reason-list li { display: grid; grid-template-columns: 42px 1fr; align-items: center; column-gap: 12px; }
.reason-list .line-icon { width: 38px; height: 38px; }
.reason-list strong, .reason-list em { display: block; grid-column: 2; font-style: normal; }
.reason-list strong { color: #fff; font-size: .82rem; font-weight: 950; text-transform: uppercase; }
.reason-list em { color: rgba(255,255,255,.86); font-size: .8rem; line-height: 1.32; }
.next-steps { position: relative; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.next-steps::before { content: ""; position: absolute; left: 15px; top: 20px; bottom: 32px; width: 2px; background: #d7e3d1; }
.next-steps li { position: relative; min-height: 62px; margin: 0 0 14px; padding-left: 46px; counter-increment: steps; }
.next-steps li::before { content: counter(steps); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; }
.next-steps strong { display: block; color: var(--navy-dark); font-size: .8rem; text-transform: uppercase; }
.next-steps span { display: block; color: var(--ink); font-size: .8rem; line-height: 1.35; }
.side-panel--dark .next-steps::before { background: rgba(255,255,255,.72); }
.side-panel--dark .next-steps strong { color: #fff; }
.side-panel--dark .next-steps span { color: rgba(255,255,255,.86); }
.call-panel { display: flex; align-items: center; gap: 14px; }
.call-panel__icon { width: 42px; height: 42px; color: var(--green); stroke-width: 4; flex: 0 0 auto; }
.call-panel__icon::before { content: ""; position: absolute; left: 14px; top: 11px; width: 13px; height: 18px; border-left: 5px solid #fff; border-bottom: 5px solid #fff; border-radius: 3px; transform: rotate(-24deg); }
.call-panel strong, .call-panel span, .call-panel a { display: block; }
.call-panel strong { font-size: 1rem; color: var(--navy-dark); }
.call-panel span { font-size: .82rem; color: var(--muted); }
.call-panel a { color: var(--navy-dark); font-size: 1.2rem; font-weight: 950; text-decoration: none; }

.form-heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.form-heading__icon { display: block; width: 38px; height: 38px; flex: 0 0 auto; padding: 5px; border: 3px solid var(--green); border-radius: 4px; color: var(--green); stroke-width: 3.4; }
.form-heading h2 { margin-bottom: 3px; font-size: 1.1rem; }
.form-heading p { margin: 0; color: var(--ink); font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.field { position: relative; display: grid; gap: 5px; color: var(--ink); font-size: .78rem; font-weight: 850; line-height: 1.2; }
.field--wide { grid-column: 1 / -1; }
.field-icon {
  position: absolute;
  left: 12px;
  top: 31px;
  z-index: 1;
  width: 16px;
  height: 16px;
  color: #9aa4ad;
  stroke-width: 3;
  pointer-events: none;
}
.field--with-icon input { padding-left: 36px; }
input, select, textarea {
  width: 100%;
  min-height: 37px;
  border: 1px solid #cbd3da;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  line-height: 1.35;
  padding: 9px 11px;
  box-shadow: inset 0 1px 1px rgba(2,22,40,.04);
}
textarea { resize: vertical; min-height: 62px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(70,169,0,.2); border-color: var(--green); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; }
.upload-box {
  padding: 0;
  border: 0;
  background: transparent;
}
.upload-box span, .upload-box small, .upload-box em { display: block; }
.upload-box small { color: var(--ink); font-size: .78rem; font-weight: 650; }
.upload-box__control {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px dashed #b8c3cb;
  border-radius: 6px;
  background: #fbfcfd;
  color: var(--ink);
  cursor: pointer;
}
.upload-box__control:hover,
.upload-box__control:focus-within {
  border-color: var(--green);
  background: #f7fbf2;
}
.upload-box__input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.upload-box__message { min-width: 0; color: var(--muted); font-size: .78rem; font-weight: 650; pointer-events: none; }
.upload-box__message strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .84rem; font-weight: 900; }
.upload-box__message em { color: var(--muted); font-style: normal; overflow-wrap: anywhere; }
.upload-box__icon { width: 38px; height: 38px; flex: 0 0 auto; color: #8b98a5; stroke-width: 2.7; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; }
.form-footer small { color: var(--ink); font-size: .78rem; font-weight: 700; }

.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(28px, 4vw, 52px); align-items: start; }
.split p:last-child { margin-bottom: 0; }
.card-grid, .season-grid, .process-grid { display: grid; gap: var(--grid-gap); }
.card-grid--three, .service-list-grid, .process-grid { grid-template-columns: repeat(3, 1fr); }
.season-grid { grid-template-columns: repeat(4, 1fr); }
.info-card, .service-row, .season-grid article, .process-grid article, .quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(20px, 2.2vw, 26px);
  box-shadow: var(--shadow-soft);
}
.info-card h3, .service-row h3, .process-grid h3, .quote-card h3 { margin-bottom: 8px; }
.info-card p, .service-row p, .process-grid p, .quote-card p { margin-bottom: 0; }
.section--muted { background: var(--soft); }
.section--dark { background: var(--navy-dark); color: #fff; padding: var(--section-y-tight) 0 var(--section-y); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .season-card h3 { color: var(--navy-dark); }
.section--dark .season-card p { color: var(--ink); }
.season-card { min-height: 236px; display: flex; flex-direction: column; align-items: stretch; }
.season-card__head {
  margin: clamp(-26px, -2.2vw, -20px) clamp(-26px, -2.2vw, -20px) 20px;
  padding: 22px 20px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,.82)),
    url("../assets/brand/season-card-header-bg.webp") center / cover no-repeat;
}
.season-card--spring .season-card__head {
  background:
    linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.84)),
    url("../assets/brand/season-card-spring-bg.webp") center / cover no-repeat;
}
.season-card--summer .season-card__head {
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.82)),
    url("../assets/brand/season-card-summer-bg.webp") center / cover no-repeat;
}
.season-card--fall .season-card__head {
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.86)),
    url("../assets/brand/season-card-fall-bg.webp") center / cover no-repeat;
}
.season-card--winter .season-card__head {
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.8)),
    url("../assets/brand/season-card-winter-bg.webp") center / cover no-repeat;
}
.season-card__icon { display: block; width: 58px; height: 48px; margin: 0 auto 10px; object-fit: contain; object-position: center; }
.season-card h3 { margin: 0; text-align: center; }
.season-card p { margin-bottom: 12px; }
.season-card ul { margin: auto 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.season-card li { position: relative; padding-left: 14px; color: var(--ink); font-size: .78rem; font-weight: 800; line-height: 1.25; }
.season-card li::before { content: ""; position: absolute; left: 0; top: .45em; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.feature-list, .check-list { list-style: none; margin: 0; padding: 0; }
.feature-list li, .check-list li { margin: 8px 0; padding: 11px 13px; border-left: 4px solid var(--green); background: #fff; font-size: .9rem; font-weight: 850; }
.check-list--compact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.check-list--compact li { margin: 0; }
.process-grid article span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}
.process-grid--four { grid-template-columns: repeat(4, 1fr); }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; }
.link-row a { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 9px 12px; font-size: .86rem; font-weight: 850; text-decoration: none; }
.link-row--stacked { display: grid; align-content: start; }
.about-standards { max-width: 960px; margin: 0 auto; }
.proof-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.rounded-image { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.faq details { margin: 10px 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq summary { cursor: pointer; color: var(--navy-dark); font-weight: 900; }
.faq details p { margin: 12px 0 0; }
.cta-band { background: var(--navy-dark); color: #fff; padding: clamp(30px, 4.4vw, 46px) 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.cta-band__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.local-seo { padding: var(--section-y-tight) 0; background: var(--soft); }
.local-seo h2 { font-size: 1.2rem; }
.local-seo p { max-width: 92ch; }
.service-hero {
  background:
    linear-gradient(90deg, rgba(0, 27, 50, .98) 0%, rgba(0, 27, 50, .92) 48%, rgba(0, 27, 50, .62) 100%),
    url("../assets/brand/commercial-landscape-hero.webp") right center / cover no-repeat;
  color: #fff;
}
.service-hero__grid { min-height: 360px; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 32px; align-items: center; padding: 38px 0; }
.service-hero h1 { max-width: 800px; color: #fff; font-size: clamp(2.45rem, 4.65vw, 3.9rem); }
.service-hero p { color: rgba(255,255,255,.94); font-size: .98rem; }
.service-hero__card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.service-hero__card strong { display: block; color: var(--navy-dark); font-size: 1.08rem; font-weight: 950; }
.service-hero__card ul { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.service-hero__card li { font-size: .9rem; font-weight: 800; }
.service-hero__card li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--green); }
.service-hero__card p { color: var(--ink); margin: 10px 0 0; }
.service-hero--index .service-hero__card { align-self: center; }
.inclusion-grid, .service-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.inclusion-grid article, .service-index-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.inclusion-grid__icon { width: 28px; height: 28px; color: var(--green); }
.inclusion-grid span { color: var(--navy-dark); font-weight: 900; }
.split-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.split-card-grid article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.split-card-grid p { color: rgba(255,255,255,.9); }
.split-card-grid .eyebrow { color: var(--green-bright); }
.related-services h2 { font-size: 1.2rem; }
.section-actions { display: flex; justify-content: center; margin-top: 24px; }
.guide-hero, .guide-article-hero {
  background:
    linear-gradient(90deg, rgba(0, 27, 50, .98) 0%, rgba(0, 27, 50, .91) 52%, rgba(0, 27, 50, .68) 100%),
    url("../assets/brand/commercial-landscape-hero.webp") right center / cover no-repeat;
  color: #fff;
}
.guide-hero__grid, .guide-article-hero__grid {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: center;
  padding: 38px 0;
}
.guide-article-hero__grid { grid-template-columns: minmax(0, 1fr); }
.guide-hero h1, .guide-article-hero h1 { max-width: 850px; color: #fff; font-size: clamp(2.35rem, 4.5vw, 3.8rem); }
.guide-hero p, .guide-article-hero p { color: rgba(255,255,255,.93); }
.guide-article-hero__panel { display: none; }
.guide-hero__panel, .guide-article-hero__panel {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.guide-hero__panel span, .guide-article-hero__panel span { display: block; color: var(--green-dark); font-size: .74rem; font-weight: 950; text-transform: uppercase; }
.guide-hero__panel strong, .guide-article-hero__panel strong { display: block; color: var(--navy-dark); font-size: 3.2rem; line-height: 1; }
.guide-hero__panel p, .guide-article-hero__panel p { color: var(--muted); margin: 8px 0 0; }
.guide-card-grid, .guide-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.guide-card, .guide-link-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}
.guide-card span, .guide-link-card span { color: var(--green-dark); font-size: .7rem; font-weight: 950; text-transform: uppercase; }
.guide-card h3, .guide-link-card h3 { margin: 0; color: var(--navy-dark); font-size: 1.02rem; line-height: 1.22; }
.guide-card p, .guide-link-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.guide-card em, .guide-link-card em { margin-top: auto; color: var(--green-dark); font-size: .76rem; font-style: normal; font-weight: 950; text-transform: uppercase; }
.guide-topic-nav { padding: 28px 0; background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-topic-nav__head { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 16px; }
.guide-topic-nav__links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.guide-topic-nav__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy-dark);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}
.guide-topic-nav__links strong { color: var(--green-dark); font-size: 1.35rem; }
.guide-category-block { padding: 28px 0; border-top: 1px solid var(--line); }
.guide-category-block:first-child { border-top: 0; padding-top: 0; }
.guide-category-block__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; margin-bottom: 18px; }
.guide-category-block__head strong { color: var(--green-dark); font-size: .85rem; font-weight: 950; text-transform: uppercase; white-space: nowrap; }
.guide-article-body__grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.guide-article-main { max-width: 760px; display: block; }
.guide-content-section {
  display: block;
  padding: 0 0 clamp(28px, 4vw, 42px);
  margin: 0 0 clamp(28px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}
.guide-content-section:last-child { margin-bottom: 0; }
.guide-content-section--text { display: block; }
.guide-content-section h2 { max-width: 620px; font-size: clamp(1.35rem, 2.4vw, 1.95rem); }
.guide-content-section p { max-width: 68ch; }
.guide-content-section .check-list { max-width: 680px; margin-top: 16px; }
.guide-callout {
  max-width: 680px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--navy-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.guide-callout strong { display: block; color: #fff; font-size: .82rem; font-weight: 950; text-transform: uppercase; }
.guide-callout p { margin: 7px 0 0; color: rgba(255,255,255,.9); font-size: .9rem; }
.guide-mini-cards { max-width: 680px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.guide-mini-cards article { padding: 13px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.guide-mini-cards strong { display: block; color: var(--navy-dark); font-size: .84rem; font-weight: 950; }
.guide-mini-cards p { margin: 6px 0 0; color: var(--muted); font-size: .82rem; }
.guide-image-slot { max-width: 520px; margin: 20px 0 0; }
.guide-image-slot img, .guide-image-slot__empty {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.guide-image-slot figcaption { margin-top: 8px; color: var(--muted); font-size: .78rem; font-weight: 800; }
.guide-sidebar { position: sticky; top: 96px; display: grid; gap: 14px; }
.guide-sidebar__panel { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.guide-sidebar__panel h2 { font-size: 1.08rem; }
.guide-related-links { display: grid; gap: 10px; }
.guide-related-links a { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); text-decoration: none; }
.guide-related-links strong { color: var(--navy-dark); font-size: .9rem; }
.guide-related-links span { color: var(--muted); font-size: .8rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.thank-you { min-height: 62vh; display: grid; place-items: center; background: var(--soft); }
.thank-you__card { max-width: 880px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: clamp(28px, 6vw, 58px); box-shadow: var(--shadow); }
.next-steps--cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0; margin: 26px 0; }
.next-steps--cards div { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }

.site-footer { background: var(--navy-dark); color: #fff; }
.footer-cta { min-height: 82px; display: grid; grid-template-columns: 1.25fr 1.25fr 184px; gap: 24px; align-items: center; padding-top: 16px; padding-bottom: 16px; }
.footer-cta__copy { display: flex; align-items: center; gap: 12px; }
.footer-cta__icon { display: block; width: 40px; height: 40px; color: var(--green-bright); stroke-width: 3.2; flex: 0 0 auto; }
.footer-cta strong { display: block; color: #fff; font-size: .92rem; text-transform: uppercase; }
.footer-cta p { margin: 2px 0 0; color: rgba(255,255,255,.86); font-size: .78rem; line-height: 1.32; }
.footer-proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer-proof li { color: #fff; font-size: .68rem; font-weight: 850; text-align: center; }
.footer-proof li::before { display: none; }
.footer-proof__icon { display: block; width: 29px; height: 29px; margin: 0 auto 5px; color: var(--green-bright); stroke-width: 3.2; }
.footer-call { display: grid; justify-items: center; padding: 11px 13px; border-radius: 5px; background: linear-gradient(180deg, var(--green-bright), var(--green)); color: #fff; font-size: 1.08rem; font-weight: 950; line-height: 1.1; text-decoration: none; }
.footer-call span { font-size: .68rem; text-transform: uppercase; }
.footer-call__icon { width: 22px; height: 22px; margin-bottom: 2px; stroke-width: 3.8; }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75); font-size: .8rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; }
.footer-links a { color: rgba(255,255,255,.84); font-size: .76rem; font-weight: 800; text-decoration: none; }
.brand--footer { min-width: 0; background: #fff; padding: 7px 10px; border-radius: 5px; }
.brand--footer .brand__logo { width: 200px; }
.mobile-sticky { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; background: var(--navy-dark); box-shadow: 0 -8px 24px rgba(0,0,0,.22); }
.mobile-sticky a { flex: 1; min-height: 50px; display: grid; place-items: center; color: #fff; font-size: .82rem; font-weight: 900; text-align: center; text-decoration: none; text-transform: uppercase; }
.mobile-sticky__primary { background: var(--green); }

.page-home main > .section:nth-of-type(3) .section-heading,
.page-home main > .section:nth-of-type(7) .section-heading {
  margin-left: 0;
  text-align: left;
}
.page-home main > .section:nth-of-type(3) .section-heading p,
.page-home main > .section:nth-of-type(7) .section-heading p {
  margin-left: 0;
}
.page-home main > .section:nth-of-type(3) .section-action {
  justify-content: flex-start;
}
.page-home .services-overview {
  border-top: 1px solid rgba(216, 222, 228, .72);
}
.page-home .estimate-teaser {
  padding-top: var(--section-y-tight);
}
.page-home .estimate-teaser .side-panel {
  margin-top: 18px;
}

@media (max-width: 1500px) {
  .header-call { display: none; }
  .brand { min-width: 250px; }
  .brand__logo { width: 250px; }
  .primary-nav { gap: 11px; }
}

@media (max-width: 1160px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .topbar { display: none; }
  .header-main { height: 74px; }
  .brand { min-width: 0; }
  .brand__logo { width: 210px; }
  .header-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 6px; border-bottom: 1px solid var(--line); }
  .nav-dropdown { display: grid; }
  .nav-dropdown__toggle { border-bottom: 1px solid var(--line); }
  .nav-dropdown__menu {
    position: static;
    width: 100%;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown__menu a {
    padding: 10px 6px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .68rem;
  }
}

@media (max-width: 920px) {
  h1 { font-size: clamp(1.95rem, 9.4vw, 3rem); }
  h2 { font-size: clamp(1.35rem, 6vw, 1.75rem); }
  .section { padding: 40px 0; }
  .mockup-hero { min-height: 310px; background-position: center; }
  .mockup-hero__content { padding: 36px 0; }
  .trust-bar__grid, .service-grid--mockup, .property-band__grid, .estimate-layout, .estimate-layout--home, .split, .card-grid--three, .service-list-grid, .service-list-grid--six, .season-grid, .process-grid, .process-grid--four, .next-steps--cards, .footer-cta, .hero-grid, .service-hero__grid, .inclusion-grid, .service-index-grid, .split-card-grid, .cta-band__grid, .proof-gallery, .guide-hero__grid, .guide-article-hero__grid, .guide-card-grid, .guide-link-grid, .guide-topic-nav__links, .guide-category-block__head, .guide-article-body__grid, .guide-content-section, .guide-mini-cards { grid-template-columns: 1fr; }
  .trust-bar__grid { padding: 12px 0; }
  .trust-bar__grid > div { min-height: 58px; padding: 8px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .trust-bar__grid > div:first-child { border-top: 0; }
  .service-grid--mockup { gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
  .service-grid--mockup .service-card { min-height: 96px; display: grid; grid-template-columns: 62px 1fr; align-items: center; justify-items: start; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; text-align: left; box-shadow: none; }
  .service-grid--mockup .service-card:last-child { border-bottom: 0; }
  .service-card__icon { grid-row: 1 / span 2; margin: 0; }
  .service-card h3, .service-card p, .service-card a { grid-column: 2; }
  .service-card a { padding-top: 4px; }
  .property-band__copy { padding: 40px 0 34px; }
  .property-type-grid { grid-template-columns: repeat(2, 1fr); }
  .property-quote-card { margin: 0 -18px; }
  .estimate-hero .container { padding-bottom: 96px; }
  .estimate-layout { margin-top: -70px; }
  .estimate-card { padding: 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .hero-check-card, .service-hero__card, .guide-hero__panel, .guide-article-hero__panel { display: none; }
  .guide-sidebar { position: static; }
  .guide-topic-nav__head { display: block; }
  .check-list--compact { grid-template-columns: 1fr; }
  .inline-cta, .cta-band__actions { align-items: stretch; flex-direction: column; }
  .cta-band__actions { justify-content: flex-start; }
  .footer-proof { grid-template-columns: repeat(2, 1fr); }
  .footer-call { justify-items: start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 16px 0 78px; }
  .footer-links { justify-content: flex-start; }
  .mobile-sticky { display: flex; }
  .page-home main > .section:nth-of-type(3) .section-heading,
  .page-home main > .section:nth-of-type(7) .section-heading {
    text-align: center;
  }
  .page-home main > .section:nth-of-type(3) .section-action {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .container { width: min(100% - 26px, var(--container)); }
  .header-main { height: 66px; }
  .brand__logo { width: 172px; }
  .primary-nav { top: 66px; }
  .mockup-hero { min-height: 305px; background: linear-gradient(90deg, rgba(0, 27, 50, .96), rgba(0, 27, 50, .62)), url("../assets/brand/commercial-landscape-hero.webp") center / cover no-repeat; }
  .mockup-hero h1 { font-size: clamp(2.05rem, 9.6vw, 2.45rem); }
  .mockup-hero h1 strong { font-size: .58em; }
  .mockup-hero p, .estimate-hero p { font-size: .9rem; }
  .hero__actions { display: grid; gap: 9px; }
  .button { width: 100%; }
  .trust-bar__grid > div { grid-template-columns: 38px 1fr; column-gap: 10px; }
  .line-icon { width: 34px; height: 34px; transform: scale(.78); transform-origin: left center; }
  .service-card { padding: 14px; }
  .property-type-grid { gap: 10px; }
  .estimate-hero { min-height: 286px; background: linear-gradient(180deg, rgba(0, 27, 50, .95) 0%, rgba(0, 27, 50, .68) 58%, rgba(0, 27, 50, .16) 100%), url("../assets/brand/commercial-landscape-hero.webp") center bottom / cover no-repeat; }
  .side-panel { padding: 16px; }
  .footer-proof { display: none; }
}
