:root {
  --black: #101413;
  --green: #1f5c45;
  --lime: #9bd079;
  --fog: #edf1ee;
  --white: #fff;
  --orange: #b94315;
  --line: #ccd4cf;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #1a2420;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.arvada-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.arvada-brand > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}
.arvada-brand strong {
  display: block;
  color: var(--black);
}
.arvada-brand small {
  display: block;
  text-transform: uppercase;
  color: #5d6c65;
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-top: 3px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.header-phone {
  background: var(--green);
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
}
.hero {
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    #101413f5 0,
    #101413dc 40%,
    #10141328 67%,
    transparent
  );
}
.hero-message {
  position: relative;
  z-index: 2;
  width: min(600px, 43%);
  margin-right: max(28px, calc((100% - 1180px) / 2));
  color: #fff;
}
.overline {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--lime);
}
.overline.green {
  color: var(--green);
}
.overline.light {
  color: #bfe5d3;
}
.hero h1 {
  font-size: clamp(45px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 14px 0 21px;
}
.hero-message > p:not(.overline) {
  font-size: 18px;
}
.call {
  display: inline-flex;
  flex-direction: column;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 4px;
  margin-top: 15px;
}
.call small {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
}
.call strong {
  font-size: 27px;
}
.reasons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.reasons span {
  padding: 7px 10px;
  border: 1px solid #ffffff77;
  font-size: 10px;
  text-transform: uppercase;
}
.risk-line {
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  background: #dceee5;
}
.risk-line p {
  margin: 0;
  font-size: 14px;
}
.risk-line a {
  background: var(--black);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 800;
}
.service-map {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 65px;
}
.copy-block {
  position: sticky;
  top: 125px;
  height: max-content;
}
.copy-block h2,
.evidence h2,
.section-title h2,
.faq h2 {
  font-size: clamp(36px, 4.8vw, 59px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--black);
  margin: 10px 0 17px;
}
.copy-block > p:not(.overline) {
  font-size: 17px;
}
.plain-link {
  font-weight: 900;
  color: var(--green);
}
.service-links {
  border-top: 1px solid var(--line);
}
.service-links > a {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.service-links > a > span {
  grid-row: 1/4;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--green);
  font-weight: 900;
}
.service-links h3 {
  font-size: 25px;
  margin: 0;
  color: var(--black);
}
.service-links p {
  margin: 8px 0;
}
.service-links b {
  color: var(--green);
  font-size: 12px;
}
.evidence {
  padding: 85px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: center;
  background: var(--black);
  color: #fff;
}
.evidence h2 {
  color: #fff;
}
.evidence > div > p:not(.overline) {
  font-size: 17px;
}
.evidence ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.evidence li {
  padding: 12px;
  border: 1px solid #ffffff2f;
  font-size: 13px;
}
.evidence li:before {
  content: "✓";
  color: var(--lime);
  margin-right: 7px;
}
.evidence figure {
  margin: 0;
  background: #fff;
  padding: 9px;
  border-radius: 4px;
}
.evidence figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.evidence figcaption {
  color: #56645e;
  padding: 9px 3px 0;
  font-size: 11px;
}
.process {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
}
.section-title {
  max-width: 700px;
  margin-bottom: 34px;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-row article {
  padding: 27px;
  border-right: 1px solid var(--line);
}
.process-row article:last-child {
  border: 0;
}
.process-row span {
  font-size: 11px;
  color: var(--green);
  font-weight: 900;
}
.process-row h3 {
  font-size: 23px;
  color: var(--black);
}
.question-strip {
  padding: 60px max(24px, calc((100% - 1180px) / 2));
  background: var(--fog);
  display: grid;
  grid-template-columns: 0.65fr 1.15fr auto;
  gap: 35px;
  align-items: center;
}
.question-strip h2 {
  font-size: 38px;
  color: var(--black);
  margin: 0;
}
.question-strip p {
  margin: 0;
}
.question-strip a {
  white-space: nowrap;
  background: var(--green);
  color: #fff;
  padding: 13px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 900;
}
.faq {
  padding: 90px max(24px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}
.faq details {
  padding: 18px 3px;
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-weight: 900;
  color: var(--black);
  cursor: pointer;
}
.close {
  text-align: center;
  padding: 75px 20px;
  background: var(--green);
  color: #fff;
}
.close p {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.close h2 {
  font-size: clamp(42px, 6vw, 70px);
  margin: 8px;
}
.close .call {
  background: var(--orange);
}
footer {
  padding: 45px max(24px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  background: #0b0f0e;
  color: #fff;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer a {
  text-decoration: none;
}
.footer-title {
  font-weight: 900;
}
.mobile-call {
  display: none;
}
.service-hero {
  padding: 75px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 55px;
  align-items: center;
  background: var(--black);
  color: #fff;
}
.service-hero h1 {
  font-size: clamp(43px, 5.5vw, 70px);
  line-height: 1;
  margin: 12px 0 20px;
}
.service-hero > div > p:not(.overline) {
  font-size: 18px;
}
.service-hero figure {
  margin: 0;
  background: #fff;
  padding: 9px;
  border-radius: 4px;
}
.service-hero figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-hero figcaption {
  color: #5c6963;
  font-size: 11px;
  padding: 9px 3px 0;
}
.service-body {
  padding: 80px max(24px, calc((100% - 1080px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
}
.service-body h2 {
  font-size: 37px;
  line-height: 1.05;
  color: var(--black);
  margin-top: 35px;
}
.signal-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.signal-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.side-call {
  height: max-content;
  padding: 25px;
  background: var(--fog);
  border-left: 4px solid var(--green);
}
.side-call h2 {
  margin-top: 4px;
}
.side-call ul {
  padding-left: 20px;
}
.side-call .call {
  width: 100%;
  align-items: center;
  text-align: center;
}
.related {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 35px;
}
.related a {
  color: var(--green);
  font-weight: 900;
}
@media (max-width: 850px) {
  body {
    padding-bottom: 68px;
  }
  header {
    height: 74px;
    padding: 0 14px;
  }
  .arvada-brand > span {
    width: 42px;
    height: 42px;
  }
  .arvada-brand strong {
    font-size: 14px;
  }
  .arvada-brand small {
    font-size: 8px;
  }
  nav > a:not(.header-phone) {
    display: none;
  }
  .header-phone {
    font-size: 11px;
    padding: 9px;
  }
  .hero {
    min-height: 700px;
    align-items: flex-end;
  }
  .hero > img {
    object-position: 32% center;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #101413fc 0,
      #101413e8 56%,
      #10141320 88%
    );
  }
  .hero-message {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-bottom: 42px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-message > p:not(.overline) {
    font-size: 16px;
  }
  .risk-line {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 7px;
  }
  .risk-line a {
    text-align: center;
  }
  .service-map,
  .evidence,
  .question-strip,
  .faq,
  .service-hero,
  .service-body {
    grid-template-columns: 1fr;
    padding: 65px 18px;
  }
  .copy-block {
    position: static;
  }
  .evidence,
  .faq,
  .service-hero,
  .service-body {
    gap: 38px;
  }
  .evidence ul {
    grid-template-columns: 1fr;
  }
  .process {
    padding: 65px 18px;
  }
  .process-row {
    grid-template-columns: 1fr;
  }
  .process-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .question-strip a {
    width: max-content;
  }
  .close {
    padding: 60px 18px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--orange);
    color: #fff;
    padding: 8px 12px;
  }
  .mobile-call a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .mobile-call span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
  }
  .mobile-call strong {
    font-size: 20px;
  }
}

/* Alpine editorial finish: crisp geometry and trail-marker details. */
body * {
  letter-spacing: 0;
}
body {
  background: #f8faf8;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 47px,
    #1f5c4507 48px
  );
}
main {
  overflow: hidden;
}
header {
  height: 94px;
  border-top: 5px solid var(--green);
  background: #ffffffed;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px #1014130b;
}
.arvada-brand > span {
  border-radius: 0;
  clip-path: polygon(50% 0, 100% 20%, 91% 82%, 50% 100%, 9% 82%, 0 20%);
  box-shadow: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}
.arvada-brand:hover > span {
  transform: translateY(-3px) rotate(3deg);
  background: var(--orange);
}
nav a:not(.header-phone) {
  padding-bottom: 7px;
  border-bottom: 2px solid transparent;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}
nav a:not(.header-phone):hover {
  color: var(--green);
  border-color: var(--lime);
}
.header-phone,
.call,
.risk-line a,
.question-strip a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.header-phone:hover,
.call:hover,
.risk-line a:hover,
.question-strip a:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--black);
}
.hero {
  min-height: 700px;
  isolation: isolate;
  border-bottom: 8px solid var(--lime);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 74px;
  background: #edf1ee;
  clip-path: polygon(
    0 100%,
    0 72%,
    8% 45%,
    15% 69%,
    24% 24%,
    35% 74%,
    45% 42%,
    55% 78%,
    66% 35%,
    78% 70%,
    88% 28%,
    100% 68%,
    100% 100%
  );
  pointer-events: none;
}
.hero-message {
  padding: 32px 0 88px 42px;
  border-left: 8px solid var(--lime);
}
.hero h1 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 5px 25px #0008;
}
.call {
  border-radius: 0;
  border: 1px solid #ffb08d;
  box-shadow: 7px 7px 0 #101413;
  min-width: 244px;
}
.reasons span {
  position: relative;
  border: 1px solid #cfe7c0;
  background: #10141399;
  padding-left: 22px;
}
.reasons span::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--lime);
  transform: translateY(-50%) rotate(45deg);
}
.risk-line {
  border-bottom: 1px solid #bad4c7;
  background-color: #dceee5;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    #1f5c4509 19px,
    #1f5c4509 20px
  );
}
.risk-line::before {
  content: "!";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  padding-top: 8px;
  font-weight: 900;
}
.copy-block h2,
.evidence h2,
.section-title h2,
.faq h2,
.service-body h2,
.side-call h2,
.close h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-wrap: balance;
}
.copy-block {
  border-top: 8px solid var(--green);
  padding-top: 24px;
}
.service-links {
  counter-reset: arvada-service;
  gap: 14px;
}
.service-links > a {
  counter-increment: arvada-service;
  position: relative;
  overflow: hidden;
  border: 1px solid #bfcac3;
  border-left: 8px solid var(--green);
  background: #fff;
  box-shadow: 8px 8px 0 #dbe6df;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.service-links > a::after {
  content: counter(arvada-service);
  position: absolute;
  right: 14px;
  top: 8px;
  color: #1f5c451b;
  font:
    900 48px/1 "Arial Black",
    Arial,
    sans-serif;
}
.service-links > a:hover {
  transform: translate(5px, -5px);
  box-shadow: 2px 13px 0 var(--lime);
  border-left-color: var(--orange);
}
.service-links > a > span {
  border-radius: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  padding-top: 6px;
}
.evidence {
  position: relative;
  border-top: 1px solid #cbd8d0;
  border-bottom: 1px solid #cbd8d0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 79px,
    #1f5c4508 80px
  );
}
.evidence figure,
.service-hero figure {
  position: relative;
  border-radius: 0;
  box-shadow:
    14px 14px 0 var(--lime),
    20px 20px 0 var(--black);
}
.evidence figure::before,
.service-hero figure::before {
  content: "ARVADA / CO";
  position: absolute;
  z-index: 2;
  left: -15px;
  top: -16px;
  padding: 7px 11px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}
