:root {
  --green-900: #12372a;
  --green-500: #94c119;
  --cta-bg: var(--green-900);
  --cta-bg-hover: var(--green-900);
  --cta-accent: #94c119;
  --cta-text: var(--paper);
  --cta-text-shadow: none;
  --paper: #f8f9f5;
  --line: rgba(18, 55, 42, .16);
  --ink: #1e2522;
  --muted: var(--ink);
  --white: var(--paper);
  --max: 1180px;
  --gutter: clamp(1.125rem, 4vw, 3rem);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 1.125rem/1.68 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--green-900);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(3rem, 10.5vw, 5.65rem);
  font-weight: 720;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.95rem, 5.5vw, 3.95rem);
  font-weight: 680;
}

h3 {
  margin-bottom: .35rem;
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  font-weight: 650;
  line-height: 1.08;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: min(100%, calc(var(--max) + 2 * var(--gutter)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: -5rem;
  left: 1rem;
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--green-900);
  background: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 4.75rem;
  padding-inline: var(--gutter);
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 55, 42, .38), rgba(18, 55, 42, .08) 68%, rgba(18, 55, 42, 0));
  opacity: 1;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--green-900);
  background: rgba(248, 249, 245, .96);
  border-bottom: 1px solid rgba(18, 55, 42, .1);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::before,
.site-header.menu-active::before {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  margin-right: auto;
  color: currentColor;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: text-shadow 180ms ease;
}

.site-header:not(.is-scrolled):not(.menu-active) .brand {
  text-shadow: 0 1px 12px rgba(18, 55, 42, .42);
}

.brand span span,
.wordmark-24 {
  color: var(--green-500);
}

.wordmark-text {
  font-weight: 560;
  white-space: nowrap;
}

.eyebrow .wordmark-text {
  font-weight: inherit;
}

.brand strong {
  font-weight: 720;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  inset: 4.75rem 0 auto 0;
  display: none;
  min-height: calc(100svh - 4.75rem);
  padding: 2rem var(--gutter);
  color: var(--green-900);
  background: var(--paper);
}

.site-nav.is-open {
  display: grid;
  align-content: start;
}

.site-nav a {
  padding: .9rem 0;
  color: inherit;
  font-size: clamp(1.35rem, 7vw, 2.4rem);
  font-weight: 680;
  line-height: 1.1;
  text-decoration: none;
}

.site-header:not(.is-scrolled):not(.menu-active) .site-nav a {
  color: rgba(248, 249, 245, .96);
  text-shadow: 0 1px 10px rgba(18, 55, 42, .45);
}

.site-header:not(.is-scrolled):not(.menu-active) .site-nav a:hover,
.site-header:not(.is-scrolled):not(.menu-active) .site-nav a:focus-visible,
.site-header:not(.is-scrolled):not(.menu-active) .site-nav a[aria-current="location"] {
  color: var(--green-500);
}

.site-header.is-scrolled .site-nav a,
.site-header.menu-active .site-nav a {
  color: var(--green-900);
  text-shadow: none;
}

.site-header.is-scrolled .site-nav a[aria-current="location"],
.site-header.menu-active .site-nav a[aria-current="location"] {
  color: var(--green-500);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="location"] {
  color: var(--green-500);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.2rem;
  margin-top: 1.2rem;
  border: 1px solid rgba(248, 249, 245, .24);
  border-radius: 4px;
  padding: .82rem 1.05rem !important;
  color: var(--cta-text) !important;
  background: var(--cta-bg);
  font-size: .95rem !important;
  font-weight: 560;
  letter-spacing: .01em;
  text-shadow: var(--cta-text-shadow);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--cta-bg-hover);
  border-color: rgba(248, 249, 245, .46);
  filter: brightness(1.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  color: var(--white);
  background: var(--green-900);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  filter: saturate(1.03) contrast(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 55, 42, .62) 0%, rgba(18, 55, 42, .36) 36%, rgba(18, 55, 42, 0) 72%),
    linear-gradient(180deg, rgba(18, 55, 42, 0), rgba(18, 55, 42, .16));
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 94svh;
  padding-top: 7rem;
  padding-bottom: clamp(3rem, 9vw, 5.5rem);
}

