:root {
  --cream: #fff7e6;
  --green: #1e4d2b;
  --bright-green: #007a30;
  --lime: #75bd21;
  --accessible-lime: #4a7f17;
  --gold: #e6b23c;
  --ink: #3f4c40;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  background: var(--cream);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: var(--bright-green);
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--green);
}

button {
  font: inherit;
}

main {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--green);
  font-family: Mulish, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  transform: translateY(-160%);
}

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

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

.site-shell {
  position: relative;
  min-width: 0;
  overflow-x: hidden;
  color: var(--green);
  background: var(--cream);
  font-family: Mulish, "Helvetica Neue", Helvetica, sans-serif;
}

.site-header {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(18px, 3vw, 28px) clamp(20px, 4.1vw, 56px);
}

.site-brand {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.site-logo {
  display: block;
  width: clamp(132px, 13vw, 176px);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .3));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px clamp(18px, 2.5vw, 34px);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 600;
}

.site-nav a {
  padding: 12px 0;
  color: var(--cream);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cream);
}

.site-nav a[aria-current="page"] {
  border-bottom: 2px solid var(--gold);
}

.site-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero-home {
  min-height: clamp(520px, 74svh, 720px);
}

.hero-about {
  min-height: clamp(390px, 56svh, 520px);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-home .hero-image {
  object-position: center 40%;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 52, 29, .58), rgba(20, 52, 29, .32) 40%, rgba(20, 52, 29, .78));
}

.hero-about .hero-overlay {
  background: linear-gradient(180deg, rgba(20, 52, 29, .72), rgba(20, 52, 29, .52));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy-home {
  max-width: 940px;
  margin-top: auto;
  padding: 0 clamp(20px, 4.1vw, 56px) clamp(56px, 7vw, 96px);
}

.hero-copy-centered {
  max-width: 820px;
  margin: auto;
  padding: 34px clamp(20px, 4.1vw, 56px) clamp(58px, 6vw, 80px);
  text-align: center;
}

.hero-title {
  margin: 0;
  color: var(--cream);
  font-family: "Bree Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.06;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
  text-wrap: pretty;
}

.hero-copy-home .hero-title {
  max-width: 900px;
  font-size: clamp(44px, 5.2vw, 68px);
}

.hero-copy-centered .hero-title {
  font-size: clamp(40px, 5vw, 56px);
}

.hero-description {
  margin: 18px 0 0;
  color: var(--cream);
  font-size: clamp(17px, 1.65vw, 19px);
  font-weight: 300;
  line-height: 1.55;
}

.vision-band {
  padding: clamp(40px, 4.5vw, 52px) clamp(20px, 4.1vw, 56px);
  color: #fff;
  background: var(--lime);
  text-align: center;
}

.vision-band h2,
.connect-section h2,
.stories-title {
  font-family: "Bree Serif", Georgia, serif;
  font-weight: 400;
}

.vision-band h2 {
  margin: 0 0 14px;
  font-size: clamp(27px, 2.2vw, 30px);
}

.vision-band p {
  max-width: 940px;
  margin: 0 auto 12px;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
}

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

.vision-band .vision-lead {
  font-weight: 700;
}

.vision-band .vision-support {
  font-weight: 300;
  line-height: 1.55;
}

.vision-band a {
  color: var(--cream);
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 247, 230, .6);
}

.feature-slider {
  padding: 0;
  background: var(--cream);
}

.feature-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(380px, 42vw, 500px);
}

.slider-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 4.7vw, 64px);
  color: var(--cream);
  background: var(--bright-green);
}

.slider-copy::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 247, 230, .1) 0 2px, transparent 3px) 0 0 / 48px 48px;
  content: "";
}

.slider-copy h2,
.story-copy h3 {
  position: relative;
  margin: 0;
  font-family: "Bree Serif", Georgia, serif;
  font-weight: 400;
}

.slider-copy h2 {
  max-width: 430px;
  color: var(--cream);
  font-size: clamp(34px, 3.25vw, 46px);
  line-height: 1.1;
  white-space: pre-line;
}

.slider-copy ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--cream);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 600;
  list-style: none;
}

.slider-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.slider-media picture,
.story-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.slider-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: relative;
  display: none;
  justify-content: center;
  align-self: flex-start;
  gap: 4px;
  margin-top: clamp(34px, 4vw, 52px);
}

.js .slider-dots {
  display: flex;
}

.slider-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.slider-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.slider-dot[aria-pressed="true"]::before {
  background: currentColor;
  transform: translate(-50%, -50%) scale(1.2);
}

.stories-section {
  position: relative;
  padding: clamp(56px, 6vw, 78px) clamp(20px, 4.1vw, 56px) clamp(68px, 7vw, 88px);
}

.stories-backdrop-image,
.stories-backdrop-overlay {
  position: absolute;
  inset: 0 0 30% 0;
  width: 100%;
  height: 70%;
}

