@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Lora:ital, wght@0, 400;0, 500;0, 600;1, 400;1, 500&display=swap');
:root {
  --blue: #36574b;
  --ink: #28332d;
  --paper: #f8f7f3;
  --yellow: #e4e7df;
  --line: #dce0d8;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid #986542;
  outline-offset: 5px;
}
.skip {
  position: absolute;
  top: -80px;
  left: 20px;
  background: white;
  padding: 12px;
  z-index: 5;
}
.skip:focus {
  top: 10px;
}
.wrap {
  max-width: 1240px;
  margin: auto;
  padding: 0 56px;
}
header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font: 500 25px/1.2 'Lora', serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mark {
  display: grid;
  place-items: center;
  background: #e3e7dd;
  color: var(--blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font: italic 500 22px 'Lora', serif;
  letter-spacing: -2px;
  padding-right: 3px;
}
.brand .mark {
  display: block;
  width: 45px;
  height: 45px;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
nav a[aria-current=page]:not(.nav-join) {
  color: #4c6658;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.nav-join {
  background: var(--blue);
  color: white;
  padding: 10px 23px;
  border-radius: 8px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 25px;
  align-items: center;
  padding: 66px 0 52px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 24px;
  color: #4c6658;
}
.hero h1 {
  font: 400 clamp(39px, 4.5vw, 60px)/1.18 'Lora', serif;
  letter-spacing: -1.6px;
  margin: 0 0 25px;
}
.hero h1 em {
  font-weight: 400;
  color: #4f705d;
}
.hero .intro {
  max-width: 440px;
  font-size: 18px;
  color: #59635d;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-decoration: none;
  padding: 13px 23px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.btn:hover, .nav-join:hover {
  background: #284438;
}
.hero-note {
  font-size: 13px;
  color: #647067;
  margin: 15px 0 0;
}
.hero-art {
  min-width: 0;
  aspect-ratio: 1/1;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.welcome-strip {
  display: flex;
  justify-content: center;
  gap: 75px;
  padding: 21px 20px;
  background: #e8ebe3;
  border-radius: 10px;
  color: #465d4e;
  font: 400 19px 'Lora', serif;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 65px;
  padding: 58px 0 25px;
}
h2 {
  font: 400 clamp(27px, 3vw, 36px)/1.3 'Lora', serif;
  letter-spacing: -.6px;
  margin: 0;
}
p {
  margin: 0 0 20px;
}
.intro-grid p {
  font-size: 17px;
  color: #59635d;
}
.conditions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 52px;
}
.conditions span {
  border: 1px solid #d6ddd2;
  background: #f8f9f4;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #536457;
}
.lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 65px;
}
.lower>div {
  padding: 30px 32px;
  background: #e9ece4;
  border-radius: 14px;
}
.lower>div:last-child {
  background: #eeece5;
}
.lower h3 {
  font: 400 26px/1.3 'Lora';
  margin: 0 0 15px;
}
.lower p {
  font-size: 16px;
  color: #59635d;
}
.text-link {
  font-size: 15px;
  font-weight: 500;
  text-underline-offset: 5px;
}
.page-head {
  padding: 55px 0 38px;
}
.page-head h1 {
  font: 400 clamp(42px, 5.5vw, 65px)/1.16 'Lora', serif;
  letter-spacing: -1.5px;
  max-width: 850px;
  margin: 0 0 25px;
}
.page-head>p:last-child {
  max-width: 680px;
  color: #59635d;
  font-size: 19px;
}
.content-row {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.content-row h2 {
  font-size: 28px;
}
.content-row p {
  max-width: 680px;
  color: #59635d;
  font-size: 17px;
}
.callout {
  background: #e5eade;
  border-radius: 14px;
  padding: 36px;
  margin: 30px 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.callout h2 {
  font-size: 29px;
}
.callout p {
  margin: 10px 0 0;
  font-size: 16px;
}
.callout .eyebrow {
  font-size: 12px;
  margin-bottom: 15px;
}
.callout a {
  overflow-wrap: anywhere;
}
.join-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin: 15px 0 70px;
}
.join-card {
  background: #e5eade;
  border-radius: 16px;
  padding: 36px;
}
.join-card .price {
  font: 400 52px/1.2 'Lora';
  letter-spacing: -1px;
  margin: 14px 0 24px;
}
.join-card a {
  overflow-wrap: anywhere;
}
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.steps li {
  counter-increment: step;
  padding: 0 0 25px 48px;
  position: relative;
}
.steps li:before {
  content: '0' counter(step);
  position: absolute;
  left: 0;
  color: #4f705d;
  font-family: 'Lora';
}
.steps h2 {
  font-size: 25px;
  margin-bottom: 8px;
}
.steps p {
  font-size: 17px;
  color: #59635d;
}
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: #647067;
}
footer a {
  overflow-wrap: anywhere;
}
footer p {
  margin: 0;
}
.footer-name {
  color: var(--ink);
  font: 500 19px 'Lora', serif;
}
@media (max-width:900px) {
  .wrap {
    padding: 0 32px;
  }
  .brand {
    font-size: 22px;
  }
  nav {
    gap: 20px;
  }
  .hero {
    gap: 10px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero .intro {
    font-size: 17px;
  }
  .hero-art {
    align-self: center;
  }
}
@media (max-width:650px) {
  .wrap {
    padding: 0 22px;
  }
  header {
    height: auto;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 22px;
  }
  .brand {
    font-size: 23px;
  }
  nav {
    justify-content: space-between;
    width: 100%;
    gap: 14px;
  }
  nav a {
    font-size: 14px;
  }
  .nav-join {
    padding: 8px 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 37px 0 28px;
    gap: 16px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .hero .intro {
    font-size: 17px;
  }
  .hero-art {
    max-width: 350px;
    width: 100%;
    justify-self: center;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
  }
  .welcome-strip {
    gap: 20px;
    padding: 19px 12px;
    font-size: 14px;
  }
  .intro-grid, .lower, .content-row, .join-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .intro-grid {
    padding-top: 36px;
  }
  .conditions {
    margin-bottom: 36px;
  }
  .lower {
    margin-bottom: 40px;
  }
  .lower>div {
    padding: 25px;
  }
  .page-head {
    padding-top: 36px;
  }
  .page-head h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }
  .page-head>p:last-child {
    font-size: 18px;
  }
  .content-row {
    padding: 25px 0;
  }
  .callout {
    align-items: start;
    flex-direction: column;
    padding: 27px;
    margin-bottom: 40px;
  }
  .join-layout {
    gap: 25px;
  }
  .join-card {
    padding: 28px;
  }
  footer {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
}
/* Neutral, grounded typography */
.brand {
  font: 600 23px/1.2 'DM Sans', sans-serif;
  letter-spacing: -.7px;
}
.mark {
  font: 700 15px 'DM Sans', sans-serif;
  letter-spacing: -1px;
  border-radius: 12px;
}
.hero h1 {
  font: 500 clamp(39px, 4.2vw, 57px)/1.17 'DM Sans', sans-serif;
  letter-spacing: -1.8px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 500;
}
.welcome-strip {
  font: 500 16px 'DM Sans', sans-serif;
  border-radius: 4px;
}
h2, .content-row h2, .callout h2, .steps h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.lower h3 {
  font: 500 23px/1.3 'DM Sans', sans-serif;
}
.page-head h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.join-card .price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.footer-name {
  font: 600 17px 'DM Sans', sans-serif;
}
.lower>div, .callout, .join-card {
  border-radius: 6px;
}
.hero-art img {
  border-radius: 3px;
}
.btn, .nav-join {
  border-radius: 5px;
}
@media (max-width:900px) {
  .hero h1 {
    font-size: 42px;
  }
}
@media (max-width:650px) {
  .hero h1 {
    font-size: 40px;
  }
  .welcome-strip {
    font-size: 13px;
    gap: 20px;
  }
}
.hero-art {
  aspect-ratio: 1.1;
}
.hero-art img {
  object-fit: cover;
  mix-blend-mode: normal;
  object-position: 45% center;
  border-radius: 8px;
}
.photo-credit {
  font-size: 12px;
  max-width: 180px;
}
.hero-art {
  aspect-ratio: 1.3;
}
.hero-art img {
  object-position: center;
}
.community-page .page-head {
  position: relative;
  padding: 68px 58px 62px;
  margin: 0 -18px 42px;
  background: #f0e8e5;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}
.community-page .page-head::after {
  content: '';
  position: absolute;
  right: 8%;
  bottom: -78px;
  width: 220px;
  height: 220px;
  border: 1px solid #d9c8c5;
  border-radius: 50%;
}
.community-page .page-head h1,
.community-page .page-head > p {
  position: relative;
  z-index: 1;
}
.community-page .page-head h1 {
  max-width: 760px;
  color: #493944;
}
.community-page .page-head > p:last-child {
  max-width: 700px;
  color: #665b61;
}
.community-page .content-row {
  padding: 38px 0;
}
.community-page .content-row:nth-of-type(3) {
  border-top-color: #d8cbc8;
}
.community-page .content-row h2 {
  color: #674e64;
}
.community-page .callout {
  background: #674e64;
  color: #fff;
  padding: 38px 42px;
}
.community-page .callout p {
  color: #eee5e7;
}
.community-page .callout .text-link {
  color: #fff;
}
@media (max-width:650px) {
  .community-page .page-head {
    padding: 42px 25px 38px;
    margin: 0 -8px 28px;
  }
  .community-page .page-head::after {
    right: -80px;
    bottom: -90px;
  }
  .community-page .callout {
    padding: 28px;
  }
}
.support-page .page-head {
  position: relative;
  padding: 68px 58px 62px;
  margin: 0 -18px 42px;
  background: #e9eee8;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}
.support-page .page-head::after {
  content: '';
  position: absolute;
  right: 8%;
  bottom: -78px;
  width: 220px;
  height: 220px;
  border: 1px solid #cbd8cc;
  border-radius: 50%;
}
.support-page .page-head h1,
.support-page .page-head > p {
  position: relative;
  z-index: 1;
}
.support-page .page-head h1 {
  max-width: 760px;
  color: #39493f;
}
.support-page .page-head > p:last-child {
  max-width: 700px;
  color: #59675d;
}
.support-page .content-row {
  padding: 38px 0;
}
.support-page .content-row:nth-of-type(3) {
  border-top-color: #cbd8cc;
}
.support-page .content-row h2 {
  color: #36574b;
}
.support-page .callout {
  background: #36574b;
  color: #fff;
  padding: 38px 42px;
}
.support-page .callout p {
  color: #e5eee7;
}
.support-page .callout .text-link {
  color: #fff;
}
@media (max-width:650px) {
  .support-page .page-head {
    padding: 42px 25px 38px;
    margin: 0 -8px 28px;
  }
  .support-page .page-head::after {
    right: -80px;
    bottom: -90px;
  }
  .support-page .callout {
    padding: 28px;
  }
}
.advocacy-page .page-head {
  position: relative;
  padding: 68px 58px 62px;
  margin: 0 -18px 42px;
  background: #eeeae1;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}
.advocacy-page .page-head::after {
  content: '';
  position: absolute;
  right: 8%;
  bottom: -78px;
  width: 220px;
  height: 220px;
  border: 1px solid #d9d0be;
  border-radius: 50%;
}
.advocacy-page .page-head h1,
.advocacy-page .page-head > p {
  position: relative;
  z-index: 1;
}
.advocacy-page .page-head h1 {
  max-width: 760px;
  color: #514937;
}
.advocacy-page .page-head > p:last-child {
  max-width: 700px;
  color: #686257;
}
.advocacy-page .content-row {
  padding: 38px 0;
}
.advocacy-page .content-row:nth-of-type(3) {
  border-top-color: #d9d0be;
}
.advocacy-page .content-row h2 {
  color: #6b5b3f;
}
.advocacy-page .callout {
  background: #6b5b3f;
  color: #fff;
  padding: 38px 42px;
}
.advocacy-page .callout p {
  color: #eee9dc;
}
.advocacy-page .callout .text-link {
  color: #fff;
}
@media (max-width:650px) {
  .advocacy-page .page-head {
    padding: 42px 25px 38px;
    margin: 0 -8px 28px;
  }
  .advocacy-page .page-head::after {
    right: -80px;
    bottom: -90px;
  }
  .advocacy-page .callout {
    padding: 28px;
  }
}
.hero {
  grid-template-columns: 1fr 1.15fr;
}
@media (max-width:650px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    max-width: none;
  }
}
