:root {
  --green-900: #073f17;
  --green-800: #0a5b20;
  --green-700: #136b30;
  --green-100: #e8f1e4;
  --green-050: #f4f8f1;
  --orange-700: #bd5f1e;
  --orange-100: #f7e6d7;
  --ink: #17231b;
  --muted: #5f6e62;
  --line: #d7e0d4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 44, 25, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 224, 212, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 1 340px;
  min-width: 190px;
}

.brand img {
  width: min(340px, 48vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--green-900);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-700);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 6px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--orange-700);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: clamp(560px, 78svh, 780px);
  overflow: hidden;
  background: #eef5eb;
}

.hero-art,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(244, 248, 241, 0.98) 0%, rgba(244, 248, 241, 0.84) 36%, rgba(244, 248, 241, 0.22) 68%, rgba(244, 248, 241, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 63, 23, 0.14), rgba(7, 63, 23, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 40px));
  padding: clamp(58px, 8vw, 100px) 0 clamp(42px, 7vw, 84px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: var(--green-900);
  font-size: clamp(3.6rem, 9vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: #304233;
  font-size: clamp(1.04rem, 1.8vw, 1.27rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 26px rgba(10, 91, 32, 0.2);
}

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

.button.secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(7, 63, 23, 0.2);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--orange-700);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 0;
}

.hero-facts div {
  min-height: 94px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(215, 224, 212, 0.9);
  border-radius: 8px;
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--orange-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.section {
  padding: clamp(62px, 8vw, 104px) 0;
}

.section-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

.intro-band {
  background: var(--green-900);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 30px 0;
}

.intro-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.intro-grid .intro-line {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

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

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

.service-card {
  min-height: 250px;
  padding: 24px;
  background: var(--green-050);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.card-marker {
  display: block;
  width: 40px;
  height: 6px;
  margin-bottom: 30px;
  background: var(--orange-700);
  border-radius: 999px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.audience-section {
  background: linear-gradient(180deg, #f8fbf5 0%, #edf4e8 100%);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.audience-layout > div:first-child p:last-child,
.partner-grid p,
.contact-copy p {
  margin-bottom: 0;
}

.check-panel {
  display: grid;
  gap: 12px;
}

.check-panel div {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green-700);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(21, 44, 25, 0.08);
  min-width: 0;
}

.check-panel strong,
.check-panel span {
  display: block;
}

.check-panel strong {
  margin-bottom: 5px;
  color: var(--green-900);
}

.check-panel span {
  color: var(--muted);
  line-height: 1.55;
}

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

.referral-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.referral-steps {
  display: grid;
  gap: 14px;
}

.referral-steps article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.referral-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--orange-700);
  border-radius: 50%;
  font-weight: 900;
  grid-row: 1 / span 2;
}

.referral-steps h3 {
  grid-column: 2;
  margin-bottom: 4px;
}

.referral-steps p {
  grid-column: 2;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.partner-section {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 63, 23, 0.96), rgba(19, 107, 48, 0.92)),
    var(--green-900);
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.partner-grid h2,
.partner-grid p {
  color: var(--white);
}

.partner-grid .eyebrow {
  color: #ffbd86;
}

.contact-section {
  background: #f7faf5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

address {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

address strong {
  color: var(--green-900);
}

address a {
  color: var(--green-800);
  font-weight: 800;
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0 0 20px;
  border: 0;
}

legend,
label {
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.segmented-control label {
  min-width: 0;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 10px;
  color: var(--green-900);
  text-align: center;
  background: var(--green-050);
  border: 1px solid var(--line);
  border-radius: 6px;
  line-height: 1.15;
  cursor: pointer;
}

.segmented-control input:checked + span {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #fbfcf9;
  border: 1px solid #cbd8c7;
  border-radius: 6px;
  outline: none;
}

input {
  height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 13px;
  line-height: 1.5;
}

input:focus,
textarea:focus,
.segmented-control input:focus-visible + span {
  border-color: var(--orange-700);
  box-shadow: 0 0 0 3px rgba(189, 95, 30, 0.18);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-800);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer {
  background: var(--green-900);
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-layout span:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(21, 44, 25, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(215, 224, 212, 0.75);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 248, 241, 0.98) 0%, rgba(244, 248, 241, 0.9) 50%, rgba(244, 248, 241, 0.3) 100%),
      linear-gradient(0deg, rgba(7, 63, 23, 0.16), rgba(7, 63, 23, 0));
  }

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

  .audience-layout,
  .referral-layout,
  .partner-grid,
  .contact-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding: 10px 16px;
    gap: 12px;
  }

  .brand img {
    width: min(230px, 64vw);
  }

  .menu-button {
    flex: 0 0 44px;
    border-color: rgba(7, 63, 23, 0.34);
    box-shadow: 0 8px 18px rgba(21, 44, 25, 0.08);
  }

  .hero {
    min-height: auto;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(244, 248, 241, 0.98) 0%, rgba(244, 248, 241, 0.94) 62%, rgba(244, 248, 241, 0.58) 100%),
      linear-gradient(90deg, rgba(244, 248, 241, 0.92), rgba(244, 248, 241, 0.34));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 46px 0 44px 16px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 17vw, 4.7rem);
  }

  .hero-facts,
  .service-grid,
  .form-grid,
  .segmented-control {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1140px);
  }

  .section {
    padding: 54px 0;
  }

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

  .referral-steps article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .referral-steps span {
    width: 40px;
    height: 40px;
  }

  .contact-form {
    padding: 20px;
  }
}
