:root {
  color-scheme: light;
  --ink: #192019;
  --muted: #526052;
  --line: #d8dfd4;
  --paper: #fbfcf7;
  --panel: #ffffff;
  --pine: #19432d;
  --leaf: #2f7d4c;
  --amber: #e4a11b;
  --wash: #edf3e7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 252, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--pine);
  font-size: 13px;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  min-height: 76vh;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(12, 38, 26, 0.92), rgba(27, 88, 56, 0.68)),
    url("water-well-pressure-tank.jpg");
  background-position: center 48%;
  background-size: cover;
  color: #fff;
}

.compact-hero {
  min-height: 48vh;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  font-size: clamp(19px, 2.2vw, 25px);
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--amber);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.disclosure {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.quick-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(7, 24, 13, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.quick-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.quick-card ul {
  margin: 0;
  padding-left: 20px;
}

.band,
.split,
.request-section,
.faq {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 6vw, 72px);
}

.muted {
  background: var(--wash);
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head h2,
.split h2,
.request-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

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

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--pine);
  background: #f4f7ef;
  font-size: 14px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

article,
.steps,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

article {
  padding: 20px;
}

article h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

article p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.steps {
  margin: 0;
  padding: 24px 24px 24px 46px;
}

.steps li + li {
  margin-top: 14px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  background: var(--pine);
  color: #fff;
}

.form-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.small {
  font-size: 14px !important;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

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

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600;
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--pine);
  font-weight: 800;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.copy-page {
  max-width: 980px;
  margin: 0 auto;
}

.copy-page h2 {
  margin: 28px 0 8px;
  font-size: 28px;
  line-height: 1.12;
}

.copy-page h2:first-child {
  margin-top: 0;
}

.copy-page p {
  color: var(--muted);
  font-size: 18px;
}

.resource-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 20px;
}

.site-footer {
  padding: 26px clamp(18px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #111811;
}

.site-footer p {
  max-width: 960px;
}

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

  .hero,
  .split,
  .request-section {
    grid-template-columns: 1fr;
  }

  .grid,
  .grid.three,
  .answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  nav {
    gap: 8px;
  }

  .grid,
  .grid.three,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }
}
