:root {
  --green-950: #17241b;
  --green-900: #203627;
  --green-800: #2f5d45;
  --green-600: #4a7d50;
  --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.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(247, 245, 239, 0.78);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 190px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

nav a,
.topbar-cta,
.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

nav a {
  padding: 0 14px;
  color: rgba(36, 42, 37, 0.72);
}

nav a:hover {
  color: var(--green-950);
  background: var(--mist);
}

.topbar-cta,
.button.primary {
  padding: 0 18px;
  color: #fff;
  background: var(--green-800);
}

.button.secondary {
  padding: 0 18px;
  border: 1px solid rgba(47, 93, 69, 0.32);
  color: var(--green-800);
  background: rgba(255, 253, 248, 0.72);
}

.hero,
.proof-strip,
.services,
.work,
.care,
.image-break,
.contact,
footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 0.92fr);
  gap: 18px;
  align-items: stretch;
  min-height: calc(100svh - 78px);
  padding: 22px 0 18px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.kicker {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 900;
  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: 620px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

h3 {
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 1rem;
}

.hero-copy > p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(36, 42, 37, 0.74);
  font-size: 1.04rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-image {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 0 0;
}

.proof-strip div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.proof-strip strong {
  color: var(--green-900);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.services,
.work,
.care,
.image-break,
.contact {
  padding-top: 58px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.44fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 16px;
}

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

.service-list article {
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-list p,
.work-copy p,
.care > p {
  margin-bottom: 0;
  color: rgba(36, 42, 37, 0.72);
}

.work {
  display: grid;
  grid-template-columns: minmax(360px, 0.52fr) minmax(0, 0.78fr);
  gap: 12px;
}

.work > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-950);
}

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

.work-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.care {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: 28px;
  align-items: end;
}

.care > p {
  padding-bottom: 8px;
  font-size: 1.02rem;
}

.image-break {
  height: 300px;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(310px, 0.5fr);
  gap: 14px;
  align-items: stretch;
  padding-bottom: 56px;
}

.contact > div:first-child {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--mist);
}

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

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

.contact-links span {
  color: rgba(255, 255, 255, 0.76);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

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

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

  .hero,
  .section-head,
  .work,
  .care,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .work > img {
    height: 420px;
  }
}

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

  .topbar,
  .hero,
  .proof-strip,
  .services,
  .work,
  .care,
  .image-break,
  .contact,
  footer {
    width: min(100% - 28px, 1160px);
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brand img {
    width: 176px;
  }

  .topbar-cta {
    display: none;
  }

  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

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

  .hero-copy,
  .work-copy,
  .contact > div:first-child,
  .contact-links {
    padding: 22px;
  }

  .hero-image,
  .hero-image img {
    min-height: 340px;
  }

  .proof-strip,
  .service-list {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 58px;
  }

  .services,
  .work,
  .care,
  .image-break,
  .contact {
    padding-top: 42px;
  }

  .service-list article {
    min-height: auto;
  }

  .service-list span {
    margin-bottom: 28px;
  }

  .work > img {
    height: 340px;
  }

  .image-break {
    height: 220px;
  }

  footer {
    flex-direction: column;
  }
}
