:root {
  --paper: #f2f0e9;
  --paper-deep: #e6e2d8;
  --ink: #141512;
  --muted: #686a62;
  --rule: rgba(20, 21, 18, 0.25);
  --olive: #4a5137;
  --serif: "freight-display-pro", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "neue-haas-grotesk-text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--ink);
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--content);
  margin-inline: auto;
  padding: 1.8rem var(--gutter);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 0.83;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.3vw, 2.8rem);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.desktop-nav a:not(.nav-contact) {
  position: relative;
  padding-block: 0.25rem;
}

.desktop-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms ease;
}

.desktop-nav a:not(.nav-contact):hover::after,
.desktop-nav a:not(.nav-contact):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.45rem;
}

.nav-contact span,
.text-link span,
.outline-link span,
.primary-button span,
.journal-card > span:last-child,
.case-study > span:last-child {
  transition: transform 250ms ease;
}

.nav-contact:hover span,
.text-link:hover span,
.outline-link:hover span,
.primary-button:hover span,
.journal-card:hover > span:last-child,
.case-study:hover > span:last-child {
  transform: translate(3px, -3px);
}

.mobile-navigation {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: max(720px, 100svh);
  max-width: var(--content);
  margin-inline: auto;
  padding: 10rem var(--gutter) 5rem;
}

