:root {
  --pine: #172b22;
  --moss: #536b4d;
  --sage: #9aa889;
  --ivory: #f8f4eb;
  --stone: #d8d0c1;
  --charcoal: #101714;
  --brass: #b89a62;
  --clay: #7f5b46;
  --line: rgba(23, 43, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--pine);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select {
  font: inherit;
}

.hero {
  min-height: 92vh;
  padding: 24px clamp(18px, 4vw, 54px) 72px;
  color: white;
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.88), rgba(10, 18, 14, 0.5) 48%, rgba(10, 18, 14, 0.12)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=2200&q=90") center / cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
}

.nav-cta {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
  font-size: 0.86rem;
}

.button {
  padding: 0 26px;
  background: var(--brass);
  color: #111711;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero-copy {
  max-width: 760px;
  margin: clamp(96px, 16vh, 170px) auto 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 7vw, 7.6rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  line-height: 1;
}

h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.text-link {
  color: white;
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
}

.intro,
.services,
.portfolio,
.process,
.consultation {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro > p,
.feature-band p,
.consultation p,
.process-list p {
  margin: 0;
  color: #43554c;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.metrics article {
  padding: 36px clamp(18px, 5vw, 70px);
  border-left: 1px solid var(--line);
}

.metrics article:first-child {
  border-left: 0;
}

.metrics strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
}

.metrics span {
  display: block;
  max-width: 220px;
  color: #56695f;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: 270px minmax(0, 760px);
  gap: clamp(20px, 5vw, 64px);
  align-items: start;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article,
.project-grid article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
}

.service-grid article {
  padding: 28px;
}

.service-grid span {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  border: 1px solid var(--brass);
  background: linear-gradient(135deg, rgba(184, 154, 98, 0.18), rgba(83, 107, 77, 0.14));
}

.service-grid p,
.project-grid p,
.testimonial p {
  margin: 0;
  color: #56695f;
  line-height: 1.6;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 620px;
  background: var(--charcoal);
  color: white;
}

.feature-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 86px);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 22px;
}

.feature-band ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-band li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.feature-band li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--brass);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-grid article {
  overflow: hidden;
}

.project-grid img {
  height: 320px;
}

.project-grid div {
  padding: 22px;
}

.process {
  background: #edf0e8;
}

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

.process-list article {
  padding: 24px 20px;
  border-left: 1px solid rgba(23, 43, 34, 0.2);
}

.process-list span {
  display: block;
  margin-bottom: 32px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.testimonial {
  padding: clamp(72px, 10vw, 130px) clamp(22px, 12vw, 180px);
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(23, 43, 34, 0.82), rgba(23, 43, 34, 0.82)),
    url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.testimonial blockquote {
  max-width: 980px;
  margin: 0 auto 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.74);
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.consultation > div > p {
  margin-top: 24px;
}

.consultation-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  box-shadow: 0 22px 70px rgba(23, 43, 34, 0.11);
}

label {
  display: grid;
  gap: 8px;
  color: #314238;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(23, 43, 34, 0.2);
  border-radius: 4px;
  background: #fbfaf6;
  color: var(--pine);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 70px);
  background: var(--pine);
  color: white;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer .brand small {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 960px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .intro,
  .section-heading,
  .feature-band,
  .consultation {
    grid-template-columns: 1fr;
  }

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

  .feature-band img {
    min-height: 420px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-copy {
    margin-top: 74px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .metrics,
  .service-grid,
  .project-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metrics article:first-child {
    border-top: 0;
  }

  .process-list article {
    border-left: 0;
    border-top: 1px solid rgba(23, 43, 34, 0.2);
  }

  .project-grid img {
    height: 240px;
  }

  .consultation-form {
    padding: 18px;
  }
}
