:root {
  --ink: #151713;
  --ink-soft: #343730;
  --muted: #656a61;
  --paper: #f7f8f3;
  --surface: #ffffff;
  --green: #58b62c;
  --green-dark: #286d31;
  --green-pale: #e4f4d7;
  --orange: #ff9d45;
  --sky: #c8edf8;
  --red: #f04f3d;
  --line: rgba(21, 23, 19, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(21, 23, 19, 0.12);
  --shell: 1240px;
  --radius: 8px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
summary,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 820;
  letter-spacing: 0;
}

h1 {
  font-size: 4.65rem;
  line-height: 0.98;
}

h2 {
  font-size: 3.25rem;
  line-height: 1.03;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

p {
  color: var(--ink-soft);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section-space {
  padding-block: 124px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-label::before {
  width: 28px;
  height: 3px;
  background: var(--green);
  content: "";
}

.section-label span {
  color: var(--muted);
  font-weight: 700;
}

.section-label.light {
  color: var(--orange);
}

.section-label.light::before {
  background: var(--orange);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #0f160c;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(40, 109, 49, 0.18);
}

.button-primary:hover {
  background: #68c53b;
  box-shadow: 0 16px 34px rgba(40, 109, 49, 0.25);
}

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

.button-light:hover {
  background: var(--sky);
}

.button-quiet {
  padding-inline: 4px;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.button-quiet span,
.text-link span {
  transition: transform 180ms ease;
}

.button-quiet:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.light-link {
  color: var(--surface);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 243, 0.94);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(21, 23, 19, 0.07);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 48px), 1400px);
  height: 100%;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 190px 1fr auto;
  gap: 34px;
}

.brand {
  display: flex;
  width: 176px;
  height: var(--header-height);
  align-items: center;
  overflow: visible;
}

.brand img {
  width: auto;
  height: min(72px, calc(var(--header-height) - 4px));
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 760;
}

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

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

.header-project-link {
  min-height: 42px;
  padding-inline: 19px;
}

.nav-project-link,
.nav-toggle {
  display: none;
}

.home-hero {
  overflow: hidden;
  background: var(--paper);
}

.home-hero-inner {
  display: grid;
  min-height: 650px;
  align-items: center;
  padding-block: 54px 46px;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 54px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.home-hero-copy h1 {
  max-width: 780px;
}

.hero-summary {
  max-width: 690px;
  margin-top: 28px;
  padding-left: 22px;
  border-left: 4px solid var(--green);
  font-size: 1.17rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.home-hero-art {
  position: relative;
  min-height: 550px;
  align-self: end;
}

.hero-color-field {
  position: absolute;
  inset: 28px 0 0 12%;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-color-field::before,
.hero-color-field::after {
  position: absolute;
  content: "";
}

.hero-color-field::before {
  top: 0;
  right: 12%;
  width: 34%;
  height: 100%;
  background: var(--green);
  transform: skewX(-14deg);
}

.hero-color-field::after {
  right: -8%;
  bottom: 0;
  width: 45%;
  height: 17%;
  background: var(--orange);
  transform: skewX(-16deg);
}

.hero-wordmark {
  position: absolute;
  top: 2%;
  right: 3%;
  color: rgba(255, 255, 255, 0.1);
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
}

.home-hero-art > img {
  position: absolute;
  z-index: 2;
  right: -1%;
  bottom: -8px;
  width: min(88%, 475px);
  max-height: 550px;
  object-fit: contain;
  object-position: bottom;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 24px;
  width: min(72%, 330px);
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: 0.93rem;
  line-height: 1.35;
}

.proof-rail {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.proof-rail-inner {
  display: grid;
  min-height: 104px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr) auto;
}

.proof-rail-inner > div {
  min-height: 54px;
  padding: 4px 28px;
  border-left: 1px solid var(--line);
}

.proof-rail-inner > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-rail strong,
.proof-rail span {
  display: block;
}

.proof-rail strong {
  font-size: 1rem;
}

.proof-rail span {
  color: var(--muted);
  font-size: 0.79rem;
}

.proof-rail a {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 820;
}

.split-heading {
  display: grid;
  align-items: end;
  margin-bottom: 64px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 72px;
}

.split-heading h2 {
  max-width: 760px;
}

.split-heading > p,
.split-heading > div:last-child > p {
  max-width: 560px;
  font-size: 1.08rem;
}

.split-heading .text-link {
  margin-top: 20px;
}

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

.service-line {
  display: grid;
  min-height: 132px;
  align-items: center;
  padding: 24px 10px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 68px minmax(190px, 0.75fr) minmax(300px, 1.25fr) 42px;
  gap: 24px;
  transition: padding 180ms ease, background-color 180ms ease;
}

.service-line:hover {
  padding-inline: 20px;
  background: var(--surface);
}

.service-number {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.service-line strong {
  font-size: 1.38rem;
}

.service-line > span:nth-child(3) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.service-line i {
  color: var(--green-dark);
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.service-line:hover i {
  transform: translateX(5px);
}

.capability-rail {
  overflow: hidden;
  padding-block: 17px;
  border-block: 1px solid rgba(21, 23, 19, 0.1);
  background: var(--sky);
}

.capability-track {
  display: flex;
  width: max-content;
  animation: capability-scroll 36s linear infinite;
}

.capability-track span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-right: 12px;
  padding-inline: 24px;
  border: 1px solid rgba(21, 23, 19, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 820;
  white-space: nowrap;
}

@keyframes capability-scroll {
  to { transform: translateX(-50%); }
}

.work-band {
  color: var(--surface);
  background: var(--ink);
}

.work-heading {
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 64px;
}

.work-heading h2,
.work-heading p,
.project-feature .project-copy p,
.project-feature .project-kicker,
.project-feature h3 {
  color: var(--surface);
}

.project-features {
  display: grid;
  gap: 0;
}

.project-feature {
  display: grid;
  align-items: center;
  padding-block: 84px;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 78px;
}

.project-feature:nth-child(even) .project-media {
  order: 2;
}

.project-media {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #2a2d27;
}

.project-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 10px;
  background: var(--green);
  content: "";
}

.accent-orange .project-media::after {
  background: var(--orange);
}

.accent-sky .project-media::after {
  background: var(--sky);
}

.project-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 500ms ease, opacity 300ms ease;
}

.project-media:hover img {
  opacity: 0.92;
  transform: scale(1.025);
}

.project-copy {
  max-width: 460px;
}

.project-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.project-kicker span {
  color: var(--orange);
}

.project-copy h3 {
  margin-bottom: 20px;
  font-size: 2.45rem;
}

.project-copy > p {
  margin-bottom: 26px;
  font-size: 1.02rem;
}

.project-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.project-service-list li {
  padding: 7px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
}

.project-copy .text-link {
  color: var(--surface);
}

.process-preview {
  background: var(--paper);
}

.process-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  min-height: 300px;
  padding: 34px 28px 20px;
  border-right: 1px solid var(--line);
}

.process-grid article:first-child {
  padding-left: 0;
}

.process-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 66px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.process-grid h3 {
  margin-bottom: 14px;
}

.process-grid p {
  font-size: 0.9rem;
}

.testimonial-band {
  padding-block: 112px;
  background: var(--sky);
}

.testimonial-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.7fr) minmax(400px, 1.3fr) 170px;
  gap: 70px;
}

.testimonial-intro h2 {
  font-size: 2.65rem;
}

.testimonial-intro > p:last-child {
  margin-top: 22px;
}

.featured-quote {
  padding-left: 42px;
  border-left: 5px solid var(--green);
}

.featured-quote > p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1.35;
}

.featured-quote footer {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}

.featured-quote footer span {
  color: var(--muted);
  font-size: 0.84rem;
}

.testimonial-stat {
  padding-top: 14px;
  border-top: 4px solid var(--orange);
}

.testimonial-stat strong,
.testimonial-stat span {
  display: block;
}

.testimonial-stat strong {
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.testimonial-stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.article-card-image {
  display: block;
  height: 230px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-pale);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.article-card-image:hover img {
  transform: scale(1.03);
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 760;
  text-transform: uppercase;
}

.article-meta span:first-child {
  color: var(--green-dark);
}

.article-card h3,
.article-card h2 {
  margin-top: 14px;
  font-size: 1.55rem;
}

.article-card h3 a,
.article-card h2 a {
  transition: color 180ms ease;
}

.article-card h3 a:hover,
.article-card h2 a:hover {
  color: var(--green-dark);
}

.article-card p {
  margin: 14px 0 22px;
  font-size: 0.9rem;
}

.article-card .text-link {
  margin-top: auto;
}

.home-contact,
.page-cta {
  display: grid;
  margin-bottom: 112px;
  padding: 70px 76px;
  border-radius: var(--radius);
  color: var(--surface);
  background: var(--green-dark);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 80px;
}

.home-contact h2,
.page-cta h2 {
  color: var(--surface);
}

.home-contact p,
.page-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.home-contact > div:last-child,
.page-cta > div:last-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.home-contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.home-contact-actions > a:last-child {
  font-weight: 800;
}

.site-footer {
  color: var(--surface);
  background: var(--ink);
}

.footer-callout {
  display: grid;
  align-items: center;
  padding-block: 84px;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-callout h2 {
  max-width: 800px;
  color: var(--surface);
}

.footer-main {
  display: grid;
  padding-block: 78px;
  grid-template-columns: minmax(270px, 0.8fr) minmax(500px, 1.2fr);
  gap: 100px;
}

.footer-brand > a:first-child {
  display: block;
  width: 210px;
  height: 98px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.footer-brand img {
  width: 210px;
  height: auto;
}

.footer-brand p {
  max-width: 380px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-email,
.footer-phone {
  display: block;
  width: fit-content;
  font-size: 0.92rem;
  font-weight: 750;
}

.footer-email:hover,
.footer-phone:hover,
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-links {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.7fr;
  gap: 52px;
}

.footer-links h2 {
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero-inner {
  display: grid;
  min-height: 600px;
  align-items: center;
  padding-block: 72px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 84px;
}

.page-hero-copy h1 {
  max-width: 760px;
  font-size: 4.2rem;
}

.page-hero-copy > p:last-of-type {
  max-width: 670px;
  margin-top: 26px;
  font-size: 1.12rem;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.page-hero-media {
  position: relative;
  min-height: 420px;
}

.page-hero-media > div {
  position: absolute;
  inset: 34px -18px -22px 42px;
  border-radius: var(--radius);
  background: var(--green);
}

.page-hero-media > div::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 22%;
  background: var(--orange);
  content: "";
}

.page-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-principles,
.process-visual-band {
  color: var(--surface);
  background: var(--ink);
}

.principle-layout,
.process-visual-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: 86px;
}

.principle-image img,
.process-visual-layout img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.principle-copy h2,
.process-visual-layout h2 {
  color: var(--surface);
}

.principle-copy > p,
.process-visual-layout p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.plain-checks {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.plain-checks li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.plain-checks li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 9px;
  height: 9px;
  background: var(--green);
  content: "";
}

.related-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-project {
  display: grid;
  min-width: 0;
  padding: 14px 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-project:hover {
  box-shadow: 0 18px 42px rgba(21, 23, 19, 0.1);
  transform: translateY(-4px);
}

.related-project img {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.related-project span {
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 820;
  text-transform: uppercase;
}

.related-project strong {
  margin-top: 6px;
  font-size: 1.2rem;
}

.service-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 100px;
}

.service-detail-intro h2 {
  max-width: 600px;
}

.service-body-copy {
  padding-top: 46px;
}

.service-body-copy p {
  font-size: 1.1rem;
}

.service-body-copy p + p {
  margin-top: 26px;
}

.deliverables-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-heading-narrow {
  max-width: 780px;
  margin-bottom: 64px;
}

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

.deliverable-list article {
  display: grid;
  min-height: 220px;
  padding: 36px 34px 34px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
  column-gap: 20px;
}

.deliverable-list article:nth-child(even) {
  padding-left: 34px;
  border-right: 0;
}

.deliverable-list article > span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.deliverable-list h3 {
  margin-bottom: 13px;
}

.deliverable-list p {
  grid-column: 2;
  font-size: 0.91rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(440px, 1.3fr);
  gap: 100px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  font-size: 1.08rem;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--green-dark);
  font-size: 1.6rem;
  font-weight: 450;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 44px 26px 0;
}

.work-index-intro {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
  gap: 80px;
}

.work-index-intro p:last-child {
  padding-top: 52px;
  font-size: 1.08rem;
}

.light-projects .project-feature {
  border-color: var(--line);
}

.light-projects .project-feature .project-kicker,
.light-projects .project-feature h3,
.light-projects .project-feature .project-copy p,
.light-projects .project-feature .text-link {
  color: var(--ink);
}

.light-projects .project-service-list li {
  border-color: var(--line);
  color: var(--muted);
}

.compact-testimonial .testimonial-layout {
  grid-template-columns: minmax(260px, 0.65fr) minmax(420px, 1.35fr);
}

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

.process-detail-list article {
  display: grid;
  min-height: 180px;
  align-items: start;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px minmax(260px, 0.8fr) minmax(340px, 1.2fr);
  gap: 40px;
}

.process-detail-list span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-detail-list p {
  font-size: 0.95rem;
}

.process-visual-layout > div {
  padding-block: 100px;
}

.process-visual-layout > div:first-child {
  padding-block: 0;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: 100px;
}

.contact-details {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.contact-details h2 {
  font-size: 2.7rem;
}

.contact-details > p:last-of-type {
  margin-top: 22px;
  font-size: 1.02rem;
}

.contact-details dl {
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.contact-details dl div {
  display: grid;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 120px 1fr;
  gap: 24px;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-details dd {
  font-weight: 720;
}

.project-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 52px rgba(21, 23, 19, 0.08);
}

.project-form label {
  display: block;
  margin-bottom: 22px;
  font-size: 0.8rem;
  font-weight: 780;
}

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

.project-form input,
.project-form textarea,
.project-form select {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(21, 23, 19, 0.24);
  border-radius: 4px;
  background: #fbfcf8;
  font-size: 0.95rem;
  font-weight: 500;
}

.project-form input,
.project-form select {
  height: 52px;
  padding-inline: 14px;
}

.project-form textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}

.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
  border-color: var(--green-dark);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit p {
  font-size: 0.78rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 4px;
  background: var(--green-pale);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-notice.error {
  border-color: var(--red);
  background: #fff0ec;
}

.supporting-capabilities {
  margin-top: 96px;
  padding-top: 46px;
  border-top: 1px solid var(--ink);
}

.supporting-capabilities-intro {
  display: grid;
  align-items: end;
  margin-bottom: 36px;
  grid-template-columns: minmax(220px, 0.55fr) minmax(420px, 1.45fr);
  gap: 70px;
}

.supporting-capabilities-intro .section-label {
  margin-bottom: 5px;
}

.supporting-capabilities-intro h3 {
  max-width: 760px;
  font-size: 2rem;
}

.supporting-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.supporting-capability {
  display: grid;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  grid-template-columns: minmax(190px, 0.88fr) minmax(230px, 1.12fr);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.supporting-capability:hover {
  box-shadow: 0 18px 42px rgba(21, 23, 19, 0.1);
  transform: translateY(-4px);
}

.supporting-capability figure,
.supporting-capability img {
  width: 100%;
  height: 100%;
}

.supporting-capability img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.supporting-capability:hover img {
  transform: scale(1.025);
}

.supporting-capability > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 28px;
}

.supporting-capability span {
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 830;
  text-transform: uppercase;
}

.supporting-capability strong {
  display: block;
  margin-top: 9px;
  font-size: 1.35rem;
}

.supporting-capability p {
  margin-top: 15px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.supporting-capability i {
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-style: normal;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 110px;
}

.about-story-heading h2 {
  max-width: 620px;
}

.about-story-copy {
  padding-top: 44px;
}

.about-story-copy p {
  font-size: 1.1rem;
}

.about-story-copy p + p {
  margin-top: 26px;
}

.about-proof-band {
  border-block: 1px solid rgba(21, 23, 19, 0.14);
  background: var(--sky);
}

.about-proof-grid {
  display: grid;
  min-height: 170px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.about-proof-grid > div {
  min-height: 88px;
  padding: 15px 42px;
  border-left: 1px solid rgba(21, 23, 19, 0.18);
}

.about-proof-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-proof-grid strong,
.about-proof-grid span {
  display: block;
}

.about-proof-grid strong {
  font-size: 1.45rem;
}

.about-proof-grid span {
  max-width: 260px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.about-principle-list {
  display: grid;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-principle-list article {
  display: grid;
  min-height: 210px;
  padding: 34px 34px 34px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
  column-gap: 20px;
}

.about-principle-list article:nth-child(even) {
  padding-left: 34px;
  border-right: 0;
}

.about-principle-list article > span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.about-principle-list h3 {
  margin-bottom: 13px;
}

.about-principle-list p {
  grid-column: 2;
  font-size: 0.92rem;
}

.about-working-band {
  color: var(--surface);
  background: var(--ink);
}

.about-working-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 88px;
}

.about-working-layout figure,
.about-working-layout img {
  width: 100%;
  min-height: 620px;
}

.about-working-layout img {
  object-fit: cover;
}

.about-working-layout > div:last-child {
  padding-block: 96px;
}

.about-working-layout h2 {
  color: var(--surface);
}

.about-working-layout > div > p:not(.section-label) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.about-working-layout .light-link {
  margin-top: 30px;
}

.page-hero-privacy .page-hero-inner,
.page-hero-sitemap .page-hero-inner {
  min-height: 500px;
  grid-template-columns: minmax(0, 920px);
}

.legal-page {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(250px, 0.42fr) minmax(520px, 1.08fr);
  gap: 120px;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  padding-top: 26px;
  border-top: 4px solid var(--green);
}

.legal-aside strong {
  display: block;
  font-size: 1.35rem;
}

.legal-aside > p:not(.section-label) {
  margin-top: 20px;
  font-size: 0.9rem;
}

.legal-aside .text-link {
  margin-top: 26px;
}

.legal-sections {
  border-top: 1px solid var(--ink);
}

.legal-sections section {
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-sections h2 {
  margin-bottom: 18px;
  font-size: 1.85rem;
}

.legal-sections p {
  font-size: 1rem;
}

.legal-sections p + p {
  margin-top: 16px;
}

.sitemap-intro {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: minmax(180px, 0.38fr) minmax(480px, 1.12fr);
  gap: 80px;
}

.sitemap-intro h2 {
  max-width: 820px;
}

.sitemap-groups {
  display: grid;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sitemap-groups section {
  min-width: 0;
  padding: 34px 26px 46px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sitemap-groups section:first-child {
  padding-left: 0;
}

.sitemap-groups section:last-child {
  padding-right: 0;
  border-right: 0;
}

.sitemap-groups h2 {
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.sitemap-groups a {
  display: block;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 680;
}

.sitemap-groups a:hover {
  color: var(--green-dark);
}

.sitemap-machine-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.sitemap-machine-link p {
  color: var(--ink-soft);
}

.case-hero {
  color: var(--surface);
  background: var(--ink);
}

.case-hero-inner {
  display: grid;
  min-height: 620px;
  align-items: end;
  padding-block: 88px 120px;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 100px;
}

.case-hero h1 {
  max-width: 920px;
  color: var(--surface);
}

.case-hero p:not(.section-label) {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 70px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 760;
}

.dark-link {
  color: var(--muted);
}

.case-services {
  padding-top: 18px;
  border-top: 4px solid var(--green);
}

.accent-orange .case-services {
  border-color: var(--orange);
}

.accent-sky .case-services {
  border-color: var(--sky);
}

.case-services dt {
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-services dd {
  padding-block: 7px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.case-image {
  position: relative;
  z-index: 2;
  margin-top: -58px;
}

.case-image img {
  width: 100%;
  height: 720px;
  border: 12px solid var(--paper);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.case-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.case-story-section {
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.case-story-section h2 {
  font-size: 2.5rem;
}

.case-story-section > p:last-child {
  margin-top: 24px;
  font-size: 1.04rem;
}

.case-outcomes {
  color: var(--surface);
  background: var(--ink);
}

.case-outcomes h2,
.case-outcomes p {
  color: var(--surface);
}

.outcome-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.outcome-list li {
  display: grid;
  min-height: 110px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 720;
  grid-template-columns: 90px 1fr;
}

.outcome-list span {
  color: var(--green);
  font-size: 0.76rem;
}

.case-quote blockquote {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.case-quote blockquote p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-style: italic;
  line-height: 1.4;
}

.case-quote footer {
  margin-top: 24px;
  color: var(--green-dark);
  font-weight: 820;
}

.next-project {
  margin-bottom: 112px;
}

.next-project a {
  display: grid;
  min-height: 160px;
  align-items: center;
  padding-inline: 34px;
  border-block: 1px solid var(--ink);
  grid-template-columns: 130px 1fr auto;
  gap: 34px;
}

.next-project span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.next-project strong {
  font-size: 2rem;
}

.next-project i {
  color: var(--green-dark);
  font-size: 2rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.next-project a:hover i {
  transform: translateX(6px);
}

.insights-hero {
  display: grid;
  min-height: 510px;
  align-items: end;
  padding-block: 90px;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 90px;
}

.insights-hero h1 {
  max-width: 800px;
}

.insights-hero > div:last-child > p {
  font-size: 1.08rem;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.topic-list span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 720;
}

.featured-article {
  display: grid;
  align-items: center;
  padding-block: 86px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 72px;
}

.featured-article-image {
  display: block;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article .section-label {
  margin-top: 24px;
}

.featured-article h2 {
  font-size: 2.8rem;
}

.featured-article h2 a:hover {
  color: var(--green-dark);
}

.featured-article > div > p:not(.section-label) {
  margin: 22px 0 28px;
}

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

.article-header {
  max-width: 1040px;
  padding-block: 90px 68px;
}

.article-header .back-link {
  margin-bottom: 54px;
}

.article-header h1 {
  max-width: 980px;
  margin-top: 24px;
  font-size: 4.35rem;
}

.article-header > p {
  max-width: 760px;
  margin-top: 28px;
  font-size: 1.16rem;
}

.article-hero-image img {
  width: 100%;
  height: 650px;
  border-radius: var(--radius);
  object-fit: cover;
}

.article-layout {
  display: grid;
  max-width: 1050px;
  grid-template-columns: 200px minmax(0, 720px);
  gap: 90px;
}

.article-byline {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  height: fit-content;
  padding-top: 18px;
  border-top: 3px solid var(--green);
}

.article-byline span,
.article-byline strong {
  display: block;
}

.article-byline span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.article-byline p {
  margin-block: 14px;
  font-size: 0.82rem;
}

.article-byline a {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.article-body {
  min-width: 0;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

.article-body p {
  margin-block: 0 24px;
}

.article-body h2 {
  margin: 58px 0 20px;
  font-size: 2.15rem;
}

.article-body h3 {
  margin: 42px 0 16px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 30px;
  padding-left: 24px;
}

.article-body li + li {
  margin-top: 9px;
}

.article-body blockquote {
  margin-block: 42px;
  padding: 24px 30px;
  border-left: 5px solid var(--orange);
  background: var(--surface);
}

.article-body a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.not-found {
  display: grid;
  min-height: 700px;
  align-items: center;
  grid-template-columns: 1fr 420px;
  gap: 80px;
}

.not-found h1 {
  max-width: 680px;
}

.not-found p:not(.section-label) {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.not-found img {
  width: 100%;
  max-height: 590px;
  object-fit: contain;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1100px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .home-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    gap: 32px;
  }

  .home-hero-art {
    min-height: 510px;
  }

  .home-hero-art > img {
    max-height: 510px;
  }

  .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 50px;
  }

  .page-hero-copy h1,
  .article-header h1 {
    font-size: 3.75rem;
  }

  .project-feature {
    gap: 50px;
  }

  .project-media,
  .project-media img {
    min-height: 390px;
  }

  .testimonial-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .testimonial-stat {
    display: none;
  }

  .footer-main {
    gap: 70px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section-space {
    padding-block: 88px;
  }

  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 160px 1fr auto;
    gap: 16px;
  }

  .brand {
    width: 155px;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 800;
    grid-column: 3;
  }

  .nav-toggle-lines {
    display: grid;
    width: 16px;
    gap: 5px;
  }

  .nav-toggle-lines i {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .header-project-link {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 20px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    border-top: 1px solid var(--ink);
    gap: 0;
  }

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

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

  .nav-project-link {
    display: inline-flex;
    width: 100%;
    margin-top: 26px;
  }

  .home-hero-inner {
    min-height: auto;
    padding-block: 64px 36px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-hero-copy {
    max-width: 760px;
  }

  .home-hero-art {
    min-height: 390px;
  }

  .hero-color-field {
    inset: 10px 0 0 8%;
  }

  .home-hero-art > img {
    right: 8%;
    max-height: 400px;
  }

  .hero-note {
    right: 3%;
  }

  .proof-rail-inner {
    padding-block: 22px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .proof-rail-inner > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-rail a {
    padding-left: 28px;
  }

  .split-heading,
  .service-detail-intro,
  .faq-section,
  .work-index-intro,
  .insights-hero,
  .featured-article,
  .home-contact,
  .page-cta,
  .contact-layout,
  .article-layout,
  .case-hero-inner,
  .case-story {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-line {
    grid-template-columns: 48px minmax(180px, 0.75fr) minmax(260px, 1.25fr) 34px;
    gap: 14px;
  }

  .project-feature {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-feature:nth-child(even) .project-media {
    order: 0;
  }

  .project-copy {
    max-width: 640px;
  }

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:nth-child(3) {
    padding-left: 0;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .compact-testimonial .testimonial-layout {
    grid-template-columns: 1fr;
  }

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

  .home-contact,
  .page-cta {
    padding: 58px 48px;
  }

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

  .page-hero-inner {
    min-height: auto;
    padding-block: 64px 78px;
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    min-height: 380px;
  }

  .page-hero-media img {
    height: 380px;
  }

  .principle-layout,
  .process-visual-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .principle-image img,
  .process-visual-layout img {
    height: 480px;
  }

  .principle-copy,
  .process-visual-layout > div:last-child {
    padding-block: 78px;
  }

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

  .service-body-copy {
    padding-top: 0;
  }

  .process-detail-list article {
    grid-template-columns: 60px minmax(200px, 0.8fr) minmax(260px, 1.2fr);
    gap: 22px;
  }

  .contact-details,
  .article-byline {
    position: static;
  }

  .case-hero-inner {
    min-height: auto;
    padding-block: 70px 110px;
  }

  .case-services {
    max-width: 500px;
  }

  .case-image img {
    height: 540px;
  }

  .article-layout {
    max-width: 780px;
  }

  .article-byline {
    max-width: 400px;
  }

  .not-found {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .supporting-capabilities-intro,
  .about-story,
  .about-working-layout,
  .legal-page,
  .sitemap-intro {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .supporting-capability-grid {
    grid-template-columns: 1fr;
  }

  .supporting-capability {
    min-height: 320px;
  }

  .about-story-copy {
    padding-top: 0;
  }

  .about-working-layout {
    gap: 0;
  }

  .about-working-layout figure,
  .about-working-layout img {
    min-height: 480px;
  }

  .about-working-layout > div:last-child {
    padding-block: 78px;
  }

  .legal-aside {
    position: static;
    max-width: 560px;
  }

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

  .sitemap-groups section,
  .sitemap-groups section:first-child,
  .sitemap-groups section:last-child {
    padding: 30px 24px 40px;
  }

  .sitemap-groups section:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  h1,
  .page-hero-copy h1,
  .article-header h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-space {
    padding-block: 72px;
  }

  .section-label {
    margin-bottom: 17px;
  }

  .home-hero-inner {
    padding-top: 52px;
  }

  .hero-summary {
    margin-top: 22px;
    padding-left: 16px;
    font-size: 1rem;
  }

  .hero-actions,
  .page-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button,
  .page-hero-actions .button {
    width: 100%;
  }

  .home-hero-art {
    min-height: 300px;
  }

  .home-hero-art > img {
    right: 4%;
    max-height: 315px;
  }

  .hero-wordmark {
    font-size: 6rem;
  }

  .hero-note {
    right: 0;
    bottom: 12px;
    width: 70%;
    padding: 13px 14px;
  }

  .hero-note strong {
    font-size: 0.78rem;
  }

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

  .proof-rail-inner > div,
  .proof-rail-inner > div:nth-child(3),
  .proof-rail a {
    min-height: 0;
    padding: 8px 0;
    border: 0;
  }

  .split-heading {
    margin-bottom: 42px;
  }

  .service-line {
    min-height: 112px;
    padding-block: 20px;
    grid-template-columns: 38px 1fr 28px;
  }

  .service-line > span:nth-child(3) {
    display: none;
  }

  .service-line i {
    grid-column: 3;
  }

  .service-line strong {
    font-size: 1.15rem;
  }

  .project-feature {
    padding-block: 58px;
  }

  .project-media,
  .project-media img {
    min-height: 310px;
  }

  .project-copy h3 {
    font-size: 2rem;
  }

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

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:nth-child(3) {
    min-height: 220px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid span {
    margin-bottom: 34px;
  }

  .testimonial-band {
    padding-block: 74px;
  }

  .featured-quote {
    padding-left: 22px;
  }

  .featured-quote > p {
    font-size: 1.55rem;
  }

  .article-grid,
  .article-grid-wide {
    grid-template-columns: 1fr;
  }

  .article-card-image {
    height: 250px;
  }

  .home-contact,
  .page-cta {
    margin-bottom: 76px;
    padding: 42px 26px;
  }

  .home-contact-actions,
  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-callout {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .page-hero-inner {
    padding-block: 52px 64px;
    gap: 42px;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 300px;
    height: 300px;
  }

  .page-hero-media > div {
    inset: 20px -8px -12px 24px;
  }

  .principle-image img,
  .process-visual-layout img {
    height: 340px;
  }

  .related-projects {
    grid-template-columns: 1fr;
  }

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

  .deliverable-list article,
  .deliverable-list article:nth-child(even) {
    min-height: 190px;
    padding: 28px 0;
    border-right: 0;
  }

  .faq-section {
    gap: 34px;
  }

  .process-detail-list article {
    min-height: 0;
    grid-template-columns: 44px 1fr;
  }

  .process-detail-list article p {
    grid-column: 2;
  }

  .contact-layout {
    gap: 58px;
  }

  .contact-details h2 {
    font-size: 2.25rem;
  }

  .project-form {
    padding: 28px 20px;
  }

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

  .case-hero-inner {
    padding-block: 58px 92px;
  }

  .case-hero .back-link {
    margin-bottom: 48px;
  }

  .case-image {
    margin-top: -38px;
  }

  .case-image img {
    height: 360px;
    border-width: 7px;
  }

  .case-story-section h2 {
    font-size: 2.1rem;
  }

  .outcome-list li {
    min-height: 96px;
    font-size: 1rem;
    grid-template-columns: 52px 1fr;
  }

  .case-quote blockquote p {
    font-size: 1.65rem;
  }

  .next-project a {
    min-height: 130px;
    padding-inline: 8px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .next-project span {
    grid-column: 1 / -1;
  }

  .next-project strong {
    font-size: 1.45rem;
  }

  .insights-hero {
    min-height: auto;
    padding-block: 72px;
  }

  .featured-article-image {
    height: 320px;
  }

  .featured-article h2 {
    font-size: 2.25rem;
  }

  .article-header {
    padding-block: 64px 48px;
  }

  .article-header .back-link {
    margin-bottom: 40px;
  }

  .article-hero-image img {
    height: 340px;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .not-found {
    min-height: 720px;
    padding-block: 50px;
    grid-template-columns: 1fr;
  }

  .not-found img {
    max-height: 330px;
  }

  .supporting-capabilities {
    margin-top: 72px;
    padding-top: 36px;
  }

  .supporting-capabilities-intro h3 {
    font-size: 1.65rem;
  }

  .supporting-capability {
    grid-template-columns: 1fr;
  }

  .supporting-capability figure,
  .supporting-capability img {
    height: 250px;
  }

  .about-proof-grid {
    min-height: 0;
    padding-block: 24px;
    grid-template-columns: 1fr;
  }

  .about-proof-grid > div,
  .about-proof-grid > div:first-child {
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(21, 23, 19, 0.18);
    border-left: 0;
  }

  .about-proof-grid > div:first-child {
    border-top: 0;
  }

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

  .about-principle-list article,
  .about-principle-list article:nth-child(even) {
    min-height: 190px;
    padding: 28px 0;
    border-right: 0;
  }

  .about-working-layout figure,
  .about-working-layout img {
    min-height: 340px;
    height: 340px;
  }

  .legal-page {
    gap: 54px;
  }

  .legal-sections h2 {
    font-size: 1.55rem;
  }

  .sitemap-groups {
    grid-template-columns: 1fr;
  }

  .sitemap-groups section,
  .sitemap-groups section:first-child,
  .sitemap-groups section:last-child {
    padding: 28px 0 34px;
    border-right: 0;
  }

  .sitemap-machine-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  h1,
  .page-hero-copy h1,
  .article-header h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: 145px 1fr auto;
  }

  .brand {
    width: 142px;
  }

  .nav-toggle {
    padding-inline: 9px;
  }

  .hero-note {
    display: none;
  }

  .home-hero-inner {
    padding-block: 40px 18px;
    gap: 22px;
  }

  .home-hero .hero-actions {
    margin-top: 22px;
    gap: 4px;
  }

  .home-hero .button-quiet {
    min-height: 38px;
  }

  .home-hero-art {
    min-height: 170px;
  }

  .home-hero-art > img {
    right: 8%;
    max-height: 190px;
  }

  .project-media,
  .project-media img {
    min-height: 270px;
  }

  .project-service-list {
    gap: 6px;
  }

  .project-service-list li {
    padding-inline: 8px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
