@charset "UTF-8";

:root {
  --ink: #202424;
  --text: #323838;
  --muted: #626b6b;
  --line: #d7dddd;
  --soft: #f4f7f6;
  --white: #ffffff;
  --green: #6f8781;
  --green-dark: #324743;
  --accent: #b79a63;
  --shadow: 0 16px 42px rgba(22, 35, 34, 0.12);
  --radius: 8px;
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: 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: 18px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(32, 36, 36, 0.1);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
}

.site-nav a {
  padding: 9px 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--green-dark);
}

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

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--green);
  box-shadow: 0 10px 22px rgba(22, 35, 34, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(76px, 9vw, 118px) clamp(20px, 5vw, 70px);
  background: linear-gradient(110deg, #f8faf9 0%, #ffffff 56%, rgba(111, 135, 129, 0.18) 100%);
}

.hero-content,
.section-heading {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.2rem;
}

.lead,
.section-heading p,
.split-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.lead {
  margin: 22px 0 0;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details a {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(100%, 260px);
  margin: 0 auto 26px;
}

.hero-panel ul,
.mission-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel li,
.mission-card li {
  position: relative;
  padding-left: 24px;
}

.hero-panel li::before,
.mission-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.section,
.split-section,
.contact-section {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 70px);
}

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

.section-grey {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 38px;
}

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

.proof-grid article,
.mission-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(22, 35, 34, 0.06);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.proof-grid span {
  margin-top: 8px;
  color: var(--muted);
}

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

.mission-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 900;
}

.mission-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
  background: var(--green-dark);
}

.split-section h2,
.split-section .eyebrow {
  color: var(--white);
}

.split-section p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.steps span,
.steps strong {
  display: block;
}

.steps span {
  color: var(--accent);
  font-weight: 900;
}

.steps p {
  margin: 8px 0 0;
  font-size: 1rem;
}

.leader-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.leader-card img {
  width: 190px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid rgba(183, 154, 99, 0.55);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(22, 35, 34, 0.16);
}

.leader-card p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.contact-form textarea,
.contact-form .form-wide {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-preview-notice {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-preview-notice p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer img {
  width: 110px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: clamp(16px, 4vw, 42px);
    left: clamp(16px, 4vw, 42px);
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 900px) {
  .hero,
  .split-section,
  .contact-section,
  .leader-card {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .leader-card img {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 96px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.35rem;
  }

  .site-footer {
    display: grid;
  }
}

.field-help {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.4;
}

input[type="file"] {
  padding: 10px;
  background: #fff;
}
