:root {
  --ink: #20261f;
  --muted: #667062;
  --leaf: #54794a;
  --leaf-dark: #35553a;
  --paper: #fbfcf8;
  --line: #dfe6d9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.shell { width: min(100% - 40px, 960px); margin-inline: auto; }

.site-header { background: #fff; border-bottom: 1px solid var(--line); }

.brand {
  display: block;
  width: min(100% - 40px, 960px);
  margin-inline: auto;
  padding: 22px 0 19px;
  color: var(--leaf);
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.hero {
  padding: 42px 0 38px;
  background: linear-gradient(135deg, #8fa26d 0%, #9aad79 55%, #879e6b 100%);
}

.eyebrow {
  margin: 0 0 7px;
  color: #eef4e9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 span { display: block; margin-top: 10px; }

.hero-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 20px;
  background: rgb(88 139 107 / 72%);
  box-shadow: 0 24px 60px rgb(45 65 36 / 16%);
  color: #fff;
}

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

.byline { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }

.byline img {
  width: 48px;
  height: 48px;
  border: 2px solid rgb(255 255 255 / 80%);
  border-radius: 50%;
  object-fit: cover;
}

.byline div { display: grid; line-height: 1.25; }
.byline strong { font-size: 15px; }
.byline span { margin-top: 4px; color: #e6efe5; font-size: 13px; }
.story { padding: 54px 0 70px; }

.story > p,
.story > h2,
.story > .article-image,
.story > .cta,
.story > .disclosure { width: min(100%, 790px); margin-inline: auto; }

p { margin-top: 0; margin-bottom: 22px; }

h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  color: var(--leaf-dark);
  font-size: clamp(27px, 4vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.callout {
  padding-left: 18px;
  border-left: 4px solid var(--leaf);
  color: var(--leaf-dark);
  font-size: 20px;
  font-weight: 750;
}

.article-image {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-top: 32px;
  margin-bottom: 34px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgb(41 55 37 / 14%);
}

.hero-card .article-image {
  width: min(100%, 560px);
  margin: 30px auto;
  box-shadow: 0 18px 45px rgb(32 56 37 / 22%);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 20px 24px;
  border-radius: 14px;
  background: var(--leaf);
  box-shadow: 0 12px 30px rgb(53 85 58 / 20%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.cta:hover { background: var(--leaf-dark); transform: translateY(-2px); }
.cta:focus-visible { outline: 3px solid #f3c969; outline-offset: 4px; }
.cta span { font-size: 28px; line-height: 1; }

.disclosure {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-inner a { text-underline-offset: 3px; }

@media (max-width: 640px) {
  body { font-size: 16px; line-height: 1.62; }
  .shell, .brand { width: min(100% - 28px, 960px); }
  .site-header .brand { padding-block: 18px; }
  .hero { padding: 30px 0 24px; }
  h1 { margin-bottom: 18px; }
  .hero-card { padding: 20px 18px; border-radius: 15px; }
  .story { padding: 38px 0 54px; }
  .article-image { margin-block: 26px 30px; border-radius: 13px; }
  .cta { padding: 17px 18px; font-size: 16px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta { transition: none; }
}
