:root {
  --green: #8ab928;
  --green-dark: #547a10;
  --ink: #142016;
  --muted: #63705f;
  --line: #dfe8d8;
  --soft: #f5f8f0;
  --paper: #ffffff;
  --warm: #f0f6e8;
  --shadow: 0 24px 70px rgba(20, 32, 22, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #fbfdf8 0%, #eef6e6 48%, #ffffff 100%);
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: clamp(280px, 27vw, 380px);
  height: 68px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-text {
  max-width: 440px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: #394636;
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  background: var(--warm);
  color: var(--green-dark);
}

main {
  overflow: hidden;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(54px, 8vw, 112px) clamp(18px, 6vw, 82px) 58px;
  background:
    radial-gradient(circle at 88% 12%, rgba(138, 185, 40, .24), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(240, 246, 232, .9)),
    repeating-linear-gradient(135deg, rgba(138, 185, 40, .08) 0 1px, transparent 1px 22px);
}

.hero-copy {
  max-width: 920px;
}

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

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #3d4b39;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 12px 30px rgba(84, 122, 16, .28);
}

.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(138, 185, 40, .34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.hero-panel span {
  color: var(--green-dark);
  font-weight: 900;
}

.hero-panel strong {
  font-size: 18px;
  line-height: 1.25;
}

.section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 6vw, 82px);
}

.intro,
.split {
  display: grid;
  grid-template-columns: minmax(220px, 380px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p {
  max-width: 850px;
  margin: 0 0 16px;
  color: #3b4738;
  font-size: 20px;
  line-height: 1.65;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.05;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

h4 {
  margin: 0 0 10px;
  font-size: 17px;
}

.people-grid,
.cards-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.person-card,
.cards-three article,
.program-block {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 32, 22, .08);
}

.person-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.person-card p {
  flex: 1;
}

.person-card p,
.cards-three p,
.program-block p {
  color: var(--muted);
  line-height: 1.6;
}

.person-card a,
.doc-group a,
.text-link {
  color: var(--green-dark);
  font-weight: 800;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  padding: 10px 14px;
  color: #fff !important;
  background: var(--green-dark);
  border-radius: 8px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  font-weight: 900;
}

.muted {
  background: var(--soft);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .8fr);
  gap: 16px;
}

.program-block.accent {
  background: #152015;
  color: #fff;
  border-color: #152015;
}

.program-block.accent p {
  color: #dce7d4;
}

.program-block.accent .text-link {
  color: #bdea64;
}

.doc-group {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.doc-group a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed #d4dfcb;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.accordion summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: var(--green-dark);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 2px, 2px 14px;
  border-radius: 50%;
}

.accordion details[open] summary::after {
  background-image: linear-gradient(#fff, #fff);
  background-size: 14px 2px;
}

.accordion-body {
  display: grid;
  gap: 8px;
  padding: 0 18px 18px;
}

.accordion-body a,
.accordion-body span {
  display: block;
  padding: 12px 14px;
  color: var(--green-dark);
  background: #fff;
  border: 1px dashed #d4dfcb;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 82px);
  color: #dfead7;
  background: #142016;
}

.site-footer a {
  color: #bdea64;
  font-weight: 800;
}

.profile-page main {
  overflow: visible;
}

.profile-hero {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 82px) clamp(34px, 5vw, 62px);
  background:
    radial-gradient(circle at 86% 18%, rgba(138, 185, 40, .24), transparent 30%),
    linear-gradient(135deg, #ffffff, #f0f6e8);
  border-bottom: 1px solid var(--line);
}

.profile-hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 5vw, 68px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-weight: 850;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.profile-links a,
.profile-links span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.profile-content {
  display: grid;
  gap: 18px;
  padding: clamp(38px, 6vw, 78px) clamp(18px, 6vw, 82px);
  background: #fff;
}

.profile-section {
  padding: clamp(22px, 4vw, 34px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-reset: profile-item;
}

.profile-section h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 38px);
}

.profile-section p,
.profile-list {
  max-width: 1120px;
  color: #3b4738;
  font-size: 17px;
  line-height: 1.65;
}

.profile-section p {
  margin: 0 0 12px;
}

.profile-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.profile-list li {
  margin-bottom: 12px;
  padding-left: 34px;
  position: relative;
}

.profile-list li::before {
  counter-increment: profile-item;
  content: counter(profile-item) ".";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.profile-section a {
  color: var(--green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

  .hero,
  .intro,
  .split,
  .program-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .people-grid,
  .cards-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: min(100%, 360px);
    height: 64px;
  }

  .nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 38px;
  }

  .accordion summary {
    align-items: flex-start;
    font-size: 17px;
  }
}
