:root {
  color-scheme: light;
  font-family: "Manrope", Arial, sans-serif;
  color: #14201d;
  background: #f4f6f3;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #f4f6f3;
}

a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.68);
  font-size: 12px;
}

.header-contact {
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; }

.hero-overlay {
  background: linear-gradient(90deg, rgba(4, 18, 15, .91) 0%, rgba(4, 18, 15, .56) 48%, rgba(4, 18, 15, .14) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 150px clamp(22px, 7vw, 108px) clamp(62px, 9vw, 116px);
}

.eyebrow {
  margin: 0 0 20px;
  color: #a8e4b4;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark { color: #2d7652; }

h1,
h2,
h3,
p { letter-spacing: 0; }

h1 {
  margin: 0;
  font-size: 88px;
  line-height: .98;
  font-weight: 700;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 32px;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.65;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 20px;
  background: #b9ed78;
  color: #102118;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.services {
  padding: clamp(56px, 8vw, 108px) clamp(22px, 7vw, 108px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, .35fr) 1fr;
  gap: 36px;
  padding-bottom: 42px;
  border-bottom: 1px solid #c9d0cc;
}

h2 {
  max-width: 720px;
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
}

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

.service-grid article {
  min-width: 0;
  padding: 30px 24px 18px 0;
  border-bottom: 1px solid #c9d0cc;
}

.service-grid article + article {
  padding-left: 24px;
  border-left: 1px solid #c9d0cc;
}

.service-grid span {
  color: #2d7652;
  font-size: 12px;
  font-weight: 800;
}

h3 {
  margin: 28px 0 12px;
  font-size: 21px;
}

.service-grid p {
  margin: 0;
  color: #59645f;
  font-size: 14px;
  line-height: 1.65;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(22px, 7vw, 108px);
  background: #0b1c19;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

footer strong { color: #fff; }

@media (max-width: 820px) {
  .hero { min-height: 76svh; }
  .hero-overlay { background: linear-gradient(0deg, rgba(4, 18, 15, .92), rgba(4, 18, 15, .24)); }
  h1 { font-size: 62px; }
  h2 { font-size: 40px; }
  .hero-copy { font-size: 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 8px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid article:nth-child(3) { border-left: 0; padding-left: 0; }
  footer { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 520px) {
  .site-header { height: 70px; }
  .hero-content { padding-top: 120px; }
  h1 { font-size: 46px; }
  h2 { font-size: 32px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article + article { padding-left: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
