:root {
  color-scheme: light;
  --ink: #17211f;
  --ink-soft: #293431;
  --cream: #f2efe8;
  --paper: #faf9f6;
  --stone: #cbc7bd;
  --line: rgba(23, 33, 31, 0.18);
  --light-line: rgba(255, 255, 255, 0.22);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 104px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  color: #fff;
  border-bottom: 1px solid var(--light-line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.brand-descriptor { font-family: var(--sans); font-size: 0.7em; letter-spacing: 0.08em; line-height: 1.8; }
.brand-mark { width: 2rem; height: 2rem; }
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

nav { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.8rem); }
nav a, .header-contact {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
}
nav a { opacity: 0.8; transition: opacity 180ms ease; }
nav a:hover, nav a:focus-visible { opacity: 1; }

.header-contact {
  justify-self: end;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #1a2523;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  background-image: url("./hero-boulder.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 20, 19, 0.92) 0%, rgba(11, 20, 19, 0.71) 45%, rgba(11, 20, 19, 0.1) 78%),
    linear-gradient(0deg, rgba(11, 20, 19, 0.55) 0%, transparent 42%);
}

.hero-content {
  width: min(68rem, 100%);
  padding: 12rem clamp(1.25rem, 7vw, 8rem) clamp(6.5rem, 12vh, 9rem);
}

.eyebrow {
  margin: 0 0 1.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.eyebrow-dark { color: #5d6764; }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.7rem, 7.4vw, 7.8rem);
  line-height: 1.02;
}

h1 em, h2 em { font-weight: 400; }

.hero-intro {
  max-width: 39rem;
  margin-bottom: 2.1rem;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.hero-terms { margin: 1.5rem 0 0; color: rgba(255,255,255,0.78); font-size: 0.875rem; }
.hero-terms a { display: inline-block; text-underline-offset: 0.25em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button-light { color: #fff; }
.button-light:hover, .button-light:focus-visible { background: #fff; color: var(--ink); }

.text-link {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.text-link span { margin-left: 0.35rem; }
.text-link-light { color: rgba(255,255,255,0.8); }

.hero-reach {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2.1rem;
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.section-shell {
  width: min(100%, 94rem);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) clamp(1.25rem, 5vw, 5.5rem);
}

.section-number {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #79817f;
}

.intro {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 1.4fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  line-height: 1.06;
}

.intro-copy {
  max-width: 39rem;
  padding-top: 2.1rem;
  color: #515c59;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}
.intro-copy p:last-child { margin-bottom: 0; }

.services { border-top: 1px solid var(--line); }

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 2.5fr;
  gap: clamp(2rem, 5vw, 6rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.service-list { border-top: 1px solid var(--ink); }

.service-item {
  display: grid;
  grid-template-columns: 0.45fr 1fr 1.25fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: baseline;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-index { color: #7a827f; font-size: 0.78rem; }

.service-item h3,
.principles h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.service-item p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: #59625f;
}

.services-note {
  margin: 2.2rem 0 0 calc(18% + 0.5rem);
  color: #737b78;
  font-size: 0.88rem;
}

.reach {
  padding: 0 clamp(1rem, 2vw, 2rem);
  background: var(--paper);
}

.reach-inner {
  display: grid;
  grid-template-columns: 0.45fr 1.45fr 0.9fr;
  gap: clamp(2rem, 5vw, 6rem);
  max-width: 102rem;
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) clamp(1.25rem, 5vw, 5.5rem);
  color: #fff;
  background: var(--ink);
}

.section-number-light { color: rgba(255,255,255,0.48); }
.reach-copy { max-width: 49rem; }
.reach-copy h2 { margin-bottom: 2.4rem; }
.reach-copy > p:not(.eyebrow) { max-width: 39rem; color: rgba(255,255,255,0.67); }

.reach-list { align-self: end; border-top: 1px solid var(--light-line); }
.reach-list div { padding: 1.1rem 0; border-bottom: 1px solid var(--light-line); }
.reach-list span, .reach-list strong { display: block; }
.reach-list span { margin-bottom: 0.25rem; color: rgba(255,255,255,0.45); font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; }
.reach-list strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }

.approach { border-bottom: 1px solid var(--line); }

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 19rem;
  padding: 2rem clamp(1.2rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
}
.principles article:first-child { padding-left: 0; }
.principles article:last-child { border-right: 0; }
.principles h3 { margin-bottom: 1.5rem; }
.principles p { margin-bottom: 0; color: #5a6461; font-size: 0.95rem; }

.about {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 1.4fr;
  gap: clamp(2rem, 5vw, 6rem);
}
.about-copy { max-width: 37rem; padding-top: 2.1rem; color: #4e5956; }
.about-copy p:first-child { color: var(--ink); font-size: 1.18rem; }
.founder-signature { margin: 2rem 0 0; }
.founder-signature strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.founder-signature span { font-size: 0.875rem; }

.engagement { border-top: 1px solid var(--line); }
.engagement .section-heading { margin-bottom: 3rem; }
.engagement-details { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 6rem); }
.engagement-copy { max-width: 38rem; color: #4e5956; }
.engagement-copy p:last-child { margin-bottom: 0; }
.rate { border-left: 1px solid var(--line); padding-left: clamp(2rem, 4vw, 4rem); }
.rate-amount { font-family: var(--serif); font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1rem; }
.rate-amount span { font-size: 1.5rem; white-space: nowrap; }
.rate > p:not(.rate-amount) { color: #4e5956; margin-bottom: 0; }
.rate-link { display: inline-block; margin-top: 1.25rem; text-underline-offset: 0.25em; }

.contact {
  padding: clamp(6rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5.5rem);
  color: #fff;
  background: var(--ink-soft);
}

.contact-inner { width: min(64rem, 100%); margin: 0 auto; text-align: center; }
.contact h2 { margin-bottom: 1.5rem; }
.contact p:not(.eyebrow) { margin-bottom: 2.4rem; color: rgba(255,255,255,0.66); font-size: 1.08rem; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 4vw, 4.5rem);
  color: rgba(255,255,255,0.7);
  background: #101816;
}
footer p { margin: 0; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.brand-footer { color: #fff; }

.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; justify-self: end; }
.footer-meta p { margin: 0; }

.protected-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 180ms ease;
}
.protected-phone:hover, .protected-phone:focus-visible { opacity: 1; }
.protected-phone-icon { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }
.protected-phone[data-state="loading"] .protected-phone-icon,
.protected-phone[data-state="verifying"] .protected-phone-icon {
  animation: protected-phone-pulse 1.1s ease-in-out infinite;
}
.protected-phone.protected-phone-error { opacity: 1; color: #e7b7ac; }
.protected-phone-revealed { opacity: 1; cursor: default; }
.protected-phone-widget { display: inline-block; vertical-align: middle; }

.footer-meta .protected-phone { font-size: 0.68rem; letter-spacing: 0.1em; }

.contact .protected-phone {
  display: flex;
  width: fit-content;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.66);
}

@keyframes protected-phone-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .protected-phone[data-state="loading"] .protected-phone-icon,
  .protected-phone[data-state="verifying"] .protected-phone-icon { animation: none; }
}

:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero-content { width: 100%; padding-inline: clamp(1.25rem, 6vw, 4rem); }
  .intro, .about { grid-template-columns: 0.2fr 1fr; }
  .intro-copy, .about-copy { grid-column: 2; padding-top: 0; }
  .section-heading { grid-template-columns: 0.2fr 1fr; }
  .reach-inner { grid-template-columns: 0.2fr 1fr; }
  .reach-list { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
  .reach-list div { border-top: 1px solid var(--light-line); border-right: 1px solid var(--light-line); padding: 1rem; }
  .reach-list div:last-child { border-right: 0; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principles article:nth-child(2) { border-right: 0; }
  .principles article:first-child, .principles article:nth-child(2) { border-bottom: 1px solid var(--line); }
  .principles article:nth-child(3) { padding-left: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p:nth-child(2) { display: none; }
}

@media (max-width: 640px) {
  :root {
    --mobile-gutter: clamp(1.25rem, 5vw, 2rem);
    --mobile-section-space: 4rem;
  }

  /* Header and hero */
  .site-header { min-height: 84px; padding-inline: var(--mobile-gutter); gap: 1rem; }
  .brand { font-size: 0.96rem; }
  .brand-mark { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }
  .header-contact { font-size: 0.75rem; letter-spacing: 0.06em; }
  .hero { display: block; min-height: 0; }
  .hero-image { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(11,20,19,0.91), rgba(11,20,19,0.52)), linear-gradient(0deg, rgba(11,20,19,0.6), transparent 52%); }
  .hero-content { width: 100%; padding: 8.5rem var(--mobile-gutter) 2.5rem; }
  h1 { font-size: clamp(3rem, 13vw, 4.5rem); line-height: 1.02; margin-bottom: 1.5rem; }
  h2 { font-size: clamp(2.5rem, 10vw, 3.5rem); line-height: 1.06; }
  .eyebrow { margin-bottom: 1rem; }
  .hero-intro { margin-bottom: 1.5rem; }
  .hero-actions { gap: 1rem 1.5rem; }
  .hero-actions .text-link { display: inline-flex; align-items: center; min-height: 2.75rem; }
  .hero-reach { position: static; padding: 0 var(--mobile-gutter) 1.5rem; font-size: 0.75rem; letter-spacing: 0.04em; line-height: 1.8; }

  /* Consistent section rhythm and full-width reading columns */
  .section-shell, .reach-inner, .contact { padding: var(--mobile-section-space) var(--mobile-gutter); }
  .intro, .about, .section-heading, .reach-inner { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
  .intro-copy, .about-copy, .reach-list { grid-column: 1; }
  .section-heading, .engagement .section-heading { margin-bottom: 2rem; }
  .intro-copy p:last-child, .about-copy p:last-child, .reach-copy p:last-child { margin-bottom: 0; }
  .service-item { grid-template-columns: 1.5rem minmax(0, 1fr); gap: 0.875rem 0.75rem; padding: 1.75rem 0; }
  .service-index { margin-bottom: 0; }
  .service-item p:last-child { grid-column: 1 / -1; }
  .services-note { margin: 1.5rem 0 0; }
  .reach { padding: 0; }
  .reach-copy h2 { margin-bottom: 1.5rem; }
  .reach-list { display: block; margin-top: 0.75rem; }
  .reach-list div { border-top: 0; border-right: 0; padding: 1rem 0; }
  .principles { grid-template-columns: minmax(0, 1fr); }
  .principles article { min-height: 0; padding: 1.75rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles article:last-child { border-bottom: 0; }
  .principles h3 { margin-bottom: 0.875rem; }

  /* Rates, contact, and footer */
  .engagement-details { grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
  .rate { border-left: 0; border-top: 1px solid var(--line); padding: 1.75rem 0 0; }
  .contact p:not(.eyebrow) { margin-bottom: 1.75rem; }
  .contact .button { max-width: 100%; padding-inline: 0.75rem; font-size: 0.875rem; letter-spacing: 0.02em; text-transform: none; overflow-wrap: anywhere; }
  footer { display: flex; align-items: flex-start; flex-direction: column; gap: 1.5rem; padding: 2rem var(--mobile-gutter); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
