: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;
  --ls-ocean-solid: #031426;
  --ls-ocean-bg-ultrawide: url("../assets/images/footer/ocean-footer-bg-ultrawide-2172x724.webp?v=20260525-opt");
  --ls-ocean-bg-desktop: url("../assets/images/footer/ocean-footer-bg-desktop-1672x941.webp?v=20260525-opt");
  --ls-ocean-bg-tablet: url("../assets/images/footer/ocean-footer-bg-tablet-1448x1086.webp?v=20260525-opt");
  --ls-ocean-bg-mobile: url("../assets/images/footer/ocean-footer-bg-mobile-941x1672.webp?v=20260525-opt");
}

* { 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.5;
  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 12px;
  color: var(--navy-dark);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.55rem, 5.1vw, 4.15rem); }
h2 { font-size: clamp(1.42rem, 2.05vw, 1.9rem); }
h3 { font-size: .92rem; line-height: 1.2; }
p { margin: 0 0 14px; max-width: 66ch; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  border: 2px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  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: 48px; padding-inline: 22px; }

.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: .78rem; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.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: 86px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; min-width: 220px; text-decoration: none; }
.brand__logo { width: 232px; height: auto; object-fit: contain; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.55vw, 20px); 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: 340px;
  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: 40px 0 38px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: center; gap: 40px; }
.mockup-hero h1 { max-width: 720px; color: #fff; font-size: clamp(2.55rem, 4.35vw, 3.65rem); line-height: 1.09; 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: 600px; color: #fff; font-size: 1.02rem; line-height: 1.52; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; 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: 14px;
  padding: 26px;
  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: 76px; 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: clamp(38px, 5vw, 58px) 0; }
.section-heading { max-width: 760px; margin: 0 auto clamp(22px, 2.8vw, 30px); text-align: center; }
.section-heading p:not(.eyebrow) { margin-inline: auto; font-size: .98rem; line-height: 1.58; }
.eyebrow { margin: 0 0 6px; color: var(--green); font-size: .72rem; font-weight: 950; line-height: 1.15; text-transform: uppercase; }
.services-overview { background: #fff; }
.service-grid { display: grid; gap: 16px; }
.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: 20px 15px 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; line-height: 1.18; }
.service-card p { margin: 0; color: var(--ink); font-size: .84rem; line-height: 1.42; }
.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: 11px;
  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: 20px 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: 210px; }
.property-band__copy { padding: 28px 28px 28px 0; }
.property-band h2 { color: #fff; }
.property-type-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 22px; }
.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: 210px;
  display: flex;
  align-items: center;
  padding: 28px;
  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.12rem; }
.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) 282px; gap: 20px; align-items: start; margin-top: -62px; }
.estimate-layout--home { grid-template-columns: minmax(0, 1fr) 340px; 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: 22px; }
.estimate-sidebar { display: grid; gap: 13px; }
.side-panel { padding: 20px; }
.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; }
.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 input {
  min-height: 56px;
  margin-top: 8px;
  padding: 15px;
  border: 1px dashed #b8c3cb;
  background: #fbfcfd;
}
.upload-box em { display: flex; align-items: center; gap: 12px; margin-top: -50px; padding: 0 18px 16px 22px; color: var(--muted); font-size: .78rem; font-style: normal; font-weight: 650; pointer-events: none; }
.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, .95fr) minmax(0, 1.05fr); gap: 32px; align-items: start; }
.card-grid, .season-grid, .process-grid { display: grid; gap: 18px; }
.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: 22px;
  box-shadow: var(--shadow-soft);
}
.info-card h3, .season-grid h3, .process-grid h3 { margin-bottom: 10px; line-height: 1.2; }
.info-card p, .season-grid p, .process-grid p { line-height: 1.52; }
.section--muted { background: var(--soft); }
.section--dark { background: var(--navy-dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.feature-list, .check-list { list-style: none; margin: 0; padding: 0; }
.feature-list li, .check-list li { margin: 8px 0; padding: 9px 11px; border-left: 4px solid var(--green); background: #fff; font-size: .9rem; font-weight: 800; }
.check-list--compact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.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: 30px 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-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-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 picture, .guide-image-slot__empty {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.guide-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-image-slot__empty {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(0, 27, 50, .22);
  background: linear-gradient(135deg, #eef7ef 0%, #f7fafc 100%);
}
.guide-image-slot__empty span { color: var(--green-dark); font-size: .72rem; font-weight: 950; text-transform: uppercase; }
.guide-image-slot__filename { display: inline-block; width: fit-content; max-width: 100%; padding: 6px 8px; border-radius: 6px; background: #fff; color: var(--navy-dark); font-size: .78rem; font-weight: 900; overflow-wrap: anywhere; box-shadow: inset 0 0 0 1px var(--line); }
.guide-image-slot__prompt { margin: 0; color: var(--ink); font-size: .78rem; font-weight: 700; line-height: 1.5; }
.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: 178px; }
.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); }

@media (max-width: 1500px) {
  .header-call { display: none; }
  .brand { min-width: 190px; }
  .brand__logo { width: 198px; }
  .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: 180px; }
  .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, 8.8vw, 2.85rem); }
  h2 { font-size: clamp(1.35rem, 5.4vw, 1.72rem); }
  .section { padding: 40px 0; }
  .mockup-hero { min-height: 310px; background-position: center; }
  .mockup-hero__content { padding: 34px 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: 58px 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-right: 0; }
  .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; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 26px, var(--container)); }
  .header-main { height: 66px; }
  .brand__logo { width: 158px; }
  .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(1.95rem, 9.1vw, 2.34rem); }
  .mockup-hero h1 strong { font-size: .58em; }
  .mockup-hero p, .estimate-hero p { font-size: .92rem; line-height: 1.5; }
  .hero__actions { display: grid; gap: 10px; }
  .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 13px; }
  .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; }
}

/* LawnSharks NS Cape Breton launch system */
:root {
  --navy: #062a3a;
  --navy-dark: #062a3a;
  --navy-soft: #0b5fa5;
  --blue: #0b5fa5;
  --blue-soft: #e8f4fa;
  --green: #35a936;
  --green-bright: #43c844;
  --green-dark: #218c24;
  --ink: #08283a;
  --muted: #5b6b78;
  --line: #d9e6ec;
  --soft: #f2f7f8;
  --sand: #f4efe6;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(6, 42, 58, .16);
  --shadow-soft: 0 10px 26px rgba(6, 42, 58, .1);
}

.page-ns {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 244, 250, .9) 0 180px, transparent 310px),
    linear-gradient(180deg, #fff 0%, #fff 70%, #f6fbfc 100%);
}

.page-ns h1,
.page-ns h2,
.page-ns h3 {
  color: var(--navy);
  letter-spacing: 0;
}

.page-ns p {
  color: var(--ink);
}

.button {
  border-radius: 5px;
}

.button--primary {
  background: linear-gradient(180deg, var(--green-bright), var(--green));
}

.button--blue {
  background: linear-gradient(180deg, #1472bc, var(--blue));
  color: #fff;
  border-color: transparent;
}

.topbar {
  background: linear-gradient(90deg, #08324a, #004a81);
}

.site-header {
  box-shadow: 0 2px 14px rgba(6, 42, 58, .1);
}

.primary-nav a.is-active {
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--green);
}

.primary-nav__estimate,
.header-actions .button {
  color: #fff !important;
}

.brand {
  gap: 5px;
}

.brand__logo {
  width: 166px;
}

.brand__suffix {
  display: grid;
  color: var(--green);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: .86;
}

.brand__suffix small {
  color: var(--blue);
  font-size: .42rem;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand--footer {
  background: transparent;
  padding: 0;
}

.brand--footer .brand__logo {
  width: 150px;
}

.ns-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 38%, rgba(255, 255, 255, .35) 63%, rgba(255, 255, 255, .02) 100%),
    linear-gradient(180deg, rgba(232, 244, 250, .55), rgba(232, 244, 250, 0)),
    url("../assets/brand/commercial-landscape-hero.webp") right center / cover no-repeat;
}

.ns-hero::after,
.section--coastal::after,
.cta-band--image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 54px;
  pointer-events: none;
  background:
    radial-gradient(120% 72px at 25% 0, transparent 48%, #fff 50%),
    linear-gradient(90deg, rgba(232, 244, 250, .5), transparent 35%, rgba(53, 169, 54, .1));
}

.ns-hero--services,
.ns-hero--estimate,
.ns-hero--guides {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 42%, rgba(255, 255, 255, .18) 74%),
    url("../assets/brand/commercial-landscape-cta.webp") right center / cover no-repeat;
}

.ns-hero--estimate {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .92) 45%, rgba(255, 255, 255, .2) 76%),
    url("../assets/brand/commercial-landscape-hero.webp") right center / cover no-repeat;
}

.ns-hero__grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 42px;
  align-items: center;
  padding: 46px 0 70px;
}

.ns-hero__content {
  max-width: 720px;
  padding: 44px 0 64px;
}

.ns-hero__content h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 4.7vw, 4rem);
}

.ns-hero__content p {
  max-width: 600px;
  color: #12344a;
  font-size: 1rem;
  line-height: 1.62;
}

.hero-note {
  display: inline-block;
  margin-top: 12px;
  color: var(--navy) !important;
  font-family: "Segoe UI", Inter, sans-serif;
  font-size: 1.08rem !important;
  font-weight: 800;
  border-bottom: 3px solid var(--green);
}

.hero-service-card,
.guide-stats-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(217, 230, 236, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.hero-service-card strong {
  color: var(--navy);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-service-card span,
.guide-stats-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 900;
}

.hero-service-card__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--green);
  stroke-width: 3.4;
}

