:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #55615c;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #d9d4c7;
  --green: #244c3b;
  --green-dark: #173428;
  --gold: #d99a2b;
  --gold-dark: #af7417;
  --shadow: 0 24px 60px rgba(35, 46, 40, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid rgba(23, 32, 29, 0.1);
  backdrop-filter: blur(14px);
}

.brand,
.phone-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand {
  gap: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.phone-link {
  min-height: 40px;
  padding: 0 15px;
  color: var(--green-dark);
  border: 1px solid rgba(36, 76, 59, 0.25);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(26px, 5vw, 72px);
  min-height: calc(100vh - 73px);
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 64px) clamp(26px, 4vw, 48px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(175, 116, 23, 0.24);
}

.button-primary:hover {
  background: #e1a642;
}

.button-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(36, 76, 59, 0.22);
}

.microcopy {
  color: #6a6559;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-image {
  min-height: min(590px, 68vh);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.22), rgba(247, 245, 239, 0)),
    url("assets/dump-truck-hero.png") center / cover;
  box-shadow: var(--shadow);
}

.split-section,
.plain-message,
.form-section,
.trust-section,
.final-cta {
  padding: clamp(56px, 9vw, 108px) clamp(18px, 5vw, 64px);
}

.split-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 5vw, 64px);
}

.check-grid,
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-grid p,
.trust-list p,
.option-list span {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 32, 29, 0.1);
  border-radius: var(--radius);
  color: #24302c;
  font-weight: 800;
  line-height: 1.35;
}

.check-grid p::before,
.trust-list p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: 1px;
}

.band {
  padding: 0 clamp(18px, 5vw, 64px);
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(44px, 7vw, 72px);
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
}

.band-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.option-list span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.plain-message {
  max-width: 1050px;
}

.plain-message p,
.trust-section p,
.form-copy p,
.thank-you-card p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #ffffff;
  scroll-margin-top: 96px;
}

.form-copy {
  position: sticky;
  top: 104px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card a,
.faster-service a {
  color: var(--green-dark);
  font-weight: 900;
}

form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: #2c3733;
  font-size: 0.93rem;
  font-weight: 900;
}

input,
select {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfc8ba;
  border-radius: 6px;
  font: inherit;
  font-size: 1rem;
}

input:focus,
select:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 154, 43, 0.46);
  outline-offset: 3px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.hidden {
  display: none;
}

.trust-section {
  background: #eee9dd;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.final-cta h2 {
  max-width: 870px;
  margin-bottom: 0;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(247, 245, 239, 0.9), rgba(247, 245, 239, 0.96)),
    url("assets/dump-truck-hero.png") center / cover;
}

.thank-you-shell {
  display: grid;
  min-height: calc(100vh - 73px);
  place-items: center;
  padding: clamp(34px, 6vw, 80px) 18px;
}

.thank-you-card {
  width: min(780px, 100%);
  padding: clamp(28px, 6vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 32, 29, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.faster-service {
  padding: 16px 0 8px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .band-inner,
  .form-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 420px;
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-link {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: 3.2rem;
  }

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

  .check-grid,
  .trust-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 300px;
  }

  .band-inner {
    padding: 28px 18px;
  }

  .form-section {
    scroll-margin-top: 150px;
  }
}
