:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5f6b66;
  --subtle: #eef2ef;
  --line: #d9e0dc;
  --surface: #ffffff;
  --surface-soft: #f7f9f7;
  --green: #43a83f;
  --green-dark: #2f842d;
  --green-soft: #eaf6e8;
  --blue: #6f7770;
  --gold: #b88b3e;
  --shadow: 0 22px 70px rgba(11, 31, 26, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(180deg, rgba(247, 249, 247, 0.86), rgba(255, 255, 255, 0.98) 28rem),
    var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 48px), var(--max));
  min-height: 96px;
  margin: 0 auto;
  padding: 0.75rem 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(217, 224, 220, 0.88);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 44px rgba(17, 32, 28, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(160px, 18vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: #2d3834;
  font-size: 0.94rem;
  font-weight: 620;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
  background: var(--green-soft);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: min(730px, calc(100vh - 96px));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

.hero-copy {
  max-width: 630px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 10.4ch;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 53ch;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.15rem;
  font-weight: 760;
  line-height: 1;
  max-width: 100%;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(67, 168, 63, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--green);
  border-color: rgba(67, 168, 63, 0.34);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(67, 168, 63, 0.13);
}

.button-light {
  color: var(--green);
  background: #fff;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: min(640px, 72vh);
  border-radius: 8px;
  background: #dfe7e3;
  box-shadow: var(--shadow);
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: min(640px, 72vh);
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(280px, calc(100% - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  background: rgba(47, 132, 45, 0.88);
  backdrop-filter: blur(16px);
}

.hero-note span {
  display: block;
  margin-bottom: 0.28rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  line-height: 1.25;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto clamp(4rem, 9vw, 7rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip a,
.trust-strip p {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

.trust-strip span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.section,
.feature-band,
.contact-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  color: var(--muted);
}

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

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

.service-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 168, 63, 0.36);
  box-shadow: 0 18px 42px rgba(17, 32, 28, 0.08);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 1.2rem;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card p,
.process-step p,
.industry-card p,
.contact-section p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.feature-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.feature-copy p:last-child {
  color: var(--muted);
}

.industry-list {
  display: grid;
  gap: 1rem;
}

.industry-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(17, 32, 28, 0.06);
}

.industry-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.industry-card div {
  padding: 1.35rem;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 820;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(47, 132, 45, 0.97), rgba(111, 119, 112, 0.94)),
    var(--green);
  box-shadow: 0 26px 70px rgba(67, 168, 63, 0.24);
}

.contact-section .eyebrow {
  color: #e4c17c;
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section p {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .feature-band,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

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

  .feature-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section,
  .feature-band,
  .contact-section,
  .trust-strip,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header.is-scrolled {
    padding-inline: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 96px 16px auto;
    display: grid;
    gap: 0.2rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(17, 32, 28, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 6px;
    padding: 0.9rem;
  }

  .hero {
    gap: 2rem;
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .hero-copy,
  .hero-media,
  .hero-lede {
    max-width: 100%;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .hero-note {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .trust-strip,
  .process-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    grid-template-columns: 1fr;
  }

  .industry-card img {
    height: 220px;
  }

  .contact-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