.hero-service-card__icon--image {
  display: block;
  object-fit: contain;
}

.trust-strip {
  background: var(--blue-soft);
  color: var(--navy);
}

.trust-strip__grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}

.trust-strip__grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 14px;
  align-content: center;
  padding: 18px 24px;
  border-left: 1px solid rgba(6, 42, 58, .12);
}

.trust-strip__grid article:first-child {
  border-left: 0;
}

.trust-strip__icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.trust-strip h2 {
  margin: 0;
  font-size: .76rem;
  line-height: 1.2;
}

.trust-strip p {
  margin: 0;
  color: var(--ink);
  font-size: .78rem;
  line-height: 1.35;
}

.section--coastal,
.section--mist,
.cta-band--image {
  position: relative;
  overflow: hidden;
}

.section--coastal {
  background:
    linear-gradient(180deg, #fff 0%, #fff 48%, rgba(232, 244, 250, .42) 100%);
}

.section--mist {
  background:
    radial-gradient(90% 90px at 85% 0, rgba(232, 244, 250, .9), transparent 70%),
    var(--soft);
}

.section--tight {
  padding-top: 34px;
  padding-bottom: 34px;
}

.ns-service-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ns-service-card {
  min-height: 218px;
  border-color: var(--line);
  border-radius: 8px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.ns-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 95, 165, .32);
  box-shadow: var(--shadow-soft);
}

.ns-service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  color: var(--green);
  stroke-width: 2.8;
}

.ns-service-card h3 {
  font-size: .82rem;
}

.ns-service-card p {
  font-size: .78rem;
}

.property-icon-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.property-type-icon {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 108px;
  padding: 14px 10px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.property-type-icon:first-child {
  border-left: 0;
}

.property-type-icon__svg {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.property-type-icon strong {
  color: var(--navy);
  font-size: .72rem;
  font-weight: 950;
  line-height: 1.18;
  text-transform: uppercase;
}

.ns-season-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.season-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.season-card__icon {
  width: 54px;
  height: 54px;
  padding: 10px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--green);
}

.season-card h3 {
  font-size: 1rem;
}

.season-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.ns-split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 32px;
  align-items: center;
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbfd, #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.ns-split-card--plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 18px;
}

.why-grid article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
}

