:root {
  --paper: #fffcf1;
  --paper-deep: #e7e4da;
  --ink: #222120;
  --green: #1a2f23;
  --muted: #2c3930;
  --rust: #74341e;
  --accent: #efb49e;
  --inverse: #fffcf1;
  --inverse-muted: #dce4dd;
  --heading: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Hanken Grotesk", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 960px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; width: 100%; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; font-family: var(--heading); }
p { color: var(--muted); }
.shell, .section { padding-inline: max(24px, calc((100vw - var(--content)) / 2)); }
.section { padding-block: 128px; }
.eyebrow { margin: 0 0 16px; color: var(--rust); font-size: 12px; font-weight: 700; line-height: 12px; letter-spacing: 1.2px; text-transform: uppercase; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 2; display: flex; align-items: center; justify-content: space-between; width: min(var(--content), calc(100% - 48px)); margin: 0 auto; padding: 28px 0; }
.brand { font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-decoration: none; }
.brand span { margin-left: 6px; color: var(--rust); }
nav { display: flex; gap: 28px; }
nav a, .site-footer > a:last-child { font-size: 14px; font-weight: 700; text-underline-offset: 4px; }

.hero { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, .8fr); gap: 72px; align-items: end; min-height: 760px; padding-top: 152px; padding-bottom: 88px; }
.hero-main { padding-bottom: 28px; }
.hero h1 { max-width: 700px; font-size: clamp(52px, 6vw, 76px); line-height: 1.01; letter-spacing: -2px; }
.hero-dek { max-width: 680px; margin: 32px 0 0; font-size: 20px; line-height: 32px; }
.hero-dek strong { color: var(--ink); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 56px; padding: 16px 22px; font-weight: 700; text-decoration: none; }
.button span { transition: transform .18s ease; }
.button:hover span { transform: translateX(4px); }
.button--primary { background: var(--green); color: var(--inverse); }
.button--light { background: var(--inverse); color: var(--green); }
.button--accent { background: var(--accent); color: var(--green); }
.text-link { font-weight: 700; text-underline-offset: 5px; }

.hero-brief { padding: 28px 0 0; border-top: 2px solid var(--green); background: transparent; color: var(--ink); }
.hero-brief .eyebrow { color: var(--rust); }
.brief-title { color: var(--ink); font-size: 32px; line-height: 38px; letter-spacing: -.7px; }
.brief-dek { margin: 8px 0 28px; font-size: 16px; line-height: 24px; }
.brief-meta { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 24px 0; border-top: 1px solid rgba(26, 47, 35, .34); border-bottom: 1px solid rgba(26, 47, 35, .34); }
.brief-meta div + div { padding-left: 24px; border-left: 1px solid rgba(26, 47, 35, .34); }
.brief-meta dt { margin-bottom: 8px; color: var(--rust); font-size: 11px; font-weight: 700; line-height: 12px; letter-spacing: 1.1px; text-transform: uppercase; }
.brief-meta dd { margin: 0; font-size: 18px; font-weight: 700; line-height: 24px; }
.brief-foot { margin: 0; padding-top: 24px; font-size: 14px; line-height: 22px; }
.brief-foot span { padding: 0 4px; color: var(--rust); }

.service { border-top: 2px solid var(--green); background: var(--paper-deep); }
.chapter-heading { display: grid; grid-template-columns: 2fr 3fr; column-gap: 80px; }
.chapter-heading .eyebrow { grid-column: 1 / -1; }
.chapter-heading h2 { max-width: 520px; font-size: clamp(40px, 5vw, 58px); line-height: 1.06; letter-spacing: -1.3px; }
.chapter-heading > p:last-child { max-width: 520px; margin: 4px 0 0; font-size: 18px; line-height: 30px; }
.chapter-copy { max-width: 520px; }
.chapter-copy p { margin: 0 0 16px; font-size: 18px; line-height: 30px; }
.chapter-copy p:last-child { margin-bottom: 0; }
.chapter-copy strong { color: var(--ink); }
.service-list { margin-top: 88px; border-top: 4px solid var(--green); }
.service-list article { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 32px 0; border-bottom: 2px solid var(--green); }
.service-list article > span { color: var(--rust); font-size: 12px; font-weight: 700; letter-spacing: 1.1px; }
.service-list article > div { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr); gap: 48px; }
.service-list h3 { font-size: 28px; line-height: 34px; letter-spacing: -.5px; }
.service-list p { max-width: 480px; margin: 3px 0 0; font-size: 16px; line-height: 25px; }

