:root {
  --ink: #2f312d;
  --ink-soft: #55564f;
  --olive: #8b8b6d;
  --olive-deep: #66674f;
  --sage: #d1d1c3;
  --mist: #e4e4db;
  --paper: #ffffff;
  --serif: "GFS Didot", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
  --size-small: 12px;
  --size-body: 18px;
  --size-subtitle: 28px;
  --size-title: clamp(52px, 6vw, 76px);
  --page: min(calc(100% - 48px), 1180px);
  --section-space: 112px;
  --column-gap: clamp(44px, 6vw, 76px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--size-body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

p,
figure,
blockquote {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  width: var(--page);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(47, 49, 45, 0.16);
}

.brand {
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.footer-links a,
.button,
.eyebrow,
.form-field label {
  font-size: var(--size-small);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--ink);
}

.nav-cta:hover {
  background: var(--ink);
  color: white;
}

.menu-button {
  display: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive-deep);
  line-height: 1.35;
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--size-title);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--size-subtitle);
  font-weight: 400;
  line-height: 1.08;
}

.hero {
  width: var(--page);
  min-height: 690px;
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: var(--column-gap);
  align-items: center;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.hero-copy .button {
  margin-top: 32px;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 18%;
  left: -14px;
  bottom: -14px;
  background: var(--sage);
  z-index: -1;
}

.hero-image img {
  height: 590px;
  object-fit: cover;
  object-position: 68% center;
}

.hero-image figcaption {
  padding-top: 12px;
  color: var(--olive-deep);
  font-size: var(--size-small);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.button-dark:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

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

.manifesto-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.manifesto p {
  min-height: 112px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--serif);
  font-size: var(--size-subtitle);
  text-align: center;
}

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

.section,
.service-area-inner,
.principle-inner,
.contact-inner,
.site-footer {
  width: var(--page);
  margin: 0 auto;
}

.outcomes,
.spaces,
.process,
.service-area-inner,
.principle-inner,
.contact-inner {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-heading,
.spaces-heading {
  max-width: 820px;
}

.section-heading > p:last-child,
.service-area-copy > p:not(.eyebrow),
.process-intro > p:last-child,
.contact-intro > p:last-child {
  max-width: 620px;
  margin-top: 24px;
  color: var(--ink-soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 64px;
}

.outcome-card {
  min-height: 220px;
  padding: 28px 0 0;
  border-top: 2px solid var(--olive);
}

.outcome-card h3 {
  max-width: 300px;
}

.outcome-card p,
.project-caption > p:last-child,
.process-list p {
  margin-top: 18px;
  color: var(--ink-soft);
}

.service-area {
  background: var(--mist);
}

.service-area-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--column-gap);
  align-items: start;
}

.service-area-copy > p:not(.eyebrow) + p {
  margin-top: 18px;
}

.service-area-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  border-top: 1px solid var(--olive);
}

.service-area-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(102, 103, 79, 0.28);
  font-family: var(--serif);
  font-size: var(--size-subtitle);
  line-height: 1.15;
}

.spaces-heading {
  margin-bottom: 52px;
}

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

.project figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

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

.project:first-child img {
  object-position: 62% 78%;
}

.project:last-child img {
  object-position: center;
}

.project-caption {
  padding-top: 22px;
}

.project-caption .eyebrow {
  margin-bottom: 12px;
}

.process {
  border-top: 1px solid var(--sage);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--column-gap);
  align-items: start;
}

.process-list article {
  padding: 28px 0;
  border-top: 1px solid var(--sage);
}

.process-list article:last-child {
  border-bottom: 1px solid var(--sage);
}

.process-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.process-list p {
  max-width: 560px;
}

.principle {
  background: var(--mist);
}

.principle-inner {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principle blockquote {
  max-width: 980px;
}

.contact {
  background: var(--ink);
  color: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: var(--column-gap);
  align-items: start;
}

.contact .eyebrow {
  color: var(--sage);
}

.contact-intro > p:last-child {
  max-width: 460px;
  color: var(--sage);
}

.contact-form {
  position: relative;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  background: var(--paper);
  color: var(--ink);
  border-top: 8px solid var(--olive);
}

.form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--sage);
  border-radius: 0;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
  font-size: var(--size-body);
  outline: 0;
}