.why-grid__icon {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.why-grid h3 {
  margin-bottom: 3px;
  font-size: .82rem;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.ns-process-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ns-process-grid article {
  position: relative;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ns-process-grid article span {
  background: var(--blue);
}

.side-panel--blue {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.side-panel--blue h2,
.side-panel--blue strong {
  color: #fff;
}

.side-panel--blue span,
.side-panel--blue p {
  color: rgba(255, 255, 255, .88);
}

.side-panel--soft {
  background: linear-gradient(145deg, #f5fbfd, #fff);
}

.reason-list--light strong {
  color: var(--navy);
}

.reason-list--light em {
  color: var(--muted);
}

.call-panel--stacked {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}

.cta-band--image {
  background:
    linear-gradient(90deg, rgba(6, 42, 58, .98) 0%, rgba(6, 42, 58, .88) 54%, rgba(6, 42, 58, .38) 100%),
    url("../assets/brand/commercial-landscape-cta.webp") right center / cover no-repeat;
}

.cta-band--image::after {
  top: -1px;
  bottom: auto;
  transform: rotate(180deg);
}

.cta-band--light {
  background:
    linear-gradient(90deg, rgba(232, 244, 250, .95), rgba(255, 255, 255, .86)),
    url("../assets/brand/commercial-landscape-cta.webp") right center / cover no-repeat;
  color: var(--navy);
}

.cta-band--light h2,
.cta-band--light p {
  color: var(--navy);
}

.featured-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.featured-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.featured-service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-service-card div {
  position: relative;
  padding: 22px;
}

.featured-service-card__icon {
  position: absolute;
  top: -31px;
  left: 20px;
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-soft);
}

.featured-service-card h3 {
  margin-top: 12px;
  font-size: .95rem;
}

.featured-service-card ul,
.green-check-list,
.sidebar-cta ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.featured-service-card li,
.green-check-list li,
.sidebar-cta li {
  position: relative;
  margin: 8px 0;
  padding-left: 24px;
  color: var(--ink);
  font-size: .86rem;
}

.featured-service-card li::before,
.green-check-list li::before,
.sidebar-cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.featured-service-card a,
.mini-guide-card a,
.featured-guide-card a,
.guide-category-section__head a {
  color: var(--blue);
  font-size: .76rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.image-callout {
  position: relative;
}

.image-callout aside {
  position: absolute;
  right: -18px;
  bottom: -18px;
  max-width: 180px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 950;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.guide-search {
  display: flex;
  max-width: 480px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.guide-search input {
  min-height: 54px;
  border: 0;
  box-shadow: none;
}

.guide-search button {
  width: 58px;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}

.guide-stats-card span {
  align-items: flex-start;
}

.guide-stats-card .icon {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.guide-stats-card strong {
  display: block;
}

.guide-filters {
  padding: 24px 0;
  background: #fff;
}

.guide-filters p {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.guide-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.guide-filter-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}

.guide-filter-row button.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.guide-filter__icon {
  width: 20px;
  height: 20px;
  color: currentColor;
}

.featured-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.featured-guide-card,
.mini-guide-card,
.sidebar-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.featured-guide-card {
  overflow: hidden;
}

.featured-guide-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.featured-guide-card div,
.mini-guide-card,
.sidebar-cta {
  padding: 18px;
}

.featured-guide-card span {
  color: var(--green);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-guide-card h3,
.mini-guide-card h3 {
  margin-top: 6px;
  font-size: 1.04rem;
  line-height: 1.26;
  text-transform: none;
}

.guide-library-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
}

.guide-category-section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.guide-category-section__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.guide-category-section h2 {
  margin: 0;
  font-size: 1.18rem;
}

.mini-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini-guide-card p {
  color: var(--muted);
  font-size: .82rem;
}

.guide-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}

.sidebar-cta--estimate {
  background: linear-gradient(180deg, #f7fbfd, #e8f4fa);
}

.script-label {
  margin-bottom: 4px;
  color: var(--green) !important;
  font-size: 1.08rem;
  font-weight: 800;
}

.sidebar-cta h2 {
  font-size: 1.12rem;
}

.sidebar-cta a:not(.button) {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
}

.sidebar-cta a .icon {
  width: 21px;
  height: 21px;
  color: var(--green);
}

.sidebar-phone a {
  display: inline !important;
  color: var(--blue) !important;
  font-size: 1.08rem !important;
}

.sidebar-cta--green {
  background: #eff9ec;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.trust-chips .icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.estimate-shell--ns {
  padding-bottom: 34px;
  background: linear-gradient(#fff 0, #fff 66%, var(--soft) 66%);
}

.estimate-card--large {
  border-radius: 12px;
}

.form-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #f3c2c2;
  border-radius: 8px;
  background: #fff4f4;
  color: #7d1d1d;
  font-size: .9rem;
  font-weight: 850;
}

.priority-panel {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 22px;
  padding: 24px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f4fa, #fff);
}

.priority-panel__icon {
  width: 72px;
  height: 72px;
  padding: 12px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}

.priority-panel p:last-child {
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
  border-bottom: 3px solid var(--green);
}

.trust-strip--white {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.trust-strip--white .trust-strip__grid {
  grid-template-columns: repeat(5, 1fr);
}

.trust-strip--white .trust-strip__grid article {
  display: block;
  text-align: center;
}

.trust-strip--white .trust-strip__icon {
  display: block;
  margin: 0 auto 10px;
}

.thank-you--ns {
  min-height: 66vh;
  background:
    linear-gradient(180deg, rgba(232, 244, 250, .95), rgba(255, 255, 255, .96)),
    url("../assets/brand/commercial-landscape-cta.webp") center / cover no-repeat;
}

.thank-you__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  color: var(--green);
}

.thank-you__card {
  text-align: left;
}

.page-thank-you .hero__actions {
  margin-top: 22px;
}

@media (max-width: 1160px) {
  .primary-nav a.is-active {
    box-shadow: none;
  }

  .ns-hero__grid {
    grid-template-columns: 1fr;
    min-height: 390px;
  }

  .hero-service-card,
  .guide-stats-card {
    max-width: 520px;
  }

  .ns-service-grid,
  .featured-service-grid,
  .featured-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-icon-row,
  .trust-strip__grid,
  .trust-strip--white .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-type-icon:nth-child(odd),
  .trust-strip__grid article:nth-child(odd) {
    border-left: 0;
  }

  .guide-library-layout,
  .ns-split-card {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }

  .mini-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .ns-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.78) 58%, rgba(255,255,255,.2)),
      url("../assets/brand/commercial-landscape-hero.webp") center / cover no-repeat;
  }

  .ns-hero__content {
    padding: 28px 0 76px;
  }

  .estimate-shell--ns .estimate-layout {
    margin-top: 0;
  }

  .ns-hero__grid {
    padding: 28px 0 58px;
  }

  .hero-service-card,
  .guide-stats-card {
    display: none;
  }

  .ns-season-grid,
  .ns-process-grid,
  .priority-panel {
    grid-template-columns: 1fr;
  }

  .image-callout aside {
    position: static;
    margin: 12px 0 0 auto;
  }

  .priority-panel {
    justify-items: start;
  }

  .priority-panel p:last-child {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .ns-service-grid,
  .featured-service-grid,
  .featured-guide-grid,
  .mini-guide-grid,
  .property-icon-row,
  .trust-strip__grid,
  .trust-strip--white .trust-strip__grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid article,
  .property-type-icon {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip__grid article:first-child,
  .property-type-icon:first-child {
    border-top: 0;
  }

  .guide-filter-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .guide-filter-row button {
    flex: 0 0 auto;
  }

  .hero__actions {
    width: 100%;
  }

  .brand__logo {
    width: 136px;
  }

  .brand__suffix {
    font-size: 1.05rem;
  }

  .trust-chips span {
    width: 100%;
  }

  .priority-panel {
    padding: 20px;
  }
}

/* Homepage polish pass */
:root {
  --container: 1160px;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 20;
}

.header-main .brand {
  min-width: 246px;
  gap: 8px;
}

.header-main .brand__logo {
  width: 176px;
}

.header-main .brand__suffix {
  font-size: 1.42rem;
  line-height: .84;
}

.header-main .brand__suffix small {
  font-size: .46rem;
  letter-spacing: .01em;
}

.header-main {
  height: 78px;
}

.primary-nav a {
  font-size: .74rem;
  letter-spacing: 0;
}

.header-actions .button {
  min-width: 154px;
  min-height: 48px;
  font-size: .78rem;
}

.page-home .ns-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .88) 34%, rgba(255, 255, 255, .24) 62%, rgba(255, 255, 255, .03) 100%),
    linear-gradient(180deg, rgba(232, 244, 250, .34), rgba(232, 244, 250, 0)),
    url("../assets/brand/commercial-landscape-cta.webp") right center / cover no-repeat;
}

.page-home .ns-hero__grid {
  min-height: 398px;
  padding: 34px 0 58px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.page-home .ns-hero__content {
  max-width: 640px;
  padding: 24px 0 46px;
}

.page-home .ns-hero__content h1 {
  max-width: 620px;
  font-size: clamp(2.35rem, 3.9vw, 3.45rem);
  line-height: 1.08;
}

.page-home .ns-hero__content p {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.page-home .hero-service-card {
  min-height: 206px;
  padding: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
}

.page-home .hero-service-card span {
  min-height: 36px;
  font-size: .92rem;
}

.page-home .hero-service-card__icon {
  width: 31px;
  height: 31px;
}

.hero__actions .button {
  min-height: 50px;
  padding-inline: 24px;
  font-size: .82rem;
}

.hero-note {
  margin-top: 16px;
  font-size: 1.12rem !important;
}

.trust-strip__grid {
  min-height: 82px;
}

.trust-strip__grid article {
  padding: 14px 22px;
  align-items: center;
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
}

.trust-strip h2 {
  font-size: .8rem;
}

.trust-strip p {
  font-size: .82rem;
}

.page-home .section {
  padding-top: 62px;
  padding-bottom: 62px;
}

.page-home .section--tight {
  padding-top: 42px;
  padding-bottom: 42px;
}

.page-home .section-heading {
  margin-bottom: 24px;
}

.page-home .section-heading p:not(.eyebrow) {
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.62;
}

.eyebrow {
  font-size: .7rem;
  letter-spacing: .02em;
}

.ns-service-grid {
  gap: 16px;
}

.ns-service-card {
  min-height: 242px;
  padding: 26px 20px 22px;
  border-color: #cfe0e8;
  box-shadow: 0 6px 18px rgba(6, 42, 58, .06);
}

.ns-service-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
}

.ns-service-card h3 {
  font-size: .9rem;
  line-height: 1.2;
}

.ns-service-card p {
  color: #12344a;
  font-size: .86rem;
  line-height: 1.45;
}

.ns-service-card a {
  margin-top: 18px;
  color: var(--green-dark);
  font-size: .76rem;
  letter-spacing: .01em;
}

.property-icon-row {
  max-width: 1100px;
  margin: 0 auto;
}

.property-type-icon {
  min-height: 120px;
  padding: 18px 12px;
}

.property-type-icon__svg {
  width: 42px;
  height: 42px;
}

.property-type-icon strong {
  font-size: .77rem;
}

.season-card {
  min-height: 292px;
  padding: 0 0 22px;
}

.season-card::before {
  content: "";
  display: block;
  height: 96px;
  background:
    linear-gradient(180deg, rgba(232, 244, 250, .4), rgba(255, 255, 255, .05)),
    url("../assets/brand/commercial-landscape-cta.webp") center / cover no-repeat;
}

.season-card:nth-child(2)::before {
  background:
    linear-gradient(180deg, rgba(232, 244, 250, .32), rgba(255, 255, 255, .05)),
    url("../assets/brand/commercial-landscape-hero.webp") center / cover no-repeat;
}

.season-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(244, 239, 230, .42), rgba(255, 255, 255, .05)),
    url("../before after photos/559060775_122221736756102611_5358068008071524563_n.webp") center / cover no-repeat;
}

.season-card:nth-child(4)::before {
  background:
    linear-gradient(180deg, rgba(232, 244, 250, .7), rgba(255, 255, 255, .08)),
    url("../assets/brand/commercial-landscape-hero.webp") center / cover no-repeat;
  filter: saturate(.65) brightness(1.05);
}

.season-card__icon {
  position: relative;
  z-index: 1;
  margin: -28px 22px 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.season-card:nth-child(1) .season-card__icon { color: var(--green); }
.season-card:nth-child(2) .season-card__icon { color: #e7aa1d; }
.season-card:nth-child(3) .season-card__icon { color: #e56b13; }
.season-card:nth-child(4) .season-card__icon { color: var(--blue); }

.season-card h3,
.season-card p,
.season-card ul {
  margin-left: 22px;
  margin-right: 22px;
}

.season-card ul {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.season-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 750;
}

.season-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.page-home .ns-split-card {
  padding: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
}

.page-home .ns-split-card .rounded-image {
  width: 100%;
  min-height: 284px;
  object-fit: cover;
}

.why-grid {
  gap: 18px 26px;
}

.why-grid__icon {
  width: 33px;
  height: 33px;
}

.why-grid h3 {
  font-size: .86rem;
}

.why-grid p {
  font-size: .86rem;
  line-height: 1.42;
}

.page-home .ns-process-grid {
  position: relative;
  gap: 28px;
}

.page-home .ns-process-grid article {
  padding: 22px;
}

.page-home .ns-process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

.page-home .ns-process-grid article span {
  width: 42px;
  height: 42px;
  font-size: 1rem;
}

.estimate-teaser {
  padding-top: 36px !important;
}

.estimate-card {
  padding: 28px;
  border-radius: 12px;
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading h2 {
  font-size: 1.24rem;
}

.form-heading p {
  font-size: .9rem;
  line-height: 1.42;
}

.field {
  gap: 7px;
  font-size: .83rem;
}

input,
select,
textarea {
  min-height: 44px;
  border-color: #bccfd8;
  font-size: .88rem;
}

.field-icon {
  top: 35px;
}

.form-grid {
  gap: 15px 24px;
}

.form-footer {
  margin-top: 18px;
}

.form-footer small {
  max-width: 380px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
}

.form-footer small span {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.form-footer .button {
  min-width: 236px;
  min-height: 50px;
  font-size: .82rem;
}

.page-home .side-panel--blue {
  background: linear-gradient(160deg, #08324a, #0b5fa5);
  border-color: rgba(11, 95, 165, .25);
  box-shadow: var(--shadow-soft);
}

.page-home .side-panel--blue .call-panel--stacked {
  border: 1px solid rgba(217, 230, 236, .85);
}

.call-panel a {
  color: var(--blue);
}

.cta-band--image {
  background:
    linear-gradient(90deg, rgba(6, 42, 58, .98) 0%, rgba(6, 42, 58, .94) 55%, rgba(6, 42, 58, .76) 100%),
    url("../assets/brand/commercial-landscape-cta.webp") right center / cover no-repeat;
}

.page-home .season-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(244, 239, 230, .12), rgba(255, 255, 255, .02)),
    url("../assets/brand/commercial-landscape-cta.webp") center 46% / cover no-repeat;
  filter: sepia(.14) saturate(1.14) hue-rotate(-12deg);
}

.page-home .cta-band--image {
  padding: 48px 0;
  background:
    linear-gradient(90deg, rgba(6, 42, 58, .99) 0%, rgba(6, 42, 58, .96) 52%, rgba(6, 42, 58, .82) 100%),
    url("../assets/brand/commercial-landscape-cta.webp") right center / cover no-repeat;
}

.page-home .cta-band--image::after {
  opacity: .16;
}

.page-home .cta-band--image .cta-band__grid,
.page-home .cta-band--image h2,
.page-home .cta-band--image p,
.page-home .cta-band--image .cta-band__actions {
  position: relative;
  z-index: 2;
}

.page-home .cta-band--image h2,
.page-home .cta-band--image p {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .32);
}

.page-home .cta-band--image p {
  color: rgba(255, 255, 255, .9);
}

.cta-band h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.cta-band__actions .button {
  min-width: 220px;
}

.site-footer {
  background:
    radial-gradient(75% 90px at 20% 0, rgba(11, 95, 165, .36), transparent 70%),
    var(--navy);
}

.footer-cta {
  min-height: 104px;
  gap: 34px;
}

.footer-bottom {
  min-height: 86px;
}

.footer-links {
  gap: 12px 22px;
}

.footer-links a {
  font-size: .8rem;
}

@media (max-width: 1160px) {
  .site-header {
    position: relative;
  }

  .header-main .brand {
    min-width: 0;
  }

  .header-main {
    height: 70px;
  }

  .page-home .ns-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-home .ns-split-card {
    grid-template-columns: 1fr;
  }

  .page-home .ns-process-grid article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 920px) {
  .page-home .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-home .ns-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .77) 60%, rgba(255, 255, 255, .18)),
      url("../assets/brand/commercial-landscape-cta.webp") center / cover no-repeat;
  }

  .page-home .ns-hero__grid {
    min-height: 0;
    padding: 30px 0 54px;
  }

  .page-home .ns-hero__content {
    padding: 8px 0 46px;
  }

  .page-home .ns-hero__content h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .estimate-card {
    padding: 20px;
  }

  .form-footer {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .header-main {
    height: 66px;
  }

  .page-home .hero__actions .button {
    width: 100%;
  }

  .ns-service-card {
    min-height: 0;
  }

  .property-type-icon {
    min-height: 96px;
  }

  .season-card {
    min-height: 0;
  }

  .form-footer .button {
    min-width: 0;
    width: 100%;
  }
}

/* Homepage visual lock pass */
:root {
  --container: 1180px;
}

.button:focus-visible,
.primary-nav a:focus-visible,
.footer-column a:focus-visible,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(53, 169, 54, .28);
  outline-offset: 2px;
}

.page-home .site-header {
  position: relative;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 18px rgba(6, 42, 58, .08);
}

.topbar__inner {
  min-height: 32px;
}

.topbar__trust,
.topbar__contact {
  gap: 18px;
}

.topbar__trust span,
.topbar a {
  font-size: .76rem;
  line-height: 1;
}

.header-main {
  height: 82px;
}

.header-main .brand {
  min-width: 254px;
}

.header-main .brand__logo {
  width: 184px;
}

.primary-nav {
  gap: clamp(13px, 1.35vw, 20px);
}

.primary-nav a {
  font-size: .75rem;
}

.header-actions .button {
  min-width: 160px;
  box-shadow: 0 8px 18px rgba(53, 169, 54, .2);
}

.page-home .ns-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 31%, rgba(255, 255, 255, .54) 49%, rgba(255, 255, 255, .08) 70%),
    linear-gradient(180deg, rgba(232, 244, 250, .42), rgba(232, 244, 250, 0) 58%),
    url("../assets/brand/cape-breton-coastal-hero.webp") center center / cover no-repeat;
}

.page-home .ns-hero__grid {
  min-height: 438px;
  grid-template-columns: minmax(0, 1fr) 342px;
  gap: 52px;
  padding: 46px 0 66px;
}

.page-home .ns-hero__content {
  max-width: 650px;
  padding: 18px 0 44px;
}

.page-home .ns-hero__content h1 {
  max-width: 630px;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 4.15vw, 3.72rem);
  line-height: 1.05;
}

