:root {
  --page: #f5f1e8;
  --paper: #fffdf8;
  --ink: #302c29;
  --muted: #736b64;
  --line: #ded6ca;
  --orange: #f05a28;
  --sage: #d8ded0;
  --deep: #201e1b;
  --max-width: 1180px;
  --font-body: Avenir, "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-code: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(48, 44, 41, .055) 1px, transparent 1px),
    var(--page);
  background-size: 72px 72px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

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

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

a:focus-visible {
  outline: 3px solid rgba(240, 90, 40, .45);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(48, 44, 41, .12);
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(48, 44, 41, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(190px, 18vw, 258px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(48, 44, 41, .1);
  background: rgba(245, 241, 232, .7);
}

.site-nav a,
.header-link,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.header-link {
  justify-self: end;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.header-link:hover,
.button.primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--paper);
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 72px;
  align-items: center;
  min-height: auto;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 68px;
}

h2 {
  margin-bottom: 0;
  font-size: 64px;
}

h3 {
  margin-bottom: 12px;
  color: var(--deep);
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-portrait {
  justify-self: end;
  width: min(100%, 410px);
  margin: 0;
}

.hero-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(48, 44, 41, .14);
  object-fit: cover;
  object-position: 50% 18%;
}

.button {
  border: 1px solid rgba(48, 44, 41, .2);
  background: var(--paper);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button.secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.proof-band {
  margin: 0 0 8px;
  padding: 32px 0;
  background: var(--deep);
  color: var(--paper);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.proof-strip div {
  min-height: 132px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 253, 248, .18);
}

.proof-strip div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip span {
  color: var(--orange);
  font-family: var(--font-code);
  font-size: 13px;
  font-weight: 800;
}

.proof-strip p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, .78);
  font-size: 20px;
  line-height: 1.35;
}

.proof-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-tech-list li {
  color: rgba(255, 253, 248, .78);
  font-size: 20px;
  line-height: 1.35;
}

.proof-tech-list li:not(:last-child)::after {
  content: ",";
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 60px;
  padding: 86px 0;
}

.profile-copy {
  display: grid;
  gap: 24px;
  color: var(--muted);
  font-size: 21px;
}

.profile-copy p {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  padding-top: 86px;
  border-top: 1px solid var(--line);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.capability {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(48, 44, 41, .12);
  background: var(--paper);
}

.capability span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  border: 1px solid var(--line);
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.capability h3 {
  margin-top: 0;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 96px 0;
}

.process-intro {
  position: sticky;
  top: 116px;
}

.process-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  counter-increment: process;
  min-height: 130px;
  padding: 22px 24px;
  border: 1px solid rgba(48, 44, 41, .12);
  background: rgba(216, 222, 208, .55);
}

.process-steps li::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.process-steps span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  margin-bottom: 34px;
  background: var(--deep);
  color: var(--paper);
}

.contact-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.contact h2 {
  margin-bottom: 24px;
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, .72);
  font-size: 22px;
}

.contact-link {
  display: inline-flex;
  max-width: 100%;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 58px;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-link:hover {
  color: var(--orange);
}

.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 22px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--orange);
}

@media (max-width: 1120px) {
  .capability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-link {
    justify-self: stretch;
  }

  .profile,
  .section-heading,
  .process {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-portrait {
    justify-self: start;
    width: min(100%, 420px);
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 54px;
  }

  .contact-link {
    font-size: 48px;
  }

  .process-intro {
    position: static;
  }

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

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .proof-strip div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .capability {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  body {
    background-size: 48px 48px;
    font-size: 16px;
  }

  .site-header,
  .section,
  .contact-inner,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  .brand img {
    width: min(100%, 230px);
  }

  .site-nav {
    display: none;
  }

  .site-nav a,
  .header-link,
  .button {
    width: 100%;
    white-space: normal;
  }

  .hero {
    padding: 42px 0 58px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-text,
  .profile-copy,
  .contact p:not(.eyebrow) {
    font-size: 18px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0;
  }

  .capability,
  .process-steps li {
    padding: 20px;
  }

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

  .proof-strip {
    gap: 20px;
  }

  .proof-strip div,
  .proof-strip div:first-child {
    min-height: 0;
    padding: 0 0 20px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 253, 248, .18);
  }

  .proof-strip div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .profile,
  .section-heading {
    padding-top: 64px;
  }

  .process {
    padding: 70px 0;
  }

  .contact-inner {
    padding: 40px 0;
  }

  .contact-link {
    font-size: 34px;
  }

  .site-footer {
    display: grid;
  }
}
