:root {
  --paper: #fbfaf7;
  --paper-strong: #f1eee7;
  --ink: #27241f;
  --ink-soft: #5f5a51;
  --ink-muted: #8a8378;
  --line: #ded8cd;
  --green: #2f6f5f;
  --green-soft: #dcebe5;
  --brick: #a34e3f;
  --brick-soft: #f0ddd7;
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(39, 36, 31, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(39, 36, 31, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--green) 55%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--green);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
}

main {
  padding: 54px 0 72px;
}

.hero {
  max-width: 900px;
  padding: clamp(24px, 5vw, 70px) 0 clamp(36px, 7vw, 96px);
}

.about-hero {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 650;
  line-height: 1.04;
}

h1 {
  max-width: 890px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 7px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--green);
  color: var(--paper);
}

.button.secondary {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 72%, white);
  color: var(--ink);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--paper) 80%, white);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.statement {
  max-width: 820px;
  margin-bottom: clamp(72px, 12vw, 132px);
  border-left: 4px solid var(--green);
  padding: 12px 0 12px 24px;
}

.statement p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.28;
}

.field-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: end;
  margin: clamp(-44px, -4vw, -20px) 0 0;
}

.field-image img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04);
}

.field-image figcaption {
  border-top: 3px solid var(--brick);
  margin: 0;
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section-block {
  margin-top: clamp(76px, 11vw, 132px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 0.64fr);
  align-items: start;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-top: 16px;
}

.work-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.work-item,
.offer-item,
.contact-section,
.principle-list,
.plain-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 84%, white);
}

.work-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 34px;
  padding: clamp(22px, 4vw, 34px);
}

.work-kicker {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.work-item h3 {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.work-item p {
  grid-column: 2;
  margin-bottom: 18px;
  color: var(--ink-soft);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.work-item ul {
  grid-column: 2;
  display: grid;
  gap: 6px;
  list-style: none;
}

.work-item li,
.plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.work-item li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brick);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid > div {
  padding: 24px 22px 28px;
  border-right: 1px solid var(--line);
}

.capability-grid > div:last-child {
  border-right: 0;
}

.capability-grid h3,
.principle-list h3 {
  margin-bottom: 10px;
}

.capability-grid p,
.principle-list p,
.text-stack p,
.contact-section p {
  color: var(--ink-soft);
}

.offer-list {
  display: grid;
  gap: 14px;
}

.offer-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
}

.offer-item.featured {
  background: var(--green-soft);
  border-color: color-mix(in srgb, var(--green) 35%, var(--line));
}

.offer-item h3 {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.offer-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.price-block {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--ink);
}

.price-block span,
.price-block small {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.price-block strong {
  color: var(--green);
  font-size: 1.55rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.process li {
  min-height: 220px;
  border-top: 3px solid var(--green);
  padding: 18px 0 0;
}

.process span {
  display: block;
  margin-bottom: 32px;
  color: var(--brick);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.process p {
  color: var(--ink-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 32px;
  align-items: center;
  margin-top: clamp(84px, 14vw, 150px);
  padding: clamp(24px, 5vw, 44px);
  background: var(--brick-soft);
  border-color: color-mix(in srgb, var(--brick) 30%, var(--line));
}

.contact-section h2 {
  margin-bottom: 16px;
}

.contact-section p {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 70%, white);
  padding: 18px;
}

.contact-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.text-stack {
  max-width: 820px;
}

.text-stack p {
  margin-bottom: 18px;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.principle-list > div {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.principle-list > div:last-child {
  border-right: 0;
}

.plain-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  list-style: none;
  padding: 24px;
}

@media (max-width: 960px) {
  .section-heading,
  .contact-section,
  .work-item,
  .offer-item,
  .field-image {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-top: 0;
  }

  .work-item h3,
  .work-item p,
  .work-item ul {
    grid-column: 1;
  }

  .work-kicker {
    margin-bottom: 8px;
  }

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

  .capability-grid > div,
  .principle-list > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-grid > div:nth-last-child(-n+2),
  .principle-list > div:last-child {
    border-bottom: 0;
  }

  .price-block {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 20px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  main {
    padding-top: 24px;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.05rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .statement {
    padding-left: 18px;
  }

  .field-image {
    margin-top: -34px;
  }

  .field-image img {
    height: 270px;
  }

  .field-image figcaption {
    max-width: 420px;
  }

  .statement p {
    font-size: 1.35rem;
  }

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

  .capability-grid > div:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .capability-grid > div:last-child {
    border-bottom: 0;
  }

  .process li {
    min-height: auto;
  }

  .process span {
    margin-bottom: 16px;
  }
}
