:root {
  --green: #30492f;
  --green-dark: #263527;
  --leaf: #5f8f45;
  --cream: #edf6ea;
  --stone: #ffffff;
  --ink: #263527;
  --muted: #596657;
  --white: #ffffff;
  --accent: #526c45;
  --line: rgba(38, 53, 39, 0.24);
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: indivisible, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.15;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 118px;
  height: 86px;
  object-fit: contain;
}

.brand span {
  display: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 400;
}

nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 0;
  padding: clamp(30px, 5vw, 58px) clamp(22px, 4vw, 52px) clamp(44px, 6vw, 70px);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%235f8f45' fill-opacity='0.16' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--green-dark);
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-family: indivisible, Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  font-family: indivisible, Arial, Helvetica, sans-serif;
  font-size: 3.1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.button:hover {
  background: var(--green-dark);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 430px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img,
.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image img {
  object-position: center 58%;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(22px, 4vw, 52px);
}

#services {
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-eyebrow {
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.services-grid article {
  min-height: auto;
  padding: 12px 0 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--green-dark);
  font-family: indivisible, Arial, Helvetica, sans-serif;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  box-shadow: none;
}

.work-section {
  background: var(--white);
}

.work-section .eyebrow {
  color: var(--green-dark);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 36px);
  align-items: start;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.photo-grid img {
  aspect-ratio: 4 / 3;
}

.photo-grid figcaption {
  padding: 12px 0 0;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-section,
.contact-section {
  background: var(--cream);
}

.about-copy {
  max-width: 920px;
}

.about-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 28px;
  padding: clamp(52px, 8vw, 86px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.contact-section p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 0;
  background: transparent;
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent);
}

footer {
  padding: 22px clamp(18px, 5vw, 64px);
  background: var(--cream);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .hero-content,
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    max-height: none;
  }

  h1 {
    font-size: 5.5rem;
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    gap: 12px;
  }

  .brand img {
    width: 104px;
    height: 76px;
  }

  .services-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .services-grid article {
    min-height: 82px;
    font-size: 2rem;
  }
}
