:root {
  --ink: #111713;
  --ink-soft: #1b231e;
  --ink-muted: #445049;
  --night: #0c110e;
  --night-2: #121914;
  --green: #78d447;
  --green-deep: #4ba821;
  --green-pale: #e9f8df;
  --sand: #f2f2eb;
  --sand-deep: #e6e7dd;
  --white: #ffffff;
  --line: #d9ddd5;
  --line-dark: rgba(255, 255, 255, 0.14);
  --red: #b42318;
  --shadow-sm: 0 12px 30px rgba(21, 32, 24, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 12, 8, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
  --header-height: 82px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 6px;
  color: var(--night);
  background: var(--green);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.utility-bar {
  min-height: 38px;
  color: rgba(255, 255, 255, 0.82);
  background: #070b08;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.rating-link,
.utility-trust {
  display: flex;
  align-items: center;
  gap: 9px;
}

.rating-link > span:first-child {
  color: #f9c846;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.rating-link strong {
  color: var(--white);
}

.rating-link:hover strong {
  color: var(--green);
}

.utility-trust span + span::before {
  margin-right: 9px;
  color: var(--green);
  content: "•";
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(13, 18, 15, 0.08);
  background: rgba(242, 242, 235, 0.94);
  transition: box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(13, 18, 15, 0.09);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.03;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #2d3932;
  font-size: 0.82rem;
  font-weight: 760;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--green-deep);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.2;
}

.header-phone span {
  color: var(--ink-muted);
  font-size: 0.66rem;
  font-weight: 650;
}

.header-phone strong {
  font-size: 0.86rem;
}

.header-phone:hover strong {
  color: var(--green-deep);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 20px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: #0a100c;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(89, 184, 42, 0.16);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #91e866;
  background: #91e866;
  box-shadow: 0 14px 32px rgba(89, 184, 42, 0.24);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.77rem;
}

.button-large {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 0.92rem;
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.button-ghost:hover {
  border-color: var(--white);
  color: var(--night);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - var(--header-height) - 38px);
  border-top: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding-block: 22px 34px;
}

.mobile-menu nav > a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 800;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero {
  position: relative;
  min-height: 680px;
  color: var(--white);
  background:
    radial-gradient(circle at 11% 0%, rgba(120, 212, 71, 0.13), transparent 28%),
    linear-gradient(135deg, var(--night) 0%, #101712 56%, #0a0f0b 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 60%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: 58px;
  padding-block: 78px 82px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-dark {
  color: #397b1d;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 5.5vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.55vw, 1.17rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  padding: 0 24px;
  border-right: 1px solid var(--line-dark);
  line-height: 1.25;
}

.hero-proof li:first-child {
  padding-left: 0;
}

.hero-proof li:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-size: 1.05rem;
}

.hero-proof strong span {
  margin-left: 2px;
  color: #f9c846;
}

.hero-proof li > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  margin-right: -13vw;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  height: 495px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 8, 0.36), transparent 50%);
  content: "";
  pointer-events: none;
}

