/* ============================================================
   SEEDS OF THE FUTURE — Layout CSS
   Colors:
     Cream (bg):        #f8f7f1
     Dark Green:        #013421
     Light Green:       #b9d43a
     Medium Green:      #0c8157
     Light Green Tint:  #d3e38b
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --cream:         #f8f7f1;
  --dark-green:    #013421;
  --light-green:   #b9d43a;
  --medium-green:  #0c8157;
  --tint-green:    #d3e38b;
  --black:         #000000;
  --font:          'Urbanist', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--dark-green);
  width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
p   { margin: 0; }

/* ── Color helpers ──────────────────────────────────────────── */
.text-black       { color: black; }
.text-dark-green  { color: var(--dark-green); }
.text-white       { color: white; }
.text-medium-green { color: var(--medium-green); }

/* ── Page wrapper ───────────────────────────────────────────── */
.page-container {
  width: 100%;
}

.subsection {
  max-width: 1024px;
  padding: 0 25px;
  margin: 0 auto;
}


/* ── Shared: Eyebrow label ──────────────────────────────────── */
/* Used in: Our Impact, Get Involved, Stay Connected, Footer cols */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-green);
}

/* ── Shared: Section headline ───────────────────────────────── */
/* Used in: Get Involved */
.section-headline {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.3;
}

/* ── Shared: Pill button ────────────────────────────────────── */
/* Used in: Hero CTA, Our Story CTA, Header Donate */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 75px;
  padding: 14px 28px;
  cursor: pointer;
  width: fit-content;
}

.btn-pill--dark  { background-color: var(--dark-green); color: white; }
.btn-pill--green { background-color: var(--medium-green); color: white; }

/* ── Shared: Button label text ──────────────────────────────── */
/* Used in: Hero CTA, Our Story CTA, Subscribe buttons */
.btn-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Shared: Button arrow icon ──────────────────────────────── */
/* Used in: Hero CTA, Our Story CTA */
.btn-arrow {
  height: 14px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ── Shared: Email input strip ──────────────────────────────── */
/* Used in: Stay Connected section, Footer */
.email-strip {
  display: inline-flex;
  align-items: stretch;
  border-radius: 75px;
  overflow: hidden;
}

.email-strip--outlined {
  border: 1.5px solid var(--dark-green);
  width: 100%;
}

.email-strip--subtle {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.email-strip__input {
  display: flex;
  align-items: center;
  padding: 14px 28px;
  flex: 1;
  background: transparent;
}

.email-strip__input--sm {
  padding: 8px 16px;
}

.email-strip__button {
  display: flex;
  align-items: center;
  padding: 14px 28px;
  cursor: pointer;
  flex-shrink: 0;
}

.email-strip__button--sm {
  padding: 8px 16px;
}

.email-strip__button--dark  { background-color: var(--dark-green); }
.email-strip__button--light { background-color: white; }

.email-placeholder {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(1, 52, 33, 0.45);
}

.email-placeholder--sm {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}


/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.header-row {
  border-bottom: 1px solid rgba(1, 52, 33, 0.2);
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
  background-color: var(--cream);
}

.header-logo {
  height: 52px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 1;
}

@media (max-width: 800px) {
  .header-menu {
    justify-content: space-between;
  }
  .header-donate {
    order: 2;
  }
  .header-nav {
    order: 3;
    min-width: 100%;
    justify-content: space-between;
    padding-top: 12px;
  }
}

.header-nav-link {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.header-donate {
  margin-left: auto;
}


/* ════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   Two-column: headline + CTA left | image right
   ════════════════════════════════════════════════════════════ */
.hero {
  display: flex;
  flex-direction: row;
  background-color: var(--cream);
  margin: 0 auto;
  width: 100%;
  padding: 80px 0;
}

.hero-text {
  width: 70%;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-green);
  text-transform: capitalize;
  padding-bottom: 25px;
}

.hero-image {
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--light-green);
  border: 4px solid var(--light-green);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
  display: block;
}


/* ════════════════════════════════════════════════════════════
   SECTION 2 — MISSION STATEMENT
   Dark green full-width block, centered white text
   ════════════════════════════════════════════════════════════ */
.mission {
  background-color: var(--dark-green);
  padding: 80px 0;
}

.mission-text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.65;
  color: white;
  text-align: left;
}


