:root {
  --ink: #1d2522;
  --muted: #5f6762;
  --paper: #ffffff;
  --wash: #f7f8f3;
  --soft: #eef3ea;
  --line: #d9ded6;
  --line-strong: #bcc6bd;
  --green: #0d5b45;
  --green-deep: #063d31;
  --blue: #0b72a1;
  --gold: #b98528;
  --shadow: 0 18px 45px rgba(19, 35, 29, 0.1);
  --radius: 8px;
  --header-height: 74px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 4.25vw, 4.25rem);
  font-weight: 820;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 2.65vw, 2.85rem);
  font-weight: 780;
}

h3 {
  font-size: 1rem;
  font-weight: 790;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border: 2px solid var(--green);
  border-radius: 6px;
  background: #fff;
  padding: 0.65rem 0.9rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.75rem clamp(1rem, 3vw, 2.25rem);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(20, 30, 26, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0.2rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 0.95rem;
  font-weight: 820;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  color: #2f3734;
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a {
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.document-shell {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 820px);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-height) + 4.2rem) 0 5rem;
}

.toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
  color: #2d3833;
}

.toc-title {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.toc nav {
  display: grid;
  gap: 0.15rem;
  border-left: 1px solid var(--line);
}

.toc a {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.4rem;
  border-left: 2px solid transparent;
  margin-left: -1px;
  padding: 0.55rem 0 0.55rem 0.9rem;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 710;
  text-decoration: none;
}

.toc a span {
  color: #8a928d;
  font-size: 0.76rem;
}

.toc a:hover,
.toc a:focus-visible,
.toc a.is-active {
  border-left-color: var(--green);
  color: var(--green);
  outline: none;
}

.document {
  min-width: 0;
}

.section-block {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4.8rem) 0;
}

.intro {
  border-top: 0;
  padding-top: 0;
}

.kicker {
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.lede {
  max-width: 720px;
  margin-top: 1.2rem;
  color: #2e3733;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  line-height: 1.42;
}

.intro > p:not(.kicker, .lede) {
  max-width: 720px;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 2.2rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.fact-row div {
  min-width: 0;
  padding: 1rem;
  background: var(--wash);
}

.fact-row div + div {
  border-left: 1px solid var(--line);
}

.fact-row dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 840;
  text-transform: uppercase;
}

.fact-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.35;
}

.story-photo {
  margin: 2.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.story-photo img {
  width: 100%;
  height: clamp(210px, 31vw, 360px);
  object-fit: cover;
  object-position: 48% 42%;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.4rem;
}

.two-column p {
  color: var(--muted);
}

.two-column p + p {
  margin-top: 1rem;
}

.why-copy {
  max-width: 760px;
  margin-top: 1.4rem;
}

.why-copy p {
  color: var(--muted);
}

.why-copy p + p {
  margin-top: 1rem;
}

.section-intro {
  display: grid;
  gap: 0.85rem;
  max-width: 760px;
  margin-top: 1.35rem;
}

.section-intro p {
  color: var(--muted);
}

.credibility-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--wash);
  color: var(--green-deep);
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.callout {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  padding: 1.2rem;
}

.callout-label {
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 860;
  text-transform: uppercase;
}

blockquote {
  margin: 0;
}

blockquote p {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.35;
}

.central-idea blockquote p {
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.55;
}

