:root {
  --bg: #fbfaf7;
  --panel: #ffffff;
  --navy: #062a5f;
  --ink: #102447;
  --muted: #526174;
  --green: #497049;
  --line: #dcded9;
  --soft: #f3f0e9;
  --shadow: 0 14px 34px rgba(6, 42, 95, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px clamp(24px, 4vw, 50px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eef0ec;
}

.brand {
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  column-gap: 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand span:last-child::after {
  content: "Diligence";
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 38px;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-ridge {
  stroke: var(--navy);
}

.brand-water {
  stroke: var(--green);
  stroke-width: 2.5;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 34px);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a:hover { color: var(--green); }
.nav-button,
.nav-cta {
  min-height: 46px;
  padding: 14px 22px;
  border: 1px solid var(--navy);
  border-radius: 3px;
}

.nav-button.secondary {
  background: #fff;
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.25fr);
  min-height: 540px;
  padding: 70px clamp(24px, 4vw, 50px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255,255,255,0.92) 45%, rgba(255,255,255,0.22) 62%, rgba(255,255,255,0) 74%),
    url("https://swiftmedia.s3.amazonaws.com/mountain.swiftcom.com/images/sites/5/2024/06/01145906/Rockford-Ditch-looking-downstream-from-headgate-2048x1536.jpg") right center / auto 100% no-repeat,
    #eef2ec;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, .price-card h3, .bottom-cta h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: 0;
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.8vw, 44px);
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}

.hero-text {
  max-width: 475px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.button.secondary {
  background: #fff;
  color: var(--navy);
}
.button.full { width: 100%; }

.microcopy {
  position: relative;
  margin: 20px 0 0;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.microcopy::before {
  content: "◷";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--green);
  font-style: normal;
}

.hero-card {
  display: none;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px clamp(24px, 4vw, 50px);
}

.intro {
  display: none;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 22px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(16, 36, 71, 0.04);
  text-align: center;
}

.price-card.featured {
  border-color: var(--line);
}

.tag {
  display: inline-flex;
  justify-content: center;
  min-width: 92px;
  margin: 0 auto 18px;
  padding: 6px 10px;
  color: var(--green);
  background: #f0eee9;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 21px;
  font-weight: 800;
}

.description {
  min-height: 58px;
  color: var(--ink);
  font-size: 13px;
}

ul {
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  text-align: left;
}

li {
  position: relative;
  margin: 8px 0;
  padding-left: 22px;
  color: var(--ink);
  font-size: 13px;
}

li::before {
  content: "⊙";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: 42px;
  align-items: center;
  max-width: none;
  padding-top: 52px;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 0 0, rgba(73,112,73,0.09), transparent 34%),
    var(--bg);
}

.split > div:first-child {
  max-width: 430px;
  justify-self: end;
  padding-left: clamp(24px, 4vw, 50px);
}

.split > div:last-child {
  max-width: 760px;
  padding-right: clamp(24px, 4vw, 50px);
}

.split p {
  color: var(--ink);
  font-size: 16px;
}

.credential {
  padding-left: 20px;
  border-left: 2px solid var(--green);
  color: var(--muted) !important;
  font-size: 14px !important;
}

.proof-points {
  display: grid;
  gap: 0;
}

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

.proof-points > div {
  min-height: 150px;
  padding: 12px 22px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.proof-points h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
}

.proof-points p {
  color: var(--ink);
  font-size: 13px;
}

.line-icon {
  display: block;
  min-height: 42px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.audience-band {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 42px;
  align-items: center;
  padding: 32px clamp(24px, 6vw, 74px);
  background: #f0ede7;
}

.audience-band h2 {
  margin: 0;
  font-size: 27px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.audience-grid span {
  display: block;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.audience-grid p {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.process {
  padding-top: 32px;
  padding-bottom: 42px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: center;
}

.step {
  position: relative;
  padding: 26px 20px 0;
}

.step::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 1px;
  background: #94aa8f;
  z-index: -1;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-weight: 800;
}

.step h3 {
  font-family: var(--sans);
  font-size: 15px;
}

.step p {
  color: var(--ink);
  font-size: 13px;
}

.start {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 50px;
  padding-top: 52px;
  padding-bottom: 52px;
  background: #f0ede7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.start p {
  color: var(--ink);
  font-size: 17px;
}

.intake-form {
  display: grid;
  gap: 13px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
}

.address-autocomplete-wrap {
  position: relative;
  display: block;
}

.address-suggestions {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
  max-height: 220px;
  overflow-y: auto;
}

.address-suggestions li {
  padding: 10px 13px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
}

.address-suggestions li:hover,
.address-suggestions li.is-active {
  background: #f4f1eb;
}

.places-attribution {
  margin: 8px 0 0;
}

.places-powered-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.places-powered-link:hover {
  text-decoration: underline;
}

.address-autocomplete-status {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #8b4513;
  line-height: 1.45;
}

.address-autocomplete-status a {
  color: var(--navy);
  text-decoration: underline;
}

textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; }

.bottom-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(24px, 8vw, 118px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,42,95,0.86), rgba(6,42,95,0.5)),
    url("https://swiftmedia.s3.amazonaws.com/mountain.swiftcom.com/images/sites/5/2024/06/01145906/Rockford-Ditch-looking-downstream-from-headgate-2048x1536.jpg") center 72% / cover no-repeat;
}

.bottom-cta h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 31px;
}

