:root {
  --green: #475b40;
  --green-dark: #253326;
  --green-light: #94c887;
  --ink: #191919;
  --muted: #5f675e;
  --line: #dfe5dc;
  --paper: #f7f8f4;
  --white: #ffffff;
  --warm: #b69b62;
  --shadow: 0 18px 48px rgba(25, 25, 25, 0.1);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--green-dark);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(64px, 10vw, 118px) clamp(20px, 6vw, 88px) 32px;
  background: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  background: var(--green);
}

.hero-mark {
  position: absolute;
  right: clamp(-90px, -4vw, -20px);
  top: 50%;
  z-index: -1;
  width: min(52vw, 560px);
  min-width: 320px;
  opacity: 0.09;
  transform: translateY(-50%);
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(4.8rem, 17vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: #353c34;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

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

.button-secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line);
}

.hero-proof {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 10px;
  margin-top: 52px;
  width: min(920px, 100%);
}

.hero-proof span {
  display: block;
  min-width: 0;
  max-width: 100%;
  padding: 9px 12px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section,
.section-band,
.contact-section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 56px);
}

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

.section-band {
  background: var(--green-dark);
  color: var(--white);
}

.section-band .section-kicker {
  color: var(--green-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 0;
  color: #e8efe5;
  font-size: 1.08rem;
}

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

.section-heading.compact {
  max-width: 860px;
}

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

.feature-card,
.service-panel,
.training-list article,
.approach-points article {
  border-radius: 8px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(25, 25, 25, 0.05);
}

.feature-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--warm);
  font-weight: 900;
}

.feature-card p,
.service-panel li,
.training-list p,
.approach-points p,
.contact-copy p {
  color: var(--muted);
}

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

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

.service-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-panel h3 {
  color: var(--green-dark);
}

.service-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 19px;
}

.service-panel li::marker {
  color: var(--green);
}

.training-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.training-list article {
  min-height: 164px;
  padding: 22px;
  background: var(--paper);
  border-left: 4px solid var(--green);
}

.approach {
  color: var(--white);
  background: var(--green);
}

.approach .section-kicker {
  color: #d7e9cf;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
}

.approach-points {
  display: grid;
  gap: 14px;
}

.approach-points article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-points p {
  margin-bottom: 0;
  color: #eef5ea;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.contact-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 7px;
}

.field-row.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdd7c9;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(71, 91, 64, 0.18);
  border-color: var(--green);
}

textarea {
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: #8a2f21;
}

.site-footer {
  padding: 42px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-inner img {
  width: 176px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: #d9dfd6;
}

.footer-inner a {
  color: var(--green-light);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 76svh;
  }

  .feature-grid,
  .service-columns,
  .intro-grid,
  .training-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .brand img {
    width: 178px;
  }

  .site-nav {
    gap: 12px 16px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 5.2rem);
  }

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

  .hero-proof {
    margin-top: 36px;
  }

  .hero-proof span {
    width: 100%;
  }

  .feature-grid,
  .service-columns,
  .training-list,
  .field-row.split {
    grid-template-columns: 1fr;
  }

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

  .feature-number {
    margin-bottom: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
