@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #171914;
  --ink-soft: #3f433a;
  --bone: #f4f0e7;
  --paper: #fbf9f4;
  --moss: #263d35;
  --moss-light: #60786c;
  --ember: #b83a18;
  --ember-dark: #8f2812;
  --line: rgba(23, 25, 20, 0.2);
  --white-line: rgba(255, 255, 255, 0.25);
  --content: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: 65px;
  --section-header-gap: 48px;
  --eyebrow-heading-gap: 18px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a,
summary,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--paper);
  background: var(--moss);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--eyebrow-heading-gap);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--ember {
  color: var(--ember);
}

.eyebrow--light {
  color: #e9e7df;
}

.display,
h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(44px, 5.2vw, 74px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.5vw, 50px);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 46px);
}

p {
  margin: 0 0 20px;
}

.lede {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.button:hover {
  border-color: var(--ember);
  background: var(--ember);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translate(3px, -3px);
}

.button--light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.button--ghost {
  color: var(--ink);
  background: transparent;
}

.button--ghost:hover {
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  font-size: 19px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* Header */
.utility-bar {
  color: #f5f2e9;
  background: var(--moss);
  font-size: 14px;
}

.utility-bar__inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.utility-bar__service-area {
  max-width: 850px;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 244, 0.96);
}

.site-header__inner {
  display: grid;
  min-height: 90px;
  grid-template-columns: 235px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  max-width: 220px;
  align-items: center;
}

.brand img {
  height: 62px;
  filter: brightness(0.58) contrast(1.55) saturate(1.12);
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--ember);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  display: grid;
  gap: 1px;
  color: var(--ink);
  text-align: right;
  text-decoration: none;
}

.header-phone span {
  color: var(--moss-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 18px;
  font-weight: 600;
}

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  height: 110%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.72) contrast(1.06);
  will-change: transform;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 24, 20, 0.92) 0%, rgba(19, 24, 20, 0.72) 44%, rgba(19, 24, 20, 0.16) 76%),
    linear-gradient(0deg, rgba(19, 24, 20, 0.68) 0%, transparent 45%);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 780px) 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero__copy {
  animation: hero-enter 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  max-width: 840px;
}

.hero h1 em {
  color: #f5b79d;
  font-style: italic;
}

.hero .lede {
  max-width: 650px;
  color: #e4e3dc;
  font-size: 16px;
  line-height: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.proof-rail {
  color: var(--paper);
  background: var(--ember);
}

.proof-rail__inner {
  display: grid;
  min-height: 90px;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.proof-rail p {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px clamp(18px, 2.5vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.proof-rail p:first-child {
  padding-left: clamp(18px, 2.5vw, 36px);
}

.proof-rail p:last-child {
  padding-right: clamp(18px, 2.5vw, 36px);
  border-right: 0;
}

/* Sections */
.story,
.project-feature,
.risk-story,
.services,
.principles,
.standards,
.project-journal,
.contact-panel,
.faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding: var(--section-space) 0;
}

.story > .site-shell,
.project-feature > .site-shell,
.risk-story > .site-shell,
.services > .site-shell,
.principles > .site-shell,
.standards > .site-shell,
.project-journal > .site-shell,
.contact-panel > .site-shell,
.faq > .site-shell {
  position: relative;
  z-index: 1;
}

.story {
  background: var(--paper);
}

.story__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.story__aside {
  position: sticky;
  top: 32px;
}

.story__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-top: 0;
}

.story__image img {
  height: 100%;
  object-fit: cover;
}

.story__image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 12px;
  background: var(--ember);
  content: "";
}

.story__body {
  padding-top: 0;
}

.story__body h2 {
  max-width: 760px;
}

.story__body .lede {
  color: var(--ink);
}

.story__body p:not(.eyebrow):not(.lede) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 18px;
}

.story__emphasis,
.risk-story__emphasis {
  font-family: var(--serif);
  font-size: 27px !important;
  font-weight: 500;
  line-height: 1.2;
}

.origin-note {
  margin-top: 44px;
  padding: 30px 0 4px 30px;
  border-top: 1px solid var(--line);
  border-left: 8px solid var(--ember);
}

.origin-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.1;
}

.story__cta {
  margin-top: 32px;
}

.risk-story {
  background: var(--paper);
}

.risk-story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.risk-story__body .lede,
.risk-story__body > p {
  max-width: 700px;
}

.risk-story__body > p {
  color: var(--ink-soft);
  font-size: 18px;
}

.project-feature {
  background: var(--bone);
}

.project-feature__header {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: var(--section-header-gap);
}

.project-feature__header h2,
.project-feature__header > .lede {
  margin-bottom: 0;
}

.project-feature__header .lede {
  justify-self: end;
}

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

.project-feature__item {
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.project-feature__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  background: var(--moss);
}

