:root {
  --ink: #1d2320;
  --muted: #5f6b64;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #d9ddd2;
  --field: #dfe8dc;
  --brick: #9c5339;
  --moss: #546f53;
  --deep: #111816;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 28px clamp(20px, 4vw, 56px);
}

.brand {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 22, 0.9), rgba(17, 24, 22, 0.5) 48%, rgba(17, 24, 22, 0.08)),
    linear-gradient(0deg, rgba(17, 24, 22, 0.5), rgba(17, 24, 22, 0.03) 42%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 150px 0 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c3ac;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.hero p:last-child,
.copy-stack p:last-child,
.section-heading p:last-child,
.contact-details p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.section {
  padding: clamp(68px, 10vw, 124px) clamp(20px, 4vw, 56px);
}

.section__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.two-column,
.experience-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.copy-stack {
  color: var(--muted);
  font-size: 1.1rem;
}

.section--intro {
  background: var(--surface);
}

.section--process {
  background: var(--field);
}

.section-heading {
  max-width: 680px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 270px;
  padding: 26px;
  background: var(--surface);
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--moss);
  font-size: 0.88rem;
  font-weight: 800;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section--experience {
  color: #fff;
  background: var(--deep);
}

.section--experience .eyebrow {
  color: #f0c3ac;
}

.section--experience .section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.metrics {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.metrics div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.metrics dt {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.metrics dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.section--contact {
  background: var(--surface);
}

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

.section--contact p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 0;
  font-style: normal;
}

.contact-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-row img {
  width: min(100%, 360px);
  height: auto;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
  max-width: var(--max-width);
}

@media (max-width: 900px) {
  .hero {
    min-height: 86vh;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(17, 24, 22, 0.92), rgba(17, 24, 22, 0.28) 72%),
      linear-gradient(90deg, rgba(17, 24, 22, 0.35), rgba(17, 24, 22, 0.08));
  }

  .two-column,
  .experience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 22px;
  }

  .hero__content {
    width: min(100% - 32px, 640px);
    margin-inline: 16px;
    padding-bottom: 54px;
  }

  .section {
    padding-block: 58px;
  }

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

  .process-list li {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 28px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-row img {
    width: min(100%, 320px);
  }
}
