:root {
  --ink: #101510;
  --ink-soft: #182019;
  --green: #00a63e;
  --green-dark: #007b2f;
  --green-deep: #005c25;
  --gold: #d1aa62;
  --gold-light: #ead5a5;
  --paper: #f4f5f1;
  --paper-2: #e9ece6;
  --white: #ffffff;
  --muted: #657069;
  --line: rgba(16, 21, 16, 0.14);
  --shadow: 0 24px 70px rgba(10, 18, 12, 0.13);
  --radius: 6px;
  --container: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

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

button { cursor: pointer; }

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

h1,
h2,
h3,
h4 {
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }

p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-dark);
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 108px 0; }
.section-sm { padding: 76px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-paper { background: var(--paper); }
.section-green { color: var(--white); background: var(--green-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow,
.section-green .eyebrow { color: var(--gold-light); }

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.section-dark .lede,
.section-green .lede { color: rgba(255, 255, 255, 0.72); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-head h2 { margin-bottom: 0; }
.section-head p { margin-bottom: 7px; }

.topbar {
  color: rgba(255, 255, 255, 0.8);
  background: #080b08;
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.topbar a:hover { color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: rgba(16, 21, 16, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(16, 21, 16, 0.985);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  width: 92px;
  height: 76px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-item { position: relative; }

.nav-link,
.nav-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active,
.nav-trigger:hover,
.nav-item.active > .nav-row .nav-link { color: var(--gold-light); }

.nav-row { display: flex; align-items: center; }
.nav-trigger { padding-inline: 2px 8px; }
.nav-trigger svg { width: 14px; transition: transform 180ms ease; }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 330px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #151c16;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown.locations { width: 270px; }

.dropdown::before {
  position: absolute;
  top: -13px;
  left: 0;
  width: 100%;
  height: 13px;
  content: "";
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item.open .nav-trigger svg { transform: rotate(180deg); }

.dropdown a {
  display: block;
  padding: 11px 12px;
  border-left: 2px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
}

.dropdown a:hover,
.dropdown a.active {
  border-left-color: var(--green);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta:hover { background: var(--gold-light); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span { margin: 5px 0; }
.menu-toggle.active span { opacity: 0; }
.menu-toggle.active::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  isolation: isolate;
}

.hero-home {
  display: flex;
  min-height: min(790px, calc(100vh - 120px));
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5, 10, 6, 0.93) 0%, rgba(5, 10, 6, 0.74) 48%, rgba(5, 10, 6, 0.22) 100%),
    url("/assets/images/hero-exterior.webp");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: auto auto -240px -130px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(0, 166, 62, 0.14);
  content: "";
  transform: rotate(34deg);
  z-index: -1;
}

.hero-content {
  max-width: 860px;
  padding: 96px 0 165px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border 150ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--green-dark); }
.btn-primary:hover { background: var(--green); }
.btn-gold { color: var(--ink); background: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border-color: rgba(255, 255, 255, 0.42); color: var(--white); background: rgba(0, 0, 0, 0.12); }
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-dark:hover { background: var(--ink-soft); }
.btn-light-outline { border-color: var(--line); color: var(--ink); }
.btn-light-outline:hover { border-color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

.hero-trust {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(12, 16, 12, 0.82);
  backdrop-filter: blur(10px);
}

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

.trust-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 13px;
  padding: 20px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 27px; height: 27px; flex: 0 0 auto; color: var(--gold-light); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metric {
  min-height: 145px;
  padding: 32px;
  background: var(--white);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.metric span { color: var(--muted); font-size: 0.92rem; font-weight: 700; }

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

.service-card {
  position: relative;
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(0, 123, 47, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  border: 24px solid rgba(0, 166, 62, 0.07);
  content: "";
  transform: rotate(32deg);
}

.card-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  color: var(--green-dark);
  background: rgba(0, 166, 62, 0.08);
}

.card-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { margin-bottom: 28px; color: var(--muted); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link svg { width: 17px; height: 17px; transition: transform 180ms ease; }
.service-card:hover .text-link svg,
.text-link:hover svg { transform: translateX(5px); }

.services-grid > .service-card:last-child:nth-child(7) {
  grid-column: 1 / -1;
  min-height: 250px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.feature-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 250px;
  padding: 17px 19px;
  color: var(--white);
  background: rgba(9, 14, 10, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-copy {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 95px);
  color: var(--white);
  background: var(--ink);
}

.feature-copy h2 { margin-bottom: 22px; }
.feature-copy p { color: rgba(255, 255, 255, 0.7); }

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.83);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 17px;
  height: 17px;
  border: 2px solid var(--green);
  content: "";
}

.check-list.light li { color: var(--ink); }

.project-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  grid-auto-rows: 245px;
  gap: 12px;
}

.project-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.project-card:first-child { grid-row: span 2; }
.project-card:nth-child(4) { grid-column: span 2; }

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 10, 7, 0.84));
  content: "";
}

.project-card:hover img { transform: scale(1.04); }

.project-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
}

.project-caption span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-caption strong { font-size: 1.05rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--green);
  content: "";
}

.step-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 { margin-bottom: 11px; font-size: 1.35rem; }
.process-step p { color: rgba(255, 255, 255, 0.65); font-size: 0.93rem; }

.area-band {
  position: relative;
  overflow: hidden;
}

.area-band::after {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 440px;
  height: 440px;
  border: 84px solid rgba(255, 255, 255, 0.06);
  content: "";
  transform: rotate(36deg);
}

.area-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.area-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.area-links a:hover { border-color: var(--gold-light); background: rgba(255, 255, 255, 0.06); }
.area-links svg { width: 17px; }

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

.review-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(10, 18, 12, 0.06);
}

.review-head {
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  gap: 13px;
  align-items: center;
  margin-bottom: 19px;
}

.review-avatar {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
}

.review-avatar.avatar-blue { background: #3267b1; }
.review-avatar.avatar-gold { color: var(--ink); background: var(--gold); }

.review-identity { display: grid; line-height: 1.25; }
.review-identity strong { font-size: .96rem; }
.review-identity span { margin-top: 3px; color: var(--muted); font-size: .78rem; }
.google-mark { width: 26px; height: 27px; object-fit: contain; }

.review-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 22px;
}

.stars { color: #fbbc04; font-size: 1.05rem; letter-spacing: 0.08em; line-height: 1; }
.verified-review { display: inline-flex; align-items: center; gap: 5px; color: #59635d; font-size: .76rem; font-weight: 750; }
.verified-review > span { display: inline-flex; width: 16px; height: 16px; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); background: #4285f4; font-size: .68rem; }
.review-card blockquote { margin: 0 0 28px; font-size: 1.06rem; line-height: 1.62; }
.review-source { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; font-weight: 750; }
.review-source img { width: 17px; height: 17px; }

.quote-section { background: linear-gradient(135deg, var(--paper) 0 62%, var(--paper-2) 62% 100%); }

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
  align-items: start;
}

.contact-card {
  padding: 40px;
  border-top: 5px solid var(--green-dark);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h3 { margin-bottom: 8px; }
.form-note { margin-bottom: 26px; color: var(--muted); font-size: 0.88rem; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.81rem; font-weight: 800; letter-spacing: 0.045em; text-transform: uppercase; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #c8cec9;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 3px solid rgba(0, 166, 62, 0.18); border-color: var(--green-dark); }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

.form-status {
  margin-bottom: 22px;
  padding: 13px 15px;
  border-left: 4px solid #b85f1b;
  color: #653008;
  background: #fff2e7;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.contact-line {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
}

.contact-line svg { width: 23px; margin: 3px auto 0; color: var(--green-dark); }
.contact-line small { display: block; color: var(--muted); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-line a { font-weight: 750; text-decoration: none; }
.contact-line a:hover { color: var(--green-dark); }

.page-hero {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 10, 6, 0.94), rgba(5, 10, 6, 0.62) 60%, rgba(5, 10, 6, 0.28));
  content: "";
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { max-width: 880px; padding: 84px 0 74px; }
.page-hero h1 { max-width: 950px; margin-bottom: 18px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.8); font-size: 1.18rem; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a { color: var(--gold-light); text-decoration: none; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 80px;
  align-items: start;
}

.prose h2 { margin: 42px 0 18px; font-size: clamp(2rem, 3.7vw, 3.7rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 11px; }
.prose p { color: #4e5952; }
.prose ul { padding-left: 20px; color: #4e5952; }
.prose li { margin-bottom: 8px; }

.sidebar-card {
  position: sticky;
  top: 142px;
  padding: 30px;
  color: var(--white);
  background: var(--ink);
}

.sidebar-card h3 { margin-bottom: 13px; }
.sidebar-card p { color: rgba(255,255,255,.68); font-size: .93rem; }
.sidebar-card .btn { width: 100%; margin-top: 12px; }
.sidebar-card .btn + .btn { margin-top: 10px; }

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 38px;
}

.scope-item {
  position: relative;
  min-height: 112px;
  padding: 20px 20px 18px 54px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.scope-item::before {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--green-dark);
  content: "";
}

.scope-item strong { display: block; margin-bottom: 4px; }
.scope-item span { color: var(--muted); font-size: .9rem; }

.photo-pair {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
  margin: 44px 0;
}

.photo-pair img { width: 100%; height: 390px; object-fit: cover; }
.photo-pair img:last-child { height: 390px; }

.faq-list { max-width: 920px; }

.faq-list details {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  font-size: 1.06rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 22px; right: 6px; color: var(--green-dark); content: "+"; font-size: 1.5rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 50px 23px 0; color: var(--muted); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: block;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  text-decoration: none;
}

.related-card:hover { border-color: var(--gold-light); background: rgba(255,255,255,.04); }
.related-card span { display: block; margin-bottom: 24px; color: var(--gold-light); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.related-card p { color: rgba(255,255,255,.6); font-size: .9rem; }

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

.service-index-card {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.service-index-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-index-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,12,8,.08), rgba(7,12,8,.9));
  content: "";
}

.service-index-card:hover img { transform: scale(1.04); }
.service-index-card:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 360px; }
.service-index-copy { position: relative; z-index: 2; padding: 34px; }
.service-index-copy span { color: var(--gold-light); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-index-copy h2 { margin: 8px 0 12px; font-size: clamp(2rem, 3.3vw, 3.3rem); }
.service-index-copy p { max-width: 610px; color: rgba(255,255,255,.72); }

.location-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.location-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.location-card:hover { border-color: var(--green-dark); transform: translateY(-4px); }
.location-card small { color: var(--green-dark); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.location-card h2 { margin: 18px 0 12px; font-size: 2.1rem; }
.location-card p { color: var(--muted); }
.location-card .text-link { margin-top: auto; }

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0;
}

.neighborhood-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: #3f4942;
  font-size: .84rem;
  font-weight: 700;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter-btn {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active { border-color: var(--green-dark); color: var(--white); background: var(--green-dark); }

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

.gallery-item {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.gallery-item.hidden { display: none; }
.gallery-item:nth-child(5n + 1) { grid-row: span 2; min-height: 675px; }
.gallery-grid.is-filtered .gallery-item { grid-row: span 1; min-height: 390px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.gallery-item:hover img { transform: scale(1.035); }

.gallery-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(8,13,9,.86);
}

.gallery-label strong { display: block; line-height: 1.25; }
.gallery-label span { color: var(--gold-light); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: center;
}

.about-image { position: relative; }
.about-image img { width: 100%; height: 610px; object-fit: cover; }
.about-image::after { position: absolute; right: -18px; bottom: -18px; width: 180px; height: 180px; border: 18px solid var(--green); content: ""; z-index: -1; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.value-card { padding: 23px; border: 1px solid var(--line); background: var(--paper); }
.value-card strong { display: block; margin-bottom: 6px; }
.value-card span { color: var(--muted); font-size: .88rem; }

.cta-band { color: var(--white); background: var(--ink); }
.cta-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: center; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.68); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer { color: rgba(255,255,255,.7); background: #080b08; }
.footer-main { display: grid; grid-template-columns: 1.1fr .8fr .9fr 1fr; gap: 52px; padding: 78px 0 54px; }
.footer-brand img { width: 185px; height: 92px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; font-size: .9rem; }
.footer-title { margin-bottom: 20px; color: var(--white); font-size: .86rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: grid; gap: 12px; font-size: .9rem; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 10px; margin-top: 21px; }
.social-links a { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); color: var(--white); }
.social-links a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.social-links svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .79rem; }
.footer-bottom a { color: inherit; text-decoration: none; }

.mobile-contact-bar { display: none; }

.notice-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
  background: var(--paper);
}

.notice-card { max-width: 760px; padding: 55px; border-top: 5px solid var(--green-dark); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.notice-card h1 { margin-bottom: 17px; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.notice-card p { color: var(--muted); }
.notice-card .hero-actions { justify-content: center; margin-top: 28px; }

@media (max-width: 1080px) {
  .header-inner { gap: 18px; }
  .nav-link, .nav-trigger { padding-inline: 7px; font-size: .84rem; }
  .header-cta { padding-inline: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { gap: 45px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > div:nth-child(2) { display: none; }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 90px; }
  .topbar { display: none; }
  .site-header { z-index: 10000; overflow: visible; background: #101510; backdrop-filter: none; }
  .header-inner { min-height: 76px; }
  .header-logo { width: 76px; height: 66px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    z-index: 10001;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    background: #0d120e;
    box-shadow: 0 24px 60px rgba(0,0,0,.48);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-row { justify-content: space-between; }
  .nav-link { flex: 1; min-height: 54px; padding-inline: 4px; font-size: 1rem; }
  .nav-trigger { width: 48px; justify-content: center; }
  .dropdown {
    position: static;
    display: none;
    width: 100% !important;
    padding: 0 0 13px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown a { padding: 11px 10px; }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 10002; }
  .section { padding: 78px 0; }
  .section-sm { padding: 60px 0; }
  .section-head { grid-template-columns: 1fr; gap: 15px; }
  .hero-home { min-height: 720px; background-position: 60% center; }
  .hero-content { padding: 92px 0 180px; }
  .hero h1 { font-size: clamp(3.2rem, 11vw, 6rem); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 76px; padding: 15px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .metric-grid { grid-template-columns: 1fr; }
  .metric { min-height: 112px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-image, .feature-copy { min-height: 500px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card:first-child { grid-row: span 1; }
  .project-card:nth-child(4) { grid-column: span 1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .area-layout { grid-template-columns: 1fr; gap: 42px; }
  .review-grid { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; gap: 46px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .location-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 680px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.55rem; }
  .hero-home { min-height: 755px; background-position: 66% center; }
  .hero-content { padding: 70px 0 215px; }
  .hero-copy { font-size: 1.04rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 61px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 11px 5px; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { display: none; }
  .services-grid,
  .service-index-grid,
  .scope-grid,
  .location-intro-grid,
  .gallery-grid,
  .form-grid,
  .area-links,
  .value-grid { grid-template-columns: 1fr; }
  .services-grid > .service-card:last-child:nth-child(7),
  .service-index-card:last-child:nth-child(odd) { grid-column: auto; }
  .service-card { min-height: 285px; padding: 27px; }
  .feature-image, .feature-copy { min-height: 430px; }
  .feature-copy { padding: 45px 27px; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 315px; }
  .process-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 500px; }
  .page-hero-content { padding: 70px 0 58px; }
  .page-hero h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .photo-pair { grid-template-columns: 1fr; }
  .photo-pair img, .photo-pair img:last-child { height: 350px; }
  .service-index-card { min-height: 390px; }
  .gallery-item, .gallery-item:nth-child(5n+1) { grid-row: span 1; min-height: 410px; }
  .about-image img { height: 460px; }
  .contact-card { padding: 28px 21px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding: 60px 0 36px; }
  .footer-main > div:nth-child(2) { display: block; }
  .footer-bottom { min-height: 90px; flex-direction: column; justify-content: center; text-align: center; }
  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 58px;
    border-top: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -8px 25px rgba(0,0,0,.2);
  }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; font-weight: 850; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
  .mobile-contact-bar a:first-child { background: var(--green-dark); }
  .mobile-contact-bar svg { width: 18px; height: 18px; }
  body { padding-bottom: 58px; }
  .notice-card { padding: 42px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .topbar, .site-header, .mobile-contact-bar, .cta-band, .site-footer { display: none !important; }
  body { padding: 0; color: #000; }
  .section { padding: 30px 0; }
}