.project-feature__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
}

.project-feature__media::before,
.project-card::before {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(19, 24, 20, 0.82);
  content: attr(data-view-label);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-feature__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-feature__item:hover img,
.project-feature__item:focus-visible img {
  transform: scale(1.035);
}

.project-feature__caption {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.project-feature__caption span {
  color: var(--ember);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.project-feature__caption strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.services {
  color: var(--paper);
  background: var(--moss);
}

.section-head {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: var(--section-header-gap);
}

.section-head h2,
.section-head p {
  margin-bottom: 0;
}

.service-section-heading {
  max-width: 850px;
  margin: var(--section-header-gap) 0 24px;
}

.service-section-heading h2 {
  margin-bottom: 0;
}

.section-head p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.specialty-services {
  margin: -10px 0 var(--section-header-gap);
  padding: 24px 0 28px;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.specialty-services__title {
  margin: 0 0 18px;
  color: #f5b79d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.specialty-services__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: specialty;
  list-style: none;
}

.specialty-services__list li {
  display: grid;
  min-height: 64px;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 20px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  counter-increment: specialty;
}

.specialty-services__list li::before {
  color: #a9b6ae;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  content: counter(specialty, decimal-leading-zero);
}

.specialty-services__list li:nth-child(3n + 1) {
  padding-left: 0;
}

.specialty-services__list li:nth-child(3n) {
  padding-right: 0;
  border-right: 0;
}

.specialty-services__list li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-disclosure {
  border-top: 1px solid var(--white-line);
}

.service-disclosure:last-child {
  border-bottom: 1px solid var(--white-line);
}

.service-disclosure summary {
  display: grid;
  min-height: 118px;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.service-disclosure summary::-webkit-details-marker {
  display: none;
}

.service-disclosure__number {
  color: #a9b6ae;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service-disclosure__title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.service-disclosure__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
}

.service-disclosure__toggle::before,
.service-disclosure__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--paper);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-disclosure__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-disclosure[open] .service-disclosure__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-disclosure__body {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  padding: 4px 0 40px;
}

.service-disclosure__content {
  max-width: 940px;
}

.service-disclosure__content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

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

.service-item {
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
}

.service-item h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.service-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.services__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 42px;
  margin-top: 44px;
}

.services__links .text-link {
  color: #f5b79d;
}

.principles {
  position: relative;
  overflow: hidden;
  background: var(--bone);
}

.principles::before {
  position: absolute;
  top: 0;
  right: -8vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(23, 25, 20, 0.08);
  border-radius: 50%;
  content: "";
}

.principles__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

.principles__intro {
  max-width: 470px;
}

.principles__intro .lede {
  font-size: 18px;
}

.principles__intro .button {
  margin-top: 18px;
}

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

.principle {
  display: grid;
  min-height: 112px;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.principle span {
  color: var(--ember);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.principle strong {
  font-family: var(--serif);
  font-size: clamp(31px, 3.5vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.standards {
  background: var(--paper);
}

.standards__header {
  max-width: 850px;
  margin-bottom: var(--section-header-gap);
}

.standards__header h2 {
  margin-bottom: 0;
}

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

.standard {
  min-height: 270px;
  padding: 26px 26px 28px;
  border-right: 1px solid var(--line);
}

.standard:first-child {
  padding-left: 0;
}

.standard:last-child {
  padding-right: 0;
  border-right: 0;
}

.standard__number {
  display: block;
  margin-bottom: 28px;
  color: var(--ember);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.standard__credential-image {
/*   position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  margin: 24px 0 0;
  border: 1px solid var(--line);
  background: #fff; */
}

.standard__credential-image img {
/*   position: absolute;
  top: 0;
  left: 0;
  height: auto;
  transform: translateY(-26.8%); */
}

.standard h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.standard p {
  color: var(--ink-soft);
  font-size: 15px;
}

.standards__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.standards__cta p {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-panel {
  color: var(--paper);
  background: var(--ember);
}

.contact-panel__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 10vw, 150px);
}

.contact-panel h2 {
  max-width: 620px;
}

.contact-panel .lede {
  color: rgba(255, 255, 255, 0.9);
}

.contact-panel__details {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-panel__details a {
  display: inline;
  width: auto;
  margin: 0;
  font-size: inherit;
  font-weight: 600;
  text-underline-offset: 5px;
}

.contact-panel__details p {
  margin: 0;
  font-size: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
  padding: clamp(28px, 4vw, 50px);
  color: var(--ink);
  background: var(--paper);
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  margin-top: 6px;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--moss);
  font-size: 15px;
  font-weight: 600;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq__intro {
  position: sticky;
  top: 32px;
  align-self: start;
}

.faq__intro .button {
  margin-top: 18px;
}

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

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  min-height: 90px;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--ember);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;
  padding: 0 54px 28px 0;
  color: var(--ink-soft);
  font-size: 16px;
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  height: 110%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.05);
  will-change: transform;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 20, 17, 0.93) 0%, rgba(16, 20, 17, 0.68) 48%, rgba(16, 20, 17, 0.16) 84%),
    linear-gradient(0deg, rgba(16, 20, 17, 0.6), transparent 58%);
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 680px;
  max-width: 840px;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 100px;
  padding-bottom: 74px;
  animation: hero-enter 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero .lede {
  color: #e4e3dc;
}

.page-intro {
  padding: clamp(88px, 10vw, 150px) 0;
}

.page-intro__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 150px);
}

.page-intro__copy p {
  max-width: 730px;
  color: var(--ink-soft);
  font-size: 18px;
}

.page-intro__copy .lede {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 27px);
}

.scope-section {
  padding: clamp(88px, 10vw, 145px) 0;
  color: var(--paper);
  background: var(--moss);
}

.scope-section__header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 68px;
}

