@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --ink: #20211f;
  --paper: #fafaf8;
  --soft: #f0f1eb;
  --accent: #d8eb70;
  --muted: #6f716b;
  --line: #d9dad3;
  --font: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.5; }
::selection { background: var(--accent); color: var(--ink); }
a { color: inherit; text-decoration: none; }
.page-width { margin-left: auto; margin-right: auto; max-width: 1180px; padding-left: 32px; padding-right: 32px; }

.site-header { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding-bottom: 22px; padding-top: 22px; }
.brand { font-size: 15px; font-weight: 600; letter-spacing: -.02em; }
.header-link, .button-text, .site-footer a { color: var(--muted); font-size: 14px; }
.header-link:hover, .button-text:hover, .site-footer a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.hero { align-items: end; display: grid; gap: 100px; grid-template-columns: minmax(0, 1fr) 310px; min-height: 610px; padding-bottom: 92px; padding-top: 92px; }
.hero-content { max-width: 760px; }
.eyebrow { color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .04em; margin: 0 0 20px; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(56px, 8vw, 104px); font-weight: 500; max-width: 760px; }
.hero-lede { font-size: 19px; line-height: 1.5; margin: 32px 0; max-width: 590px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 22px; }
.button { align-items: center; border: 1px solid var(--ink); cursor: pointer; display: inline-flex; font-size: 14px; font-weight: 500; gap: 26px; justify-content: space-between; padding: 13px 16px; transition: background .2s, color .2s; }
.button-primary { background: var(--accent); }
.button-primary:hover { background: #e5f792; }
.button-text { border: 0; padding-left: 0; padding-right: 0; }
.fit-card { background: var(--soft); border: 1px solid var(--line); padding: 24px; }
.card-title { font-size: 14px; font-weight: 600; margin: 0 0 16px; }
.fit-card ul { list-style: none; margin: 0; padding: 0; }
.fit-card li { border-top: 1px solid var(--line); font-size: 14px; line-height: 1.4; padding: 14px 0; }
.fit-card li:last-child { padding-bottom: 0; }

.services { border-top: 1px solid var(--line); padding-bottom: 115px; padding-top: 105px; }
h2 { font-size: clamp(37px, 5vw, 66px); font-weight: 500; max-width: 560px; }
.service-grid { display: grid; gap: 0 55px; grid-template-columns: repeat(2, 1fr); margin-top: 75px; }
.service-card { border-top: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: 32px 1fr; padding: 23px 0 28px; }
.service-card > span, .process-step > span { color: var(--muted); font-size: 13px; }
.service-card h3 { font-size: 27px; font-weight: 500; grid-column: 2; margin: -4px 0 2px; }
.service-card p { color: var(--muted); font-size: 15px; grid-column: 2; line-height: 1.5; margin: 0; max-width: 360px; }

.process { background: var(--soft); border-top: 1px solid var(--line); display: grid; gap: 100px; grid-template-columns: 1fr 1fr; padding-bottom: 110px; padding-top: 105px; }
.process-list { border-top: 1px solid var(--line); }
.process-step { border-bottom: 1px solid var(--line); display: grid; gap: 20px; grid-template-columns: 35px 1fr; padding: 22px 0; }
.process-step h3 { font-size: 25px; font-weight: 500; margin: -4px 0 8px; }
.process-step p { color: var(--muted); font-size: 15px; line-height: 1.5; margin: 0; max-width: 390px; }

.engagement { border-top: 1px solid var(--line); display: grid; gap: 100px; grid-template-columns: 1fr 1fr; padding-bottom: 110px; padding-top: 105px; }
.engagement-list > div { border-top: 1px solid var(--line); padding: 20px 0; }
.engagement-list > div:last-child { border-bottom: 1px solid var(--line); }
.engagement-list strong { font-size: 18px; font-weight: 500; }
.engagement-list p { color: var(--muted); font-size: 15px; margin: 7px 0 0; max-width: 400px; }

.contact { background: var(--ink); color: var(--paper); padding-bottom: 105px; padding-top: 105px; }
.contact .eyebrow { color: var(--accent); }
.contact h2 { font-size: clamp(43px, 6vw, 80px); max-width: 760px; }
.contact > p:not(.eyebrow) { color: #c7c9c0; font-size: 17px; line-height: 1.55; margin: 30px 0; max-width: 500px; }
.contact .button-primary { color: var(--ink); }
.contact-email { color: #c7c9c0; font-size: 15px; margin: 15px 0 0; }
.contact-email a { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); display: flex; font-size: 13px; justify-content: space-between; padding-bottom: 22px; padding-top: 22px; }
.site-footer a { color: var(--ink); }

@media (max-width: 760px) {
  .page-width { padding-left: 22px; padding-right: 22px; }
  .site-header { padding-bottom: 18px; padding-top: 18px; }
  .header-link { font-size: 12px; }
  .hero, .process, .engagement { display: block; min-height: 0; padding-bottom: 75px; padding-top: 70px; }
  h1 { font-size: clamp(52px, 15vw, 85px); }
  .hero-lede { font-size: 17px; margin-top: 25px; }
  .fit-card { margin-top: 52px; max-width: 380px; }
  .services, .contact { padding-bottom: 75px; padding-top: 75px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .service-card h3 { font-size: 25px; }
  .process-list, .engagement-list { margin-top: 42px; }
  .contact h2 { font-size: clamp(42px, 12vw, 70px); }
  .site-footer { align-items: start; gap: 22px; line-height: 1.4; }
}
