:root {
  --bg: #fbfcf9;
  --paper: #ffffff;
  --paper-soft: #f4f6f1;
  --ink: #0d1720;
  --muted: #4f5c66;
  --line: #d8ded4;
  --green: #0b5b2f;
  --green-dark: #064221;
  --blue: #0d2f4c;
  --blue-soft: #eaf1f7;
  --wood: #9a6736;
  --shadow: 0 18px 45px rgba(13, 23, 32, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(244, 246, 241, 0.7), rgba(251, 252, 249, 0) 420px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 62px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(216, 222, 212, 0.86);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green);
}

.brand-mark svg {
  width: 46px;
  height: 46px;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.28rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--green);
  font-size: clamp(0.82rem, 1.3vw, 1.08rem);
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  margin-left: auto;
  color: #1d252d;
  font-size: 0.98rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta svg,
.button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.header-cta,
.button-primary {
  background: linear-gradient(180deg, #0b6636, var(--green));
  color: #fff;
  box-shadow: 0 10px 25px rgba(11, 91, 47, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: #b8c5d0;
  color: var(--blue);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.button-primary:hover {
  background: linear-gradient(180deg, #0a713b, var(--green-dark));
  box-shadow: 0 12px 30px rgba(11, 91, 47, 0.22);
}

.button-secondary:hover {
  background: #fff;
  border-color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: min(68vh, 690px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 252, 249, 0.95), rgba(251, 252, 249, 0.9) 47%, rgba(251, 252, 249, 0.08) 68%),
    linear-gradient(180deg, #fff, var(--paper-soft));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5.6vw, 76px) clamp(22px, 4.4vw, 66px);
}

.service-area {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 900;
  line-height: 0.94;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 24px;
  color: #1b2935;
  font-size: clamp(1.06rem, 1.6vw, 1.34rem);
  line-height: 1.45;
}

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

.hero-actions .button {
  min-width: 190px;
}

.hero-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(251, 252, 249, 0.24), rgba(251, 252, 249, 0));
}

.services-section,
.proof-quote-band {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 18px;
}

h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1340px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  min-height: 174px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-item:last-child {
  border-right: 0;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--green);
}

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.85;
}

.service-item h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.proof-quote-band {
  max-width: 860px;
  margin: 0 auto;
}

.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(13, 23, 32, 0.06);
}

.quote-card {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(244, 246, 241, 0.82), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

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

label {
  display: grid;
  gap: 6px;
  color: #22313d;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #bfc9d2;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  outline: 0;
  padding: 12px 13px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 91, 47, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.quote-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.local-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background:
    linear-gradient(90deg, rgba(13, 47, 76, 0.97), rgba(13, 47, 76, 0.9)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 14px);
  color: #fff;
}

.local-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 160px;
  padding: clamp(30px, 5vw, 54px) clamp(22px, 6vw, 84px);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.local-card:last-child {
  border-right: 0;
}

.round-icon {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}

.round-icon svg {
  width: 34px;
  height: 34px;
}

.local-card h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.local-card p {
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.local-card a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #071521;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-item:nth-child(3) {
    border-right: 0;
  }

  .service-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    background: var(--bg);
  }

  .hero-copy {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .hero-media {
    min-height: 260px;
    order: -1;
  }

  .hero-media img {
    min-height: 260px;
  }

  .local-strip {
    grid-template-columns: 1fr;
  }

  .local-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .local-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.24rem;
  }

  .brand small {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }

  .service-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-child(3) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .service-item:first-child {
    border-top: 0;
  }

  .services-section,
  .proof-quote-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .local-card {
    align-items: flex-start;
    padding: 28px 18px;
  }

  .round-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .round-icon svg {
    width: 28px;
    height: 28px;
  }

  .site-footer {
    display: grid;
  }
}