.bottom-cta p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.bottom-cta .button.secondary {
  background: #fff;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(24px, 4vw, 50px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.about-hero {
  min-height: 430px;
  padding: 84px clamp(24px, 8vw, 118px);
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.94) 45%, rgba(255,255,255,0.45) 72%),
    url("https://swiftmedia.s3.amazonaws.com/mountain.swiftcom.com/images/sites/5/2024/06/01145906/Rockford-Ditch-looking-downstream-from-headgate-2048x1536.jpg") right center / auto 100% no-repeat,
    #eef2ec;
}

.about-hero > div {
  max-width: 690px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: stretch;
}

.about-panel,
.about-note,
.about-disclaimer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(16, 36, 71, 0.04);
}

.about-panel {
  padding: clamp(28px, 4vw, 48px);
}

.about-panel p,
.about-story p,
.about-disclaimer p,
.about-note p {
  color: var(--ink);
  font-size: 17px;
}

.about-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: #f0ede7;
}

.about-note h3 {
  font-family: var(--serif);
  font-size: 27px;
}

.about-story {
  padding-top: 38px;
}

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

.story-grid > div {
  min-height: 260px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.story-grid h3 {
  font-family: var(--serif);
  font-size: 24px;
}

.story-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--green);
  background: #f0ede7;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.about-disclaimer {
  margin-bottom: 62px;
  padding: clamp(28px, 4vw, 44px);
  background: #f0ede7;
}

.about-disclaimer p {
  max-width: 850px;
}

@media (max-width: 1040px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .outcome-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .audience-band { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .site-header { align-items: center; }
  .nav a:not(.nav-cta):not(.nav-button) { display: none; }
  .nav-button, .nav-cta { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.72)),
      url("https://swiftmedia.s3.amazonaws.com/mountain.swiftcom.com/images/sites/5/2024/06/01145906/Rockford-Ditch-looking-downstream-from-headgate-2048x1536.jpg") center / cover no-repeat;
  }
  .hero-copy { max-width: 620px; }
  .split, .start { grid-template-columns: 1fr; }
  .split > div:first-child,
  .split > div:last-child {
    max-width: none;
    padding-left: clamp(24px, 4vw, 50px);
    padding-right: clamp(24px, 4vw, 50px);
    justify-self: stretch;
  }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bottom-cta { align-items: flex-start; flex-direction: column; }
  .about-hero {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.76)),
      url("https://swiftmedia.s3.amazonaws.com/mountain.swiftcom.com/images/sites/5/2024/06/01145906/Rockford-Ditch-looking-downstream-from-headgate-2048x1536.jpg") center / cover no-repeat;
  }
  .about-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand {
    grid-template-columns: 42px auto;
    font-size: 21px;
  }
  .brand-mark { width: 42px; }
  .pricing-grid,
  .outcome-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .price-card { min-height: auto; }
  .proof-points > div { border-left: 0; border-top: 1px solid var(--line); }
  .footer { flex-direction: column; }
}