.scope-section__header p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--white-line);
}

.scope-item {
  min-height: 255px;
  padding: 30px 30px 34px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.scope-item:nth-child(3n + 1) {
  padding-left: 0;
}

.scope-item:nth-child(3n) {
  padding-right: 0;
  border-right: 0;
}

.scope-item span {
  display: block;
  margin-bottom: 54px;
  color: #f5b79d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.scope-item h2,
.scope-item h3 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.scope-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.project-journal {
  background: var(--bone);
}

.project-journal__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: var(--section-header-gap);
}

.project-journal__header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.project-card {
  position: relative;
  width: 100%;
  min-height: 650px;
  padding: 0;
  border: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--moss);
  text-align: left;
  cursor: zoom-in;
}

.project-card--stack {
  min-height: 314px;
}

.project-stack {
  display: grid;
  gap: 22px;
}

.project-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 20, 17, 0.84), transparent 58%);
  content: "";
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card:focus-visible img {
  transform: scale(1.035);
}

.project-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
}

.project-card__caption span {
  display: block;
  margin-bottom: 6px;
  color: #f5b79d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-card__title {
  display: block;
  margin: 0;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.project-lightbox {
  width: min(96vw, 1560px);
  max-width: none;
  height: min(93vh, 980px);
  height: min(93dvh, 980px);
  max-height: none;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: #0c100d;
  overflow: hidden;
}

.project-lightbox::backdrop {
  background: rgba(9, 11, 9, 0.88);
  backdrop-filter: blur(7px);
}

.project-lightbox[open] {
  animation: lightbox-enter 220ms ease both;
}

.project-lightbox__figure {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.project-lightbox__image-wrap {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: clamp(14px, 2.5vw, 34px);
}

.project-lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-lightbox__caption {
  min-height: 68px;
  padding: 18px 84px 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #d9dbd4;
  font-size: 16px;
}

.project-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes lightbox-enter {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.process {
  padding: clamp(88px, 10vw, 145px) 0;
}

.process__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 150px);
}

.process__intro {
  position: sticky;
  top: 32px;
  align-self: start;
}

.process-step {
  display: grid;
  min-height: 154px;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step span {
  color: var(--ember);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.process-step p {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.feature-band {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.feature-band__media {
  position: absolute;
  inset: 0;
}

.feature-band__media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) brightness(0.68);
}

.feature-band__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 25, 21, 0.9), rgba(21, 25, 21, 0.22));
  content: "";
}

.feature-band__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 660px;
  max-width: 660px;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.feature-band__content p:not(.eyebrow) {
  color: #e2e2dc;
  font-size: 18px;
}

.feature-band__content .button {
  width: fit-content;
  margin-top: 18px;
}

/* Footer */
.site-footer {
  padding: 76px 0 34px;
  color: #e5e6df;
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.85fr;
  gap: clamp(40px, 8vw, 110px);
  padding-bottom: 62px;
}

