:root {
  --navy: #0f2418;
  --green: #2b8234;
  --green-deep: #1a4e1f;
  --lime: #53ff71;
  --ink: #f3f7f4;
  --muted: #c5d4c9;
  --white: #ffffff;
  --danger: #ffb4b4;
  --max: 72rem;
  --display: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: var(--lime); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.call-strip {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.65rem 1.25rem;
  background: #08150d;
  font-size: 0.9rem;
  color: var(--muted);
}
.call-strip a {
  color: var(--lime);
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    url("/images/project1/after1.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 21, 13, 0.35) 0%, rgba(8, 21, 13, 0.55) 42%, rgba(8, 21, 13, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 36, 24, 0.55), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  max-width: 40rem;
  animation: rise 0.9s ease both;
}

.brand {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lime);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.1rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--white);
}

.lede {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--lime);
  color: #06210c;
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn--block {
  width: 100%;
  border-radius: 14px;
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.proof p {
  margin: 0;
  padding: 1.1rem 1rem;
  background: #122a1b;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.proof strong { color: var(--white); display: block; }

.form-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(43, 130, 52, 0.28), transparent 60%),
    #0c1c13;
}

.form-wrap {
  max-width: 36rem;
  margin: 0 auto;
}

.form-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
}

.form-lede {
  color: var(--muted);
  margin: 0.6rem 0 1.5rem;
}
.form-lede a { font-weight: 700; }

.quote-form {
  display: grid;
  gap: 1rem;
}

.services {
  border: 0;
  margin: 0;
  padding: 0;
}
.services legend {
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
@media (min-width: 560px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

.service {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.service:has(input:checked) {
  border-color: var(--lime);
  background: rgba(83, 255, 113, 0.12);
}
.service input { accent-color: var(--green); }

.field {
  display: grid;
  gap: 0.35rem;
}
.field span {
  font-weight: 700;
  font-size: 0.92rem;
}
.field input,
.field textarea,
.captcha input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  padding: 0.85rem 0.95rem;
  font: inherit;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus,
.field textarea:focus,
.captcha input:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
}

.captcha {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.captcha__q { margin: 0; color: var(--muted); }

.fineprint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 22rem;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1.1fr; }
}
.split__copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: #102619;
  display: grid;
  align-content: center;
}
.split__copy h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 2rem;
}
.split__copy ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.65rem;
}
.split__copy li { padding-left: 0.25rem; }
.split__visual {
  min-height: 16rem;
  background:
    linear-gradient(180deg, rgba(8, 21, 13, 0.15), rgba(8, 21, 13, 0.45)),
    url("/images/project1/before1.jpg") left center / cover no-repeat,
    url("/images/project1/after2.jpg") right center / cover no-repeat;
  background-size: auto, 50% 100%, 50% 100%;
  background-position: center, left, right;
}

.site-foot {
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-foot p { margin: 0.35rem 0; }
.site-foot a { text-decoration: none; font-weight: 700; }

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .proof { grid-template-columns: 1fr; }
  .call-strip { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media { animation: none; }
  .hero__content { animation: none; }
  .btn { transition: none; }
}