.hero-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-image-badge {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: rgba(8, 13, 9, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-image-badge svg {
  width: 28px;
  height: 28px;
  fill: var(--green);
}

.hero-image-badge span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  line-height: 1.35;
}

.hero-image-badge strong {
  color: var(--white);
  font-size: 0.77rem;
}

.hero-camo {
  position: absolute;
  z-index: 1;
  right: 4vw;
  bottom: -60px;
  width: 290px;
  height: 210px;
  transform: rotate(-4deg);
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 18% 30%, var(--green) 0 12%, transparent 13%),
    radial-gradient(ellipse at 48% 66%, #8aa873 0 15%, transparent 16%),
    radial-gradient(ellipse at 78% 24%, #32502e 0 16%, transparent 17%),
    radial-gradient(ellipse at 80% 82%, var(--green) 0 12%, transparent 13%);
  filter: blur(10px);
}

.trust-strip {
  color: var(--white);
  background: #182019;
}

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

.trust-grid > div {
  position: relative;
  display: grid;
  min-height: 134px;
  align-content: center;
  padding: 25px 28px 25px 45px;
  border-right: 1px solid var(--line-dark);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.trust-grid span {
  position: absolute;
  top: 25px;
  left: 16px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.58rem;
}

.trust-grid strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.trust-grid small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  line-height: 1.45;
}

.section {
  padding-block: 110px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2,
.why-section h2,
.reviews-section h2,
.estimate-copy h2,
.faq-section h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.35rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.services-section {
  background: var(--sand);
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(21, 32, 24, 0.04);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

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

.service-card-featured {
  display: grid;
  min-height: 640px;
  grid-template-rows: 300px 1fr;
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 14, 10, 0.18), transparent 45%);
  content: "";
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-number {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--green);
  font-family: var(--font-display);
  font-size: 0.7rem;
}

.service-body {
  display: flex;
  flex-direction: column;
  padding: 34px 36px 32px;
}

.service-kicker {
  margin-bottom: 8px;
  color: #397b1d;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p:not(.service-kicker) {
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.check-list {
  margin: 2px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 23px;
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--green-deep);
  font-weight: 900;
  content: "✓";
}

.check-list.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
}

.check-list.compact li {
  color: #39463e;
  font-size: 0.77rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 850;
}

.text-link span {
  color: var(--green-deep);
  font-size: 1rem;
}

.text-link:hover {
  color: var(--green-deep);
}

.service-card-small {
  position: relative;
  min-height: 260px;
  padding: 32px 35px;
}

.service-card-small:nth-child(3) {
  background: var(--green-pale);
}

.service-card-small:nth-child(4) {
  color: var(--white);
  background: #202920;
}

.service-card-small:nth-child(4) .service-kicker,
.service-card-small:nth-child(4) p:not(.service-kicker) {
  color: rgba(255, 255, 255, 0.62);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 12px;
  background: var(--green);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--night);
}

.why-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(120, 212, 71, 0.11), transparent 32%),
    var(--night);
  overflow: hidden;
}

.why-section::after {
  position: absolute;
  right: -6%;
  bottom: -20%;
  width: 480px;
  height: 480px;
  opacity: 0.08;
  border: 85px solid var(--green);
  border-radius: 50%;
  content: "";
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
}

.why-copy {
  align-self: start;
  position: sticky;
  top: 145px;
}

.why-copy h2 {
  margin-bottom: 25px;
}

.why-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.78;
}

.why-points {
  border-top: 1px solid var(--line-dark);
}

.why-points article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 23px;
  padding: 37px 8px 39px 0;
  border-bottom: 1px solid var(--line-dark);
}

.why-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(120, 212, 71, 0.35);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.why-points h3 {
  margin-bottom: 9px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.why-points p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.92rem;
}

.process-section {
  background: #f8f8f4;
}

.section-heading-centered {
  align-items: center;
  grid-template-columns: 1.3fr 0.7fr;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  list-style: none;
  overflow: hidden;
}

.process-grid li {
  position: relative;
  min-height: 310px;
  padding: 32px 27px;
  border-right: 1px solid var(--line);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid li > span {
  position: absolute;
  top: 19px;
  right: 19px;
  color: #a4ada6;
  font-family: var(--font-display);
  font-size: 0.62rem;
}

.process-grid svg {
  width: 48px;
  height: 48px;
  margin: 48px 0 26px;
  fill: var(--green-deep);
}

.process-grid h3 {
  margin-bottom: 11px;
  font-size: 1rem;
}

.process-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.reviews-section {
  color: var(--white);
  background: #182019;
}

.reviews-head {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 52px;
}

.rating-summary {
  display: grid;
  min-width: 205px;
  justify-items: start;
  padding-left: 35px;
  border-left: 1px solid var(--line-dark);
}

.rating-summary > strong {
  font-family: var(--font-display);
  font-size: 3.7rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.rating-summary .stars {
  margin-block: 5px 2px;
  color: #f9c846;
  letter-spacing: 0.09em;
}

.rating-summary > span:not(.stars) {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.rating-summary a {
  margin-top: 9px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

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

.review-grid blockquote {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  margin: 0;
  padding: 29px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.quote-mark {
  height: 50px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 1;
}

.review-grid blockquote > p {
  margin: 24px 0 35px;
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.55;
}

.review-grid footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  line-height: 1.4;
}

.review-grid footer strong {
  font-size: 0.79rem;
}

.review-grid footer span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
}

.estimate-section {
  background: var(--sand-deep);
}

.estimate-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 90px;
}

.estimate-copy {
  padding-top: 30px;
}

.estimate-copy h2 {
  margin-bottom: 24px;
}

.estimate-copy > p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-block: 34px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #cbd0c8;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.38);
  transition: background 160ms ease, border-color 160ms ease;
}

.direct-contact a:hover {
  border-color: var(--green-deep);
  background: var(--white);
}

.direct-contact svg {
  width: 27px;
  height: 27px;
  fill: var(--green-deep);
}

.direct-contact span {
  display: flex;
  flex-direction: column;
}

.direct-contact small {
  color: var(--ink-muted);
  font-size: 0.67rem;
}

.direct-contact strong {
  font-size: 0.86rem;
}

.license-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid #cbd0c8;
}