.page-home .ns-hero__content p {
  max-width: 570px;
  color: #14394d;
  font-size: 1.04rem;
  line-height: 1.6;
}

.page-home .hero__actions {
  gap: 12px;
  margin-top: 24px;
}

.page-home .hero__actions .button {
  min-height: 52px;
  padding-inline: 24px;
}

.page-home .hero__actions .button--primary {
  box-shadow: 0 10px 22px rgba(53, 169, 54, .28);
}

.page-home .hero-note {
  margin-top: 17px;
  color: var(--navy) !important;
  font-size: 1.06rem !important;
  line-height: 1.35;
}

.page-home .hero-service-card {
  align-self: center;
  min-height: 224px;
  padding: 28px;
  border: 1px solid rgba(217, 230, 236, .92);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 48px rgba(6, 42, 58, .16);
}

.page-home .hero-service-card span {
  min-height: 38px;
  color: var(--navy);
  font-size: .93rem;
}

.page-home .hero-service-card__icon {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.page-home .trust-strip {
  background: linear-gradient(180deg, #eef8fc, #e4f2f8);
  border-top: 1px solid rgba(6, 42, 58, .06);
  border-bottom: 1px solid rgba(6, 42, 58, .08);
}

.page-home .trust-strip__grid {
  min-height: 94px;
}

.page-home .trust-strip__grid article {
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  padding: 18px 24px;
}

.page-home .trust-strip__icon {
  width: 42px;
  height: 42px;
  color: var(--blue);
}

.page-home .trust-strip h2 {
  font-size: .82rem;
}

.page-home .trust-strip p {
  color: #234454;
  font-size: .84rem;
  line-height: 1.38;
}

.page-home .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-home .section--tight {
  padding-top: 52px;
  padding-bottom: 52px;
}

.page-home .section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.page-home .section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.25vw, 2.05rem);
}

.page-home .section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: #173b50;
  font-size: 1rem;
  line-height: 1.64;
}

.service-grid-kicker {
  margin: 0 auto 20px;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.page-home .ns-service-grid {
  gap: 18px;
}

.page-home .ns-service-card {
  min-height: 258px;
  padding: 28px 20px 24px;
  border-color: #cfe0e8;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(6, 42, 58, .07);
}

.page-home .ns-service-card:hover {
  border-color: rgba(11, 95, 165, .4);
  box-shadow: 0 18px 34px rgba(6, 42, 58, .12);
}

.page-home .ns-service-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: center;
}

.page-home .ns-service-card__icon--image {
  display: block;
  color: initial;
  stroke: none;
}

.page-home .ns-service-card h3 {
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.page-home .ns-service-card p {
  color: #173b50;
  font-size: .86rem;
  line-height: 1.5;
}

.page-home .ns-service-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  font-size: .76rem;
}

.page-home .property-icon-row {
  max-width: 1120px;
  border-color: #cfe0e8;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(6, 42, 58, .08);
}

.page-home .property-type-icon {
  min-height: 126px;
  padding: 20px 12px;
}

.page-home .property-type-icon__svg {
  width: 44px;
  height: 44px;
  color: var(--blue);
}

.page-home .property-type-icon strong {
  font-size: .78rem;
}

.page-home .section--mist {
  background:
    radial-gradient(90% 120px at 6% 0, rgba(232, 244, 250, .85), transparent 72%),
    linear-gradient(180deg, #f5fafb 0%, #eef7f8 100%);
}

.page-home .ns-season-grid {
  gap: 18px;
}

.page-home .season-card {
  min-height: 318px;
  border-color: #cfe0e8;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(6, 42, 58, .08);
}

.page-home .season-card::before {
  height: 118px;
}

.page-home .season-card:nth-child(1)::before {
  background:
    linear-gradient(180deg, rgba(232, 244, 250, .1), rgba(255, 255, 255, .02)),
    url("../assets/brand/season-spring-cleanup.webp") center 54% / cover no-repeat;
}

.page-home .season-card:nth-child(2)::before {
  background:
    linear-gradient(180deg, rgba(232, 244, 250, .08), rgba(255, 255, 255, .02)),
    url("../assets/brand/cape-breton-coastal-hero.webp") center 62% / cover no-repeat;
}

.page-home .season-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(244, 239, 230, .12), rgba(255, 255, 255, .02)),
    url("../assets/brand/season-fall-cleanup.webp") center 42% / cover no-repeat;
  filter: sepia(.08) saturate(1.08);
}

.page-home .season-card:nth-child(4)::before {
  background:
    linear-gradient(180deg, rgba(232, 244, 250, .52), rgba(255, 255, 255, .08)),
    url("../assets/brand/cape-breton-coastal-trust.webp") center 48% / cover no-repeat;
  filter: saturate(.6) brightness(1.08);
}

.page-home .season-card h3,
.page-home .season-card p,
.page-home .season-card ul {
  margin-left: 24px;
  margin-right: 24px;
}

.page-home .season-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-home .season-card p {
  color: #24495a;
  font-size: .9rem;
  line-height: 1.48;
}

.page-home .season-card li {
  font-size: .84rem;
  line-height: 1.35;
}

.page-home .ns-split-card {
  gap: 34px;
  padding: 32px;
  border-color: #cfe0e8;
  border-radius: 11px;
  background: linear-gradient(135deg, #f4fbfd, #fff);
  box-shadow: 0 18px 38px rgba(6, 42, 58, .1);
}

.page-home .ns-split-card .rounded-image {
  min-height: 314px;
  border-radius: 9px;
  object-fit: cover;
  object-position: center;
}

.page-home .why-grid {
  gap: 20px 28px;
}

.page-home .why-grid article {
  grid-template-columns: 36px 1fr;
  gap: 11px;
}

.page-home .why-grid__icon {
  width: 32px;
  height: 32px;
}

.page-home .why-grid h3 {
  font-size: .86rem;
}

.page-home .why-grid p {
  color: #385263;
  font-size: .86rem;
  line-height: 1.46;
}

.page-home .ns-process-grid {
  gap: 32px;
}

.page-home .ns-process-grid article {
  min-height: 126px;
  padding: 24px;
  border-color: #cfe0e8;
  border-radius: 9px;
}

.page-home .ns-process-grid article span {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  background: var(--blue);
}

.page-home .ns-process-grid article:not(:last-child)::after {
  right: -25px;
  border-color: var(--blue);
}

.page-home .estimate-teaser {
  padding-top: 40px !important;
}

.page-home .estimate-layout--home {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.page-home .estimate-card {
  padding: 30px;
  border-color: #cfe0e8;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(6, 42, 58, .11);
}

.page-home .form-heading {
  margin-bottom: 22px;
}

.page-home .form-heading h2 {
  font-size: 1.28rem;
}

.page-home .form-heading p {
  max-width: 650px;
  color: #24495a;
  font-size: .92rem;
}

.page-home .form-grid {
  gap: 16px 24px;
}

.page-home .field {
  gap: 7px;
  color: var(--navy);
  font-size: .84rem;
}

.page-home input,
.page-home select,
.page-home textarea {
  min-height: 46px;
  border-color: #bfd1da;
  border-radius: 6px;
  font-size: .9rem;
}

.page-home textarea {
  min-height: 92px;
}

.page-home input::placeholder,
.page-home textarea::placeholder {
  color: #798a96;
}

.page-home .field-icon {
  top: 36px;
}

.page-home .form-footer {
  gap: 20px;
  margin-top: 20px;
}

.page-home .form-footer small {
  max-width: 430px;
  color: var(--navy);
}

.page-home .form-footer .button {
  min-width: 238px;
  min-height: 52px;
}

.page-home .side-panel--blue {
  padding: 26px;
  border-radius: 12px;
  background:
    radial-gradient(120% 120px at 100% 100%, rgba(232, 244, 250, .14), transparent 65%),
    linear-gradient(160deg, #073047, #075994);
  box-shadow: 0 18px 38px rgba(6, 42, 58, .16);
}

.page-home .side-panel--blue h2 {
  margin-bottom: 18px;
  font-size: 1.18rem;
}

.page-home .next-steps li {
  margin-bottom: 16px;
}

.page-home .next-steps strong {
  font-size: .82rem;
}

.page-home .next-steps span {
  font-size: .84rem;
}

.page-home .call-panel--stacked {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(217, 230, 236, .9);
  border-radius: 10px;
  transition: transform .16s ease, box-shadow .16s ease;
}

.page-home .call-panel--stacked:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(6, 42, 58, .16);
}

.page-home .call-panel--stacked a {
  color: var(--blue);
  font-size: 1.26rem;
}

.page-home .cta-band--image {
  padding: 52px 0;
  background:
    linear-gradient(90deg, rgba(6, 42, 58, .99) 0%, rgba(6, 42, 58, .96) 55%, rgba(6, 42, 58, .86) 100%),
    url("../assets/brand/cape-breton-coastal-trust.webp") right center / cover no-repeat;
}

.page-home .cta-band__grid {
  gap: 32px;
}

.page-home .cta-band h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
}

.page-home .cta-band p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.52;
}