.hero-edition {
  position: absolute;
  top: 46%;
  left: clamp(0.75rem, 1.35vw, 1.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.59rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
}

.hero-content {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero .eyebrow {
  margin-left: clamp(3rem, 10vw, 9rem);
  margin-bottom: clamp(1.7rem, 3vw, 2.8rem);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4.4rem, 9vw, 9.2rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.065em;
}

.hero h1 em,
.build-intro h2 em,
.principle-quote em,
.recognition-quote em {
  font-weight: 400;
}

.hero h1 em {
  color: var(--olive);
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(17rem, 29rem) auto;
  align-items: end;
  justify-content: end;
  gap: clamp(3rem, 9vw, 9rem);
  margin-top: clamp(3.5rem, 6vw, 6.5rem);
  margin-right: clamp(0rem, 6vw, 6rem);
}

.hero-lower p {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
  color: #30322d;
}

.text-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 12.2rem;
  gap: 2rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2.2rem;
  display: flex;
  gap: 1rem;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.image-break {
  background: var(--ink);
}

.image-break img {
  height: min(76vw, 860px);
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(1) contrast(1.06);
}

.image-break figcaption,
.studio-image figcaption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.4rem var(--gutter) 1.8rem;
  color: var(--paper);
  font-size: 0.6rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.image-break figcaption span:last-child,
.studio-image figcaption span:last-child {
  justify-self: end;
  text-align: right;
}

.chapter {
  max-width: var(--content);
  margin-inline: auto;
  padding: clamp(6.5rem, 11vw, 12rem) var(--gutter);
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(3.2rem, 7.5rem) 1fr;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--rule);
}

.chapter-heading .roman {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.chapter-heading p {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.problem-grid,
.philosophy-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(18rem, 0.78fr);
  gap: clamp(4rem, 11vw, 12rem);
  padding-top: clamp(4rem, 7vw, 7rem);
}

.problem-grid h2,
.philosophy-grid h2,
.section-intro h2,
.cta-grid h2 {
  max-width: 13ch;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.4vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.problem-grid h2 span {
  display: block;
  margin-top: 0.45em;
  font-style: italic;
  color: var(--olive);
}

.problem-copy,
.philosophy-copy,
.cta-copy {
  padding-top: 0.6rem;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.7;
}

.problem-copy .short-statement {
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(6rem, 11vw, 11rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.principle {
  min-height: 20rem;
  padding: 1.3rem clamp(1.2rem, 2.5vw, 2.8rem) 2rem;
  border-right: 1px solid var(--rule);
}

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

.principle:last-child {
  border-right: 0;
}

.principle > span,
.outcome > span,
.case-number,
.journal-card > span:first-child,
.case-type {
  font-size: 0.59rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.principle h3 {
  margin-top: 6rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.3vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.principle p {
  max-width: 17rem;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.principle-quote {
  display: flex;
  min-height: min(900px, 90svh);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem var(--gutter);
  background: var(--paper-deep);
  text-align: center;
}

.principle-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(4.2rem, 9vw, 10rem);
  line-height: 0.87;
  letter-spacing: -0.055em;
}

.principle-quote p {
  margin-top: clamp(3rem, 6vw, 6rem);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.philosophy-section {
  padding-bottom: clamp(8rem, 15vw, 15rem);
}

.philosophy-grid h2 {
  color: var(--olive);
  font-style: italic;
}

.philosophy-copy .lead {
  margin-bottom: 2.3rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
}

.philosophy-copy > p:not(.lead) + p {
  margin-top: 1.4rem;
}

.philosophy-copy .text-link {
  margin-top: 3.5rem;
}

.build-section {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
  padding-inline: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
}

.chapter-heading-light {
  border-color: rgba(242, 240, 233, 0.3);
}

.build-intro {
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 24rem);
  align-items: end;
  gap: 4rem;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 9vw, 9rem);
}

.build-intro h2 {
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8vw, 8.6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.build-intro h2 em {
  color: #a2aa87;
}

.build-intro p {
  color: #b6b7b0;
  font-size: 1rem;
  line-height: 1.65;
}

.outcomes {
  border-top: 1px solid rgba(242, 240, 233, 0.28);
}

.outcome {
  display: grid;
  grid-template-columns: minmax(3rem, 7rem) minmax(0, 1.5fr) minmax(15rem, 0.7fr);
  gap: 2rem;
  align-items: center;
  min-height: 10rem;
  padding-block: 2rem;
  border-bottom: 1px solid rgba(242, 240, 233, 0.28);
}

.outcome h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 1.05;
}

.outcome p {
  color: #b6b7b0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: min(100%, 20rem);
  margin-top: 4rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(242, 240, 233, 0.58);
  font-size: 0.63rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 250ms ease, background-color 250ms ease;
}

.outline-link:hover {
  background: var(--paper);
  color: var(--ink);
}

.studio-image {
  padding: clamp(5rem, 9vw, 9rem) 0 0 max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  background: var(--ink);
}

.studio-image-wrap {
  margin-left: 17%;
}

.studio-image img {
  height: min(55vw, 780px);
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.03);
}

.studio-image figcaption {
  padding-left: 17%;
}

.work-section {
  padding-top: clamp(8rem, 14vw, 14rem);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 24rem);
  gap: 5rem;
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 8rem);
}

.section-intro h2 {
  max-width: 15ch;
}

.section-intro > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.case-list {
  border-top: 1px solid var(--rule);
}

.case-study {
  position: relative;
  display: grid;
  grid-template-columns: minmax(3rem, 6rem) minmax(0, 1.5fr) minmax(10rem, 0.55fr) 1.3rem;
  gap: 2rem;
  align-items: center;
  min-height: 13rem;
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--rule);
  transition: padding 250ms ease, background-color 250ms ease;
}

.case-study:hover {
  padding-inline: 1.3rem;
  background: var(--paper-deep);
}

.case-type {
  margin-bottom: 1rem;
  color: var(--muted);
}

.case-study h3 {
  max-width: 23ch;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.case-result {
  color: var(--muted);
  font-size: 0.83rem;
}

.journal-section {
  padding: clamp(7rem, 13vw, 13rem) max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  background: var(--paper-deep);
}

.journal-header {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4rem;
  align-items: end;
  padding-bottom: 4rem;
}

.journal-header h2 {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.journal-header > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.journal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 30rem;
  padding: 1.5rem clamp(1.2rem, 2.4vw, 2.7rem) 2rem;
  border-right: 1px solid var(--rule);
  transition: color 300ms ease, background-color 300ms ease;
}

.journal-card:first-child {
  padding-left: 0;
}

.journal-card:last-child {
  border-right: 0;
}

.journal-card:hover {
  background: var(--olive);
  color: var(--paper);
  padding-left: clamp(1.2rem, 2.4vw, 2.7rem);
}

.journal-card h3 {
  margin-top: auto;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.journal-card > span:last-child {
  align-self: flex-end;
}

.recognition-quote {
  display: flex;
  min-height: 90svh;
  flex-direction: column;
  justify-content: center;
  padding: 8rem max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  background: var(--olive);
  color: var(--paper);
}

.recognition-quote .eyebrow {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.recognition-quote blockquote {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 9vw, 9.6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.recognition-quote em {
  display: block;
  margin-top: 0.12em;
  color: #c6cab6;
}

.cta-section {
  padding-bottom: clamp(7rem, 12vw, 12rem);
}

.cta-grid h2 {
  max-width: 12ch;
}

.cta-copy p {
  max-width: 25rem;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 20rem;
  margin-top: 3rem;
  padding: 1.1rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.63rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background-color 250ms ease;
}

.primary-button:hover {
  background: var(--olive);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  padding: clamp(4rem, 7vw, 7rem) max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter))) 2.5rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 3rem;
  align-content: start;
  padding-top: 0.7rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.site-footer nav a {
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.site-footer nav a:hover {
  border-color: currentColor;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(5rem, 10vw, 10rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(242, 240, 233, 0.25);
  color: #9b9c96;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

/* Manifesto */

.manifesto-hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: center;
  max-width: var(--content);
  margin-inline: auto;
  padding: 10rem var(--gutter) 6rem;
}

.manifesto-hero-inner {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.manifesto-hero .eyebrow {
  margin-left: clamp(2rem, 9vw, 8.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.8rem);
}

.manifesto-hero h1 {
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8.4vw, 8.8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.manifesto-hero h1 em {
  display: block;
  margin-left: clamp(0rem, 7vw, 7rem);
  color: var(--olive);
  font-weight: 400;
}

.manifesto-hero-copy {
  display: grid;
  grid-template-columns: minmax(18rem, 32rem) auto;
  align-items: end;
  justify-content: end;
  gap: clamp(3rem, 10vw, 10rem);
  margin-top: clamp(4rem, 7vw, 7rem);
  margin-right: clamp(0rem, 5vw, 5rem);
}

.manifesto-hero-copy > p:first-child {
  color: #30322d;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.7;
}

.manifesto-folio {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.manifesto-belief {
  padding-top: clamp(8rem, 14vw, 14rem);
}

.manifesto-belief-grid,
.manifesto-work-grid,
.manifesto-audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(4rem, 10vw, 10rem);
  padding-top: clamp(4rem, 7vw, 7rem);
}

.manifesto-belief-grid h2,
.manifesto-work-grid h2,
.manifesto-audience-grid h2,
.manifesto-section-intro h2 {
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.4vw, 7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.manifesto-belief-grid h2 em,
.manifesto-work-grid h2 em {
  color: var(--olive);
  font-weight: 400;
}

.manifesto-belief-copy,
.manifesto-work-copy {
  padding-top: 0.6rem;
  color: #30322d;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

.manifesto-belief-copy p + p {
  margin-top: 1.5rem;
}

.manifesto-image {
  background: var(--ink);
}

.manifesto-image img {
  height: min(70vw, 920px);
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(1) contrast(1.08);
}

.manifesto-image figcaption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.4rem var(--gutter) 1.8rem;
  color: var(--paper);
  font-size: 0.6rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.manifesto-image figcaption span:last-child {
  justify-self: end;
  text-align: right;
}

.manifesto-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.45fr);
  align-items: end;
  gap: clamp(4rem, 10vw, 10rem);
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 9vw, 9rem);
}

.manifesto-section-intro h2 {
  max-width: 13ch;
}

.manifesto-section-intro > p {
  color: var(--muted);
  line-height: 1.7;
}

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

.manifesto-principle {
  display: grid;
  grid-template-columns: minmax(3rem, 7rem) minmax(0, 1.15fr) minmax(16rem, 0.65fr);
  align-items: center;
  gap: 2rem;
  min-height: 11rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--rule);
  transition: padding 250ms ease, background-color 250ms ease;
}

.manifesto-principle:hover {
  padding-inline: 1.3rem;
  background: var(--paper-deep);
}

.manifesto-principle > span,
.manifesto-step > span {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.manifesto-principle h3 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.manifesto-principle p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.manifesto-statement {
  display: flex;
  min-height: min(920px, 92svh);
  flex-direction: column;
  justify-content: center;
  padding: 8rem max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  background: var(--ink);
  color: var(--paper);
}

.manifesto-statement .eyebrow {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.manifesto-statement blockquote {
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.7vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.manifesto-statement em {
  display: block;
  margin-top: 0.12em;
  color: #a9b08f;
  font-weight: 400;
}

.manifesto-work {
  padding-top: clamp(8rem, 14vw, 14rem);
}

.manifesto-work-grid h2 {
  max-width: 12ch;
}

.manifesto-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(6rem, 11vw, 11rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.manifesto-step {
  min-height: 23rem;
  padding: 1.3rem clamp(1.2rem, 2.2vw, 2.5rem) 2rem;
  border-right: 1px solid var(--rule);
}

.manifesto-step:first-child {
  padding-left: 0;
}

.manifesto-step:last-child {
  border-right: 0;
}

.manifesto-step h3 {
  margin-top: 7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 400;
}

.manifesto-step p {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.manifesto-audience {
  background: var(--olive);
  color: var(--paper);
}

.manifesto-audience-inner {
  max-width: var(--content);
  margin-inline: auto;
  padding: clamp(7rem, 12vw, 12rem) var(--gutter);
}

.manifesto-audience-grid h2 {
  max-width: 10ch;
}

.manifesto-audience-grid > div {
  padding-top: 0.6rem;
  color: #dcdfd2;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.manifesto-audience-note {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--paper);
}

/* Interior pages */

.interior-hero {
  position: relative;
  display: flex;
  min-height: max(720px, 94svh);
  align-items: center;
  max-width: var(--content);
  margin-inline: auto;
  padding: 10rem var(--gutter) 6rem;
}

.interior-hero-inner {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.interior-hero .eyebrow {
  margin-left: clamp(2rem, 9vw, 8.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.8rem);
}

.interior-hero h1 {
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8.4vw, 8.8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.interior-hero h1 em {
  color: var(--olive);
  font-weight: 400;
}

.interior-hero-copy {
  display: grid;
  grid-template-columns: minmax(18rem, 32rem) auto;
  align-items: end;
  justify-content: end;
  gap: clamp(3rem, 10vw, 10rem);
  margin-top: clamp(4rem, 7vw, 7rem);
  margin-right: clamp(0rem, 5vw, 5rem);
}

.interior-hero-copy > p:first-child {
  color: #30322d;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.7;
}

.interior-folio {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.services-intro-grid,
.engagement-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  align-items: end;
  gap: clamp(4rem, 10vw, 10rem);
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(6rem, 10vw, 10rem);
}

.services-intro-grid h2,
.engagement-intro h2,
.contact-details h2 {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.4vw, 7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.services-intro-grid h2 em {
  color: var(--olive);
  font-weight: 400;
}

.services-intro-grid > p,
.engagement-intro > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

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

.service-row {
  display: grid;
  grid-template-columns: minmax(2.5rem, 6rem) minmax(13rem, 0.7fr) minmax(18rem, 1fr) minmax(14rem, 0.7fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  min-height: 18rem;
  padding-block: clamp(2.5rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--rule);
  transition: padding 250ms ease, background-color 250ms ease;
}

.service-row:hover {
  padding-inline: 1.25rem;
  background: var(--paper-deep);
}

.service-number,
.service-name > p,
.engagement-card > span {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.service-name > p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.service-name h3 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 4.7rem);
  font-weight: 400;
  line-height: 0.95;
}

.service-copy {
  max-width: 34rem;
  color: #30322d;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.service-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.service-row li {
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--rule);
}

.service-row li:first-child {
  padding-top: 0;
}

.page-statement {
  display: flex;
  min-height: min(900px, 90svh);
  flex-direction: column;
  justify-content: center;
  padding: 8rem max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  background: var(--ink);
  color: var(--paper);
}

.page-statement .eyebrow {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.page-statement blockquote {
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.7vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.page-statement em {
  display: block;
  margin-top: 0.12em;
  color: #a9b08f;
  font-weight: 400;
}

.engagement-intro h2 {
  max-width: 11ch;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.engagement-card {
  min-height: 25rem;
  padding: 1.3rem clamp(1.5rem, 3vw, 3.5rem) 2.5rem;
  border-right: 1px solid var(--rule);
}

.engagement-card:first-child {
  padding-left: 0;
}

.engagement-card:last-child {
  border-right: 0;
}

.engagement-card h3 {
  max-width: 10ch;
  margin-top: 8rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.engagement-card p {
  max-width: 28rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Contact */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1fr);
  gap: clamp(5rem, 12vw, 14rem);
  max-width: var(--content);
  margin-inline: auto;
  padding: clamp(8rem, 14vw, 15rem) var(--gutter);
  background: var(--paper);
}

.contact-details {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.contact-details .eyebrow {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.contact-details h2 {
  font-size: clamp(3.6rem, 5.7vw, 6.5rem);
}

.contact-details > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 3rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
}

.contact-direct span {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact-direct a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2.3rem);
}

.contact-form {
  border-top: 1px solid var(--ink);
}

.form-field {
  padding-block: 2rem;
  border-bottom: 1px solid var(--rule);
}

.form-field label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.2;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  box-shadow: 0 2px 0 var(--olive);
}

.form-field-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form-consent {
  max-width: 48rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.65;
}

.form-consent a {
  border-bottom: 1px solid currentColor;
}

.form-submit {
  margin-top: 3rem;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Privacy */

.legal-page {
  max-width: var(--content);
  margin-inline: auto;
  padding: 11rem var(--gutter) clamp(8rem, 14vw, 15rem);
}

.legal-hero {
  max-width: 1260px;
  margin-inline: auto;
}

.legal-hero .eyebrow {
  margin-left: clamp(2rem, 9vw, 8.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.8rem);
}

.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9.5rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.legal-hero h1 em {
  margin-left: clamp(0rem, 8vw, 8rem);
  color: var(--olive);
  font-weight: 400;
}

.legal-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-block: 1rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.45fr) minmax(0, 1.3fr);
  gap: clamp(5rem, 14vw, 15rem);
  max-width: 1260px;
  margin: clamp(7rem, 12vw, 12rem) auto 0;
}

.legal-layout aside {
  position: sticky;
  top: 3rem;
  align-self: start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-layout aside > p {
  margin-bottom: 2rem;
  font-weight: 600;
}

.legal-layout aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.legal-layout aside li {
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--rule);
}

.legal-lead {
  padding-bottom: clamp(5rem, 8vw, 8rem);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.legal-content section {
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1.5rem;
  padding-block: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--rule);
  scroll-margin-top: 2rem;
}

.legal-number {
  grid-row: 1 / span 20;
  padding-top: 0.6rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.legal-content h2 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-content section > p:not(.legal-number),
.legal-content li,
.legal-content address {
  color: #3d3f39;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content section > p + p {
  margin-top: 1.5rem;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 1rem;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

.legal-content address {
  font-style: normal;
}

/* Thank you and 404 */

.resolution-page {
  position: relative;
  display: flex;
  min-height: max(720px, 100svh);
  flex-direction: column;
  justify-content: center;
  max-width: var(--content);
  margin-inline: auto;
  padding: 10rem var(--gutter) 7rem;
  overflow: hidden;
}

.resolution-marker {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(17rem, 38vw, 42rem);
  line-height: 0.7;
  transform: translateY(-50%);
  pointer-events: none;
}

.resolution-page > *:not(.resolution-marker) {
  position: relative;
  z-index: 1;
}

.resolution-page .eyebrow {
  margin-bottom: 3rem;
}

.resolution-page h1 {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.resolution-page h1 em {
  color: var(--olive);
  font-weight: 400;
}

.resolution-copy {
  max-width: 32rem;
  margin-top: 3rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.resolution-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3.5rem;
}

.error-resolution .resolution-marker {
  color: #dedacf;
  font-size: clamp(14rem, 33vw, 34rem);
  letter-spacing: -0.08em;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-navigation {
    display: block;
  }

  .menu-button {
    position: relative;
    z-index: 32;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 2.75rem;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 0.64rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
  }

  .menu-icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 250ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    padding: 8rem var(--gutter) 3rem;
    background: var(--ink);
    color: var(--paper);
    opacity: 0;
    transition: visibility 0s linear 400ms, opacity 400ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(242, 240, 233, 0.25);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 8vw, 4.2rem);
    line-height: 1;
  }

  .mobile-menu nav a span {
    font-family: var(--sans);
    font-size: 0.55rem;
    letter-spacing: 0.13em;
  }

  .mobile-menu > p {
    margin-top: auto;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
  }

  .site-header:has(.menu-button[aria-expanded="true"]) {
    position: fixed;
    color: var(--paper);
  }

  .problem-grid,
  .philosophy-grid,
  .cta-grid,
  .manifesto-belief-grid,
  .manifesto-work-grid,
  .manifesto-audience-grid,
  .services-intro-grid,
  .engagement-intro {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
  }

  .service-row {
    grid-template-columns: 3rem minmax(12rem, 0.7fr) minmax(18rem, 1fr);
  }

  .service-row ul {
    display: none;
  }

  .contact-section {
    grid-template-columns: 0.75fr 1fr;
    gap: 5rem;
  }

  .hero-edition {
    display: none;
  }

  .case-study {
    grid-template-columns: 3rem minmax(0, 1fr) 1.2rem;
  }

  .case-result {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.25rem;
  }

  .site-header {
    padding-top: 1.25rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 8rem;
  }

  .manifesto-hero {
    min-height: 100svh;
    padding: 8rem var(--gutter) 5rem;
  }

  .interior-hero {
    min-height: 100svh;
    padding: 8rem var(--gutter) 5rem;
  }

  .interior-hero .eyebrow {
    margin-left: 0;
  }

  .interior-hero h1 {
    font-size: clamp(3.8rem, 17vw, 6.4rem);
  }

  .interior-hero-copy {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-right: 0;
  }

  .interior-folio {
    width: fit-content;
  }

  .manifesto-hero .eyebrow {
    margin-left: 0;
  }

  .manifesto-hero h1 {
    font-size: clamp(3.8rem, 17vw, 6.4rem);
  }

  .manifesto-hero h1 em {
    margin-left: 0;
  }

  .manifesto-hero-copy {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-right: 0;
  }

  .manifesto-folio {
    width: fit-content;
  }

  .hero .eyebrow {
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.6rem);
    line-height: 0.88;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-right: 0;
  }

  .hero-lower p {
    font-size: 0.98rem;
  }

  .scroll-cue {
    display: none;
  }

  .image-break img {
    height: 72svh;
  }

  .image-break figcaption,
  .studio-image figcaption {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-block: 1.1rem 1.5rem;
  }

  .image-break figcaption span:last-child,
  .studio-image figcaption span:last-child {
    justify-self: start;
    text-align: left;
  }

  .chapter {
    padding-block: 6.5rem;
  }

  .chapter-heading {
    grid-template-columns: 2.4rem 1fr;
  }

  .problem-grid,
  .philosophy-grid,
  .cta-grid,
  .manifesto-belief-grid,
  .manifesto-work-grid,
  .manifesto-audience-grid,
  .services-intro-grid,
  .engagement-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 3.5rem;
  }

  .problem-grid h2,
  .philosophy-grid h2,
  .section-intro h2,
  .cta-grid h2,
  .manifesto-belief-grid h2,
  .manifesto-work-grid h2,
  .manifesto-audience-grid h2,
  .manifesto-section-intro h2,
  .services-intro-grid h2,
  .engagement-intro h2,
  .contact-details h2 {
    font-size: clamp(3.2rem, 14vw, 5.5rem);
  }

  .service-row {
    grid-template-columns: 2.2rem 1fr;
    gap: 1rem;
    min-height: 0;
    padding-block: 3rem;
  }

  .service-copy {
    grid-column: 2;
    margin-top: 1.5rem;
  }

  .service-row:hover {
    padding-inline: 0.65rem;
  }

  .page-statement {
    min-height: 80svh;
  }

  .page-statement blockquote {
    font-size: clamp(3.9rem, 17vw, 6.4rem);
  }

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

  .engagement-card,
  .engagement-card:first-child {
    min-height: 17rem;
    padding: 1.2rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .engagement-card:last-child {
    border-bottom: 0;
  }

  .engagement-card h3 {
    margin-top: 4rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding-block: 7rem;
  }

  .contact-details {
    position: static;
  }

  .contact-direct {
    margin-top: 3.5rem;
  }

  .form-field-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-page {
    padding-top: 8rem;
  }

  .legal-hero .eyebrow {
    margin-left: 0;
  }

  .legal-hero h1 {
    font-size: clamp(4.3rem, 18vw, 7rem);
  }

  .legal-hero h1 em {
    margin-left: 0;
  }

  .legal-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .legal-layout aside {
    display: none;
  }

  .legal-content section {
    grid-template-columns: 2.2rem 1fr;
    column-gap: 1rem;
  }

  .legal-content h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .resolution-page {
    padding-top: 8rem;
  }

  .resolution-marker {
    top: 33%;
    right: -1rem;
    font-size: clamp(15rem, 75vw, 25rem);
  }

  .error-resolution .resolution-marker {
    font-size: clamp(12rem, 58vw, 20rem);
  }

  .resolution-page h1 {
    font-size: clamp(4.3rem, 18vw, 7rem);
  }

  .resolution-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .manifesto-image img {
    height: 74svh;
  }

  .manifesto-image figcaption {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-block: 1.1rem 1.5rem;
  }

  .manifesto-image figcaption span:last-child {
    justify-self: start;
    text-align: left;
  }

  .manifesto-section-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 3.5rem 5rem;
  }

  .manifesto-principle {
    grid-template-columns: 2.2rem 1fr;
    gap: 1rem;
    min-height: 13rem;
  }

  .manifesto-principle p {
    grid-column: 2;
  }

  .manifesto-principle:hover {
    padding-inline: 0.65rem;
  }

  .manifesto-statement {
    min-height: 80svh;
  }

  .manifesto-statement blockquote {
    font-size: clamp(3.9rem, 17vw, 6.4rem);
  }

  .manifesto-steps {
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }

  .manifesto-step,
  .manifesto-step:first-child {
    min-height: 15rem;
    padding: 1.2rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .manifesto-step:last-child {
    border-bottom: 0;
  }

  .manifesto-step h3 {
    margin-top: 3.8rem;
  }

  .problem-copy,
  .philosophy-copy,
  .cta-copy {
    font-size: 1rem;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }

  .principle,
  .principle:first-child {
    min-height: 15rem;
    padding: 1.2rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 3.8rem;
  }

  .principle-quote {
    min-height: 78svh;
  }

  .principle-quote blockquote {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .build-intro,
  .section-intro,
  .journal-header {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .build-intro h2 {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .outcome {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding-block: 2.2rem;
  }

  .outcome p {
    grid-column: 2;
  }

  .studio-image {
    padding-top: 4rem;
    padding-left: 0;
  }

  .studio-image-wrap {
    margin-left: var(--gutter);
  }

  .studio-image img {
    height: 70svh;
  }

  .studio-image figcaption {
    padding-left: var(--gutter);
  }

  .case-study {
    grid-template-columns: 2rem minmax(0, 1fr) 1rem;
    gap: 0.8rem;
    min-height: 12rem;
  }

  .case-study:hover {
    padding-inline: 0.65rem;
  }

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

  .journal-card,
  .journal-card:first-child {
    min-height: 22rem;
    padding: 1.25rem 0 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .journal-card:last-child {
    border-bottom: 0;
  }

  .journal-card:hover {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .recognition-quote {
    min-height: 78svh;
  }

  .recognition-quote blockquote {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

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

  .site-footer nav {
    margin-top: 2rem;
  }

  .footer-meta {
    grid-column: 1;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 4rem;
  }
}

@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;
  }

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


html:not(.js) .reveal { opacity: 1; transform: none; }