.process {
  background: #fff;
}
.process-row {
  counter-reset: arvada-step;
  border: 1px solid #ccd4cf;
  box-shadow: 10px 10px 0 #edf1ee;
}
.process-row article {
  counter-increment: arvada-step;
  position: relative;
  padding-top: 50px;
}
.process-row article::before {
  content: "0" counter(arvada-step);
  position: absolute;
  top: 14px;
  left: 22px;
  color: var(--orange);
  font:
    900 26px/1 "Arial Black",
    Arial,
    sans-serif;
}
.question-strip {
  position: relative;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 24px,
    #ffffff0c 25px,
    #ffffff0c 27px
  );
}
.question-strip::after {
  content: "?";
  position: absolute;
  right: 4%;
  bottom: -38px;
  color: #ffffff0c;
  font:
    900 190px/1 "Arial Black",
    Arial,
    sans-serif;
}
.faq details {
  margin-bottom: 9px;
  border: 1px solid #ccd4cf;
  border-left: 5px solid var(--green);
  background: #fff;
  padding: 0 18px;
  box-shadow: 4px 4px 0 #e9efeb;
}
.faq summary {
  position: relative;
  padding-right: 32px;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}
.faq details[open] summary::after {
  content: "−";
}
.close {
  border-top: 8px solid var(--lime);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 49px,
    #ffffff0b 50px
  );
}
.service-hero {
  background-color: #eef2ef;
  color: var(--black);
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 39px,
    #1f5c4508 40px
  );
}
.service-hero .overline {
  color: var(--green);
}
.service-hero h1 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-wrap: balance;
}
.signal-list li {
  border-left: 4px solid var(--lime);
  background: #fff;
  box-shadow: 4px 4px 0 #edf1ee;
}
.side-call {
  border-radius: 0;
  border: 1px solid #aebdb4;
  border-top: 8px solid var(--green);
  box-shadow: 10px 10px 0 var(--lime);
}
.related a {
  border-bottom: 3px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}
.related a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-message {
    animation: arvada-in 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  @keyframes arvada-in {
    from {
      opacity: 0;
      transform: translateX(24px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@media (max-width: 850px) {
  header {
    height: 82px;
  }
  .hero {
    min-height: 680px;
  }
  .hero::before {
    height: 48px;
  }
  .hero-message {
    padding: 18px 0 68px 18px;
    border-left-width: 4px;
  }
  .risk-line::before {
    display: none;
  }
  .service-links > a,
  .process-row,
  .faq details,
  .side-call {
    box-shadow: 5px 5px 0 #dbe6df;
  }
  .evidence figure,
  .service-hero figure {
    box-shadow:
      7px 7px 0 var(--lime),
      11px 11px 0 var(--black);
  }
}