.page-home .cta-band__actions .button {
  min-width: 214px;
}

.page-home .mobile-sticky {
  display: none;
}

.site-footer {
  background:
    radial-gradient(70% 110px at 18% 0, rgba(11, 95, 165, .38), transparent 72%),
    linear-gradient(180deg, #073047, #062a3a);
}

.footer-cta {
  min-height: 112px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .95fr) 190px;
  gap: 34px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-cta strong {
  font-size: .98rem;
}

.footer-cta p {
  font-size: .82rem;
}

.footer-proof {
  gap: 12px;
}

.footer-proof li {
  font-size: .72rem;
  line-height: 1.2;
}

.footer-call {
  min-height: 68px;
  border-radius: 7px;
}

.footer-bottom {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 30px;
  align-items: start;
  padding: 30px 0 34px;
}

.footer-brand-block p,
.footer-column p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  line-height: 1.5;
}

.brand--footer {
  display: inline-flex;
  width: fit-content;
  background: #fff;
  padding: 8px 11px;
  border-radius: 6px;
}

.brand--footer .brand__logo {
  width: 168px;
}

.footer-column {
  display: grid;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: .82rem;
  line-height: 1.2;
}

.footer-column a {
  color: rgba(255, 255, 255, .84);
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column--contact .button {
  width: fit-content;
  min-height: 42px;
  margin-top: 8px;
  padding-inline: 18px;
  color: #fff;
  font-size: .76rem;
}

@media (max-width: 1180px) {
  .page-home .ns-hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-home .hero-service-card {
    max-width: 520px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .page-home .ns-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .88) 48%, rgba(255, 255, 255, .2) 100%),
      url("../assets/brand/cape-breton-coastal-hero.webp") center center / cover no-repeat;
  }

  .page-home .ns-hero__grid {
    padding: 34px 0 58px;
  }

  .page-home .ns-hero__content {
    padding: 6px 0 44px;
  }

  .page-home .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-home .section--tight {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-home .estimate-layout--home {
    grid-template-columns: 1fr;
  }

  .page-home .side-panel--blue {
    order: 2;
  }

  .page-home .footer-bottom {
    padding-bottom: 34px;
  }
}

@media (max-width: 700px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .page-home .ns-hero__grid {
    padding: 26px 0 48px;
  }

  .page-home .ns-hero__content h1 {
    font-size: clamp(2.08rem, 10vw, 2.75rem);
  }

  .page-home .hero-note {
    font-size: 1rem !important;
  }

  .page-home .trust-strip__grid article {
    grid-template-columns: 44px 1fr;
    padding: 16px 8px;
  }

  .page-home .property-icon-row {
    border-radius: 9px;
  }

  .page-home .property-type-icon {
    min-height: 98px;
  }

  .page-home .ns-split-card,
  .page-home .estimate-card,
  .page-home .side-panel--blue {
    padding: 22px;
  }

  .page-home .form-footer {
    align-items: stretch;
  }

  .page-home .cta-band__actions .button {
    min-width: 0;
  }
}

/* Homepage tightening and Cape Breton differentiation pass */
.page-home .site-header {
  position: relative;
  z-index: 20;
}

.page-home .header-main {
  height: 78px;
}

.page-home .header-main .brand {
  min-width: 244px;
}

.page-home .header-main .brand__logo {
  width: 176px;
}

.page-home .primary-nav a {
  font-size: .77rem;
  letter-spacing: 0;
}

.page-home .header-actions .button {
  min-height: 48px;
  padding-inline: 22px;
}

.page-home .ns-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .93) 29%, rgba(255, 255, 255, .5) 51%, rgba(255, 255, 255, .04) 74%),
    linear-gradient(180deg, rgba(232, 244, 250, .3), rgba(232, 244, 250, 0) 60%),
    url("../assets/brand/cape-breton-coastal-hero.webp") center 50% / cover no-repeat;
}

