:root {
  --sand: #f6f0e5;
  --cream: #fcfaf6;
  --navy: #102a43;
  --navy-deep: #0a1d2e;
  --sage: #75846f;
  --sage-light: #e7ebe3;
  --copper: #b46d49;
  --stone: #d8c9b6;
  --ink: #27343c;
  --muted: #667078;
  --white: #fff;
  --border: rgba(16, 42, 67, .14);
  --shadow: 0 24px 65px rgba(16, 42, 67, .12);
  --radius: 3px;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(16, 42, 67, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1380px, calc(100% - 48px));
  min-height: 112px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 235px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.site-nav a {
  position: relative;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}

.site-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-call {
  padding: 12px 18px;
  color: var(--white) !important;
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-call:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--sand);
  background-image:
    linear-gradient(90deg, #f8f2e8 0%, rgba(248, 242, 232, .98) 28%, rgba(248, 242, 232, .82) 43%, rgba(248, 242, 232, .16) 67%, rgba(248, 242, 232, 0) 100%),
    url("assets/hero-western-colorado.jpg");
  background-position: center, center;
  background-size: cover, cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  content: "";
  background: linear-gradient(0deg, rgba(246, 240, 229, .55), transparent);
}

.hero-inner {
  width: min(1328px, calc(100% - 64px));
  min-height: 730px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(630px, 52%);
  padding: 70px 0 86px;
  animation: hero-in .65s ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.service-area h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(58px, 5.4vw, 82px);
  line-height: .96;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #3f484e;
  font-size: 18px;
  line-height: 1.65;
}

.hero-rule {
  width: 102px;
  height: 3px;
  margin: 30px 0 24px;
  background: var(--copper);
}

.service-line {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.service-line span {
  margin-inline: 9px;
  color: var(--copper);
}

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

.button {
  min-height: 56px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 30px rgba(16, 42, 67, .17);
}

.button-primary:hover {
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: 0 14px 34px rgba(180, 109, 73, .2);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, .5);
  border-color: var(--navy);
}

.button-secondary:hover {
  background: var(--white);
}

.trust-row {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  min-height: 132px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.trust-grid span {
  color: var(--copper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.6;
}

.trust-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.03;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 355px;
  padding: 42px;
  background: var(--cream);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-number {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.service-card h3,
.process-card h3 {
  margin: 0 0 15px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}

.service-card p {
  max-width: 500px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a,
.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
}

.service-card a span,
.text-link span {
  margin-left: 5px;
  transition: margin-left .2s ease;
}

.service-card a:hover span,
.text-link:hover span {
  margin-left: 9px;
}

.about {
  color: var(--white);
  background: var(--navy-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 8vw, 118px);
  align-items: center;
}

.about-visual {
  min-height: 540px;
  padding: 28px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(16, 42, 67, .07), rgba(10, 29, 46, .77)),
    url("assets/hero-western-colorado.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, .14);
}

.about-frame {
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .34);
}

.about-frame p {
  margin: 0 0 12px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-frame strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.08;
}

.about-copy h2 {
  color: var(--white);
}

.about-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--copper);
}

.process {
  background: var(--sand);
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

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

.process-card {
  min-height: 280px;
  padding: 34px;
  background: rgba(255, 255, 255, .48);
  border-top: 3px solid var(--copper);
}

.process-card > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  border: 1px solid var(--stone);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.process-card h3 {
  font-size: 28px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-area {
  padding: 90px 0;
  color: var(--white);
  background: var(--sage);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.service-area h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.02;
}

.service-area p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .84);
}

.eyebrow-light {
  color: #f1d1bd;
}

.service-area .text-link {
  color: var(--white);
  border-bottom-color: #f1d1bd;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 8vw, 115px);
  align-items: start;
}

.contact-copy h2 {
  color: var(--navy);
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
  margin: 24px 0;
  color: var(--muted);
}

.contact-methods {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.contact-methods a {
  padding: 18px 0;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.contact-methods span {
  display: block;
  color: var(--copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--navy);
  font-size: 17px;
}

.contact-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

.form-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #cfc8bd;
  border-radius: 0;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
  border-color: var(--sage);
}

.consent {
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-help {
  margin: -7px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 13px;
}

.form-status.success {
  display: block;
  color: #244128;
  background: #e9f3e8;
  border: 1px solid #b8d0b7;
}

.form-status.error {
  display: block;
  color: #7c2525;
  background: #f8e9e6;
  border: 1px solid #e1bcb4;
}

.final-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--navy);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(38px, 4vw, 54px);
}

.button-light {
  min-width: 210px;
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--copper);
}

.site-footer {
  padding: 70px 0 22px;
  color: rgba(255, 255, 255, .68);
  background: #071521;
}

.footer-grid {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.6fr .8fr .6fr;
  gap: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-brand {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.footer-grid p {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
}

.footer-label {
  margin-bottom: 14px !important;
  color: var(--stone);
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-grid a {
  margin: 4px 0;
  font-size: 12px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  text-decoration: none;
}

.mobile-call-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 90px;
  }

  .header-inner {
    width: min(100% - 32px, 1320px);
    min-height: 88px;
  }

  .brand img {
    width: 182px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 88px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 38px 24px 110px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 4px;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-call {
    margin-top: 24px;
    padding: 17px 20px !important;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero {
    background-image:
      linear-gradient(90deg, #f8f2e8 0%, rgba(248, 242, 232, .94) 44%, rgba(248, 242, 232, .54) 78%, rgba(248, 242, 232, .2) 100%),
      url("assets/hero-western-colorado.jpg");
    background-position: center, 60% center;
  }

  .hero-copy {
    width: 69%;
  }

  .trust-grid > div {
    padding: 26px 20px;
    grid-template-columns: 34px 1fr;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 430px;
  }

  .process-card {
    padding: 26px;
  }

  .service-area-grid {
    gap: 55px;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  body {
    padding-bottom: 62px;
  }

  .hero {
    min-height: 720px;
    background-image:
      linear-gradient(180deg, rgba(248, 242, 232, .88) 0%, rgba(248, 242, 232, .74) 48%, rgba(248, 242, 232, .18) 78%, rgba(248, 242, 232, .05) 100%),
      url("assets/hero-western-colorado.jpg");
    background-position: center, 68% center;
  }

  .hero-inner {
    width: min(100% - 32px, 1328px);
    min-height: 720px;
    align-items: start;
  }

  .hero-copy {
    width: 100%;
    padding: 70px 0 175px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(50px, 14.5vw, 68px);
  }

  .hero-lead {
    max-width: 520px;
    font-size: 15px;
  }

  .hero-rule {
    margin: 24px 0 19px;
  }

  .service-line {
    max-width: 420px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:last-child {
    min-height: auto;
    padding: 22px 8px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .section {
    padding: 72px 0;
  }

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

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .service-area h2 {
    font-size: 44px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
    padding: 30px;
  }

  .service-number {
    margin-bottom: 32px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-visual {
    min-height: 390px;
    padding: 20px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 15px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card > span {
    margin-bottom: 28px;
  }

  .service-area-grid {
    gap: 30px;
  }

  .contact-grid {
    gap: 48px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
    box-shadow: 0 -8px 25px rgba(7, 21, 33, .18);
  }

  .mobile-call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-call-bar a:last-child {
    color: var(--navy);
    background: var(--stone);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
