:root {
  --green-950: #142b05;
  --green-900: #1e3b0b;
  --green-800: #294a13;
  --cream-50: #fbfaf6;
  --cream-100: #f3f0e8;
  --stone-100: #ebe8df;
  --stone-200: #d9d5cb;
  --stone-500: #817c72;
  --ink: #1c2119;
  --muted: #62675e;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 43, 5, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.hidden {
  display: none;
}

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

.section-pad {
  padding: 78px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 12px 16px;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(217, 213, 203, 0.72);
  backdrop-filter: blur(18px);
}

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

.brand__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand__name {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.brand__service {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  place-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--green-950);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--cream-50);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 72px 12px auto;
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 10px 12px;
  color: var(--green-950);
  font-size: 0.94rem;
}

.header-cta {
  display: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.32rem, 10vw, 4.8rem);
  max-width: 820px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.25;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 36px;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(243, 240, 232, 0.48)),
    var(--cream-50);
}

.hero__grid {
  display: grid;
  gap: 34px;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.trust-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.trust-list span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--green-900);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(41, 74, 19, 0.1);
}

.hero__actions {
  display: grid;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn--primary {
  background: var(--green-950);
  color: var(--cream-50);
}

.btn--primary:hover {
  background: var(--green-800);
}

.btn--secondary {
  background: transparent;
  color: var(--green-950);
  border-color: var(--stone-200);
}

.btn--secondary:hover {
  border-color: var(--green-900);
}

.btn--wide {
  width: 100%;
}

.hero__visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: min(270px, calc(100% - 28px));
  padding: 16px;
  background: rgba(251, 250, 246, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero__badge strong,
.hero__badge span {
  display: block;
}

.hero__badge strong {
  margin-bottom: 4px;
  color: var(--green-950);
}

.hero__badge span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.why__intro p:not(.eyebrow),
.quote__content p:not(.eyebrow) {
  color: var(--muted);
}

.process-grid,
.why-cards,
.before-after-grid,
.testimonial-row {
  display: grid;
  gap: 14px;
}

.process-card,
.why-card,
.testimonial-card,
.quote-form {
  background: var(--white);
  border: 1px solid rgba(217, 213, 203, 0.76);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 43, 5, 0.06);
}

.process-card {
  min-height: 204px;
  padding: 24px;
}

.process-card__num {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-card p,
.why-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.why {
  background: var(--cream-100);
}

.why__grid {
  display: grid;
  gap: 30px;
}

.why-card {
  padding: 24px;
}

.gallery {
  background: var(--green-950);
  color: var(--cream-50);
}

.gallery h2,
.gallery .eyebrow {
  color: var(--cream-50);
}

.gallery .section-heading p:not(.eyebrow) {
  color: rgba(251, 250, 246, 0.72);
}

.before-after {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: var(--radius);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison figure {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.comparison figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  background: rgba(20, 43, 5, 0.78);
  color: var(--cream-50);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonials {
  background: var(--cream-50);
}

.testimonial-row {
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-height: 196px;
  padding: 24px;
  scroll-snap-align: start;
}

.stars {
  margin-bottom: 18px;
  color: var(--green-800);
  font-size: 0.92rem;
}

.quote {
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
}

.quote__grid {
  display: grid;
  gap: 28px;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-strip a {
  color: var(--green-950);
  font-weight: 800;
}

.quote-form {
  padding: 20px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-950);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--green-800);
  box-shadow: 0 0 0 4px rgba(41, 74, 19, 0.1);
}

.checkbox-group {
  display: grid;
  gap: 10px;
  margin: 4px 0 18px;
}

.check-label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.check-label input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green-950);
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green-950);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  background: var(--cream-100);
  color: var(--green-950);
  border-top: 1px solid rgba(217, 213, 203, 0.76);
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(243, 240, 232, 0.78)),
    var(--cream-50);
}

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 16px;
}

.thank-you__card {
  width: min(100%, 720px);
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(217, 213, 203, 0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thank-you__card .brand {
  margin-bottom: 42px;
}

.thank-you__card h1 {
  font-size: clamp(2.1rem, 9vw, 4.4rem);
}

.thank-you__card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.footer__grid {
  display: grid;
  gap: 24px;
}

.brand--footer .brand__name,
.brand--footer .brand__service {
  color: var(--green-950);
}

.footer__info {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.footer__info p {
  margin: 0;
}

.footer__info a:hover {
  color: var(--green-950);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

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

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

  .js .reveal,
  .btn,
  .site-nav,
  .nav-toggle span:not(.sr-only) {
    transition: none;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .hero__actions {
    grid-template-columns: max-content max-content;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }

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

@media (min-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    padding-inline: 28px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 8px 11px;
    color: var(--muted);
  }

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

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    color: var(--cream-50);
    background: var(--green-950);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .hero {
    padding-top: 56px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 48px;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 520px;
  }

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

  .why__grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: 56px;
  }

  .why__intro {
    position: sticky;
    top: 110px;
  }

  .why-cards {
    gap: 16px;
  }

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

  .testimonial-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: initial;
    overflow: visible;
    padding-bottom: 0;
  }

  .quote__grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .quote-form {
    padding: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer__info {
    text-align: right;
  }
}

@media (min-width: 1120px) {
  .section-pad {
    padding: 92px 0;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
  }

  .brand__name {
    font-size: 1.24rem;
  }
}

@media (max-width: 390px) {
  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__service {
    font-size: 0.6rem;
  }

  .btn {
    padding-inline: 16px;
  }
}