.page-home .ns-hero::after {
  height: 38px;
  background:
    radial-gradient(120% 56px at 26% 0, transparent 49%, #eef8fc 51%),
    linear-gradient(90deg, rgba(232, 244, 250, .45), transparent 44%, rgba(53, 169, 54, .08));
}

.page-home .ns-hero__grid {
  min-height: 404px;
  gap: 46px;
  padding: 38px 0 52px;
}

.page-home .ns-hero__content {
  max-width: 630px;
  padding: 8px 0 30px;
}

.page-home .ns-hero__content h1 {
  max-width: 600px;
  margin-bottom: 14px;
  font-size: clamp(2.48rem, 3.8vw, 3.42rem);
  line-height: 1.04;
}

.page-home .ns-hero__content p {
  max-width: 595px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.page-home .hero__actions {
  margin-top: 22px;
}

.page-home .hero__actions .button {
  min-height: 54px;
  padding-inline: 25px;
  font-size: .82rem;
}

.page-home .hero-note {
  margin-top: 14px;
  font-size: 1.01rem !important;
}

.page-home .hero-service-card {
  min-height: 236px;
  padding: 30px;
  border-color: rgba(191, 209, 218, .96);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 22px 44px rgba(6, 42, 58, .18);
}

.page-home .hero-service-card span {
  min-height: 40px;
  font-size: .96rem;
}

.page-home .hero-service-card__icon {
  width: 30px;
  height: 30px;
}

.page-home .trust-strip__grid {
  min-height: 86px;
}

.page-home .trust-strip__grid article {
  grid-template-columns: 42px 1fr;
  padding: 15px 22px;
}

.page-home .trust-strip__icon {
  width: 34px;
  height: 34px;
}

.page-home .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-home .section--tight {
  padding-top: 44px;
  padding-bottom: 44px;
}

.page-home .section--coastal {
  padding-top: 58px;
  padding-bottom: 56px;
  background:
    radial-gradient(72% 110px at 100% 0, rgba(232, 244, 250, .62), transparent 72%),
    linear-gradient(180deg, #fff 0%, #fff 70%, #f0f8fa 100%);
}

.page-home .section--coastal::after {
  height: 30px;
  opacity: .78;
}

.page-home .section-heading {
  margin-bottom: 24px;
}

.page-home .section-heading .eyebrow {
  margin-bottom: 8px;
  font-size: .68rem;
  letter-spacing: .02em;
}

.page-home .section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.48rem, 2vw, 1.92rem);
  line-height: 1.12;
}

.page-home .section-heading p:not(.eyebrow) {
  max-width: 820px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.page-home .service-grid-kicker {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .96rem;
}

.page-home .ns-service-grid {
  gap: 16px;
}

.page-home .ns-service-card {
  min-height: 244px;
  padding: 26px 22px 22px;
  border-color: #bfd1da;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(6, 42, 58, .08);
}

.page-home .ns-service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.page-home .ns-service-card h3 {
  min-height: 2.15em;
  font-size: .92rem;
  line-height: 1.16;
}

.page-home .ns-service-card p {
  font-size: .9rem;
  line-height: 1.48;
}

.page-home .ns-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-top: 15px;
  font-size: .79rem;
}

.page-home .ns-service-card a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.page-home .section--tight:has(.property-icon-row) {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fff;
}

.page-home .section--tight:has(.property-icon-row) .section-heading {
  margin-bottom: 20px;
}

.page-home .property-icon-row {
  border-color: #bfd1da;
  box-shadow: 0 14px 30px rgba(6, 42, 58, .08);
}

.page-home .property-type-icon {
  min-height: 104px;
  padding: 14px 12px;
}

.page-home .property-type-icon__svg {
  width: 34px;
  height: 34px;
}

.page-home .property-type-icon strong {
  font-size: .76rem;
  line-height: 1.15;
}

.page-home .section--mist {
  padding-top: 58px;
  padding-bottom: 60px;
}

.page-home .ns-season-grid {
  gap: 16px;
}

.page-home .season-card {
  min-height: 282px;
  border-color: #bfd1da;
  border-radius: 8px;
}

.page-home .season-card::before {
  height: 96px;
}

.page-home .season-card__icon {
  width: 42px;
  height: 42px;
  margin: -21px 20px 10px;
  padding: 8px;
  stroke-width: 2.8;
}

.page-home .season-card h3,
.page-home .season-card p,
.page-home .season-card ul {
  margin-left: 20px;
  margin-right: 20px;
}

.page-home .season-card p {
  font-size: .91rem;
}

.page-home .season-card li {
  font-size: .85rem;
}

.page-home .ns-split-card {
  gap: 36px;
  padding: 30px;
}

.page-home .ns-split-card > div:first-child {
  align-self: center;
}

.page-home .ns-split-card h2 {
  margin-bottom: 22px;
  font-size: clamp(1.38rem, 2vw, 1.82rem);
}

.page-home .ns-split-card .rounded-image {
  min-height: 340px;
}

.page-home .why-grid {
  gap: 18px 26px;
}

.page-home .why-grid article {
  grid-template-columns: 32px 1fr;
  gap: 10px;
}

.page-home .why-grid__icon {
  width: 26px;
  height: 26px;
  color: var(--green);
  stroke-width: 2.8;
}

.page-home .section--tight:has(.ns-process-grid) {
  padding-top: 48px;
  padding-bottom: 30px;
}

.page-home .section--tight:has(.ns-process-grid) .section-heading {
  margin-bottom: 20px;
}

.page-home .ns-process-grid {
  gap: 30px;
}

.page-home .ns-process-grid article {
  min-height: 116px;
  padding: 22px 24px;
}

.page-home .ns-process-grid article span {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.page-home .estimate-teaser {
  padding-top: 32px !important;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #fff 0%, #f6fbfc 100%);
}

.page-home .estimate-layout--home {
  grid-template-columns: minmax(0, 1fr) 328px;
  gap: 22px;
}

.page-home .estimate-card {
  padding: 32px;
  border-color: #bfd1da;
}

.page-home .form-grid {
  gap: 15px 22px;
}

.page-home input,
.page-home select,
.page-home textarea {
  min-height: 48px;
  border-color: #b8ccd6;
}

.page-home .form-footer .button {
  min-height: 54px;
  box-shadow: 0 10px 22px rgba(53, 169, 54, .24);
}

.page-home .side-panel--blue {
  padding: 28px;
  background:
    radial-gradient(115% 120px at 100% 100%, rgba(232, 244, 250, .16), transparent 65%),
    linear-gradient(160deg, #07324b, #0b5f98);
}

.page-home .call-panel--stacked {
  display: grid;
  min-height: 112px;
  background: #fff;
}

.page-home .cta-band--image {
  padding: 48px 0;
  background:
    linear-gradient(90deg, rgba(6, 42, 58, .995) 0%, rgba(6, 42, 58, .97) 58%, rgba(6, 42, 58, .9) 100%),
    url("../assets/brand/cape-breton-coastal-trust.webp") right center / cover no-repeat;
}

.page-home .cta-band h2 {
  margin-bottom: 10px;
}

.page-home .cta-band__actions .button {
  min-height: 50px;
}

.site-footer .footer-cta strong,
.site-footer .footer-proof li,
.site-footer .footer-call {
  color: #fff;
}

.site-footer .footer-cta p {
  color: rgba(255, 255, 255, .86) !important;
}

.site-footer .footer-bottom {
  gap: 34px;
}

@media (max-width: 1180px) {
  .page-home .header-main .brand {
    min-width: 0;
  }

  .page-home .ns-hero__grid {
    gap: 20px;
  }

  .page-home .hero-service-card {
    max-width: 500px;
  }

  .page-home .estimate-layout--home {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .page-home .header-main {
    height: 70px;
  }

  .page-home .ns-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .87) 48%, rgba(255, 255, 255, .2) 100%),
      url("../assets/brand/cape-breton-coastal-hero.webp") center 52% / cover no-repeat;
  }

  .page-home .ns-hero__grid {
    padding: 30px 0 46px;
  }

  .page-home .ns-hero__content {
    padding: 4px 0 22px;
  }

  .page-home .section,
  .page-home .section--coastal,
  .page-home .section--mist {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-home .section--tight,
  .page-home .section--tight:has(.property-icon-row),
  .page-home .section--tight:has(.ns-process-grid) {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .page-home .estimate-teaser {
    padding-top: 36px !important;
    padding-bottom: 44px;
  }
}

@media (max-width: 640px) {
  .page-home .header-main {
    height: 64px;
    gap: 10px;
  }

  .page-home .header-main .brand {
    gap: 6px;
  }

  .page-home .header-main .brand__logo {
    width: 132px;
  }

  .page-home .brand__suffix {
    font-size: 1rem;
  }

  .page-home .brand__suffix small {
    font-size: .38rem;
  }

  .page-home .nav-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .page-home .ns-hero__grid {
    padding: 26px 0 40px;
  }

  .page-home .ns-hero__content h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.62rem);
  }

  .page-home .hero__actions {
    display: grid;
  }

  .page-home .hero__actions .button,
  .page-home .cta-band__actions .button {
    width: 100%;
    min-height: 48px;
  }

  .page-home .hero-service-card {
    display: none;
  }

  .page-home .trust-strip__grid {
    gap: 0;
  }

  .page-home .ns-service-card,
  .page-home .season-card {
    min-height: 0;
  }

  .page-home .property-icon-row {
    grid-template-columns: 1fr;
  }

  .page-home .property-type-icon {
    min-height: 92px;
  }

  .page-home .ns-split-card .rounded-image {
    min-height: 240px;
  }

  .page-home .estimate-card,
  .page-home .side-panel--blue,
  .page-home .ns-split-card {
    padding: 22px;
  }
}

/* Services page visual polish */
.page-services .site-header {
  position: relative;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 18px rgba(6, 42, 58, .08);
}

.page-services .ns-hero--services {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 35%, rgba(255, 255, 255, .48) 58%, rgba(255, 255, 255, .1) 78%),
    linear-gradient(180deg, rgba(232, 244, 250, .4), rgba(232, 244, 250, 0) 58%),
    url("../assets/brand/cape-breton-coastal-hero.webp") center center / cover no-repeat;
}

.page-services .ns-hero__grid {
  min-height: 430px;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  padding: 48px 0 68px;
}

.page-services .ns-hero__content {
  max-width: 680px;
  padding: 20px 0 46px;
}

.page-services .ns-hero__content .eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
}

.page-services .ns-hero__content h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 3.55rem);
  line-height: 1.06;
}

.page-services .ns-hero__content p:not(.eyebrow) {
  max-width: 560px;
  color: #15394d;
  font-size: 1.04rem;
  line-height: 1.58;
}

.page-services .hero__actions {
  gap: 14px;
  margin-top: 26px;
}

.page-services .hero__actions .button {
  min-height: 52px;
  padding-inline: 25px;
}

.page-services .hero-service-card {
  align-self: center;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(217, 230, 236, .94);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 46px rgba(6, 42, 58, .16);
}

.page-services .hero-service-card strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: .78rem;
}

.page-services .hero-service-card span {
  min-height: 35px;
  color: var(--navy);
  font-size: .9rem;
}

.page-services .hero-service-card__icon {
  width: 28px;
  height: 28px;
}

.page-services .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-services .section--tight {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-services .section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.page-services .section-heading h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(1.52rem, 2.25vw, 2rem);
  text-transform: none;
}

.page-services .section-heading .eyebrow {
  color: var(--green);
}

.page-services .section--coastal {
  background:
    radial-gradient(70% 160px at 100% 0, rgba(232, 244, 250, .85), transparent 70%),
    linear-gradient(180deg, #fff 0%, #fff 54%, rgba(232, 244, 250, .36) 100%);
}

.page-services .ns-service-grid--large {
  gap: 18px;
}

.page-services .ns-service-card {
  min-height: 278px;
  padding: 28px 20px 24px;
  border-color: #cfe0e8;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(6, 42, 58, .07);
}

.page-services .ns-service-card:hover {
  border-color: rgba(11, 95, 165, .42);
  box-shadow: 0 18px 34px rgba(6, 42, 58, .12);
}

.page-services .ns-service-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: center;
}

.page-services .ns-service-card__icon--image {
  display: block;
  color: initial;
  stroke: none;
}

.page-services .ns-service-card h3 {
  min-height: 2.35em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: .9rem;
  line-height: 1.18;
}

.page-services .ns-service-card p {
  color: #1f4356;
  font-size: .86rem;
  line-height: 1.48;
}

.page-services .ns-service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--green-dark);
  font-size: .76rem;
}

.page-services .service-link__icon {
  width: 12px;
  height: 12px;
  transform: rotate(-90deg);
  stroke-width: 4;
}

.page-services .featured-service-grid {
  gap: 22px;
}

.page-services .featured-service-card {
  border-color: #cfe0e8;
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(6, 42, 58, .09);
}

.page-services .featured-service-card > img {
  aspect-ratio: 16 / 8.6;
}

.page-services .featured-service-card div {
  padding: 25px 26px 26px;
}

.page-services .featured-service-card__icon {
  top: -34px;
  left: 24px;
  width: 66px;
  height: 66px;
  padding: 10px;
  border: 1px solid rgba(217, 230, 236, .9);
}

.page-services .featured-service-card__icon--image {
  object-fit: contain;
  object-position: center;
}

.page-services .featured-service-card h3 {
  margin-top: 14px;
  color: var(--blue);
  font-size: 1.05rem;
}

