:root {
  --forest-950: #08261c;
  --forest-900: #0b2f23;
  --forest-800: #154735;
  --forest-700: #235b44;
  --green-600: #49734e;
  --green-500: #5d865d;
  --sage-300: #c8d7c4;
  --sage-200: #dce6d8;
  --sage-100: #edf2e9;
  --warm-50: #fbfaf6;
  --warm-100: #f3f1ea;
  --warm-200: #e8e3d8;
  --white: #ffffff;
  --ink: #14231c;
  --muted: #596860;
  --line: #d7ded8;
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #d7e2b4;
  --danger: #8b2f24;
  --max: 1220px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 70px rgba(8, 38, 28, 0.13);
  --shadow-sm: 0 14px 34px rgba(8, 38, 28, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  width: 100%;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 760;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

main,
section,
.container,
.home-hero-grid > *,
.page-hero-grid > *,
.split > *,
.contact-layout > *,
.section-heading > *,
.compact-split > * {
  min-width: 0;
}

.narrow {
  max-width: 860px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 1rem;
  border-radius: 6px;
  background: var(--white);
  color: var(--forest-950);
  font-weight: 800;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--forest-950);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--white);
}

.utility {
  background: var(--forest-950);
  color: #dce8df;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility a {
  color: var(--white);
  font-weight: 730;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 47, 35, 0.09);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 32px rgba(8, 38, 28, 0.08);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark circle {
  fill: var(--white);
  stroke: var(--forest-900);
  stroke-width: 2;
}

.brand-mark path:first-of-type {
  fill: var(--green-500);
}

.brand-mark path:last-of-type {
  fill: none;
  stroke: var(--forest-900);
  stroke-width: 2;
  stroke-linecap: round;
}

.brand-type {
  display: grid;
  line-height: 0.9;
}

.brand-type strong {
  color: var(--forest-900);
  font-size: 1.38rem;
  font-weight: 790;
  letter-spacing: -0.04em;
}

.brand-type strong span {
  color: var(--green-600);
}

.brand-type small {
  margin-top: 0.38rem;
  color: var(--green-600);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.3em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.7rem);
}

.desktop-nav > a,
.nav-drop-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #26372f;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 780;
  padding: 0.7rem 0;
  position: relative;
}