.license-note img {
  width: 62px;
  height: 62px;
}

.license-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.45;
}

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

.license-note span {
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.estimate-card {
  padding: 38px;
  border: 1px solid #d0d5cd;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 850;
}

.form-heading span {
  color: var(--ink-muted);
  font-size: 0.65rem;
}

.estimate-card form {
  display: grid;
  gap: 18px;
}

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

.estimate-card label:not(.contact-preference label) {
  display: grid;
  gap: 7px;
  color: #303a34;
  font-size: 0.72rem;
  font-weight: 750;
}

.estimate-card input:not([type="radio"]),
.estimate-card select,
.estimate-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #ccd2ca;
  border-radius: 8px;
  outline: none;
  background: #fbfcf9;
  font-size: 0.86rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.estimate-card textarea {
  min-height: 105px;
  resize: vertical;
}

.estimate-card input:not([type="radio"]):focus,
.estimate-card select:focus,
.estimate-card textarea:focus {
  border-color: var(--green-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(89, 184, 42, 0.14);
}

.estimate-card input:user-invalid,
.estimate-card select:user-invalid {
  border-color: var(--red);
}

.contact-preference {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 0;
  border: 0;
}

.contact-preference legend {
  float: left;
  margin-right: 12px;
  color: #303a34;
  font-size: 0.72rem;
  font-weight: 750;
}

.contact-preference label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-muted);
  font-size: 0.73rem;
  font-weight: 650;
}

.contact-preference input {
  width: 16px;
  height: 16px;
  accent-color: var(--green-deep);
}

.form-submit {
  width: 100%;
  justify-content: space-between;
  margin-top: 2px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.form-note {
  margin: -5px 0 0;
  color: #737d76;
  font-size: 0.63rem;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-status.error {
  color: #7a271a;
  background: #fef3f2;
}

.form-success {
  display: grid;
  min-height: 540px;
  align-content: center;
  justify-items: start;
}

.form-success[hidden] {
  display: none;
}

.form-success > svg {
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  fill: var(--green-deep);
}

.form-success h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.form-success > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 28px;
  color: var(--ink-muted);
}

.faq-section {
  background: #f8f8f4;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
  gap: 100px;
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 22px;
  color: var(--ink-muted);
}

.faq-grid > div:first-child a {
  color: var(--green-deep);
  font-weight: 800;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-deep);
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 50px 23px 2px;
  color: var(--ink-muted);
  font-size: 0.87rem;
}

