:root {
  --bg: #fffaf1;
  --surface: #ffffff;
  --surface-soft: #f8efe2;
  --ink: #1d2a22;
  --muted: #667369;
  --primary: #2f7d4f;
  --primary-dark: #23643f;
  --accent: #f2a93b;
  --accent-soft: #ffe5b4;
  --line: rgba(29, 42, 34, 0.12);
  --shadow: 0 20px 50px rgba(31, 48, 39, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 840px);
}

.section-pad {
  padding: 6rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 241, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(29, 42, 34, 0.08);
}

.navbar {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #52a675);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 12px 24px rgba(47, 125, 79, 0.24);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: #34443a;
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(47, 125, 79, 0.1);
  color: var(--primary-dark);
}

.nav-menu .nav-cta {
  margin-left: 0.25rem;
  background: var(--ink);
  color: #fff;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  padding: 0.7rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.72fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 9vw, 6.7rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 650px;
  color: #435146;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(47, 125, 79, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(31, 48, 39, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-row span,
.donation-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(47, 125, 79, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #314338;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-topline {
  height: 10px;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-card p,
.content-stack p,
.section-heading p,
.section-intro,
.feature-panel p,
.contact-copy p {
  color: var(--muted);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.info-list span {
  color: var(--muted);
}

.info-list strong {
  text-align: right;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.55;
}

.shape-one {
  width: 420px;
  height: 420px;
  right: -130px;
  top: 120px;
  background: var(--accent-soft);
}

.shape-two {
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: -90px;
  background: rgba(47, 125, 79, 0.18);
}

.stats-band {
  padding: 1.5rem 0;
  background: var(--ink);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats-grid div {
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.two-column {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 4rem;
  align-items: center;
}

.align-start {
  align-items: start;
}

.content-stack {
  font-size: 1.08rem;
}

.muted {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 3rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.cards {
  display: grid;
  gap: 1.2rem;
}

.three-cards {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.mini-card,
.impact-card,
.contact-form {
  border: 1px solid rgba(29, 42, 34, 0.09);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(31, 48, 39, 0.08);
}

.service-card {
  padding: 1.5rem;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.25rem;
  border-radius: 15px;
  background: var(--accent-soft);
  color: #8b5513;
  font-weight: 900;
}

.service-card p,
.mini-card p,
.impact-card p,
.faq-answer p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-feature {
  background: linear-gradient(180deg, var(--surface-soft), var(--bg));
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.feature-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.feature-panel .eyebrow,
.feature-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-panel h2 {
  color: #fff;
}

.donation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.75rem 0 2rem;
}

.donation-list span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.impact-card {
  padding: 2rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.55rem;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(47, 125, 79, 0.12);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.small-note {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  font-size: 0.92rem;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-card {
  padding: 1.35rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(31, 48, 39, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 1.4rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 1.25rem;
}

.contact-section {
  background: radial-gradient(circle at top left, rgba(242, 169, 59, 0.22), transparent 38%), var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy .eyebrow,
.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-details div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.contact-form {
  padding: 1.5rem;
  color: var(--ink);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(29, 42, 34, 0.16);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 125, 79, 0.12);
}

input.error,
select.error,
textarea.error {
  border-color: #b3261e;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.form-status.error {
  color: #b3261e;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #152019;
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand .brand-text span,
.site-footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.footer-links a {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

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

  .nav-menu {
    position: fixed;
    inset: 82px 1rem auto 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 0.9rem 1rem;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .two-column,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 680px;
  }

  .three-cards,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 4.5rem 0;
  }
}

@media (max-width: 640px) {
  .navbar {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

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

  .brand-text span {
    font-size: 0.78rem;
  }

  .nav-menu {
    inset-top: 72px;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-card,
  .impact-card,
  .contact-form {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .info-list li {
    display: grid;
  }

  .info-list strong {
    text-align: left;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-row span,
  .donation-list span {
    width: 100%;
    justify-content: center;
  }

  .volunteer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.site-footer .footer-disclosure {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.6;
}