/* ════════════════════════════════════════════════════════════
   SECTION 3 — OUR IMPACT
   Centered column: label, headline, body, solution list
   ════════════════════════════════════════════════════════════ */
.our-impact {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.our-impact > .eyebrow {
  margin-bottom: 20px;
}

.impact-headline {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.impact-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: black;
  margin-bottom: 48px;
}

.solutions {
  display: flex;
  flex-direction: column;
}

.solution {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(1, 52, 33, 0.25);
}

.solution--last {
  border-bottom: 1px solid rgba(1, 52, 33, 0.25);
}

.solution-arrow {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.solution-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-green);
}


/* ════════════════════════════════════════════════════════════
   SECTION 4 — OUR STORY
   Light green full-width block, centered text + button
   ════════════════════════════════════════════════════════════ */
.our-story {
  background-color: var(--light-green);
  padding: 80px 0;
  text-align: center;
}

.story-quote {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--dark-green);
  margin-bottom: 24px;
}

.story-prompt {
  font-size: 15px;
  font-weight: 400;
  color: black;
  margin-bottom: 36px;
}


/* ════════════════════════════════════════════════════════════
   GET INVOLVED
   Centered: icon, eyebrow, headline, action cards
   ════════════════════════════════════════════════════════════ */
.get-involved {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.get-involved-icon {
  width: 72px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}

.get-involved > .eyebrow {
  margin-bottom: 16px;
}

.get-involved > .section-headline {
  margin-bottom: 48px;
}

.get-involved-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.card--action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: var(--light-green);
  border-radius: 15px;
  padding: 36px 40px;
  cursor: pointer;
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  flex-grow: 1;
}

.card-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-green);
  text-align: center;
  line-height: 1.3;
}

.card-arrow {
  height: 18px;
  width: auto;
  display: block;
}


/* ── Divider ────────────────────────────────────────────────── */
.section-divider {
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--light-green);
  border: none;
  margin: 0 auto;
}


/* ════════════════════════════════════════════════════════════
   STAY CONNECTED — Email signup
   ════════════════════════════════════════════════════════════ */
.stay-connected {
  background-color: var(--cream);
  padding: 60px 0;
  text-align: center;
}

.stay-connected > .eyebrow {
  margin-bottom: 16px;
}

.newsletter-headline {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 40px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   Three columns: logo+desc | explore nav | connect+email
   ════════════════════════════════════════════════════════════ */
.footer-container {
  background-color: var(--dark-green);
  padding: 60px 0;
  width: 100%;
}

.footer {
  display: grid;
  grid-template-areas:
    "logo     explore   connect"
    "desc     nav       subscribe"
    "copy     copy      copy";
  grid-template-columns: 2fr 1fr 1.5fr;
  column-gap: 60px;
  row-gap: 16px;
}

.footer-logo {
  grid-area: logo;
  height: 44px;
  width: auto;
  display: block;
  align-self: end;
}

.footer-description {
  grid-area: desc;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  align-self: start;
}

.footer-copyright {
  grid-area: copy;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-top: 8px;
}

.footer-col-heading {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  align-self: end;
}

.footer-col-heading--explore  { grid-area: explore; }
.footer-col-heading--connect  { grid-area: connect; }

.footer-nav {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.footer-subscribe {
  grid-area: subscribe;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-subscribe-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-subscribe-btn-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-green);
}


/* ════════════════════════════════════════════════════════════
   PAGE BANNER
   Full-width image with title overlaid, used on all inner pages
   ════════════════════════════════════════════════════════════ */
.page-banner {
  padding: 105px 0 60px;
}

.page-banner .subsection {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.page-banner__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.page-banner__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin: 0;
}


/* ════════════════════════════════════════════════════════════
   PAGE INTRO
   Used on Our Work, Contact, Donate
   ════════════════════════════════════════════════════════════ */
.page-intro {
  padding: 60px 0 40px;
}

.page-intro__heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-green);
  margin-bottom: 24px;
}

