@charset "UTF-8";
:root {
  --paper: #f8f7f2;
  --ink: #182c31;
  --muted: #56605c;
  --line: #d9dcd1;
  --accent: #a34f35;
  --sage: #e9ecdf;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
summary,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
svg {
  display: block;
}
::selection {
  background: #d9dfc9;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: 2px;
}
p {
  margin: 0 0 20px;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -2px;
}
h1 {
  font-size: clamp(46px, 4.35vw, 68px);
  line-height: 1.09;
}
h2 {
  font-size: clamp(36px, 3.25vw, 50px);
  line-height: 1.14;
}
h3 {
  font-size: 22px;
  letter-spacing: -0.5px;
}
h4 {
  font-size: 14px;
  font-weight: 700;
}
em {
  font-weight: 400;
  color: var(--accent);
}
[hidden] {
  display: none !important;
}
.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.section-shell {
  width: min(var(--max), calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 92px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.65px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 23px;
}
.small-square {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
}
.skip-link {
  position: fixed;
  z-index: 100;
  background: var(--ink);
  color: white;
  left: 12px;
  top: 12px;
  padding: 12px 20px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 247, 242, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1440px, calc(100% - 80px));
  margin: auto;
  min-height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}
.brand {
  display: flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}
.brand-mark {
  font-family: var(--sans);
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -2.8px;
}
.brand-dot {
  color: var(--accent);
}
.brand-label {
  font-size: 8px;
  letter-spacing: 2.45px;
  margin-top: 7px;
  padding-left: 2px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header nav > a:not(.button) {
  font-size: 12px;
  position: relative;
  padding: 15px 0;
}
.site-header nav > a:not(.button):after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s;
}
.site-header nav > a:hover:after,
.site-header nav > a[aria-current]:after {
  width: 100%;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 50px;
  transition:
    background 0.18s,
    transform 0.18s;
  max-width: 100%;
  text-align: center;
}
.button span {
  font-size: 18px;
  font-weight: 400;
}
.button:hover {
  background: #30484b;
  transform: translateY(-2px);
}
.button-small {
  padding: 13px 16px;
  font-size: 11px;
  min-height: 44px;
  gap: 20px;
}
.button:disabled {
  opacity: 0.65;
  cursor: default;
  transform: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.text-link span {
  font-size: 18px;
  font-weight: 400;
}
.menu-toggle {
  display: none;
}
.hero {
  padding-top: 25px;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-topline .eyebrow {
  margin: 0;
  font-size: 9px;
}
.location {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.location span {
  margin-left: 10px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 45px;
  align-items: center;
  padding: 67px 0 65px;
}
.hero-copy > .eyebrow {
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-description {
  font-size: 15px;
  color: var(--muted);
  max-width: 475px;
  line-height: 1.85;
  margin: 27px 0 29px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
.hero-note {
  font-size: 10px;
  max-width: 395px;
  color: var(--muted);
  margin: 19px 0 0;
}
.research-visual {
  margin: 0;
  background: #edefe3;
  padding: 21px 25px 24px;
  border: 1px solid #dde0d2;
  position: relative;
}
.visual-top {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.3px;
  color: var(--muted);
  border-bottom: 1px solid #d1d7c7;
  padding-bottom: 17px;
}
.research-visual svg {
  width: 100%;
  height: auto;
  margin: 10px 0;
}
.research-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid #d1d7c7;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
}
.visual-caption-end {
  font-family: var(--sans);
  font-size: 9px;
  line-height: 1.7;
  text-align: right;
  color: var(--muted);
}
.trust-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  font-size: 10px;
  color: #384a48;
}
.trust-strip i {
  font-size: 9px;
  font-style: normal;
  color: var(--accent);
  margin-right: 10px;
}
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.section-intro > p:not(.eyebrow) {
  max-width: 450px;
  color: var(--muted);
  margin-top: 24px;
  font-size: 14px;
}
.question-list {
  padding-top: 3px;
}
.question-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 16px;
}
.question-list a:first-child {
  border-top: 1px solid var(--line);
}
.question-list a > span:last-child {
  color: var(--accent);
}
.question-list a:hover {
  color: var(--accent);
}
.services {
  border-top: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 43px;
}
.section-heading > p {
  max-width: 355px;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 4px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-area-label {
  color: var(--accent);
  margin: 0 0 16px;
}
.value-areas {
  border-top: 1px solid var(--line);
}
.value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-list article {
  min-width: 0;
  padding: 27px 24px 12px;
  border-right: 1px solid var(--line);
}
.value-list article:first-child {
  padding-left: 0;
}
.value-list article:last-child {
  border-right: 0;
  padding-right: 0;
}
.value-list h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 29px 0 14px;
}
.value-list p {
  color: var(--muted);
  font-size: 12px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 29px 25px 23px;
  border-right: 1px solid var(--line);
  scroll-margin-top: 120px;
  min-width: 0;
}
.service-card:first-child {
  padding-left: 0;
}
.service-card:last-child {
  border-right: 0;
  padding-right: 0;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.index {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent);
}
.card-top svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: #6b7a65;
  stroke-width: 1.1;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  min-height: 63px;
  letter-spacing: -0.8px;
}
.service-card > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.service-card .service-question {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin: 19px 0 10px;
}
.service-card details {
  margin-top: auto;
  padding-top: 5px;
}
.service-card summary {
  font-size: 11px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 48px;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span:last-child {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
}
details[open] > summary > span:last-child:not(.optional-label) {
  transform: rotate(45deg);
}
.service-detail {
  font-size: 12px;
  padding: 10px 0;
}
.service-detail h4 {
  margin: 17px 0 8px;
}
.service-detail p {
  margin-bottom: 12px;
}
.service-detail ul {
  padding-left: 17px;
  color: var(--muted);
}
.service-detail .text-link {
  font-size: 11px;
  line-height: 1.6;
}
.section-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 26px;
}
.section-bottom p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.method {
  background: var(--ink);
  color: var(--paper);
}
.method .eyebrow {
  color: #bec8b3;
}
.method em {
  color: #ccd7ba;
}
.method .section-heading > p {
  color: #bcc8c5;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  margin: 54px 0 0;
  padding: 0;
  gap: 22px;
}
.method-steps li {
  position: relative;
  border-top: 1px solid #64716b;
  padding-top: 26px;
}
.method-steps li:before {
  content: "";
  width: 7px;
  height: 7px;
  background: #b7c7a1;
  position: absolute;
  top: -4px;
  left: 0;
  border-radius: 50%;
}
.step-number {
  font-family: var(--serif);
  color: #b7c7a1;
  font-size: 28px;
  display: block;
  margin-bottom: 24px;
}
.method-steps h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.method-steps p {
  font-size: 12px;
  line-height: 1.85;
  color: #bdc8c5;
  margin-bottom: 0;
}
.method-foot {
  border-top: 1px solid #4a5b5b;
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.method-foot p {
  font-size: 11px;
  color: #bdc8c5;
  margin: 0;
  max-width: 380px;
}
.method-foot .journey {
  max-width: 650px;
  color: #edf0e4;
  font-size: 11px;
}
.journey span {
  color: #a8bba1;
  margin: 0 6px;
}
.method-principles {
  margin-top: 24px;
  border-top: 1px solid #4a5b5b;
  font-size: 12px;
}
.method-principles summary {
  padding-block: 16px;
}
.method-principles summary > span {
  color: #cbd7ba;
}
.method-principles ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 45px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.research-method ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 38px;
  margin: 0 0 16px;
  padding: 0 0 0 20px;
  color: #bdc8c5;
  line-height: 1.75;
}
.research-method ol strong {
  color: var(--paper);
}
.value-principle {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.7px;
  margin: 26px 0 0;
  border-top: 1px solid #ccd4c0;
  padding-top: 23px;
}
.method-principles li {
  color: #bdc8c5;
}
.method-principles strong {
  color: var(--paper);
}
.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.deliverable-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
  gap: 7px 15px;
}
.deliverable-list > div:first-child {
  padding-top: 0;
}
.deliverable-list span {
  grid-row: span 2;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 20px;
}
.deliverable-list h3 {
  font-size: 17px;
}
.deliverable-list p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.technology {
  background: var(--sage);
  padding: 35px 40px 38px;
}
.technology > .eyebrow {
  font-size: 9px;
  color: #465641;
}
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.three-columns h3 {
  font-family: var(--serif);
  font-size: 27px;
}
.three-columns p {
  font-size: 12px;
  color: #49584d;
  margin: 14px 0 0;
}
.work-empty {
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 40px;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 9px,
    #182c3103 9px,
    #182c3103 10px
  );
}
.document-symbol {
  display: block;
  flex: 0 0 64px;
}
.document-symbol svg {
  width: 64px;
  fill: none;
  stroke: #839078;
  stroke-width: 1;
}
.work-empty .eyebrow {
  font-size: 9px;
  color: var(--muted);
}
.work-empty h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 10px 0 13px;
}
.work-empty p {
  max-width: 550px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.archive-mark {
  margin-left: auto;
  align-self: flex-end;
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}
.about {
  background: #edeee5;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr;
  gap: 95px;
  align-items: center;
}
.founder-placeholder {
  aspect-ratio: 4/4.4;
  min-height: 380px;
  background: #dce1d2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
}
.founder-placeholder:before {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid #bfc9b3;
  border-radius: 50% 50% 0 0;
  transform: translateY(15%);
  pointer-events: none;
}
.founder-placeholder > .eyebrow {
  font-size: 9px;
  z-index: 1;
  color: #485945;
}
.founder-initials {
  font-family: var(--serif);
  font-size: clamp(110px, 13vw, 180px);
  letter-spacing: -12px;
  line-height: 1;
  color: #66785d;
  position: relative;
  align-self: center;
}
.founder-initials > span {
  color: var(--accent);
}
.portrait-label {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.9;
  border-top: 1px solid #b3c0a6;
  padding-top: 16px;
}
.portrait-label > span:last-child {
  font-size: 9px;
  color: #4d5d46;
}
.about-copy h3 {
  font-size: 19px;
  margin-top: 29px;
}
.founder-role {
  font-size: 11px;
  color: var(--accent);
  margin: 8px 0 22px;
}
.about-copy > p:not(.eyebrow):not(.founder-role) {
  font-size: 13px;
  color: var(--muted);
  max-width: 540px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  border-top: 1px solid #cbd2c1;
  padding-top: 18px;
  margin-top: 27px;
  font-size: 9px;
  color: #4d5d46;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr;
  gap: 95px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  font-size: 14px;
  padding: 20px 0;
}
.faq-list details > p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 35px 7px 0;
}
.contact {
  background: #efeee6;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 95px;
}
.contact-aside {
  padding-top: 15px;
}
.contact-aside h3 {
  font-size: 18px;
}
.next-steps {
  list-style: none;
  counter-reset: next;
  padding: 0;
  margin: 27px 0 40px;
}
.next-steps li {
  counter-increment: next;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 12px;
  margin-bottom: 20px;
  max-width: 280px;
}
.next-steps li:before {
  content: "0" counter(next);
  font-size: 10px;
  color: var(--accent);
}
.contact-details {
  border-top: 1px solid #d2d6c9;
  padding-top: 25px;
}
.contact-details .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.contact-details > a {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
  display: inline-block;
  padding-block: 8px;
}
.contact-details > a > span {
  margin-left: 8px;
}
.contact-details > p:last-child {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  margin-top: 22px;
}
.confidentiality {
  font-size: 11px;
  color: var(--muted);
  max-width: 285px;
  border-left: 2px solid #9eac8c;
  padding-left: 15px;
  margin-top: 35px;
}
form {
  padding: 33px 35px;
  background: var(--paper);
  border: 1px solid var(--line);
  min-width: 0;
}
.form-intro h3 {
  font-family: var(--serif);
  font-size: 28px;
}
.form-intro p {
  font-size: 11px;
  color: var(--muted);
  margin: 8px 0 20px;
}
.form-notice {
  font-size: 11px;
  line-height: 1.75;
  border-left: 2px solid #809471;
  padding: 11px 15px;
  background: #ecefe3;
  margin-bottom: 25px;
}
.form-notice strong {
  font-weight: 600;
}
.form-notice a {
  text-decoration: underline;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 25px;
  min-width: 0;
}
legend {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 1.4px;
  padding: 0 0 18px;
  width: 100%;
  font-weight: 600;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
label span {
  font-weight: 400;
  color: var(--muted);
  font-size: 10px;
}
input,
textarea,
select {
  border: 1px solid #bac2b5;
  background: #fcfcf8;
  border-radius: 0;
  width: 100%;
  min-height: 45px;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #667064;
  font-size: 11px;
}
.field-hint {
  font-size: 10px;
  color: var(--muted);
  margin: -2px 0 10px;
}
.field-error {
  font-size: 11px;
  color: #a23526;
  min-height: 0;
  margin-top: 4px;
}
.field-error:empty {
  display: none;
}
fieldset > .field + .field {
  margin-top: 20px;
}
.optional-fields {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 20px;
}
.optional-fields summary {
  font-size: 12px;
  padding: 13px 0;
}
.optional-fields summary .optional-label {
  font-size: 10px;
  color: var(--muted);
}
.optional-label > span {
  font-size: 17px;
  color: var(--accent);
  margin-left: 10px;
}
.optional-fields .form-grid {
  padding: 15px 0 24px;
}
.privacy-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.8;
}
.privacy-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-footnote {
  font-size: 9px;
  color: var(--muted);
  margin: 11px 0 0;
}
form > .button {
  width: 100%;
  justify-content: space-between;
}
.error-summary {
  border: 1px solid #a23526;
  padding: 14px;
  margin-bottom: 25px;
  color: #8c2e22;
  font-size: 12px;
}
.error-summary p {
  margin: 0;
}
.error-summary ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.error-summary a {
  text-decoration: underline;
}
.error-summary a {
  display: inline-block;
  padding-block: 5px;
}
[aria-invalid="true"] {
  border-color: #a23526;
}
.draft-result {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.draft-result h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.draft-result p {
  font-size: 12px;
  color: var(--muted);
}
.draft-result .actions {
  margin-bottom: 18px;
  gap: 15px;
}
.text-button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--muted);
  padding: 12px 0;
  min-height: 44px;
  font-size: 12px;
  color: var(--ink);
}
.draft-result textarea {
  font-size: 12px;
}
.site-footer {
  padding-block: 45px 20px;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 55px;
  padding-bottom: 38px;
}
.footer-main p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  margin: 0;
}
.footer-main > .text-link {
  margin-left: auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project-card {
  border: 1px solid var(--line);
  padding: 30px;
  margin-bottom: 24px;
}
.project-card h3 {
  font-family: var(--serif);
  font-size: 28px;
}
.project-card dl {
  font-size: 12px;
}
.project-card dl div {
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}
.project-card dt {
  font-weight: 600;
}
.project-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}
.privacy-page {
  max-width: 760px;
  padding-block: 70px;
}
.privacy-page h1 {
  font-size: 52px;
  margin-bottom: 25px;
}
.privacy-page h2 {
  font-family: var(--sans);
  font-size: 23px;
  letter-spacing: -0.5px;
  margin: 35px 0 15px;
}
.privacy-page p,
.privacy-page li {
  font-size: 14px;
  color: var(--muted);
}
.privacy-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-page .form-notice {
  font-size: 13px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: reveal 0.6s ease both;
  }
  .research-visual {
    animation: reveal 0.7s 0.1s ease both;
  }
  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (min-width: 1600px) {
  .hero-grid {
    padding-block: 82px;
  }
  .hero {
    padding-top: 30px;
  }
}
@media (max-width: 1150px) {
  .section-shell {
    width: calc(100% - 72px);
  }
  .header-inner {
    width: calc(100% - 48px);
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header nav > a:not(.button) {
    font-size: 11px;
  }
  .button-small {
    font-size: 10px;
    gap: 10px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero-grid h1 {
    font-size: 49px;
  }
  .hero-copy .actions {
    gap: 15px;
  }
  .hero-copy .button {
    font-size: 11px;
    padding: 15px;
  }
  .hero-copy .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .research-visual {
    padding: 17px;
  }
  .problem,
  .deliverables {
    gap: 50px;
  }
  .about-grid,
  .faq,
  .contact-grid {
    gap: 55px;
  }
  .service-card {
    padding-inline: 17px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .trust-strip {
    font-size: 9px;
  }
  .trust-strip i {
    margin-right: 5px;
  }
  .method-steps {
    gap: 17px;
  }
  .method-steps h3 {
    font-size: 16px;
  }
  .method-foot {
    flex-direction: column;
    gap: 14px;
  }
  .method-foot p {
    max-width: none;
  }
}
@media (max-width: 900px) {
  .value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .value-list article:nth-child(2) {
    border-right: 0;
  }
  .value-list article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .value-list article {
    padding: 26px;
  }
  .value-list article:first-child {
    padding-left: 26px;
  }
  .value-list article:last-child {
    padding-right: 26px;
  }
  .header-inner {
    min-height: 80px;
    flex-wrap: wrap;
    gap: 0;
    padding-block: 16px;
  }
  .brand-mark {
    font-size: 32px;
  }
  .brand-label {
    font-size: 7px;
    letter-spacing: 2.2px;
  }
  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 23px;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .site-header nav > a:not(.button) {
    font-size: 13px;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    background: none;
    border: 1px solid #b9c0b3;
    min-height: 44px;
    min-width: 90px;
    font-size: 12px;
    color: var(--ink);
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.is-open {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 26px;
    padding: 48px 0;
  }
  .hero-grid h1 {
    font-size: 41px;
    letter-spacing: -1.8px;
  }
  .hero-description {
    font-size: 13px;
    margin-block: 20px;
  }
  .hero-copy .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .hero-note {
    font-size: 9px;
  }
  .visual-top {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .research-visual figcaption {
    font-size: 14px;
  }
  .visual-caption-end {
    font-size: 8px;
  }
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    font-size: 10px;
  }
  .section-pad {
    padding-block: 68px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 280px;
    font-size: 13px;
  }
  .section-intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .problem,
  .deliverables {
    gap: 35px;
  }
  .question-list a {
    font-size: 14px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card,
  .service-card:first-child,
  .service-card:last-child {
    padding: 25px;
  }
  .service-card:nth-child(2) {
    border-right: 0;
  }
  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .service-card h3 {
    min-height: 0;
    font-size: 28px;
  }
  .card-top {
    margin-bottom: 24px;
  }
  .method-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 25px;
  }
  .step-number {
    margin-bottom: 14px;
  }
  .technology {
    padding: 30px;
  }
  .three-columns {
    gap: 24px;
  }
  .three-columns h3 {
    font-size: 23px;
  }
  .work-empty {
    padding: 30px;
    gap: 24px;
  }
  .archive-mark {
    display: none;
  }
  .about-grid {
    gap: 35px;
    grid-template-columns: 0.8fr 1fr;
  }
  .founder-placeholder {
    min-height: 360px;
    padding: 23px;
  }
  .about-copy h2 {
    font-size: 35px;
  }
  .faq,
  .contact-grid {
    gap: 35px;
    grid-template-columns: 0.7fr 1.3fr;
  }
  .contact-grid form {
    padding: 25px;
  }
  .contact-details > a {
    font-size: 12px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .journey {
    line-height: 2;
  }
}
@media (max-width: 600px) {
  .value-list {
    grid-template-columns: 1fr;
  }
  .value-list article,
  .value-list article:first-child,
  .value-list article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0 8px;
  }
  .value-list article:last-child {
    border-bottom: 0;
  }
  .value-list h3 {
    margin: 12px 0;
  }
  .value-list p {
    font-size: 13px;
  }
  .research-method ol {
    grid-template-columns: 1fr;
  }
  html {
    scroll-padding-top: 95px;
  }
  .section-shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    width: calc(100% - 40px);
    min-height: 76px;
  }
  .site-header nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .site-header nav .button {
    grid-column: 1/-1;
    margin-top: 10px;
  }
  .hero {
    padding-top: 20px;
  }
  .hero-topline .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .location {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 39px 0 32px;
    gap: 32px;
  }
  .hero-grid h1 {
    font-size: clamp(37px, 8.3vw, 49px);
    letter-spacing: -1.8px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    margin: 22px 0;
  }
  .hero-copy .actions {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .hero-copy .button {
    font-size: 11px;
    padding: 15px 16px;
    gap: 13px;
  }
  .hero-copy .text-link {
    font-size: 10px;
  }
  .hero-note {
    font-size: 10px;
  }
  .research-visual {
    padding: 18px 20px;
  }
  .research-visual svg {
    max-height: 275px;
  }
  .visual-top {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .research-visual figcaption {
    font-size: 17px;
  }
  .visual-caption-end {
    font-size: 9px;
  }
  .trust-strip {
    font-size: 9px;
    gap: 15px 10px;
    padding-block: 20px;
    line-height: 1.6;
  }
  .trust-strip i {
    display: block;
    margin-bottom: 4px;
  }
  .section-pad {
    padding-block: 54px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .problem,
  .deliverables,
  .about-grid,
  .faq,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-intro > p:not(.eyebrow) {
    font-size: 13px;
    margin-bottom: 0;
  }
  .question-list a {
    padding: 17px 0;
    font-size: 14px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 30px;
  }
  .section-heading > p {
    max-width: none;
    font-size: 13px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:first-child,
  .service-card:last-child {
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-card:last-child {
    border-bottom: 0;
  }
  .service-card h3 {
    font-size: 29px;
  }
  .card-top {
    margin-bottom: 18px;
  }
  .service-card > p {
    font-size: 13px;
  }
  .service-card .service-question {
    font-size: 13px;
    margin-top: 16px;
  }
  .service-card details {
    margin-top: 17px;
  }
  .service-card summary {
    font-size: 12px;
  }
  .service-detail {
    font-size: 13px;
  }
  .section-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 23px;
  }
  .method-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 33px;
  }
  .method-steps li {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 8px 15px;
    border-top: 0;
    border-left: 1px solid #64716b;
    padding: 0 0 27px 22px;
    margin-left: 4px;
  }
  .method-steps li:last-child {
    padding-bottom: 0;
    border-color: transparent;
  }
  .method-steps li:before {
    left: -4px;
    top: 8px;
  }
  .step-number {
    grid-row: span 2;
    font-size: 25px;
    margin: 0;
    line-height: 1.3;
  }
  .method-steps h3 {
    font-size: 18px;
    padding-top: 3px;
  }
  .method-steps p {
    font-size: 13px;
  }
  .method-foot {
    margin-top: 30px;
  }
  .method-foot .journey {
    font-size: 11px;
  }
  .journey span {
    margin-inline: 3px;
  }
  .method-principles ul {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .deliverable-list > div:first-child {
    padding-top: 15px;
  }
  .technology {
    padding: 27px 24px;
  }
  .three-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .three-columns > div + div {
    border-top: 1px solid #ccd4c0;
    padding-top: 24px;
  }
  .three-columns h3 {
    font-size: 27px;
  }
  .three-columns p {
    font-size: 13px;
    margin-top: 10px;
  }
  .work-empty {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 23px;
  }
  .document-symbol {
    flex-basis: auto;
  }
  .document-symbol svg {
    width: 45px;
    height: 54px;
  }
  .work-empty h3 {
    font-size: 28px;
  }
  .founder-placeholder {
    min-height: 0;
    aspect-ratio: 1.1;
    max-width: 420px;
    width: 100%;
  }
  .founder-initials {
    font-size: 140px;
  }
  .about-copy h2 {
    font-size: 36px;
  }
  .about-copy > p:not(.eyebrow):not(.founder-role) {
    font-size: 13px;
  }
  .about-tags {
    font-size: 10px;
  }
  .faq-list summary {
    font-size: 13px;
    gap: 16px;
  }
  .faq-list summary > span {
    flex-shrink: 0;
  }
  .contact-grid {
    gap: 35px;
  }
  .contact-aside {
    padding: 0;
  }
  .next-steps {
    margin-block: 23px 28px;
  }
  .next-steps li {
    max-width: none;
    font-size: 13px;
  }
  .contact-details > a {
    font-size: 15px;
  }
  .contact-details > p:last-child {
    font-size: 12px;
  }
  .confidentiality {
    max-width: none;
    margin-block: 25px 0;
  }
  .contact-grid form {
    padding: 25px 20px;
  }
  .form-grid {
    gap: 17px;
  }
  input,
  textarea,
  select {
    font-size: 16px;
  }
  label {
    font-size: 12px;
  }
  .field-hint {
    font-size: 11px;
  }
  .privacy-note,
  .form-footnote {
    font-size: 10px;
  }
  .footer-main {
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 28px;
  }
  .footer-main p {
    font-size: 17px;
  }
  .footer-main > .text-link {
    margin-left: 0;
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom a {
    min-height: 44px;
  }
  .site-footer {
    padding-top: 32px;
  }
  .project-list {
    grid-template-columns: 1fr;
  }
  .privacy-page {
    padding-block: 45px;
  }
  .privacy-page h1 {
    font-size: 43px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
