:root {
  --ink: #1e2824;
  --muted: #66716b;
  --paper: #f3f0e9;
  --paper-deep: #e4dfd3;
  --sage: #b9c6b5;
  --moss: #526659;
  --line: rgba(30, 40, 36, .18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #9c5d37; outline-offset: 4px; }
.skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 20; padding: .65rem .9rem; background: var(--ink); color: var(--paper); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 5; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; width: min(100%, var(--max)); margin: auto; padding: 1.65rem var(--gutter); }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; letter-spacing: .2em; font-size: .75rem; font-weight: 700; }
.brand-mark { display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 1.25rem; letter-spacing: 0; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.8vw, 2.75rem); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta) { opacity: .72; transition: opacity .2s ease; }
.site-nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { padding: .75rem 1rem; border: 1px solid var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; font: inherit; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }

.hero { position: relative; min-height: min(860px, 100vh); display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 38%); gap: 7vw; align-items: center; padding: 10rem var(--gutter) 6rem; width: min(100%, var(--max)); margin: 0 auto; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; width: 46vw; height: 46vw; right: -14vw; top: -10vw; border-radius: 50%; background: var(--sage); opacity: .42; }
.hero-copy { max-width: 700px; padding-bottom: 2rem; }
.eyebrow { margin: 0 0 1.1rem; color: var(--moss); font-size: .7rem; font-weight: 700; letter-spacing: .17em; line-height: 1.4; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
h1 { max-width: 720px; margin-bottom: 1.7rem; font-size: clamp(3.8rem, 8.5vw, 8.7rem); }
h2 { margin-bottom: 1.35rem; font-size: clamp(2.7rem, 5.4vw, 6rem); }
h3 { font-size: 1rem; font-weight: 500; letter-spacing: -.01em; }
.hero-lead { max-width: 480px; margin-bottom: 2.3rem; color: var(--muted); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.4; }
.button { display: inline-flex; align-items: center; gap: 1.6rem; min-height: 3.3rem; padding: .9rem 1.25rem; text-decoration: none; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { border: 1px solid rgba(243,240,233,.65); color: var(--paper); }
.hero-visual { margin: 0; position: relative; }
.hero-visual img { width: 100%; height: min(620px, 68vh); object-fit: cover; object-position: center; filter: saturate(.72) contrast(.96); }
.hero-visual figcaption { display: flex; justify-content: space-between; gap: 1rem; padding-top: .8rem; color: var(--muted); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.hero-note { position: absolute; left: var(--gutter); bottom: 2rem; display: flex; align-items: center; gap: .75rem; color: var(--muted); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-note .line { width: 4rem; height: 1px; background: var(--line); }

.section-grid, .projects, .process { width: min(100%, var(--max)); margin: 0 auto; padding: 9rem var(--gutter); }
.section-grid { display: grid; grid-template-columns: minmax(150px, 25%) minmax(0, 1fr); gap: 5vw; }
.section-label { display: flex; gap: .7rem; align-items: baseline; color: var(--moss); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section-label span:first-child { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; letter-spacing: 0; }
.intro { border-top: 1px solid var(--line); }
.intro > div:last-child { max-width: 760px; }
.body-large { max-width: 620px; font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2.1rem); line-height: 1.15; }
.intro p:not(.eyebrow) + p { max-width: 530px; color: var(--muted); }

.projects { background: var(--paper-deep); max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); }
.section-heading { display: grid; grid-template-columns: 25% minmax(0, 1fr) 24%; gap: 5vw; align-items: start; margin-bottom: 4rem; }
.section-heading h2 { max-width: 600px; }
.section-aside { align-self: end; margin: 0; color: var(--muted); font-size: .9rem; }
.project-grid { display: grid; grid-template-columns: 1fr 1.15fr; align-items: end; gap: clamp(1.3rem, 5vw, 6rem); max-width: 1060px; }
.project-card { margin: 0; }
.project-card figure { margin: 0; overflow: hidden; background: var(--sage); }
.project-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.035); }
.project-card-tall { max-width: 330px; }
.project-card-tall figure { aspect-ratio: 3 / 4; }
.project-card-wide { max-width: 510px; }
.project-card-wide figure { aspect-ratio: 4 / 3; }
.project-card-wide img { object-position: center 38%; }
.project-meta { display: flex; justify-content: space-between; gap: 1rem; padding-top: .85rem; color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

.services { background: var(--paper); }
.service-list { margin-top: 3rem; border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 2rem minmax(150px, .8fr) 1.2fr; gap: 1.5rem; align-items: baseline; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.service-row > span { color: var(--moss); font-family: var(--serif); }
.service-row h3 { margin: 0; }
.service-row p { max-width: 380px; margin: 0; color: var(--muted); font-size: .9rem; }

.process { background: var(--moss); color: var(--paper); max-width: none; padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); }
.process .section-label { color: var(--sage); }
.process-head { display: grid; grid-template-columns: 25% minmax(0, 1fr); gap: 5vw; align-items: start; }
.process-head h2 { max-width: 700px; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 6rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(243,240,233,.35); }
.process-list li { min-height: 220px; padding: 1.5rem 1rem 1rem 0; border-right: 1px solid rgba(243,240,233,.35); }
.process-list li + li { padding-left: 1.5rem; }
.process-list li > span { color: var(--sage); font-family: var(--serif); font-size: 1.2rem; }
.process-list h3 { margin: 2.5rem 0 .6rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.process-list p { max-width: 210px; margin: 0; color: rgba(243,240,233,.72); font-size: .9rem; }

.next-step { padding: 11rem var(--gutter); background: var(--ink); color: var(--paper); text-align: center; }
.next-step .eyebrow { color: var(--sage); }
.next-step h2 { max-width: 820px; margin: 0 auto 2.2rem; }
.site-footer { width: min(100%, var(--max)); margin: 0 auto; padding: 4rem var(--gutter) 2rem; }
.footer-brand { margin-bottom: 1.5rem; }
.site-footer > p { max-width: 320px; font-family: var(--serif); font-size: 1.4rem; line-height: 1.15; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 5rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom a { text-decoration: none; }
.site-footer small { display: block; max-width: 560px; margin-top: 2.5rem; color: var(--muted); font-size: .65rem; }

@media (max-width: 760px) {
  .site-header { padding-top: 1.1rem; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav { position: absolute; top: 0; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 5rem var(--gutter) 1.5rem; background: var(--paper); box-shadow: 0 1rem 2rem rgba(30,40,36,.08); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: .8rem; padding: .8rem 1rem; text-align: center; }
  .hero { min-height: auto; display: flex; flex-direction: column; align-items: stretch; gap: 3rem; padding-top: 8rem; padding-bottom: 5rem; }
  .hero::before { width: 80vw; height: 80vw; right: -35vw; top: 8rem; }
  h1 { font-size: clamp(3.5rem, 17vw, 6rem); }
  .hero-visual img { height: 72vh; max-height: 600px; }
  .hero-note { position: static; margin-top: -1.5rem; }
  .section-grid, .projects, .process { padding-top: 6rem; padding-bottom: 6rem; }
  .section-grid, .section-heading, .process-head { display: block; }
  .section-label { margin-bottom: 2.5rem; }
  .section-heading > * + * { margin-top: 2rem; }
  .project-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-card-tall, .project-card-wide { max-width: 100%; }
  .project-card-wide figure { aspect-ratio: 4 / 3; }
  .service-row { grid-template-columns: 2rem 1fr; gap: .8rem 1rem; }
  .service-row p { grid-column: 2; }
  .process-list { grid-template-columns: 1fr 1fr; margin-top: 3.5rem; }
  .process-list li { min-height: 220px; }
  .process-list li + li { padding-left: 1rem; }
  .next-step { padding-top: 7rem; padding-bottom: 7rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