.page-services .featured-service-card p,
.page-services .featured-service-card li {
  color: #1f4356;
  font-size: .9rem;
  line-height: 1.5;
}

.page-services .featured-service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
}

.page-services .property-icon-row {
  max-width: 1120px;
  margin: 0 auto;
  border-color: #cfe0e8;
  border-radius: 0;
  box-shadow: none;
}

.page-services .property-type-icon {
  min-height: 118px;
  padding: 18px 12px;
}

.page-services .property-type-icon__svg {
  width: 44px;
  height: 44px;
}

.page-services .property-type-icon strong {
  font-size: .78rem;
}

.page-services .ns-split-card--plain {
  gap: 42px;
  align-items: center;
}

.page-services .ns-split-card--plain > div:first-child {
  max-width: 530px;
}

.page-services .ns-split-card--plain h2 {
  margin-bottom: 18px;
  font-size: clamp(1.38rem, 2vw, 1.78rem);
}

.page-services .ns-split-card--plain p {
  color: #1f4356;
  font-size: 1rem;
  line-height: 1.6;
}

.page-services .green-check-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.page-services .green-check-list li {
  margin: 0;
  color: #274b5d;
  font-size: .92rem;
  line-height: 1.48;
}

.page-services .green-check-list strong {
  color: var(--navy);
}

.page-services .image-callout .rounded-image {
  width: 100%;
  min-height: 360px;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 38px rgba(6, 42, 58, .1);
}

.page-services .image-callout aside {
  right: -28px;
  bottom: -28px;
  max-width: 210px;
  padding: 28px 24px;
  border-radius: 12px;
  color: var(--blue);
  font-size: .98rem;
  box-shadow: 0 18px 36px rgba(6, 42, 58, .16);
}

.page-services .ns-process-grid {
  gap: 32px;
}

.page-services .ns-process-grid article {
  min-height: 136px;
  padding: 25px 26px;
  border-color: #cfe0e8;
  border-radius: 10px;
}

.page-services .ns-process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.page-services .ns-process-grid article span {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.page-services .cta-band--image {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 0;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(6, 42, 58, .98) 0%, rgba(6, 42, 58, .92) 54%, rgba(6, 42, 58, .72) 100%),
    url("../assets/brand/cape-breton-lighthouse-services.webp") center center / cover no-repeat;
}

.page-services .cta-band--image::after {
  display: none;
}

.page-services .cta-band__grid {
  position: relative;
  z-index: 1;
  gap: 32px;
}

.page-services .cta-band h2 {
  color: #fff;
  font-size: clamp(1.52rem, 2.3vw, 2rem);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .34);
}

.page-services .cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  line-height: 1.54;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .28);
}

.page-services .estimate-teaser {
  padding-top: 56px;
}

.page-services .estimate-layout--home {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 0;
  overflow: hidden;
  border: 1px solid #cfe0e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(6, 42, 58, .09);
}

.page-services .estimate-layout--home .estimate-card,
.page-services .estimate-layout--home .side-panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-services .estimate-layout--home .estimate-card {
  padding: 30px;
}

.page-services .side-panel--soft {
  padding: 30px;
  background: linear-gradient(145deg, #eef8fc, #fff);
}

.page-services .reason-list--light {
  gap: 17px;
}

.page-services .reason-list--light li {
  grid-template-columns: 40px 1fr;
}

.page-services .reason-list--light .line-icon {
  width: 36px;
  height: 36px;
  color: var(--green);
}

.page-services .call-panel--stacked {
  margin-top: 26px;
  border: 1px solid #cfe0e8;
  border-radius: 10px;
}

.page-services .mobile-sticky {
  display: none;
}

@media (max-width: 1180px) {
  .page-services .ns-hero__grid,
  .page-services .ns-split-card--plain,
  .page-services .estimate-layout--home {
    grid-template-columns: 1fr;
  }

  .page-services .hero-service-card {
    max-width: 540px;
  }

  .page-services .ns-process-grid article:not(:last-child)::after {
    display: none;
  }

  .page-services .image-callout aside {
    right: 18px;
    bottom: 18px;
  }

  .page-services .cta-band--image {
    max-width: calc(100% - 36px);
  }
}

@media (max-width: 920px) {
  .page-services .ns-hero--services {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .84) 54%, rgba(255, 255, 255, .18) 100%),
      url("../assets/brand/cape-breton-coastal-hero.webp") center center / cover no-repeat;
  }

  .page-services .ns-hero__grid {
    min-height: 0;
    padding: 34px 0 58px;
  }

  .page-services .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-services .section--tight {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-services .hero-service-card {
    display: none;
  }

  .page-services .image-callout aside {
    position: static;
    max-width: none;
    margin: 14px 0 0;
  }

  .page-services .estimate-layout--home {
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .page-services .ns-hero__content h1 {
    font-size: clamp(2.08rem, 10vw, 2.72rem);
  }

  .page-services .hero__actions .button,
  .page-services .cta-band__actions .button {
    width: 100%;
  }

  .page-services .ns-service-card {
    min-height: 0;
  }

  .page-services .property-icon-row {
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(6, 42, 58, .08);
  }

  .page-services .property-type-icon {
    min-height: 96px;
  }

  .page-services .image-callout .rounded-image {
    min-height: 250px;
  }

  .page-services .cta-band--image {
    max-width: calc(100% - 26px);
    padding: 36px 0;
  }

  .page-services .estimate-layout--home .estimate-card,
  .page-services .side-panel--soft {
    padding: 22px;
  }
}

/* Request estimate intake polish */
.page-estimate .site-header {
  position: relative;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 18px rgba(6, 42, 58, .08);
}

.page-estimate .primary-nav__estimate {
  display: none;
}

.page-estimate .ns-hero--estimate {
  min-height: 386px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .91) 34%, rgba(255, 255, 255, .46) 58%, rgba(255, 255, 255, .08) 78%),
    linear-gradient(180deg, rgba(232, 244, 250, .42), rgba(232, 244, 250, 0) 58%),
    url("../assets/brand/cape-breton-coastal-hero.webp") center center / cover no-repeat;
}

.page-estimate .ns-hero--estimate .ns-hero__content {
  max-width: 1180px;
  padding: 46px 24px 100px;
}

.page-estimate .ns-hero--estimate h1 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.35vw, 3.18rem);
  line-height: 1.08;
}

.page-estimate .ns-hero--estimate p {
  max-width: 610px;
  color: #15394d;
  font-size: 1.04rem;
  line-height: 1.6;
}

.page-estimate .trust-chips {
  gap: 13px;
  margin-top: 28px;
}

.page-estimate .trust-chips span {
  min-height: 46px;
  padding: 11px 16px;
  border-color: rgba(207, 224, 232, .92);
  border-radius: 8px;
  color: var(--navy);
  font-size: .8rem;
  background: rgba(255, 255, 255, .92);
}

.page-estimate .trust-chips .icon {
  width: 24px;
  height: 24px;
}

.page-estimate .estimate-shell--ns {
  position: relative;
  z-index: 2;
  padding: 0 0 42px;
  background:
    linear-gradient(#fff 0, #fff 48%, #f4fafb 100%);
}

.page-estimate .estimate-layout {
  grid-template-columns: minmax(0, 1fr) 306px;
  gap: 24px;
  align-items: start;
  margin-top: -44px;
}

.page-estimate .estimate-card--large {
  padding: 36px 34px 34px;
  border-color: #cfe0e8;
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(6, 42, 58, .13);
}

.page-estimate .form-heading {
  gap: 16px;
  margin-bottom: 24px;
}

.page-estimate .form-heading__icon {
  width: 44px;
  height: 44px;
  border-color: var(--green);
  border-radius: 7px;
}

.page-estimate .form-heading h2 {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 1.34rem;
}

.page-estimate .form-heading p {
  color: #24495a;
  font-size: .92rem;
}

.page-estimate .form-grid {
  gap: 18px 26px;
}

.page-estimate .field {
  gap: 8px;
  color: var(--navy);
  font-size: .84rem;
}

.page-estimate input,
.page-estimate select,
.page-estimate textarea {
  min-height: 48px;
  border-color: #bfd1da;
  border-radius: 7px;
  color: var(--ink);
  font-size: .9rem;
  box-shadow: inset 0 1px 1px rgba(6, 42, 58, .035);
}

.page-estimate textarea {
  min-height: 104px;
}

.page-estimate input::placeholder,
.page-estimate textarea::placeholder {
  color: #7f909c;
}

.page-estimate .field-icon {
  top: 38px;
  color: #91a0ab;
}

.page-estimate .upload-box {
  margin-top: 2px;
}

.page-estimate .upload-box span {
  color: var(--navy);
  font-size: .86rem;
}

.page-estimate .upload-box small {
  margin-top: -3px;
  color: #415e6e;
  font-size: .78rem;
}

.page-estimate .upload-box input {
  min-height: 128px;
  margin-top: 12px;
  border: 2px dashed #bdd0da;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdfe, #f7fbfd);
  color: transparent;
  cursor: pointer;
}

.page-estimate .upload-box input::file-selector-button {
  display: none;
}

.page-estimate .upload-box em {
  justify-content: center;
  min-height: 104px;
  margin-top: -116px;
  padding: 0 18px 12px;
  color: #536877;
  font-size: .84rem;
  line-height: 1.38;
  text-align: center;
}

.page-estimate .upload-box__icon {
  width: 42px;
  height: 42px;
  color: #899aa7;
}

.page-estimate .form-footer {
  gap: 22px;
  margin-top: 24px;
}

.page-estimate .form-footer small {
  max-width: 440px;
  color: var(--navy);
}

.page-estimate .form-footer small span {
  color: #536877;
}

.page-estimate .form-footer .button {
  min-width: 246px;
  min-height: 54px;
  font-size: .84rem;
  box-shadow: 0 10px 22px rgba(53, 169, 54, .24);
}

.page-estimate .estimate-sidebar {
  gap: 16px;
}

.page-estimate .side-panel {
  padding: 26px;
  border-color: #cfe0e8;
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(6, 42, 58, .1);
}

.page-estimate .side-panel h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 1.18rem;
}