.desktop-nav > a::after,
.nav-drop-toggle::after {
  position: absolute;
  right: 100%;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  background: var(--green-600);
  content: "";
  transition: right 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.current::after,
.nav-drop-toggle:hover::after,
.nav-drop-toggle.current::after,
.nav-dropdown.open .nav-drop-toggle::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-toggle {
  gap: 0.4rem;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: -1.2rem;
  width: 260px;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown.open .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.nav-drop-menu a {
  display: block;
  min-height: 44px;
  border-radius: 7px;
  font-size: 0.79rem;
  font-weight: 720;
  padding: 0.72rem 0.85rem;
}

.nav-drop-menu a:hover,
.nav-drop-menu a.current {
  background: var(--sage-100);
  color: var(--forest-900);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.005em;
  padding: 0.8rem 1.15rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn-primary,
.btn-header {
  background: var(--forest-800);
  color: var(--white);
}

.btn-primary:hover,
.btn-header:hover {
  background: var(--forest-950);
}

.btn-accent {
  background: var(--accent);
  color: var(--forest-950);
}

.btn-accent:hover {
  background: #e6eccd;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: var(--white);
  color: var(--forest-950);
}

.btn-light:hover {
  background: var(--sage-100);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.text-link span,
.card-link b {
  font-size: 1.1em;
  transition: transform 160ms ease;
}

.text-link:hover span,
.capability-card:hover .card-link b,
.managed-feature:hover .card-link b {
  transform: translateX(3px);
}

.menu-toggle,
.mobile-menu,
.mobile-cta {
  display: none;
}

.eyebrow {
  display: inline-block;
  color: var(--green-600);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--accent);
}

.home-hero {
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
  padding: clamp(4rem, 7vw, 6.8rem) 0;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.2rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0.7rem 0 1.25rem;
  color: var(--white);
  font-size: clamp(3.5rem, 5.4vw, 5.8rem);
  line-height: 0.96;
}

.home-hero .hero-copy > p {
  max-width: 650px;
  color: #d8e3dc;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.4rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: #d6e0da;
  font-size: 0.74rem;
  font-weight: 720;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-proof li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.home-hero-media {
  position: relative;
  margin: 0;
}

.home-hero-media::before {
  position: absolute;
  z-index: 0;
  top: -20px;
  right: -20px;
  width: 52%;
  height: 45%;
  border-top: 1px solid rgba(215, 226, 180, 0.65);
  border-right: 1px solid rgba(215, 226, 180, 0.65);
  content: "";
}

.home-hero-media picture {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px 32px 4px 4px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.24);
}

.home-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 50%;
}

.home-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: -1px;
  bottom: -1px;
  border-radius: 6px 0 3px;
  background: var(--warm-50);
  color: var(--forest-900);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.72rem 0.9rem;
  text-transform: uppercase;
}

.buyer-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.buyer-grid > div {
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 1.55rem clamp(1rem, 2.2vw, 2rem);
  position: relative;
}

.buyer-grid > div:not(:last-child)::after {
  position: absolute;
  top: 24%;
  right: 0;
  width: 1px;
  height: 52%;
  background: var(--line);
  content: "";
}

.buyer-grid small {
  color: var(--green-600);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.buyer-grid strong,
.buyer-grid span {
  display: block;
}

.buyer-grid strong {
  margin-top: 0.2rem;
  font-size: 0.88rem;
}

.buyer-grid span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.section {
  padding: clamp(4.8rem, 8vw, 7.4rem) 0;
}

.section-tight-top {
  padding-top: 2rem;
}

.section-soft {
  background: var(--warm-50);
}

.section-dark {
  background: var(--forest-900);
  color: var(--white);
}

.section-dark p {
  color: #cbd9d0;
}

.section-heading {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(2.3rem, 4vw, 3.6rem);
}

.section-heading h2,
.split-copy h2,
.compact-split h2,
.cta-inner h2,
.local-grid h2 {
  max-width: 780px;
  margin: 0.48rem 0 0;
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  line-height: 1.02;
}

.section-heading > p,
.section-heading > div:last-child p {
  margin-bottom: 0;
  font-size: 0.97rem;
}

.section-heading > div:last-child .text-link {
  margin-top: 0.5rem;
}

.heading-light h2 {
  color: var(--white);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.capability-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card-media {
  overflow: hidden;
  background: var(--sage-100);
}

.card-media picture,
.card-media img {
  width: 100%;
}

.card-media img {
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  transition: transform 360ms ease;
}

.card-body {
  padding: 1.55rem 1.55rem 1.7rem;
}

.card-number {
  color: var(--green-600);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.card-body h3 {
  margin: 0.5rem 0 0.58rem;
  font-size: 1.33rem;
}

.card-body p {
  min-height: 4.9rem;
  margin-bottom: 1.2rem;
  font-size: 0.84rem;
  line-height: 1.58;
}

.managed-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  overflow: hidden;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  background: var(--forest-900);
  color: var(--white);
}

.managed-feature > div:first-child {
  overflow: hidden;
}

.managed-feature picture,
.managed-feature img {
  width: 100%;
  height: 100%;
}

.managed-feature img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
  transition: transform 360ms ease;
}

.managed-feature > div:last-child {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.managed-feature h3 {
  margin: 0.55rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.managed-feature p {
  max-width: 650px;
  color: #ccdad1;
}

.managed-feature .card-link {
  color: var(--accent);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }

  .capability-card:hover {
    border-color: #bdc9bf;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
  }

  .capability-card:hover img,
  .managed-feature:hover img {
    transform: scale(1.025);
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-100);
}

.split-media picture,
.split-media img {
  width: 100%;
}

.split-media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.image-framed {
  box-shadow: var(--shadow);
}

.media-label {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 7px 0 0;
  background: var(--forest-950);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 780;
  padding: 0.72rem 0.9rem;
}

.split-copy > p,
.compact-split > div > p {
  font-size: 1rem;
}

.detail-list {
  margin: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.detail-list > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.62fr) minmax(0, 1.38fr);
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  font-size: 0.83rem;
}

.detail-list span {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.property-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
}

.property-grid article > span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.property-grid h3 {
  margin: 2.5rem 0 0.55rem;
  color: var(--white);
  font-size: 1.15rem;
}

.property-grid p {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.58;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.process-grid article > span,
.scope-grid article > span,
.standards-grid article > span,
.principles-grid article > span {
  color: var(--green-600);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: auto 0 0.55rem;
  font-size: 1.3rem;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.58;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1rem;
}

.gallery-preview figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-sm);
  background: var(--sage-100);
}

.gallery-preview picture,
.gallery-preview img {
  width: 100%;
  height: 100%;
}

.gallery-preview img {
  min-height: 330px;
  object-fit: cover;
}

.gallery-preview figcaption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  border-radius: 6px;
  background: rgba(8, 38, 28, 0.9);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 780;
  padding: 0.55rem 0.7rem;
}