.stories-backdrop-image {
  object-fit: cover;
}

.stories-backdrop-overlay {
  background: linear-gradient(180deg, rgba(20, 52, 29, .78), rgba(20, 52, 29, .56));
}

.stories-title {
  position: relative;
  max-width: 900px;
  margin: 0 auto clamp(36px, 4vw, 48px);
  color: var(--cream);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.12;
  text-align: center;
  text-wrap: pretty;
}

.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1179px;
  margin: 0 auto;
}

.story-card {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 720px;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.story-copy,
.story-media {
  min-height: 0;
  flex: none;
  z-index: 1;
}

.story-card::after {
  position: absolute;
  z-index: 3;
  inset: 26px;
  border: 4px solid var(--green);
  pointer-events: none;
  content: "";
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 24px;
  text-align: center;
}

.story-copy h3 {
  color: var(--green);
  font-size: clamp(23px, 2vw, 26px);
  line-height: 1.15;
}

.story-copy p {
  margin: 0;
  color: #4a5b4c;
  font-size: 15px;
  line-height: 1.45;
}

.story-copy a,
.resume-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 12px 34px;
  color: var(--cream);
  background: var(--green);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 15px;
}

.story-copy a:hover,
.resume-cta:hover {
  color: var(--cream);
  background: var(--bright-green);
}

.story-media {
  position: relative;
  overflow: hidden;
}

.story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.connect-section {
  padding: 26px clamp(20px, 4.1vw, 56px) 70px;
  background: var(--cream);
  text-align: center;
}

.connect-section h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: clamp(29px, 2.5vw, 34px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  color: var(--cream);
  background: var(--green);
}

a.social-icon-tile {
  cursor: pointer;
  transition: background-color .18s ease;
}

a.social-icon-tile:hover {
  color: var(--cream);
  background: var(--bright-green);
}

.social-brand-icon {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 40px clamp(20px, 4.1vw, 56px);
  color: var(--cream);
  background: var(--green);
  font-size: 15px;
}

.footer-copy {
  display: flex;
  min-width: min(100%, 330px);
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.footer-copy strong {
  font-family: "Bree Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.footer-copy span {
  opacity: .85;
}

.footer-copy a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-nav a {
  color: var(--cream);
  opacity: .85;
}

.vision-story {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 72px) 0 clamp(68px, 8vw, 96px);
}

.vision-article {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vision-article + .vision-article {
  margin-top: clamp(50px, 6vw, 64px);
}

.vision-icon {
  align-self: center;
  display: flex;
  width: min(100%, 220px);
  height: 160px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.vision-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vision-icon picture {
  display: block;
  width: 100%;
  height: 100%;
}

.vision-article h2 {
  margin: 0;
  color: var(--green);
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 29px);
  font-weight: 400;
  line-height: 1.2;
}

.vision-article p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 17px);
  line-height: 1.65;
}

.vision-article .vision-takeaway {
  color: var(--bright-green);
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(19px, 2vw, 21px);
  line-height: 1.35;
}

.vision-close {
  margin-top: clamp(50px, 6vw, 64px);
  padding-top: 40px;
  border-top: 2px solid rgba(30, 77, 43, .15);
  text-align: center;
}

.vision-close p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 17px);
}

.vision-close p:last-child {
  margin: 0;
  color: var(--bright-green);
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(27px, 2.7vw, 30px);
}

@media (max-width: 800px) {
  .feature-slider-grid {
    grid-template-columns: 1fr;
  }

  .slider-media {
    min-height: clamp(280px, 62vw, 420px);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
  }

  .story-card {
    height: 620px;
  }

  .story-copy,
  .story-media {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
    gap: 6px 20px;
  }

  .hero-home {
    min-height: 590px;
  }

  .hero-about {
    min-height: 400px;
  }

  .hero-copy-home {
    padding-bottom: 54px;
  }

  .hero-copy-home .hero-title {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-copy-centered .hero-title {
    font-size: clamp(37px, 10vw, 48px);
  }

  .hero-description {
    font-size: 17px;
  }

  .vision-story {
    width: min(calc(100% - 40px), 760px);
  }

  .vision-icon {
    width: min(100%, 200px);
    height: 140px;
  }

  .site-footer {
    flex-direction: column;
  }

  .story-card {
    height: 560px;
  }

  .story-card::after {
    inset: 18px;
    border-width: 3px;
  }
}

@media (max-width: 420px) {
  .hero-home {
    min-height: 560px;
  }

  .slider-copy {
    padding-inline: 22px;
  }

  .slider-copy h2 {
    font-size: 34px;
  }

  .stories-title {
    font-size: 34px;
  }

  .story-copy,
  .story-media {
    min-height: 0;
  }

  .story-card {
    height: 520px;
  }
}