.hero-copy {
  width: min(100%, 41rem);
}

.kicker,
.eyebrow {
  margin-bottom: 1rem;
  color: var(--green-500);
  font-size: .75rem;
  font-weight: 720;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .kicker {
  color: rgba(248, 249, 245, .86);
}

.hero-copy p:not(.kicker) {
  max-width: 34rem;
  color: rgba(248, 249, 245, .9);
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .62rem;
  min-height: 3.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: .88rem 1.15rem;
  font-size: .92rem;
  font-weight: 560;
  letter-spacing: .01em;
  line-height: 1.1;
  text-decoration: none;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  opacity: .82;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: var(--cta-text);
  background: var(--cta-bg);
  border-color: rgba(248, 249, 245, .24);
  text-shadow: var(--cta-text-shadow);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--cta-bg-hover);
  border-color: rgba(248, 249, 245, .46);
  filter: brightness(1.08);
}

.button.secondary,
.button.secondary.dark {
  color: var(--green-900);
  border-color: rgba(18, 55, 42, .24);
  background: transparent;
}

.section {
  padding-block: clamp(4.5rem, 11vw, 8rem);
  scroll-margin-top: 5rem;
}

.section-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.section-copy {
  max-width: 48rem;
}

.section-copy > :last-child {
  margin-bottom: 0;
}

.intro-section {
  background: var(--paper);
}

.lead {
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.55;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  gap: .35rem 1rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.service-list span,
.process-list span {
  color: var(--green-500);
  font-size: .75rem;
  font-weight: 720;
  letter-spacing: .1em;
}

.process-list span {
  align-self: start;
  line-height: 1;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-section {
  color: var(--white);
  background: var(--green-900);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .eyebrow {
  color: var(--green-500);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(248, 249, 245, .16);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-rows: 1rem minmax(3.1rem, auto) 1fr;
  align-content: start;
  row-gap: .8rem;
  min-height: 14rem;
  padding: 1.75rem clamp(1.25rem, 2.4vw, 2rem);
  border-bottom: 1px solid rgba(248, 249, 245, .16);
}

.process-list h3 {
  max-width: 12ch;
  margin: 0;
  line-height: 1.08;
}

.process-list p {
  max-width: 18rem;
  margin-bottom: 0;
  color: rgba(248, 249, 245, .72);
  line-height: 1.55;
}

.statement-section {
  background: var(--paper);
}

.statement-section .eyebrow {
  color: var(--green-500);
}

.statement-section .section-copy p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
}

.contact-section {
  color: var(--white);
  background: var(--green-900);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--green-500);
}

.contact-section .section-copy p:not(.eyebrow) {
  color: rgba(248, 249, 245, .78);
  font-size: clamp(1.08rem, 2.5vw, 1.3rem);
}

.contact-section .button.secondary.dark {
  color: var(--white);
  border-color: rgba(248, 249, 245, .32);
}

.contact-section .button.primary:hover,
.contact-section .button.primary:focus-visible,
.contact-section .button.secondary.dark:hover,
.contact-section .button.secondary.dark:focus-visible {
  color: var(--cta-text);
  background: var(--cta-bg-hover);
  border-color: rgba(248, 249, 245, .46);
  filter: brightness(1.08);
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2.25rem var(--gutter);
  border-top: 1px solid rgba(248, 249, 245, .24);
  color: rgba(248, 249, 245, .8);
  background: var(--green-900);
}

.footer-brand {
  color: var(--white);
  font-size: 1.35rem;
}

.site-footer p {
  margin-bottom: 0;
  max-width: 32rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
}

.site-footer a {
  font-size: .9rem;
  font-weight: 560;
  line-height: 1.2;
  text-decoration: none;
}

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

.to-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-left: .15rem;
  color: rgba(248, 249, 245, .82);
  transition: color 180ms ease, transform 180ms ease;
}