.page-estimate .side-panel--soft {
  background: linear-gradient(145deg, #f5fbfd, #fff);
}

.page-estimate .reason-list--light {
  gap: 18px;
}

.page-estimate .reason-list--light li {
  grid-template-columns: 42px 1fr;
  min-height: 52px;
}

.page-estimate .reason-list--light .line-icon {
  width: 38px;
  height: 38px;
  color: var(--green);
}

.page-estimate .reason-list--light strong {
  color: var(--navy);
  font-size: .84rem;
}

.page-estimate .reason-list--light em {
  color: #405d6d;
  font-size: .84rem;
  line-height: 1.36;
}

.page-estimate .next-panel {
  background: #fff;
}

.page-estimate .next-steps::before {
  left: 16px;
  background: #cfe0e8;
}

.page-estimate .next-steps li {
  min-height: 70px;
  margin-bottom: 16px;
  padding-left: 52px;
}

.page-estimate .next-steps li::before {
  width: 36px;
  height: 36px;
  background: var(--blue);
}

.page-estimate .next-steps strong {
  color: var(--navy);
  font-size: .84rem;
}

.page-estimate .next-steps span {
  color: #405d6d;
  font-size: .84rem;
  line-height: 1.38;
}

.page-estimate .estimate-sidebar > .call-panel {
  padding: 24px 26px;
  background: #fff;
}

.page-estimate .call-panel__icon {
  width: 44px;
  height: 44px;
  color: var(--blue);
}

.page-estimate .call-panel strong {
  color: var(--blue);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.page-estimate .call-panel span {
  color: #536877;
  font-size: .84rem;
}

.page-estimate .call-panel a {
  color: var(--blue);
  font-size: 1.48rem;
}

.page-estimate .section--tight {
  padding-top: 34px;
  padding-bottom: 56px;
  background: #f4fafb;
}

.page-estimate .priority-panel {
  grid-template-columns: 96px 1fr 240px;
  gap: 28px;
  margin-bottom: 24px;
  padding: 28px 36px;
  border-color: #cfe0e8;
  border-radius: 13px;
  background:
    radial-gradient(70% 90px at 100% 100%, rgba(11, 95, 165, .1), transparent 72%),
    linear-gradient(135deg, #dff1fa, #f8fcfd 62%, #eaf7fb);
  box-shadow: 0 14px 32px rgba(6, 42, 58, .08);
}

.page-estimate .priority-panel__icon {
  width: 78px;
  height: 78px;
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(6, 42, 58, .1);
}

.page-estimate .priority-panel h2 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.42rem;
}

.page-estimate .priority-panel p {
  color: #24495a;
  font-size: .98rem;
  line-height: 1.52;
}

.page-estimate .priority-panel p:last-child {
  justify-self: end;
  color: var(--blue);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.2;
  border-bottom: 4px solid var(--green);
}

.page-estimate .trust-strip--white {
  border-color: #cfe0e8;
  border-radius: 13px;
  box-shadow: 0 14px 32px rgba(6, 42, 58, .08);
}

.page-estimate .trust-strip--white .trust-strip__grid {
  min-height: 126px;
}

.page-estimate .trust-strip--white .trust-strip__grid article {
  padding: 20px 16px;
}

.page-estimate .trust-strip--white .trust-strip__icon {
  width: 46px;
  height: 46px;
}

.page-estimate .trust-strip--white h2 {
  font-size: .82rem;
}

.page-estimate .trust-strip--white p {
  color: #405d6d;
  font-size: .84rem;
  line-height: 1.42;
}

.page-estimate .cta-band--image {
  padding: 56px 0;
  background:
    linear-gradient(90deg, rgba(6, 42, 58, .99) 0%, rgba(6, 42, 58, .94) 54%, rgba(6, 42, 58, .78) 100%),
    url("../assets/brand/cape-breton-lighthouse-services.webp") center center / cover no-repeat;
}

.page-estimate .cta-band--image::after {
  opacity: .16;
}

.page-estimate .cta-band__grid,
.page-estimate .cta-band h2,
.page-estimate .cta-band p,
.page-estimate .cta-band__actions {
  position: relative;
  z-index: 1;
}

.page-estimate .cta-band h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .34);
}

.page-estimate .cta-band p {
  max-width: 700px;
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  line-height: 1.54;
}

.page-estimate .footer-cta p {
  color: rgba(255, 255, 255, .86);
}

.page-estimate .mobile-sticky {
  display: none;
}

@media (max-width: 1180px) {
  .page-estimate .estimate-layout,
  .page-estimate .priority-panel {
    grid-template-columns: 1fr;
  }

  .page-estimate .priority-panel p:last-child {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .page-estimate .ns-hero--estimate {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .86) 54%, rgba(255, 255, 255, .2) 100%),
      url("../assets/brand/cape-breton-coastal-hero.webp") center center / cover no-repeat;
  }

  .page-estimate .ns-hero--estimate .ns-hero__content {
    padding: 38px 24px 78px;
  }

  .page-estimate .estimate-layout {
    margin-top: -36px;
  }

  .page-estimate .estimate-card--large,
  .page-estimate .side-panel,
  .page-estimate .priority-panel {
    padding: 24px;
  }

  .page-estimate .trust-strip--white .trust-strip__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-estimate .ns-hero--estimate h1 {
    font-size: clamp(2.05rem, 9.6vw, 2.72rem);
  }

  .page-estimate .trust-chips span {
    width: 100%;
  }

  .page-estimate .estimate-card--large,
  .page-estimate .side-panel,
  .page-estimate .priority-panel {
    padding: 22px;
  }

  .page-estimate .form-footer {
    align-items: stretch;
  }

  .page-estimate .form-footer .button,
  .page-estimate .cta-band__actions .button {
    width: 100%;
    min-width: 0;
  }

  .page-estimate .priority-panel__icon {
    width: 68px;
    height: 68px;
  }

  .page-estimate .cta-band--image {
    padding: 40px 0;
  }
}

/* Global ocean footer background */
.ls-ocean-footer-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(-44px, -3vw, -20px);
  padding-top: clamp(118px, 15vw, 210px);
  background: #fff;
}

.ls-ocean-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: var(--ls-ocean-solid);
  background-image: var(--ls-ocean-bg-ultrawide);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}

.ls-ocean-footer-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: min(56%, 520px);
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0, rgba(12, 127, 156, .12), transparent 42%),
    linear-gradient(180deg, rgba(3, 20, 38, 0) 0%, rgba(3, 20, 38, .28) 28%, rgba(3, 20, 38, .68) 100%);
}

.ls-site-footer {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.ls-ocean-footer-stage .footer-cta,
.ls-ocean-footer-stage .footer-bottom {
  position: relative;
  z-index: 1;
}

.ls-ocean-footer-stage .footer-cta {
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(3, 20, 38, .28), rgba(3, 20, 38, .08));
  backdrop-filter: blur(1px);
}

.ls-ocean-footer-stage .footer-bottom {
  border-top-color: rgba(255, 255, 255, .16);
}

@media (max-width: 1200px) {
  .ls-ocean-bg { background-image: var(--ls-ocean-bg-desktop); }
}

@media (max-width: 860px) {
  .ls-ocean-footer-stage {
    margin-top: -20px;
    padding-top: clamp(150px, 24vw, 250px);
  }

  .ls-ocean-bg { background-image: var(--ls-ocean-bg-tablet); }
}

@media (max-width: 560px) {
  .ls-ocean-footer-stage {
    padding-top: clamp(420px, 118vw, 560px);
  }

  .ls-ocean-bg {
    background-image: var(--ls-ocean-bg-mobile);
    background-size: 100% 100%;
  }

  .ls-ocean-footer-stage::after {
    height: 84%;
    background:
      radial-gradient(circle at 50% 8%, rgba(12, 127, 156, .18), transparent 36%),
      linear-gradient(180deg, rgba(3, 20, 38, 0) 0%, rgba(3, 20, 38, .36) 28%, rgba(3, 20, 38, .82) 100%);
  }

  .ls-ocean-footer-stage .footer-cta {
    background: rgba(3, 20, 38, .36);
  }
}

/* Wide logo treatment */
.brand {
  position: relative;
}

.brand__logo {
  display: block;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand__suffix {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.header-main .brand {
  flex: 0 1 clamp(210px, 28vw, 390px);
  min-width: clamp(196px, 24vw, 330px);
}

.header-main .brand__logo {
  width: clamp(196px, 24vw, 340px);
  max-height: 64px;
}

.brand--footer {
  background: #fff;
  padding: 8px 11px;
  border-radius: 6px;
}

.brand--footer .brand__logo {
  width: clamp(190px, 22vw, 280px);
  max-height: 68px;
}

@media (max-width: 1160px) {
  .header-main .brand {
    flex-basis: auto;
    min-width: 0;
  }

  .header-main .brand__logo {
    width: clamp(176px, 43vw, 270px);
    max-height: 58px;
  }
}

@media (max-width: 520px) {
  .header-main .brand__logo {
    width: clamp(150px, 50vw, 210px);
    max-height: 50px;
  }

  .brand--footer .brand__logo {
    width: min(230px, 72vw);
  }
}
