/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #f5f5f0;
  line-height: 1.4;
}

/* ===== TOKENS ===== */
:root {
  --green:  #76b82a;
  --green2: #4f8f1d;
  --green3: #88bd3f;
  --dark:   #0a0f09;
  --cream:  #f5f5ef;
}

/* ===== PAGE WRAPPER ===== */
.page {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 80px rgba(0,0,0,.6);
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, #020604, #091209);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  height: 100px;
}
.brand img { height: 62px; width: auto; display: block; }

.btn-green {
  background: linear-gradient(180deg, #89c63e 0%, #5d961f 100%);
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 2px 8px rgba(0,0,0,.3);
  transition: filter .15s;
}
.btn-green:hover { filter: brightness(1.08); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #0b120b;
}
#hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.48) 38%,
    rgba(0,0,0,.08) 65%,
    transparent 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding: 90px 0 80px 52px;
}
.hero-copy h1 {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(46px, 7vw, 76px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
}
.hero-eyebrow {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 10px 0 18px;
}
.hero-copy p {
  font-size: 20px;
  color: #e8e8e2;
  max-width: 360px;
}
.hero-copy .btn-green {
  margin-top: 28px;
  font-size: 17px;
  padding: 16px 32px;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: linear-gradient(135deg, #88bd3f, #65a324);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
.trust-item {
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-item:last-child { border-right: none; }
.trust-item img { width: 52px; height: 52px; }
.trust-item strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #0b0e08;
  line-height: 1.15;
}

/* ===== SERVICES ===== */
.services {
  background: #f0f0ea;
  padding: 52px 52px 60px;
  text-align: center;
  color: #0b0f0a;
}
.section-heading {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #0b0f0a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 44px;
}
.section-heading::before,
.section-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--green2);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 24px;
  align-items: start;
}
.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.service img { width: 72px; height: 72px; }
.service span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.15;
  color: #0a0e09;
}

/* ===== QUOTE FORM ===== */
.quote-section {
  background: #f0f0ea;
  padding: 0 12px 20px;
}
.quote-wrap {
  background: radial-gradient(ellipse at center, #0e2314 0%, #020806 70%);
  border-radius: 10px;
  padding: 36px 52px 44px;
  color: #fff;
}
.quote-wrap .section-heading {
  color: #fff;
  margin-bottom: 28px;
}
.quote-wrap .section-heading::before,
.quote-wrap .section-heading::after { display: none; }
.form-grid { display: grid; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: #f9f9f7;
  border: none;
  border-radius: 7px;
  padding: 15px 16px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 2px var(--green);
}
.services-fieldset {
  background: #f9f9f7;
  border: none;
  border-radius: 7px;
  padding: 18px 20px;
  color: #111;
}
.services-fieldset legend {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  padding: 0;
  float: left;
  width: 100%;
}
.services-fieldset legend small { font-weight: 400; color: #555; }
.checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  clear: both;
}
.checks-grid label {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.checks-grid input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--green2);
  cursor: pointer;
}
.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-submit {
  padding: 18px 60px;
  font-size: 22px;
  letter-spacing: .1em;
  border-radius: 8px;
}
.form-status {
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  min-height: 24px;
}
.form-status.success { color: #b8f07c; }
.form-status.error   { color: #ffb4a7; }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #020504, #061109);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 48px;
  color: #fff;
}
.footer-logo img { height: 56px; width: auto; display: block; }
.footer-location {
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .05em;
  text-align: center;
  border-left: 1px solid rgba(118,184,42,.5);
  border-right: 1px solid rgba(118,184,42,.5);
  padding: 0 24px;
  line-height: 1.5;
}
.footer-contact {
  font-size: 16px;
  line-height: 1.7;
  padding-left: 24px;
}
.footer-contact .got {
  font-family: Impact, "Arial Black", sans-serif;
  color: var(--green);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .05em;
}
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .site-header { padding: 16px 20px; height: auto; }
  .brand img { height: 48px; }
  .hero { min-height: 520px; }
  .hero-copy { padding: 60px 22px 60px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.35); }
  .trust-item:nth-child(even) { border-right: none; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-wrap { padding: 28px 20px 34px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; gap: 20px; }
  .footer-location { border-left: none; border-right: none; border-top: 1px solid rgba(118,184,42,.4); border-bottom: 1px solid rgba(118,184,42,.4); padding: 16px 0; }
  .footer-contact { padding-left: 0; text-align: center; }
  .footer-logo img { margin: 0 auto; }
}
@media (max-width: 520px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .checks-grid { grid-template-columns: 1fr; }
}