.page-intro__text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-green);
  margin-bottom: 24px;
}

.page-intro__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: black;
}


/* ════════════════════════════════════════════════════════════
   OUR WORK — What We Deliver
   Two-column kit category cards
   ════════════════════════════════════════════════════════════ */
.what-we-deliver {
  padding: 60px 0 80px;
}

.what-we-deliver > .eyebrow {
  margin-bottom: 16px;
}

.what-we-deliver > .impact-headline {
  margin-bottom: 24px;
}

.what-we-deliver > .impact-body {
  margin-bottom: 48px;
  white-space: pre-line;
}

.kit-categories {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.kit-category {
  flex: 1;
}

.kit-category__title {
  background-color: var(--tint-green);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 0;
}

.kit-category .solutions {
  max-width: 100%;
  padding-left: 16px;
  margin-top: 0;
}

.kit-category .solution {
  border-top: none;
  padding: 10px 0;
  gap: 12px;
}

.kit-category .solution--last {
  border-bottom: none;
}

.kit-category .solution-arrow {
  display: none;
}

.kit-category .solution-text {
  font-size: 15px;
}


/* ════════════════════════════════════════════════════════════
   ABOUT — Page Intro (centered quote with accent images)
   ════════════════════════════════════════════════════════════ */
.page-intro--about {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.page-intro--about .page-intro__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto 32px;
}

.page-intro__accents {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.page-intro__accent {
  height: 80px;
  width: auto;
}


/* ════════════════════════════════════════════════════════════
   ABOUT — Our Origin
   ════════════════════════════════════════════════════════════ */
.our-origin {
  padding: 60px 0;
}

.our-origin > .eyebrow {
  margin-bottom: 24px;
}

.our-origin__body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: black;
  white-space: pre-line;
  margin-bottom: 32px;
}

.our-origin__founder {
  font-size: 15px;
  line-height: 1.75;
  color: black;
  margin-bottom: 24px;
}

.our-origin > .section-divider {
  margin: 32px 0;
}


/* ════════════════════════════════════════════════════════════
   ABOUT — Our Partners
   ════════════════════════════════════════════════════════════ */
.our-partners {
  padding: 60px 0 80px;
}

.our-partners > .eyebrow {
  margin-bottom: 40px;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.partner-card__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

.partner-card__name {
  font-size: 16px;
  font-weight: 700;
  color: black;
}

.partner-card__description {
  font-size: 14px;
  line-height: 1.6;
  color: black;
}

.partner-card__link {
  font-size: 13px;
  font-weight: 500;
  color: black;
  text-decoration: underline;
  cursor: pointer;
}


/* ════════════════════════════════════════════════════════════
   FORMS — Shared (Contact + Donate)
   ════════════════════════════════════════════════════════════ */
.contact-form,
.donate-form {
  padding: 0 0 80px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
}

.form-input {
  border: 1.5px solid var(--dark-green);
  border-radius: 8px;
  padding: 14px 16px;
  background: transparent;
}

.form-input--textarea {
  min-height: 160px;
  align-items: flex-start;
}

.form-input__placeholder {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(1, 52, 33, 0.45);
}


/* ════════════════════════════════════════════════════════════
   DONATE — Amount + Frequency
   ════════════════════════════════════════════════════════════ */
.donation-amounts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.donation-amount {
  padding: 10px 18px;
}

.donation-or {
  margin-bottom: 12px;
}

.donation-frequency {
  display: flex;
  gap: 16px;
}

.frequency-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--dark-green);
  border-radius: 75px;
  padding: 10px 20px;
  cursor: pointer;
}

.frequency-option::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--dark-green);
  flex-shrink: 0;
  background: white;
}

.frequency-option--selected::before {
  background: var(--medium-green);
  border-color: var(--medium-green);
}