.section--dark { background: var(--green); color: var(--inverse); }
.section--dark .eyebrow { color: var(--accent); }
.chapter-heading--light > p:last-child { color: var(--inverse-muted); }
.chapter-heading--light .chapter-copy p { color: var(--inverse-muted); }
.chapter-heading--light .chapter-copy strong { color: var(--inverse); }
.approach-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 88px 0 0; padding: 0; border-top: 1px solid rgba(255, 252, 241, .6); border-bottom: 1px solid rgba(255, 252, 241, .6); list-style: none; }
.approach-steps li { min-height: 260px; padding: 34px 30px; }
.approach-steps li + li { border-left: 1px solid rgba(255, 252, 241, .6); }
.approach-steps span { display: block; margin-bottom: 48px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 1.1px; }
.approach-steps h3 { font-size: 28px; line-height: 34px; }
.approach-steps p { margin: 16px 0 0; color: var(--inverse-muted); font-size: 16px; line-height: 25px; }

.chapter-heading--compact { display: block; }
.chapter-heading--compact h2 { max-width: none; }
.deliverable-list { margin-top: 72px; }
.deliverable-list article { display: grid; grid-template-columns: 72px minmax(240px, 1fr) minmax(0, 1.25fr); gap: 24px; align-items: start; padding: 36px 0; border-top: 2px solid var(--green); }
.deliverable-list article:last-child { border-bottom: 2px solid var(--green); }
.deliverable-number { margin: 5px 0 0; color: var(--rust); font-size: 12px; font-weight: 700; letter-spacing: 1.1px; }
.deliverable-list h3 { font-size: 28px; line-height: 34px; }
.deliverable-list article > p:last-child { max-width: 480px; margin: 3px 0 0; font-size: 16px; line-height: 25px; }
.boundary { max-width: 720px; margin: 40px 0 0 96px; font-size: 14px; line-height: 22px; }
.boundary strong { color: var(--ink); }

.how { border-bottom: 1px solid rgba(255, 252, 241, .38); }
.process-meta { margin: 80px 0 0; padding: 28px 0; border-top: 1px solid rgba(255, 252, 241, .6); border-bottom: 1px solid rgba(255, 252, 241, .6); color: var(--inverse); font-family: var(--heading); font-size: 24px; font-weight: 700; line-height: 32px; text-align: center; }
.process-meta span { padding: 0 18px; color: var(--accent); }

