:root {
  color-scheme: light;
  --leaf: #2f6d28;
  --leaf-deep: #234f21;
  --leaf-soft: #cbeabb;
  --mint: #eaf7df;
  --lemon: #f1d94d;
  --cream: #fbfcf7;
  --ink: #172316;
  --muted: #5b6a57;
  --line: rgba(35, 79, 33, .16);
  --shadow: 0 22px 70px rgba(29, 64, 28, .15);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: white;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(251, 252, 247, .82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 28px rgba(20, 45, 20, .08);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--leaf);
}

.brand img {
  width: 132px;
  height: 88px;
  border-radius: 6px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--leaf-deep);
  font-size: .86rem;
  line-height: 1.15;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  border-radius: 999px;
  color: var(--leaf-deep);
  font-size: .95rem;
  padding: 10px 14px;
  transition: background .2s ease, color .2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(47, 109, 40, .08);
  outline: none;
}

.nav-menu .nav-cta {
  background: var(--leaf);
  color: white;
  padding-inline: 18px;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--leaf-deep);
}

.nav-toggle {
  position: relative;
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 109, 40, .26);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--leaf-deep);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(29, 64, 28, .1);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span:nth-child(1) {
  top: calc(50% - 7px);
  transform: translateX(-50%);
}

.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  top: calc(50% + 7px);
  transform: translateX(-50%);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(88svh - 82px);
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(27, 60, 24, .62), rgba(47, 109, 40, .18) 52%, rgba(251, 252, 247, .55)),
    linear-gradient(0deg, rgba(22, 36, 18, .4), rgba(22, 36, 18, .02) 48%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 12vh 0 11vh;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.hero h1 {
  width: min(840px, 100%);
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .94;
  text-wrap: balance;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.15;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

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

.button.primary {
  background: var(--leaf);
  color: white;
  box-shadow: 0 14px 36px rgba(35, 79, 33, .22);
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: .72;
  transform: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .14);
  color: white;
  backdrop-filter: blur(12px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, .24);
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 26px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-2px, -2px);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 128px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.about h2,
.contact h2,
.cta-band h2 {
  margin: 0;
  color: var(--leaf-deep);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.contact-intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  padding-top: clamp(78px, 10vw, 112px);
}

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

.service-card {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(234, 247, 223, .82));
  padding: 32px;
  box-shadow: 0 10px 34px rgba(29, 64, 28, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 109, 40, .28);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .95), transparent 34%),
    linear-gradient(135deg, var(--lemon), #a6d96c 68%, #6fad60);
  color: var(--leaf-deep);
}

.service-icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--leaf-deep);
  font-size: 1.45rem;
  font-weight: 500;
}

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

.about {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 109, 40, .02), rgba(47, 109, 40, .18));
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 36% center;
  transform: scale(1.02);
}

.about-copy p {
  max-width: 680px;
}

.quality-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.quality-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.quality-list strong {
  color: var(--leaf-deep);
  font-size: 1.2rem;
  font-weight: 500;
}

.quality-list span {
  color: var(--muted);
}

.cta-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(32px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(47, 109, 40, .94), rgba(35, 79, 33, .9)),
    radial-gradient(circle at 10% 0, rgba(241, 217, 77, .45), transparent 34%);
  color: white;
  box-shadow: var(--shadow);
}

.cta-band .eyebrow,
.cta-band h2 {
  color: white;
}

.cta-band .button.primary {
  background: white;
  color: var(--leaf-deep);
  box-shadow: none;
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 7vw, 80px);
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.contact-points li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lemon);
  box-shadow: 0 0 0 4px rgba(241, 217, 77, .22);
}

.email-link {
  color: var(--leaf-deep);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(47, 109, 40, .25);
  text-underline-offset: 5px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 14px 50px rgba(29, 64, 28, .09);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--leaf-deep);
  font-size: .92rem;
  font-weight: 650;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(47, 109, 40, .2);
  border-radius: var(--radius);
  background: #fbfdf8;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  background: white;
  box-shadow: 0 0 0 4px rgba(47, 109, 40, .11);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--leaf-deep);
  font-size: .94rem;
}

.form-status[data-state="success"] {
  color: var(--leaf-deep);
}

.form-status[data-state="error"] {
  color: #9a2f20;
}

.form-status[data-state="pending"] {
  color: var(--muted);
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 28px;
  padding: 44px 0 56px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--leaf-deep);
  font-size: 1.35rem;
  font-weight: 500;
}

.footer-brand span,
.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: center;
}

.footer-links a,
.footer-contact a {
  color: var(--leaf-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 860px) {
  .nav {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(251, 252, 247, .96);
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .nav-menu a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .hero {
    min-height: calc(88svh - 82px);
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 48, 18, .76), rgba(47, 109, 40, .42)),
      linear-gradient(0deg, rgba(22, 36, 18, .48), rgba(22, 36, 18, .06) 54%);
  }

  .hero-content,
  .section,
  .cta-band,
  .site-footer {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero-content {
    padding: 10vh 0 9vh;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11vw, 5.5rem);
  }

  .service-grid,
  .about,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand strong {
    font-size: 1.18rem;
  }

  .brand small {
    font-size: .78rem;
  }

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

  .hero-actions,
  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 1rem;
  }

  .button {
    padding-inline: 16px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .about h2,
  .contact h2,
  .cta-band h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .form-row,
  .quality-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

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

  .button:hover,
  .button:focus-visible,
  .service-card:hover {
    transform: none;
  }
}
