:root {
  --paper: #f4f0e8;
  --ink: #15231d;
  --forest: #10271e;
  --forest-2: #1f392f;
  --rust: #ab4d31;
  --line: #d8d1c7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
.site-header {
  height: 82px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  font: 700 20px Georgia, "Times New Roman", serif;
  text-decoration: none;
}
nav { display: flex; gap: 32px; }
nav a { text-decoration: none; font-size: 14px; }
.header-cta {
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  font-size: 14px;
}
.menu-toggle { display: none; }
.hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: calc(100vh - 82px);
}
.hero-copy {
  padding: clamp(72px, 10vh, 112px) 7vw 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow {
  margin: 0 0 32px;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}
h1, h2, h3, .panel-title, .work-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
h1 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 80px);
  line-height: .98;
  letter-spacing: -.045em;
}
.lead {
  max-width: 580px;
  margin: 38px 0 30px;
  font-size: 17px;
  line-height: 1.65;
  color: #4e554f;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  padding: 17px 23px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.primary { background: var(--rust); color: #fff; }
.secondary { border: 1px solid var(--line); background: #f7f4ee; }
.location { margin-top: auto; padding-top: 42px; color: #6c706c; font-size: 13px; }
.hero-panel {
  background: var(--forest);
  color: #fff;
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
}
.panel-kicker, .panel-location {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}
.panel-title {
  margin: auto 0;
  font-size: clamp(48px, 4.7vw, 70px);
  line-height: 1.08;
}
.panel-location { margin: 0; }
.services, .process { padding: 78px 7vw 90px; }
.services h2, .process h2, .contact h2 {
  max-width: 850px;
  margin: 0 0 70px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.service-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.service-grid article, .process-grid article {
  padding: 38px 34px 24px 0;
  min-height: 180px;
}
.service-grid article + article, .process-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.service-grid span, .process-grid span { color: var(--rust); font-size: 12px; font-weight: 700; }
h3 { font-size: 27px; margin: 42px 0 14px; }
.service-grid p, .process-grid p { color: #5b615d; line-height: 1.6; }
.work {
  padding: 88px 7vw;
  background: var(--forest);
  color: #fff;
}
.work-heading {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 58px;
}
.work h2 { margin: 0; font-size: clamp(48px, 5vw, 72px); line-height: 1.05; }
.work-heading > p { color: #bbc1bc; line-height: 1.65; font-size: 17px; }
.work-layout { display: grid; grid-template-columns: 2.2fr .9fr; gap: 16px; }
figure { margin: 0; position: relative; min-height: 610px; overflow: hidden; }
figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 100px 34px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  display: grid;
  gap: 10px;
}
figcaption a { font-size: 13px; text-decoration: none; }
.work-note {
  background: var(--forest-2);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.work-quote { font-size: clamp(40px, 4vw, 58px); line-height: 1.06; margin: 0 0 40px; }
.work-note > p:last-child { color: #b9c0bb; line-height: 1.6; }
.process { background: #ece6dc; }
.contact {
  padding: 90px 7vw;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 10vw;
}
.contact h2 { margin-bottom: 20px; }
.contact-copy > p:not(.eyebrow) { color: #5b615d; font-size: 18px; line-height: 1.6; max-width: 560px; }
.contact-copy > a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 18px 0;
  color: var(--rust);
  font-weight: 700;
  text-decoration: none;
}
form { background: #fff; border: 1px solid var(--line); padding: 28px; }
label { display: block; margin-bottom: 22px; font-size: 13px; font-weight: 700; }
input, textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  background: #faf9f6;
  font: inherit;
}
textarea { min-height: 110px; resize: none; }
form button {
  width: 100%;
  padding: 16px;
  border: 0;
  background: var(--rust);
  color: #fff;
  font-weight: 700;
}
form p { margin: 4px 0 0; color: #777; font-size: 12px; line-height: 1.45; }
footer { background: var(--forest); color: #fff; padding: 34px 7vw; }
footer strong { font: 700 20px Georgia, "Times New Roman", serif; }
footer p { margin: 18px 0 0; font-size: 13px; color: #d2d7d3; }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; height: 70px; }
  .header-cta { display: none; }
  .menu-toggle {
    display: block;
    border: 1px solid var(--ink);
    background: transparent;
    padding: 9px 12px;
  }
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 22px 5vw;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 18px;
  }
  nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 62px 5vw 44px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .lead { margin-top: 28px; }
  .actions { width: 100%; }
  .button { width: 100%; text-align: center; }
  .location { margin-top: 0; padding-top: 34px; }
  .hero-panel { min-height: 500px; padding: 54px 5vw; }
  .panel-title { font-size: 52px; }
  .services, .process, .work, .contact { padding: 68px 5vw; }
  .services h2, .process h2, .contact h2 { font-size: 46px; margin-bottom: 46px; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .service-grid article + article, .process-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .work-heading, .work-layout, .contact { grid-template-columns: 1fr; }
  .work-heading { gap: 20px; }
  .work h2 { font-size: 46px; }
  figure { min-height: 520px; }
  .work-note { min-height: 420px; }
  .contact { gap: 42px; }
}