.work { padding-bottom: 0; overflow: hidden; }
.work-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: start; }
.work h2 { max-width: 590px; font-size: clamp(40px, 5vw, 58px); line-height: 1.06; letter-spacing: -1.3px; }
.work-label { margin: 0 0 18px; color: var(--inverse); font-size: 13px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.work-intro > div:last-child > p { margin: 0; color: var(--inverse-muted); font-size: 17px; line-height: 28px; }
.work-intro > div:last-child > p + p { margin-top: 18px; }
.work-intro strong { color: var(--inverse); }
.work .button { margin-top: 32px; }
.work-visual { display: block; overflow: hidden; height: 520px; margin-top: 80px; background: #0c0e0f; }
.work-visual img { height: auto; transform: translateY(-1%); }

.investment { padding-block: 144px; }
.investment-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 88px; align-items: start; }
.investment-label { margin: 0 0 16px; color: var(--rust); font-size: 12px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.investment-headline h2 { font-size: clamp(52px, 6vw, 72px); line-height: 1.08; letter-spacing: -1.8px; }
.investment-headline h2 + h2 { margin-top: 8px; }
.included-label { margin: 0 0 14px; color: var(--rust); font-size: 12px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.investment-copy ul { margin: 0 0 48px; padding: 0; list-style: none; }
.investment-copy li { padding: 11px 0; border-bottom: 1px solid rgba(26, 47, 35, .38); color: var(--ink); font-size: 16px; font-weight: 700; line-height: 24px; }
.investment-copy h3 { font-size: 32px; line-height: 40px; letter-spacing: -.6px; }
.investment-copy > p { margin: 20px 0 0; font-size: 17px; line-height: 28px; }
.contact-intro p { margin: 12px 0 0; font-size: 17px; line-height: 28px; }
.contact-form { display: grid; gap: 18px; margin-top: 32px; scroll-margin-top: 32px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: .25px; }
.contact-form label em { color: var(--muted); font-size: 12px; font-style: normal; font-weight: 400; }
.contact-form input,
.contact-form textarea,
.contact-form select { width: 100%; border: 1px solid rgba(26, 47, 35, .52); border-radius: 0; outline: none; background: rgba(255, 252, 241, .72); color: var(--ink); font: inherit; font-size: 16px; line-height: 24px; }
.contact-form input,
.contact-form select { height: 56px; padding: 15px 16px; }
.contact-form select {
  appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%23222120' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
}
.contact-form textarea { min-height: 96px; padding: 14px 16px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(44, 57, 48, .58); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--rust); box-shadow: 0 0 0 2px rgba(116, 52, 30, .15); }
.contact-form .button { width: 100%; margin: 2px 0 0; border: 0; cursor: pointer; font-family: var(--body); font-size: 16px; }
.contact-form .button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 22px; margin: -2px 0 0; color: var(--muted); font-size: 14px; line-height: 22px; }
.form-status:empty { display: none; }
.form-status[data-state="success"] { color: var(--green); font-weight: 700; }
.form-status[data-state="error"] { color: var(--rust); font-weight: 700; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; white-space: nowrap; }
.investment-copy small { display: block; margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 18px; }

.full-site { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; border-top: 2px solid var(--green); background: var(--paper-deep); }
.full-site h2 { max-width: 520px; font-size: clamp(40px, 5vw, 56px); line-height: 1.08; letter-spacing: -1.2px; }
.full-site-copy p { margin: 0 0 20px; font-size: 17px; line-height: 28px; }
.full-site-copy strong { color: var(--ink); }
.full-site-copy .text-link { display: inline-block; margin-top: 16px; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 32px max(24px, calc((100vw - var(--content)) / 2)); border-top: 2px solid var(--green); }
.site-footer p { margin: 0; font-size: 13px; text-align: center; }
.site-footer > a:last-child { justify-self: end; }
a:focus-visible { outline: 3px solid var(--rust); outline-offset: 4px; }
.button:focus-visible,
.contact-form button:focus-visible { outline: 3px solid var(--rust); outline-offset: 4px; }

@media (max-width: 760px) {
  .site-header { width: calc(100% - 48px); }
  nav { gap: 16px; }
  .section { padding-block: 88px; }
  .hero { grid-template-columns: 1fr; gap: 56px; min-height: auto; padding-top: 144px; padding-bottom: 80px; }
  .hero-main { padding-bottom: 0; }
  .hero h1 { font-size: 46px; line-height: 49px; letter-spacing: -1.2px; }
  .hero-dek { font-size: 18px; line-height: 29px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-brief { padding: 24px 0 0; }
  .chapter-heading { grid-template-columns: 1fr; gap: 28px; }
  .chapter-heading .eyebrow { grid-column: auto; }
  .chapter-heading h2 { font-size: 38px; line-height: 43px; letter-spacing: -.8px; }
  .chapter-heading > p:last-child { margin: 0; }
  .chapter-copy { max-width: none; }
  .service-list, .approach-steps, .deliverable-list { margin-top: 56px; }
  .service-list article { grid-template-columns: 40px 1fr; gap: 8px; }
  .service-list article > div { grid-template-columns: 1fr; gap: 12px; }
  .approach-steps { grid-template-columns: 1fr; }
  .approach-steps li { min-height: 0; padding: 32px 0; }
  .approach-steps li + li { border-top: 1px solid rgba(255, 252, 241, .6); border-left: 0; }
  .approach-steps span { margin-bottom: 28px; }
  .deliverable-list article { grid-template-columns: 40px 1fr; gap: 8px; }
  .deliverable-list article > p:last-child { grid-column: 2; }
  .boundary { margin-left: 48px; }
  .work-intro { grid-template-columns: 1fr; gap: 32px; }
  .work-visual { height: 360px; margin-top: 56px; }
  .investment { padding-block: 104px; }
  .investment-grid { grid-template-columns: 1fr; gap: 56px; }
  .investment-headline h2 { font-size: 48px; line-height: 54px; letter-spacing: -1px; }
  .process-meta { margin-top: 56px; font-size: 20px; line-height: 30px; text-align: left; }
  .process-meta span { padding: 0 5px; }
  .full-site { grid-template-columns: 1fr; gap: 40px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .site-footer p { text-align: left; }
  .site-footer > a:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button span { transition: none; }
}