.footer-brand {
  display: block;
  max-width: 700px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-footer__summary {
  max-width: 500px;
  color: #aeb1a9;
  font-size: 15px;
}

.footer-group h2 {
  margin-bottom: 22px;
  color: #9da39c;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-group a,
.footer-group p {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: #e5e6df;
  font-size: 15px;
  text-underline-offset: 5px;
}

.footer-group p a {
  display: inline;
  width: auto;
  margin: 0;
}

.site-footer__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #92978f;
  font-size: 14px;
}

.site-footer__bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .site-header__inner {
    grid-template-columns: 210px 1fr auto;
  }

  .site-nav {
    gap: 22px;
  }

  .header-phone span {
    display: none;
  }

  .standards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .standard,
  .standard:first-child,
  .standard:last-child {
    min-height: 260px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .standard:nth-child(2n) {
    border-right: 0;
  }

  .standard__number {
    margin-bottom: 44px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(42px, 10.5vw, 58px);
  }

  h2 {
    font-size: clamp(34px, 8.5vw, 48px);
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__inner p:last-child {
    display: none;
  }

  .utility-bar__service-area {
    max-width: none;
    padding: 8px 0;
    text-align: center;
  }

  .site-header__inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    max-width: 185px;
  }

  .brand img {
    height: 55px;
  }

  .menu-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 42px var(--gutter);
    color: var(--paper);
    background: var(--moss);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .admin-bar .site-nav {
    top: calc(118px + 32px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 22px 0;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

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

  .hero,
  .hero__content {
    min-height: 720px;
  }

  .hero__content {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .proof-rail__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-rail p,
  .proof-rail p:first-child,
  .proof-rail p:last-child {
    min-height: 74px;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .proof-rail p:nth-child(2n) {
    border-right: 0;
  }

  .story__grid,
  .project-feature__header,
  .risk-story__grid,
  .section-head,
  .principles__grid,
  .contact-panel__grid,
  .faq__grid,
  .page-intro__grid,
  .scope-section__header,
  .process__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .story__aside,
  .faq__intro,
  .process__intro {
    position: static;
  }

  .story__aside {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: end;
  }

  .story__image {
    margin: 0;
  }

  .story__body {
    padding-top: 0;
  }

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

  .specialty-services__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialty-services__list li,
  .specialty-services__list li:nth-child(3n + 1),
  .specialty-services__list li:nth-child(3n) {
    padding: 13px 18px;
    border-right: 1px solid var(--white-line);
    border-bottom: 1px solid var(--white-line);
  }

  .specialty-services__list li:nth-child(2n + 1) {
    padding-left: 0;
  }

  .specialty-services__list li:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }

  .specialty-services__list li:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--white-line);
  }

  .specialty-services__list li:last-child {
    border-bottom: 0;
  }

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

  .standard,
  .standard:first-child,
  .standard:last-child,
  .standard:nth-child(2n) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
  }

  .standard__number {
    margin-bottom: 26px;
  }

  .project-feature__grid {
    grid-template-columns: 1fr;
  }

  .project-feature__media {
    aspect-ratio: 16 / 10;
  }

  .project-feature__header .lede {
    justify-self: start;
  }

  .standards__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scope-item,
  .scope-item:nth-child(3n + 1),
  .scope-item:nth-child(3n) {
    padding: 26px;
    border-right: 1px solid var(--white-line);
  }

  .scope-item:nth-child(2n + 1) {
    padding-left: 0;
  }

  .scope-item:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }

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

  .project-card {
    min-height: 520px;
  }

  .project-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--stack {
    min-height: 330px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-nav {
    top: calc(118px + 46px);
  }
}

@media (max-width: 560px) {
  .utility-bar {
    font-size: 14px;
  }

  .utility-bar__inner p {
    text-align: center;
  }

  .specialty-services__list {
    grid-template-columns: 1fr;
  }

  .specialty-services__list li,
  .specialty-services__list li:nth-child(2n + 1),
  .specialty-services__list li:nth-child(2n),
  .specialty-services__list li:nth-child(3n + 1),
  .specialty-services__list li:nth-child(3n) {
    min-height: 54px;
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .specialty-services__list li:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero__content {
    min-height: 690px;
  }

  .hero__media::after {
    background: linear-gradient(90deg, rgba(19, 24, 20, 0.9), rgba(19, 24, 20, 0.35)),
      linear-gradient(0deg, rgba(19, 24, 20, 0.8), transparent 60%);
  }

  .hero__actions,
  .page-hero__content .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .page-hero__content .button {
    width: 100%;
  }

  .proof-rail__inner {
    grid-template-columns: 1fr;
  }

  .proof-rail p,
  .proof-rail p:first-child,
  .proof-rail p:last-child,
  .proof-rail p:nth-child(2n) {
    min-height: 62px;
    padding: 14px 0;
    border-right: 0;
  }

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

  .story__image {
    aspect-ratio: 16 / 11;
  }

  .service-disclosure summary {
    min-height: 112px;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
  }

  .service-disclosure__title {
    font-size: 28px;
  }

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

  .service-disclosure__body > div:first-child {
    display: none;
  }

  .principle {
    grid-template-columns: 42px 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .field--full,
  .form-status {
    grid-column: 1;
  }

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

  .scope-item,
  .scope-item:nth-child(3n + 1),
  .scope-item:nth-child(3n),
  .scope-item:nth-child(2n + 1),
  .scope-item:nth-child(2n) {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
  }

  .scope-item span {
    margin-bottom: 28px;
  }

  .project-journal__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card {
    min-height: 430px;
  }

  .project-stack {
    grid-template-columns: 1fr;
  }

  .project-card--stack {
    min-height: 320px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand-col {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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