:root {
  --ink: #14211c;
  --body: #53615a;
  --muted: #f4f1e9;
  --paper: #ffffff;
  --line: #e0ded4;
  --green: #123c2f;
  --green-2: #1f5b46;
  --gold: #d6aa45;
  --cream: #fbfaf5;
  --shadow: 0 18px 44px rgba(20, 33, 28, 0.13);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.topbar {
  background: var(--green);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(20, 33, 28, 0.08);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.15;
  text-decoration: none;
}

.brand-logo-mark {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-2);
}

.nav-call {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(18, 60, 47, 0.18);
}

.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 24, 20, 0.88), rgba(14, 24, 20, 0.64), rgba(14, 24, 20, 0.44)),
    url("assets/mockup-finished-encapsulation.png") center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -110px auto;
  width: min(520px, 44vw);
  aspect-ratio: 1.8;
  background: url("assets/landmark-capitol-outline.svg") center / contain no-repeat;
  opacity: 0.16;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 420px;
  align-items: center;
  gap: 46px;
}

.hero-copy,
.hero-form {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: 1px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.85rem, 5.6vw, 5rem);
  font-weight: 950;
}

.hero-lead {
  max-width: 710px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.07rem;
  font-weight: 650;
}

.hero-points {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.hero-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 850;
}

.hero-points span::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.38);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 24px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 60, 47, 0.23);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover,
.nav-call:hover {
  background: var(--green-2);
}

.btn.secondary {
  background: #fff;
  color: var(--green);
}

.hero-form,
.form {
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-form {
  padding: 28px;
}

.hero-form h2 {
  font-size: 1.55rem;
}

.hero-form p {
  margin: 8px 0 20px;
  color: var(--body);
  font-weight: 750;
  line-height: 1.45;
}

label {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfd8cf;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

input {
  min-height: 42px;
  padding: 0 12px;
}

textarea {
  min-height: 82px;
  padding: 11px 12px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(31, 91, 70, 0.14);
}

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

.hero-form > label,
.form > label {
  margin-bottom: 14px;
}

.quick-proof {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quick-proof-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-proof div {
  padding: 24px;
  background: var(--paper);
}

.quick-proof strong,
.quick-proof span {
  display: block;
}

.quick-proof strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.quick-proof span {
  margin-top: 6px;
  font-size: 0.94rem;
}

.section {
  padding: 84px 0;
}

.intro-section,
.faq-section {
  background: var(--cream);
}

.service-section,
.proof-section,
.contact-section {
  background: var(--paper);
}

.process-section,
.area-section {
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

.area-section::before {
  content: "";
  position: absolute;
  inset: auto auto 28px -100px;
  width: min(680px, 58vw);
  aspect-ratio: 2.8;
  background: url("assets/landmark-kanawha-river-outline.svg") center / contain no-repeat;
  opacity: 0.32;
  pointer-events: none;
}

.area-section > .section-inner {
  position: relative;
  z-index: 1;
}

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

.section-heading.narrow {
  max-width: 760px;
}

.section h2 {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 950;
}

.section-lead {
  margin: 18px 0 0;
  color: var(--body);
  font-size: 1.08rem;
  font-weight: 700;
}

.section p {
  margin: 0 0 17px;
}

.section p:last-child {
  margin-bottom: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: stretch;
}

.feature-image,
.result-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image img,
.result-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: 8px 0;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 33, 28, 0.07);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-inline: 22px;
}

.service-card h3 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 950;
}

.service-card p {
  margin-top: 10px;
  padding-bottom: 24px;
}

.service-card.compact {
  padding: 26px;
}

.service-card.compact h3,
.service-card.compact p {
  padding: 0;
}

.service-card.compact h3 {
  margin-top: 0;
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

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

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 33, 28, 0.06);
}

.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
}

.step h3 {
  margin-top: 16px;
  font-size: 1.13rem;
  font-weight: 950;
}

.step p {
  margin-top: 10px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.proof-item {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--cream);
}

.proof-item::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.2;
}

.proof-item span {
  display: block;
  margin-top: 10px;
}

.result-section {
  background: var(--green);
}

.result-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.result-image {
  border-radius: 0;
  box-shadow: none;
}

.result-copy {
  padding: 48px;
}

.area-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 28px;
}

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

.city-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(20, 33, 28, 0.04);
}

.city-grid a:hover {
  border-color: var(--green-2);
  color: var(--green-2);
}

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

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 33, 28, 0.04);
}

.faq h3 {
  font-size: 1.08rem;
  font-weight: 950;
}

.faq p {
  margin-top: 9px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.contact-card {
  border-radius: var(--radius);
  padding: 38px;
  background:
    linear-gradient(rgba(18, 60, 47, 0.92), rgba(18, 60, 47, 0.92)),
    url("assets/mockup-dehumidifier-ready.png") center / cover no-repeat;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card h2,
.contact-card a {
  color: #fff;
}

.form {
  padding: 32px;
}

.site-footer {
  background: #101a16;
  color: rgba(255, 255, 255, 0.84);
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  align-items: center;
}

.site-footer a {
  color: #fff;
}

.breadcrumbs {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.hero-panel {
  border-radius: var(--radius);
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: 1.55rem;
}

.hero-panel p {
  color: var(--body);
  font-weight: 700;
}

.metric-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--cream);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--green);
  font-size: 1.18rem;
  line-height: 1.15;
}

.metric span {
  margin-top: 5px;
  color: var(--body);
  font-size: 0.92rem;
}

.band {
  padding: 84px 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: start;
}

.section-visual {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.section-visual img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.section-visual figcaption {
  margin: 0;
  padding: 14px 16px;
  background: #fff;
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  color: var(--body);
  box-shadow: 0 12px 28px rgba(20, 33, 28, 0.07);
}

.card h3 {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 950;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--green-2);
}

.card p {
  margin-top: 10px;
}

.icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps .step {
  position: relative;
}

.steps .step::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.steps .step > div {
  padding-left: 28px;
}

.entity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.entity-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 850;
}

.legal-content {
  max-width: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 33, 28, 0.06);
}

.legal-content h2 {
  margin-top: 30px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.subpage .hero h1 {
  font-size: clamp(2.65rem, 5.3vw, 4.8rem);
}

.subpage .hero-inner {
  min-height: 560px;
}

@media (max-width: 980px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .nav-inner {
    min-height: auto;
    padding: 15px 0;
    flex-wrap: wrap;
  }

  .brand-logo-mark {
    width: 58px;
    height: 58px;
  }

  .nav-call {
    margin-left: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .feature-row,
  .process-head,
  .result-card,
  .area-intro,
  .contact-wrap,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    gap: 36px;
    padding: 58px 0;
  }

  .service-grid,
  .process-grid,
  .proof-strip,
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-copy {
    padding: 36px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 4px;
  }

  .nav-links,
  .nav-call {
    display: none;
  }

  .brand {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.6rem;
    overflow-wrap: normal;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-form,
  .form,
  .contact-card {
    padding: 24px;
  }

  .form-row,
  .quick-proof-inner,
  .service-grid,
  .process-grid,
  .proof-strip,
  .city-grid,
  .faq-list,
  .grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 2.15rem;
  }

  .section-heading,
  .process-head,
  .area-intro {
    margin-bottom: 24px;
  }

  .feature-image img,
  .result-image img {
    min-height: 280px;
  }

  .service-card.compact,
  .step,
  .proof-item,
  .faq,
  .card,
  .legal-content {
    padding: 22px;
  }

  .result-copy {
    padding: 28px;
  }
}