.local-section {
  border-top: 1px solid var(--line);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.local-grid p {
  font-size: 1rem;
}

.residential-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem !important;
}

.residential-note a {
  color: var(--forest-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  background: linear-gradient(120deg, var(--forest-900), var(--forest-800));
  color: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.cta-inner > div:first-child {
  max-width: 760px;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  margin: 0.85rem 0 0;
  color: #d3dfd7;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.page-hero {
  overflow: hidden;
  background: var(--warm-50);
  padding: 1.35rem 0 clamp(4.8rem, 8vw, 7rem);
}

.breadcrumbs {
  margin-bottom: clamp(2.2rem, 4vw, 3.5rem);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  color: #6a776f;
  font-size: 0.68rem;
  font-weight: 700;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: #9aa49e;
  content: "/";
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  text-decoration-color: currentColor;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.page-hero-copy h1,
.page-intro h1,
.contact-copy h1,
.simple h1 {
  margin: 0.62rem 0 1.15rem;
  font-size: clamp(3.2rem, 5.3vw, 5.7rem);
  line-height: 0.98;
}

.page-hero-copy > p {
  max-width: 650px;
  font-size: 1.03rem;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-100);
  box-shadow: var(--shadow);
}

.page-hero-media picture,
.page-hero-media img {
  width: 100%;
}

.page-hero-media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.page-hero-copy .text-link {
  min-height: 48px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.scope-grid article {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: clamp(1.5rem, 2.7vw, 2rem);
}

.scope-grid h3 {
  margin: auto 0 0.55rem;
  font-size: 1.1rem;
}

.scope-grid p {
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.58;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-grid article {
  min-height: 185px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.review-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.review-grid p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.compact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.plain-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 0.95rem 0 0.95rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

.plain-list li::before {
  position: absolute;
  top: 1.52rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
  content: "";
}

.light-list {
  border-color: var(--line-dark);
  color: #d5e0d9;
}

.light-list li {
  border-color: var(--line-dark);
}

.light-list li::before {
  background: var(--accent);
}

.faq {
  max-width: 920px;
}

.faq .section-heading {
  display: block;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  flex: 0 0 auto;
  color: var(--green-600);
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
}

.before-after img {
  aspect-ratio: 4 / 3;
}

.page-intro {
  background: linear-gradient(180deg, var(--warm-50), var(--white));
  padding: 1.35rem 0 4rem;
}

.page-intro h1 {
  max-width: 950px;
}

.page-intro > .container > p {
  max-width: 760px;
  font-size: 1.05rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standards-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.standards-grid h2 {
  margin: auto 0 0.5rem;
  font-size: 1.2rem;
}

.standards-grid p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.results-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.results-gallery .gallery-wide {
  grid-column: span 2;
}

.results-gallery picture,
.results-gallery img {
  width: 100%;
}

.results-gallery img {
  height: 310px;
  object-fit: cover;
}

.results-gallery .gallery-wide img {
  height: 360px;
}

.results-gallery .gallery-tall img {
  height: 410px;
}

.results-gallery figcaption {
  padding: 1.05rem 1.1rem 1.2rem;
}

.results-gallery figcaption strong,
.results-gallery figcaption span {
  display: block;
}

.results-gallery figcaption strong {
  font-size: 0.84rem;
}

.results-gallery figcaption span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principles-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
}

.principles-grid h3 {
  margin: auto 0 0.35rem;
  font-size: 1.05rem;
}

.principles-grid p {
  margin-bottom: 0;
  font-size: 0.76rem;
}

.contact-section {
  background: linear-gradient(180deg, var(--warm-50), var(--white));
  padding: 1.35rem 0 clamp(5rem, 8vw, 7.5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 6rem);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h1 {
  font-size: clamp(3.25rem, 5vw, 5.2rem);
}

.contact-copy > p {
  font-size: 1rem;
}

.contact-media {
  position: relative;
  overflow: hidden;
  margin: 1.6rem 0 0;
  border-radius: var(--radius);
  background: var(--sage-100);
}

.contact-media picture,
.contact-media img {
  display: block;
  width: 100%;
}

.contact-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 7px 0 0;
  background: var(--forest-950);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 780;
  padding: 0.65rem 0.8rem;
}

.contact-steps {
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.contact-steps > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-steps span {
  color: var(--green-600);
  font-size: 0.65rem;
  font-weight: 850;
}

.contact-steps strong {
  font-size: 0.78rem;
}

.contact-facts {
  margin-top: 1.6rem;
}

.contact-facts > a,
.contact-facts > div {
  display: block;
  padding: 0.8rem 0;
}

.contact-facts small,
.contact-facts strong {
  display: block;
}

.contact-facts small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-facts strong {
  margin-top: 0.18rem;
  font-size: 0.86rem;
}

.rfp-note {
  margin-top: 1.5rem;
  border-left: 3px solid var(--green-600);
  background: var(--sage-100);
  padding: 1rem 1.1rem;
}

.rfp-note > strong {
  font-size: 0.8rem;
}

.rfp-note p {
  margin: 0.2rem 0 0.55rem;
  font-size: 0.74rem;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
}

.form-alert {
  display: none;
  margin-bottom: 1rem;
  border: 1px solid #dbaca5;
  border-radius: 8px;
  background: #fff2f0;
  color: var(--danger);
  font-size: 0.77rem;
  font-weight: 700;
  padding: 0.85rem 0.95rem;
}

.form-alert.show {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.73rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d1ca;
  border-radius: 7px;
  background: var(--white);
  padding: 0.82rem 0.88rem;
}

input,
select {
  min-height: 48px;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #9fac9f;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest-700);
  outline: 3px solid var(--forest-700);
  outline-offset: 2px;
  box-shadow: none;
}

.hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.btn-submit {
  width: 100%;
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.simple {
  min-height: 62vh;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.simple-card {
  max-width: 780px;
}

.status-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--sage-200);
  color: var(--forest-900);
  font-size: 1.4rem;
  font-weight: 900;
}

.error-code {
  display: block;
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
}

.legal {
  max-width: 820px;
}

.legal h1 {
  margin-bottom: 2rem;
}

.legal h2 {
  margin: 2rem 0 0.45rem;
  font-size: 1.25rem;
}

.legal p {
  font-size: 0.9rem;
}

.legal a {
  color: var(--forest-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--forest-950);
  color: var(--white);
  padding: 5rem 0 1.5rem;
}

.site-footer .brand-mark circle {
  fill: transparent;
  stroke: var(--white);
}

.site-footer .brand-mark path:first-of-type {
  fill: var(--accent);
}

.site-footer .brand-mark path:last-of-type {
  stroke: var(--white);
}

.site-footer .brand-type strong {
  color: var(--white);
}

.site-footer .brand-type small {
  color: var(--sage-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1.15fr 1.05fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.8rem);
}

.footer-intro p {
  max-width: 380px;
  margin: 1.2rem 0 0.75rem;
  color: #bdcbc2;
  font-size: 0.77rem;
}

.footer-intro > strong {
  font-size: 0.74rem;
}

.footer-grid h2 {
  margin: 0 0 0.85rem;
  color: var(--sage-300);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-intro) a,
.footer-grid > div:not(.footer-intro) span {
  display: block;
  color: #d6e0da;
  font-size: 0.73rem;
  padding: 0.26rem 0;
}

.footer-grid > div:not(.footer-intro) a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9eb0a5;
  font-size: 0.66rem;
}

@media (max-width: 1120px) {
  .nav-shell {
    gap: 1.2rem;
  }

  .desktop-nav {
    gap: 0.9rem;
  }

  .btn-header {
    padding-inline: 0.9rem;
  }

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

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 920px) {
  .utility {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .desktop-nav,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: block;
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 10px;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--forest-900);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 72px 0 0;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--warm-50);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .mobile-menu-inner {
    width: min(calc(100% - 2.5rem), 620px);
    display: grid;
    margin: 0 auto;
    padding: 1.2rem 0 calc(5rem + env(safe-area-inset-bottom));
  }

  .mobile-menu-inner > a:not(.btn) {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
    font-weight: 780;
    padding: 0.68rem 0.2rem;
  }

  .mobile-menu-inner > a.current {
    color: var(--forest-700);
  }

  .mobile-menu-label {
    margin-top: 0.4rem;
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    padding: 0.75rem 0.2rem 0.2rem;
    text-transform: uppercase;
  }

  .mobile-menu .btn {
    margin-top: 1rem;
  }

  .mobile-menu .mobile-secondary {
    color: var(--muted);
  }

  .mobile-menu .mobile-phone {
    justify-content: center;
    border: 0 !important;
    color: var(--forest-700);
  }

  .home-hero-grid,
  .page-hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 3.5rem;
  }

  .home-hero h1 {
    max-width: 800px;
  }

  .home-hero-media img {
    aspect-ratio: 16 / 10;
  }

  .page-hero-media {
    max-width: 760px;
  }

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

  .capability-card:last-child {
    grid-column: 1 / -1;
  }

  .capability-card:last-child .card-media img {
    aspect-ratio: 16 / 7;
  }

  .card-body p {
    min-height: 0;
  }

  .managed-feature {
    grid-template-columns: 1fr;
  }

  .managed-feature img {
    aspect-ratio: 16 / 8.2;
  }

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

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview figure:first-child {
    grid-column: 1 / -1;
  }

  .gallery-preview figure:first-child img {
    min-height: 390px;
  }

  .contact-copy {
    position: static;
  }

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

  .results-gallery .gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 2rem), var(--max));
  }

  .section-heading,
  .local-grid,
  .compact-split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

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

  .buyer-grid > div:nth-child(2)::after {
    display: none;
  }

  .buyer-grid > div {
    min-height: 118px;
    border-bottom: 1px solid var(--line);
  }

  .buyer-grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 210px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

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

  .footer-intro,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .mobile-cta {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0.55rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
  }

  .mobile-cta a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-cta a:last-child {
    border-color: var(--forest-900);
    background: var(--forest-900);
    color: var(--white);
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 580px) {
  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-type strong {
    font-size: 1.25rem;
  }

  .home-hero {
    padding: 3.7rem 0 4.5rem;
  }

  .home-hero h1,
  .page-hero-copy h1,
  .page-intro h1,
  .contact-copy h1,
  .simple h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.2rem);
  }

  .home-hero-media::before {
    display: none;
  }

  .home-hero-media picture {
    border-radius: 4px 18px 4px 4px;
  }

  .home-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1 1 100%;
  }

  .hero-proof {
    gap: 0.45rem 0.9rem;
  }

  .capability-grid,
  .scope-grid,
  .gallery-preview,
  .standards-grid,
  .results-gallery,
  .form-row {
    grid-template-columns: 1fr;
  }

  .buyer-grid,
  .property-grid,
  .review-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-grid > div {
    min-height: 105px;
    border-bottom: 1px solid var(--line);
  }

  .buyer-grid > div:nth-child(2)::after,
  .buyer-grid > div:nth-child(4)::after {
    display: none;
  }

  .buyer-grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .capability-card:last-child {
    grid-column: auto;
  }

  .capability-card:last-child .card-media img,
  .managed-feature img {
    aspect-ratio: 16 / 10;
  }

  .property-grid {
    border-right: 1px solid var(--line-dark);
  }

  .property-grid article {
    min-height: 205px;
    padding: 1.2rem;
  }

  .detail-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .gallery-preview figure:first-child {
    grid-column: auto;
  }

  .gallery-preview img,
  .gallery-preview figure:first-child img {
    min-height: 275px;
  }

  .results-gallery .gallery-wide {
    grid-column: auto;
  }

  .results-gallery img,
  .results-gallery .gallery-wide img,
  .results-gallery .gallery-tall img {
    height: 290px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 359px) {
  .buyer-grid,
  .property-grid,
  .review-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .buyer-grid > div {
    border-bottom: 1px solid var(--line);
  }

  .buyer-grid > div::after {
    display: none;
  }

  .buyer-grid > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
