:root {
  --ink: #13210d;
  --forest: #173611;
  --forest-2: #244f14;
  --moss: #4f7f18;
  --lime: #96bf20;
  --cream: #fff7c9;
  --paper: #f6f2dc;
  --panel: #fffbe8;
  --muted: #63705b;
  --gold: #f3c34c;
  --orange: #f2a54a;
  --line: rgba(19, 33, 13, 0.16);
  --shadow: 0 22px 70px rgba(19, 33, 13, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(246, 242, 220, 0.94), rgba(246, 242, 220, 1)),
    repeating-linear-gradient(135deg, rgba(150, 191, 32, 0.12) 0 1px, transparent 1px 18px);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(19, 33, 13, 0.92);
  border-bottom: 1px solid rgba(255, 247, 201, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(280px, 42vw);
  min-width: 172px;
  height: 62px;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 62px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: rgba(255, 247, 201, 0.84);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-call {
  display: inline-flex;
  justify-content: center;
  min-width: 112px;
  padding: 11px 16px;
  color: #16310f;
  font-weight: 800;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 247, 201, 0.22);
  border-radius: 8px;
  background: rgba(255, 247, 201, 0.96);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
}

.mobile-nav {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 19;
  display: none;
  padding: 12px 18px 18px;
  background: rgba(19, 33, 13, 0.98);
  border-bottom: 1px solid rgba(255, 247, 201, 0.16);
}

.mobile-nav a {
  display: block;
  padding: 13px 4px;
  color: var(--cream);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 33, 13, 0.98) 0%, rgba(23, 54, 17, 0.89) 42%, rgba(23, 54, 17, 0.34) 72%),
    repeating-linear-gradient(115deg, rgba(150, 191, 32, 0.13) 0 2px, transparent 2px 34px),
    linear-gradient(0deg, rgba(19, 33, 13, 0.36), transparent 44%);
}

.hero-content {
  position: relative;
  width: min(690px, calc(100% - 36px));
  margin: 112px 0 42px clamp(18px, 7vw, 92px);
  color: var(--cream);
}

.hero-logo {
  display: block;
  width: min(430px, 88vw);
  height: auto;
  margin: 0 0 24px -10px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.36));
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(2.85rem, 7.4vw, 6.6rem);
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

h2 {
  margin-bottom: 19px;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.04rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 251, 232, 0.88);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #16310f;
  background: linear-gradient(180deg, var(--gold), var(--orange));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.button.secondary {
  color: var(--cream);
  background: rgba(255, 247, 201, 0.1);
  border: 1px solid rgba(255, 247, 201, 0.34);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 9px 12px;
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 800;
  border: 1px solid rgba(255, 247, 201, 0.22);
  border-radius: 8px;
  background: rgba(19, 33, 13, 0.58);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #274d13;
}

.trust-band div {
  min-height: 124px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, #fff9d8, #f7edb9);
  border-top: 5px solid var(--lime);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 1.2rem;
}

.trust-band span {
  color: var(--muted);
}

.section,
.quote-section {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.split > div:first-child p:last-child {
  max-width: 520px;
  font-size: 1.06rem;
}

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

.section-cta {
  grid-column: 2;
  display: flex;
  justify-content: flex-start;
  margin-top: -42px;
}

.service-card,
.steps article {
  padding: 25px;
  background: var(--panel);
  border: 2px solid rgba(79, 127, 24, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(19, 33, 13, 0.08);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--moss);
  font-weight: 900;
}

.warning-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(19, 33, 13, 0.96), rgba(36, 79, 20, 0.96)),
    repeating-linear-gradient(45deg, rgba(150, 191, 32, 0.16) 0 1px, transparent 1px 18px);
}

.warning-section .eyebrow {
  color: var(--gold);
}

.warning-section h2,
.warning-section p {
  color: white;
}

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

.warning-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.warning-list div {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 13px;
  padding: 18px;
  color: var(--cream);
  font-weight: 800;
  border: 1px solid rgba(255, 247, 201, 0.18);
  border-radius: 8px;
  background: rgba(255, 247, 201, 0.08);
}

.warning-list span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
}

.process {
  background:
    linear-gradient(180deg, #fffbe8, #f7edc6),
    repeating-linear-gradient(135deg, rgba(150, 191, 32, 0.12) 0 1px, transparent 1px 18px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: white;
  font-weight: 900;
  border-radius: 50%;
  background: var(--moss);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  background: linear-gradient(180deg, #244f14, #173611);
}

.quote-copy {
  max-width: 560px;
  color: var(--cream);
}

.quote-copy h2 {
  color: var(--cream);
}

.quote-copy p {
  color: rgba(255, 251, 232, 0.78);
}

address {
  margin-top: 28px;
  color: var(--cream);
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
}

address a {
  color: var(--gold);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: #fffbe8;
  border: 2px solid rgba(255, 247, 201, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(19, 33, 13, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fffdf1;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(217, 162, 63, 0.28);
  border-color: var(--lime);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: #0e1c09;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: rgba(255, 247, 201, 0.72);
}

@media (max-width: 920px) {
  .nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(19, 33, 13, 0.96), rgba(23, 54, 17, 0.78)),
      repeating-linear-gradient(115deg, rgba(150, 191, 32, 0.12) 0 2px, transparent 2px 30px),
      linear-gradient(0deg, rgba(19, 33, 13, 0.36), transparent 55%);
  }

  .hero-content {
    margin-left: 18px;
  }

  .hero-logo {
    width: min(330px, 78vw);
    margin-bottom: 18px;
  }

  .trust-band,
  .split,
  .warning-list,
  .steps,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

  .section-cta {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 74px;
    padding: 8px 14px;
  }

  .brand {
    width: min(215px, 66vw);
    min-width: 0;
    height: 56px;
  }

  .brand-logo {
    max-height: 56px;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-top: 92px;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 0.98;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.24);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