.final-cta {
  position: relative;
  padding-block: 76px;
  color: var(--white);
  background: var(--night);
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background:
    radial-gradient(ellipse at 15% 20%, var(--green) 0 8%, transparent 9%),
    radial-gradient(ellipse at 70% 80%, #668854 0 13%, transparent 14%),
    radial-gradient(ellipse at 85% 15%, #3a6335 0 10%, transparent 11%);
  content: "";
  filter: blur(35px);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
}

.final-cta img {
  width: 120px;
  height: 120px;
}

.final-cta p {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.final-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
}

.final-actions > a:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.final-actions > a:last-child strong {
  color: var(--white);
}

.site-footer {
  padding: 76px 0 25px;
  color: rgba(255, 255, 255, 0.62);
  background: #070b08;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 1.15fr;
  gap: 60px;
  padding-bottom: 58px;
}

.brand-footer {
  margin-bottom: 20px;
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand > p {
  max-width: 290px;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-brand .footer-license {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li,
.footer-contact > a:not(.footer-phone) {
  margin-bottom: 8px;
  font-size: 0.75rem;
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-phone {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 850;
}

.footer-contact p {
  margin-top: 14px;
  font-size: 0.72rem;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-cta {
  display: none;
}

.js [data-reveal] {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 620ms ease;
}

.js [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1120px) {
  :root {
    --shell: 980px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .header-phone-label {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 38px;
  }

  .hero-visual {
    margin-right: -10vw;
  }

  .hero-image-wrap {
    height: 450px;
  }

  .estimate-grid,
  .faq-grid {
    gap: 55px;
  }

  .footer-grid {
    gap: 38px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

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

  .menu-toggle {
    display: flex;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 68px 74px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    margin: 0 -24px;
  }

  .hero-image-wrap {
    height: 460px;
    border-radius: var(--radius-lg);
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding-block: 85px;
  }

  .section-heading,
  .section-heading-centered {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .why-copy {
    position: static;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .reviews-head {
    align-items: start;
    grid-template-columns: 1fr auto;
    gap: 35px;
  }

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

  .review-grid blockquote {
    min-height: 230px;
  }

  .estimate-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .estimate-copy {
    padding-top: 0;
  }

  .direct-contact {
    max-width: 560px;
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .final-actions {
    align-items: flex-start;
    grid-column: 2;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 34px;
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .utility-bar,
  .utility-inner {
    min-height: 34px;
  }

  .utility-bar {
    font-size: 0.65rem;
  }

  .utility-hide {
    display: none;
  }

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

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

  .hero-grid {
    padding-block: 55px 62px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof li {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-proof li:first-child {
    padding-left: 0;
  }

  .hero-proof li:last-child {
    padding-right: 0;
  }

  .hero-image-wrap {
    height: 340px;
    border-radius: 18px;
  }

  .hero-image-wrap > img {
    object-position: 57% center;
  }

  .hero-image-badge {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:nth-child(3) {
    min-height: 104px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .why-section h2,
  .reviews-section h2,
  .estimate-copy h2,
  .faq-section h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

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

  .service-card-featured {
    min-height: 0;
    grid-template-rows: 230px 1fr;
  }

  .service-body,
  .service-card-small {
    padding: 27px 25px;
  }

  .service-card-small {
    min-height: 245px;
  }

  .why-grid {
    gap: 40px;
  }

  .why-points article {
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding-block: 28px;
  }

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

  .process-grid li,
  .process-grid li:nth-child(2) {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid svg {
    margin-top: 25px;
  }

  .reviews-head {
    grid-template-columns: 1fr;
  }

  .rating-summary {
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .review-grid blockquote {
    min-height: 245px;
  }

  .estimate-grid,
  .faq-grid {
    gap: 42px;
  }

  .direct-contact {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    margin-inline: -6px;
    padding: 25px 20px;
    border-radius: 18px;
  }

  .form-heading {
    align-items: start;
    flex-direction: column;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-preference {
    align-items: flex-start;
  }

  .contact-preference legend {
    float: none;
    width: 100%;
  }

  .final-cta {
    padding-block: 60px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .final-cta img {
    width: 100px;
    height: 100px;
    margin-inline: auto;
  }

  .final-actions {
    align-items: stretch;
    grid-column: auto;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }

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

  .footer-contact {
    padding-top: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    grid-template-columns: 0.92fr 1.08fr;
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 11, 8, 0.96);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 7px;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 850;
  }

  .mobile-cta a:last-child {
    color: var(--night);
    background: var(--green);
  }

  .mobile-cta svg {
    width: 18px;
    height: 18px;
    fill: var(--green);
  }
}

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

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

  .js [data-reveal] {
    transform: none;
    opacity: 1;
  }
}

.legal-page,
.status-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 0%, rgba(120, 212, 71, 0.12), transparent 30%),
    var(--sand);
}

.simple-header {
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.simple-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.simple-header > .shell > a:last-child {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.legal-content,
.status-content {
  width: min(calc(100% - 32px), 800px);
  margin-inline: auto;
  padding-block: 80px;
}

.legal-content h1,
.status-content h1 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-card,
.status-card {
  margin-top: 32px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li,
.status-content > p,
.status-card p {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.legal-card a,
.status-card a:not(.button) {
  color: var(--green-deep);
  font-weight: 750;
  text-decoration: underline;
}

.status-card svg {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  fill: var(--green-deep);
}

.status-card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

@media (max-width: 680px) {
  .legal-content,
  .status-content {
    padding-block: 55px;
  }

  .legal-card,
  .status-card {
    padding: 25px 20px;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .mobile-cta,
  .hero-actions,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  body,
  .hero,
  .why-section,
  .reviews-section {
    color: #000;
    background: #fff;
  }
}
