:root {
  --green-950: #17241b;
  --green-900: #203627;
  --green-800: #2f5d45;
  --green-600: #4a7d50;
  --green-300: #b8c7a8;
  --leaf: #78a95a;
  --clay: #b68a63;
  --cream: #f7f5ef;
  --paper: #fffdf8;
  --mist: #eef3ee;
  --stone: #d8d3c7;
  --ink: #242a25;
  --muted: #667066;
  --line: rgba(36, 42, 37, 0.14);
  --shadow: 0 24px 70px rgba(23, 36, 27, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 243, 238, 0.9), rgba(247, 245, 239, 0.7) 460px),
    var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 196px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(36, 42, 37, 0.09);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

.main-nav a,
.header-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.83rem;
}

.main-nav a {
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(36, 42, 37, 0.74);
}

.main-nav a:hover {
  color: var(--green-900);
  background: var(--mist);
}

.header-cta,
.button.primary {
  padding: 0 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 12px 24px rgba(47, 93, 69, 0.18);
}

.header-cta:hover,
.button.primary:hover {
  background: #244a37;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: 44px;
  align-items: stretch;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 98px);
  margin: 0 auto;
  padding: 36px 0 48px;
}

.hero-copy {
  align-self: center;
  padding: 42px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--green-950);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(36, 42, 37, 0.78);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  min-width: 172px;
  padding: 0 20px;
}

.button.secondary {
  border: 1px solid rgba(47, 93, 69, 0.36);
  border-radius: var(--radius);
  color: var(--green-800);
  background: rgba(255, 253, 248, 0.7);
}

.button.secondary:hover {
  background: var(--paper);
  border-color: rgba(47, 93, 69, 0.7);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
}

.hero-metrics dt {
  color: var(--green-900);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-900);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 36, 27, 0) 42%, rgba(23, 36, 27, 0.74));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-note span {
  max-width: 330px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(23, 36, 27, 0.7);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.intro-band,
.section,
.process,
.project-section,
.about,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.intro-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.intro-band > p {
  margin-bottom: 0;
  color: rgba(36, 42, 37, 0.72);
  font-size: 1.03rem;
}

.section,
.process,
.project-section,
.about,
.contact {
  padding-top: 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: rgba(36, 42, 37, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  grid-column: span 2;
  min-height: 212px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card-featured {
  color: #fff;
  background:
    linear-gradient(rgba(32, 54, 39, 0.82), rgba(32, 54, 39, 0.82)),
    url("assets/wallpaper-crop.jpg") center / cover;
}

.service-card-featured h3,
.service-card-featured .service-number {
  color: #fff;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-number {
  display: block;
  margin-bottom: 56px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.process-list p,
.project-copy p,
.about p,
.contact p {
  margin-bottom: 0;
  color: rgba(36, 42, 37, 0.72);
}

.service-card.service-card-featured h3,
.service-card.service-card-featured p,
.service-card.service-card-featured .service-number {
  color: #fff;
}

.service-card.service-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.process {
  padding-bottom: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.process-list article {
  min-height: 236px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--mist);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 10px;
}

.project-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.58fr);
  gap: 14px;
}

.project-copy {
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-950);
}

.project-copy .section-kicker,
.project-copy h2 {
  color: #fff;
}

.project-copy > p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
}

.project-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.project-points div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-points strong,
.project-points span {
  display: block;
}

.project-points strong {
  margin-bottom: 6px;
}

.project-points span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.image-panel {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.about-card img {
  width: 128px;
}

.about-card p {
  max-width: 800px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 36px;
  align-items: stretch;
  padding-bottom: 72px;
}

.contact-copy {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(247, 245, 239, 0.88), rgba(247, 245, 239, 0.88)),
    url("assets/wallpaper-crop.jpg") center / cover;
}

.contact-copy h2 {
  max-width: 660px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-800);
}

.contact-panel a,
.contact-panel span {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .intro-band,
  .section-heading,
  .project-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 20px;
  }

  .hero-copy {
    padding: 22px 0 0;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 3;
  }

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

  .process-list article:nth-child(2) {
    border-right: 0;
  }

  .process-list article:nth-child(1),
  .process-list article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .image-panel {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header,
  .hero,
  .intro-band,
  .section,
  .process,
  .project-section,
  .about,
  .contact,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .brand img {
    width: 178px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    padding: 5px;
  }

  .main-nav a {
    padding: 0 12px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-metrics,
  .process-list,
  .project-points,
  .about-card {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .intro-band,
  .project-copy,
  .about-card,
  .contact-copy,
  .contact-panel {
    padding: 22px;
  }

  .section,
  .process,
  .project-section,
  .about,
  .contact {
    padding-top: 58px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1;
  }

  .service-number {
    margin-bottom: 38px;
  }

  .process-list article,
  .process-list article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list article:last-child {
    border-bottom: 0;
  }

  .process-list span {
    margin-bottom: 34px;
  }

  .image-panel {
    min-height: 300px;
  }

  .about-card img {
    width: 96px;
  }

  .contact {
    padding-bottom: 54px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 28px;
  }
}
