:root {
  color-scheme: light;
  --text: #202622;
  --muted: #626b66;
  --brand: #16795b;
  --line: #dfe5e1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #1978bc;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h2 {
  text-wrap: balance;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 650;
}
h3 {
  font-size: 21px;
  line-height: 1.5;
}
.container {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 20px;
  background: white;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px max(32px, calc((100% - 1120px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}
.brand img {
  border-radius: 8px;
}
.brand b {
  color: var(--brand);
}
.brand small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.site-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.site-nav a:hover,
.text-link:hover,
.contact-details a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #34312b url("./assets/community-food.jpg") center 55% / cover
    no-repeat;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(16 22 18 / 59%);
  z-index: -1;
}
.hero-copy {
  padding-block: 65px 72px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
}
.hero .eyebrow {
  color: #e4f5ed;
}
h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 17px;
  color: #f2f4f2;
  margin-bottom: 30px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s;
}
.primary {
  background: var(--brand);
  color: #fff;
}
.primary:hover {
  background: #105c45;
}
.light {
  background: #fff;
  color: #202622;
}
.light:hover,
.secondary:hover {
  background: #edf5f0;
}
.secondary {
  border-color: var(--line);
}
.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}
.intro-strip strong {
  font-size: 16px;
}
.intro-strip span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.text-link {
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
}
.section {
  padding-block: 72px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading > p:last-child {
  color: var(--muted);
  margin-top: 14px;
}
.role-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.role-image {
  margin: 0;
  min-width: 0;
}
.role-image img {
  width: 100%;
  height: 310px;
  border-radius: 6px;
}
figcaption {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 16px;
}
.benefits li {
  padding-left: 15px;
  border-left: 2px solid #87bba8;
}
.benefits strong {
  display: block;
  font-size: 15px;
}
.benefits span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 3px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.steps li {
  display: flex;
  gap: 12px;
}
.steps li > span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  padding-top: 3px;
}
.steps h3 {
  font-size: 16px;
}
.steps p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.leader-section {
  background: #f2f6f9;
}
.leader-section .eyebrow,
.leader-section .text-link,
.leader-section .steps li > span {
  color: #28648a;
}
.leader-section .benefits li {
  border-color: #93b5cf;
}
.publish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.publish-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.role-label {
  font-size: 12px;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 12px;
}
.publish-card:nth-child(2) .role-label {
  color: #28648a;
}
.publish-card h3 {
  margin-bottom: 12px;
}
.publish-card > p:not(.role-label),
.publish-card ul {
  color: var(--muted);
  font-size: 14px;
}
.publish-card ul {
  padding-left: 20px;
  margin-block: 20px;
  line-height: 2;
}
.operations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
}
.operations h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.operations p {
  font-size: 14px;
  color: var(--muted);
}
.community-band {
  background: #edf4f0;
  padding-block: 36px;
}
.community-band h2 {
  font-size: 24px;
  margin-bottom: 12px;
}
.community-band p {
  max-width: 780px;
  color: var(--muted);
  font-size: 14px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-section h2 {
  font-size: 30px;
}
.contact-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 24px;
}
.contact-details {
  margin: 0;
}
.contact-details > div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
dt {
  color: var(--muted);
}
dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 24px;
  font-size: 12px;
  color: var(--muted);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 24px;
  }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }
  html {
    scroll-padding-top: 132px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .role-layout {
    gap: 28px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-inline: 20px;
  }
  .brand {
    font-size: 18px;
  }
  .hero-copy {
    padding-block: 42px 48px;
  }
  h1 {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 21px;
  }
  .hero-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .desktop-break {
    display: none;
  }
  .button {
    padding-inline: 18px;
    font-size: 14px;
  }
  .section {
    padding-block: 48px;
  }
  h2 {
    font-size: 27px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
  }
  .role-layout,
  .publish-grid,
  .operations {
    grid-template-columns: 1fr;
  }
  .leader-layout .role-image {
    grid-row: 1;
  }
  .role-image img {
    height: auto;
    aspect-ratio: 8 / 5;
  }
  .publish-card {
    padding: 24px;
  }
  .operations {
    gap: 20px;
  }
  .contact-section h2 {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