.to-top-link:hover,
.to-top-link:focus-visible {
  color: var(--green-500);
  transform: translateY(-1px);
}

.to-top-label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  color: currentColor;
  font-size: .78rem;
  font-weight: 560;
  line-height: 1;
  transform: translateX(.2rem);
  transition: max-width 220ms ease, opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.to-top-link:hover .to-top-label,
.to-top-link:focus-visible .to-top-label {
  max-width: 5.5rem;
  opacity: 1;
  transform: translateX(0);
}

.legal-main {
  min-height: calc(100svh - 8.5rem);
  padding-top: 7rem;
}

.legal-content {
  max-width: 48rem;
}

.legal-content h1 {
  color: var(--green-900);
  font-size: clamp(2.5rem, 12vw, 4.7rem);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: .65rem;
  font-size: clamp(1.35rem, 5vw, 2rem);
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--green-900);
  font-weight: 680;
}

@media (min-width: 48rem) {
  .service-list article {
    grid-template-columns: 4rem minmax(13rem, .45fr) 1fr;
    align-items: baseline;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid rgba(248, 249, 245, .16);
  }

  .process-list li {
    padding: 1.75rem clamp(1.25rem, 2.4vw, 2rem);
    border-right: 1px solid rgba(248, 249, 245, .16);
  }
}

@media (min-width: 68rem) {
  .site-header {
    min-height: 5.1rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    min-height: 0;
    gap: clamp(.9rem, 2vw, 1.8rem);
    padding: 0;
    color: currentColor;
    background: transparent;
  }

  .site-nav a {
    padding: .45rem 0;
    font-size: .9rem;
    font-weight: 560;
    letter-spacing: 0;
    text-transform: none;
  }

  .section-grid {
    grid-template-columns: minmax(0, 7fr) minmax(17rem, 5fr);
    align-items: start;
  }

  .section-copy {
    grid-column: 1;
  }

  .service-list,
  .process-list {
    grid-column: 1 / -1;
  }

  .statement-section .section-copy,
  .contact-section .section-copy {
    grid-column: 1;
  }

  .nav-cta {
    min-height: 2.75rem;
    margin-top: 0;
    padding: .78rem 1.05rem !important;
    color: var(--cta-text) !important;
    background: var(--cta-bg);
    font-size: .84rem !important;
    font-weight: 560;
    letter-spacing: .01em;
    text-shadow: var(--cta-text-shadow) !important;
  }

  .site-header.is-scrolled .nav-cta {
    color: var(--cta-text) !important;
    background: var(--cta-bg);
  }

  .hero-media img {
    object-position: center center;
  }

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

  .site-footer {
    grid-template-columns: auto minmax(26rem, 1fr) auto;
    align-items: center;
    column-gap: clamp(1.5rem, 3vw, 3rem);
  }

  .site-footer p {
    max-width: none;
    white-space: nowrap;
    font-size: .9rem;
    line-height: 1.2;
  }

  .site-footer nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

@media (max-width: 35rem) {
  .site-header {
    color: var(--green-900);
    background: rgba(248, 249, 245, .96);
    border-bottom: 1px solid rgba(18, 55, 42, .1);
    backdrop-filter: blur(16px);
  }

  .site-header::before {
    opacity: 0;
  }

  .site-header:not(.is-scrolled):not(.menu-active) .brand {
    text-shadow: none;
  }

  .menu-toggle {
    border-color: rgba(18, 55, 42, .28);
  }

  .site-nav {
    inset: 4.75rem 0 auto 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    position: relative;
    height: 42svh;
    min-height: 19rem;
  }

  .hero-media img {
    object-position: 46% center;
  }

  .hero-overlay {
    top: 0;
    height: 42svh;
    background: linear-gradient(180deg, rgba(18, 55, 42, 0), rgba(18, 55, 42, .18));
  }

  .hero-inner {
    min-height: auto;
    padding-top: 1.55rem;
    background: var(--green-900);
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(2.55rem, 13.5vw, 3.7rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

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