select {
  appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 19px) 52%, calc(100% - 13px) 52%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #77786f;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--olive-deep);
  box-shadow: 0 0 0 2px rgba(102, 103, 79, 0.15);
}

input[type="file"] {
  min-height: 58px;
  padding: 8px;
}

input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 12px;
  border: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--size-small);
  font-weight: 900;
  cursor: pointer;
}

.field-note,
.notice,
.consent,
.form-status {
  font-size: var(--size-small);
  line-height: 1.55;
}

.field-note {
  color: var(--ink-soft);
}

.notice {
  padding: 18px;
  background: var(--mist);
  color: var(--ink-soft);
}

.notice a,
.consent a {
  color: var(--ink);
  font-weight: 700;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
}

.consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--olive-deep);
}

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

.form-status {
  min-height: 20px;
  color: var(--ink-soft);
}

.form-status.is-success {
  color: var(--olive-deep);
}

.form-status.is-error {
  color: #8b3225;
}

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

.site-footer {
  min-height: 190px;
  padding: 42px 0 62px;
  display: grid;
  grid-template-columns: 70px minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  position: relative;
}

.footer-brand {
  width: 62px;
  height: 62px;
  overflow: hidden;
}

.site-footer > p:not(.copyright) {
  font-family: var(--serif);
  font-size: var(--size-subtitle);
  line-height: 1.15;
}

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

.copyright {
  position: absolute;
  right: 0;
  bottom: 22px;
  color: var(--ink-soft);
  font-size: var(--size-small);
}

.legal-shell {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.legal-shell h1 {
  margin-bottom: 24px;
}

.legal-updated {
  color: var(--olive-deep);
  font-size: var(--size-small);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-intro {
  margin: 36px 0 56px;
  color: var(--ink-soft);
}

.legal-shell section {
  padding: 30px 0;
  border-top: 1px solid var(--sage);
}

.legal-shell h2 {
  margin-bottom: 18px;
  font-size: var(--size-subtitle);
  letter-spacing: 0;
}

.legal-shell p + p,
.legal-shell ul + p,
.legal-shell p + ul {
  margin-top: 14px;
}

.legal-shell ul {
  padding-left: 22px;
}

.legal-shell li + li {
  margin-top: 8px;
}

.legal-contact-link {
  font-weight: 700;
  color: var(--olive-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

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

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

  .button {
    transition: none;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 88px;
  }

  .site-header {
    height: 80px;
  }

  .brand {
    width: 56px;
    height: 56px;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    height: 1px;
    width: 28px;
    background: var(--ink);
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 79px;
    left: -24px;
    right: -24px;
    padding: 30px 24px 36px;
    background: white;
    border-bottom: 1px solid var(--sage);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .hero {
    min-height: 0;
    gap: 48px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-image {
    width: 84%;
    margin-left: auto;
  }

  .hero-image img {
    height: 690px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .outcome-card {
    min-height: 0;
  }

  .service-area-inner,
  .process,
  .contact-inner {
    gap: 56px;
  }

  .project-grid {
    gap: 26px;
  }

  .contact-form {
    padding: 38px;
  }

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

  .footer-links {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --page: min(calc(100% - 32px), 1180px);
    --size-body: 17px;
    --size-subtitle: 27px;
    --size-title: 46px;
    --section-space: 72px;
  }

  .site-nav {
    left: -16px;
    right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 54px 0 72px;
    gap: 40px;
  }

  .hero-image {
    width: 100%;
  }

  .hero-image img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

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

  .manifesto {
    padding: 16px 0;
  }

  .manifesto p {
    min-height: auto;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

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

  .outcome-grid {
    margin-top: 48px;
  }

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

  .spaces-heading {
    margin-bottom: 38px;
  }

  .project-grid {
    gap: 52px;
  }

  .project figure {
    aspect-ratio: 4 / 5;
  }

  .principle-inner {
    min-height: 360px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 78px;
  }

  .footer-brand {
    width: 56px;
    height: 56px;
  }

  .footer-links {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 18px 22px;
  }

  .copyright {
    left: 0;
    right: auto;
  }

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