.rule-list {
  margin-top: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.rule-list article {
  display: grid;
  grid-template-columns: minmax(160px, 230px) minmax(0, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
}

.rule-list p {
  color: var(--muted);
}

.rule-list p + p {
  margin-top: 0.65rem;
}

.rule-list a {
  color: var(--green);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.people-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.4rem;
}

.people-intro p {
  color: var(--muted);
}

.presenter-points {
  display: grid;
  gap: 0.45rem;
  align-self: start;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  padding: 1rem 1rem 1rem 2.2rem;
  color: #38433e;
  font-size: 0.94rem;
  font-weight: 650;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.person-card {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  min-height: 15rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.person-card img,
.person-avatar {
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  object-fit: cover;
}

.person-avatar {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 880;
}

.person-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.person-role {
  margin-bottom: 0.6rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.person-card p:not(.person-role) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.person-card.presenter-cta {
  grid-template-columns: 1fr;
  align-content: center;
  background: var(--wash);
}

.presenter-cta div {
  max-width: 30rem;
}

.presenter-cta h3 {
  margin-bottom: 0.75rem;
  color: var(--green-deep);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.presenter-cta .button {
  margin-top: 1rem;
}

.featured-program > p:not(.kicker) {
  max-width: 680px;
  margin-top: 1.05rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.featured-program-image {
  margin: 2rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f4ed;
  box-shadow: 0 14px 34px rgba(19, 35, 29, 0.08);
}

.featured-program-image img {
  width: 100%;
  height: auto;
}

.featured-series-button {
  margin-top: 1rem;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  border-radius: var(--radius);
  background: var(--green-deep);
  color: #fff;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.quote-band p {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.05;
  font-weight: 790;
}

.quote-band span {
  align-self: end;
  color: #d9e8df;
}

.testimonials-section h2 {
  max-width: 700px;
}

.testimonial-feature {
  margin: 1.5rem 0 0;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--wash);
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.testimonial-feature blockquote p {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 760;
  line-height: 1.42;
}

.testimonial-feature figcaption {
  display: grid;
  gap: 0.12rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.testimonial-feature figcaption strong {
  color: var(--green-deep);
  font-size: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.testimonial-card {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  font-weight: 750;
  line-height: 1.42;
}

.testimonial-card figcaption {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.35;
}

.testimonial-card-smile {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  background: var(--soft);
  border-left-color: var(--blue);
}

.testimonial-card-smile blockquote {
  color: var(--green-deep);
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  font-weight: 850;
  line-height: 1.08;
}

.testimonial-card-smile figcaption {
  white-space: nowrap;
}

.org-list {
  display: grid;
  gap: 0;
  margin-top: 1.9rem;
  border-bottom: 1px solid var(--line);
}

.org-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 1.35rem 0;
}

.logo-panel {
  display: grid;
  min-height: 108px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(24, 35, 30, 0.05);
}

.logo-panel img {
  width: min(100%, 150px);
  max-height: 82px;
  object-fit: contain;
}

.org-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
}

.org-card p {
  max-width: 620px;
  color: var(--muted);
}

.contact-panel {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.contact-panel p {
  max-width: 680px;
  color: var(--muted);
}

.contact-panel p + p {
  margin-top: 0.85rem;
}

.final-action .contact-panel {
  border-left: 4px solid var(--green);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--green-deep);
  outline: none;
}

.button-secondary {
  background: #fff;
  color: var(--green);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--soft);
}

.site-footer {
  background: #063725;
  color: #ffffff;
  padding: 42px 32px 28px;
}

.footer-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.footer-main {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(260px, 1.1fr) minmax(160px, 0.45fr) minmax(210px, 0.6fr);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand-logo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  display: block;
  height: auto;
  padding: 8px 10px;
  width: min(178px, 64vw);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-top: 14px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column p {
  color: #9ee6c6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 28px;
  padding-top: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
  max-width: 980px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .document-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: min(860px, calc(100% - 2rem));
    padding-top: calc(var(--header-height) + 2rem);
  }

  .toc {
    display: none;
  }

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

  .fact-row div:nth-child(odd) {
    border-left: 0;
  }

  .fact-row div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .two-column,
  .people-intro,
  .quote-band {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 840px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

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

  .site-nav a {
    padding: 0.8rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15.5px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

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

  .site-nav a {
    padding: 0.8rem;
  }

  .document-shell {
    width: min(100% - 1rem, 720px);
    padding-bottom: 3rem;
  }

  .section-block {
    padding-block: 2.7rem;
  }

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

  .fact-row,
  .rule-list article,
  .testimonial-grid,
  .testimonial-card-smile,
  .people-grid,
  .org-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .people-grid {
    border-left: 0;
  }

  .person-card {
    grid-template-columns: 4.7rem minmax(0, 1fr);
    min-height: 0;
    border-left: 1px solid var(--line);
    padding: 1rem 0.85rem;
  }

  .person-card img,
  .person-avatar {
    width: 4.7rem;
    height: 4.7rem;
  }

  .fact-row div + div,
  .fact-row div:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .story-photo {
    margin-top: 1.8rem;
  }

  .rule-list article {
    gap: 0.4rem;
  }

  .testimonial-card-smile figcaption {
    white-space: normal;
  }

  .logo-panel {
    min-height: 98px;
  }

  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}
