:root {
  --clp-ink: #17211d;
  --clp-muted: #526159;
  --clp-line: #d9dfd8;
  --clp-bg: #fbfcf7;
  --clp-band: #eef4ec;
  --clp-accent: #2f6f5f;
  --clp-accent-strong: #214d42;
  --clp-warm: #b86f3b;
  --clp-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--clp-bg);
  color: var(--clp-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.clp-skip {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 10;
  background: var(--clp-ink);
  color: var(--clp-white);
  padding: .7rem 1rem;
}

.clp-skip:focus {
  left: 1rem;
}

.clp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--clp-line);
  background: rgba(251, 252, 247, .94);
  position: sticky;
  top: 0;
  z-index: 5;
}

.clp-brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
}

.clp-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .8rem 1rem;
  font-size: .95rem;
}

.clp-nav a {
  text-decoration: none;
  color: var(--clp-muted);
}

.clp-nav a:hover,
.clp-nav a:focus {
  color: var(--clp-accent-strong);
}

.clp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--clp-line);
}

.clp-eyebrow {
  margin: 0 0 .65rem;
  color: var(--clp-accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8rem, 5.2rem);
  line-height: .96;
}

h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

h3 {
  margin: 0 0 .5rem;
  font-size: 1.12rem;
}

.clp-lede {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--clp-muted);
  font-size: 1.25rem;
}

.clp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.8rem 0 0;
}

.clp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: .75rem 1rem;
  background: var(--clp-accent);
  color: var(--clp-white);
  border: 1px solid var(--clp-accent);
  text-decoration: none;
  font-weight: 800;
  border-radius: 6px;
}

.clp-button--quiet {
  background: transparent;
  color: var(--clp-accent-strong);
}

.clp-hero__visual {
  margin: 0;
  min-height: 430px;
  position: relative;
  border: 1px solid var(--clp-line);
  background:
    linear-gradient(90deg, rgba(23, 33, 29, .07) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(#f8faf3, #e8eee4);
  overflow: hidden;
}

.clp-hero__visual figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  max-width: 25rem;
  padding: .65rem .75rem;
  background: rgba(251, 252, 247, .92);
  border: 1px solid var(--clp-line);
  color: var(--clp-muted);
  font-size: .9rem;
}

.clp-surface {
  position: absolute;
  border: 1px solid rgba(23, 33, 29, .14);
  box-shadow: 0 18px 45px rgba(23, 33, 29, .12);
}

.clp-surface--wall {
  width: 62%;
  height: 58%;
  left: 12%;
  top: 11%;
  background: #f1f3ea;
}

.clp-surface--primer {
  width: 38%;
  height: 42%;
  right: 10%;
  top: 24%;
  background: #dce9e2;
}

.clp-tool {
  position: absolute;
  background: var(--clp-warm);
}

.clp-tool--roller {
  width: 42%;
  height: 16px;
  left: 28%;
  top: 56%;
  transform: rotate(-16deg);
}

.clp-tool--roller::before {
  content: "";
  position: absolute;
  width: 36%;
  height: 42px;
  left: -10%;
  top: -13px;
  background: #f6f2e8;
  border: 1px solid rgba(23, 33, 29, .16);
}

.clp-tool--knife {
  width: 34%;
  height: 10px;
  right: 13%;
  bottom: 24%;
  transform: rotate(20deg);
  background: #707a74;
}

.clp-section,
.clp-contact {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.clp-section--band {
  background: var(--clp-band);
}

.clp-section__heading {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

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

.clp-card {
  background: var(--clp-white);
  border: 1px solid var(--clp-line);
  border-radius: 6px;
  padding: 1.1rem;
}

.clp-card p,
.clp-steps p {
  color: var(--clp-muted);
  margin: 0;
}

.clp-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.clp-steps li {
  background: var(--clp-bg);
  border-left: 4px solid var(--clp-accent);
  padding: 1rem;
}

.clp-steps span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .8rem;
  background: var(--clp-accent);
  color: var(--clp-white);
  font-weight: 800;
}

.clp-steps strong {
  display: block;
  margin-bottom: .35rem;
}

.clp-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.clp-contact p {
  color: var(--clp-muted);
  max-width: 40rem;
}

.clp-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
  background: var(--clp-ink);
  color: var(--clp-white);
}

.clp-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .clp-header,
  .clp-contact,
  .clp-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .clp-nav {
    justify-content: flex-start;
  }

  .clp-hero,
  .clp-grid,
  .clp-steps {
    grid-template-columns: 1fr;
  }

  .clp-hero {
    min-height: auto;
  }

  .clp-hero__visual {
    min-height: 300px;
  }

  h1 {
    font-size: 3rem;
  }
}
