:root {
  --cream: #f8f1e5;
  --sage: #6f8f5f;
  --deep-green: #1f3326;
  --soft-white: #fffaf1;
  --gold: #d6b56d;
  --text: #2d352f;
  --muted: #687168;
  --border: rgba(31, 51, 38, 0.12);
  --shadow: 0 18px 45px rgba(31, 51, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 241, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: var(--deep-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--deep-green);
}

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

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-button {
  min-height: auto;
  padding: 10px 18px;
  background: var(--deep-green);
  color: var(--soft-white) !important;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 51, 38, 0.18);
}

.button-primary {
  background: var(--gold);
  color: var(--deep-green);
}

.button-dark {
  background: var(--deep-green);
  color: var(--soft-white);
}

.button-outline {
  border: 2px solid var(--deep-green);
  color: var(--deep-green);
  background: transparent;
}

.hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 92px 20px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(20, 40, 27, 0.56), rgba(20, 40, 27, 0.64)),
    url("../images/home.png") center/cover no-repeat;
}

.hero-inner {
  width: min(840px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sage);
}

.hero .eyebrow {
  color: #f6dfaa;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep-green);
  line-height: 1.15;
}

.hero h1 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 86px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(248, 241, 229, 0.88), rgba(248, 241, 229, 0.94)),
    url("../images/page-header.png") center/cover no-repeat;
}

.page-hero .inner {
  width: min(800px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
}

.page-hero p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: 86px 20px;
}

.section-soft {
  background: var(--soft-white);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.card {
  padding: 30px;
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.split-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #dfe6da;
  min-height: 380px;
}

.image-frame img {
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.board-card {
  overflow: hidden;
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.board-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe6da;
}

.board-copy {
  padding: 28px;
}

.board-copy h3 {
  margin-bottom: 5px;
  font-size: 1.65rem;
}

.board-role {
  display: block;
  margin-bottom: 14px;
  color: var(--sage);
  font-weight: 700;
}

.board-copy p {
  margin: 0;
  color: var(--muted);
}

.calendar-shell {
  padding: 18px;
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.calendar-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 18px;
  background: white;
}

.calendar-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  border: 2px dashed rgba(31, 51, 38, 0.25);
  border-radius: 18px;
  background: rgba(111, 143, 95, 0.07);
}

.calendar-placeholder h2 {
  margin-bottom: 10px;
}

.calendar-placeholder p {
  max-width: 650px;
  margin: 0 auto 14px;
  color: var(--muted);
}

.note {
  margin-top: 24px;
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: var(--soft-white);
  border-radius: 0 16px 16px 0;
}

.cta {
  padding: 70px 24px;
  text-align: center;
  color: white;
  background: var(--deep-green);
  border-radius: 30px;
}

.cta h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta p {
  max-width: 690px;
  margin: 16px auto 28px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 34px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: #17271d;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 850px) {
  .nav-wrap {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .cards-3,
  .board-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 62vh;
  }
}

@media (max-width: 560px) {
  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-button,
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .card,
  .board-copy {
    padding: 24px;
  }

  .calendar-frame {
    min-height: 560px;
  }
}


/* Support page */
.support-hero {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(20, 40, 27, 0.58), rgba(20, 40, 27, 0.64)),
    url("../images/join.png") center/cover no-repeat;
}

.support-hero .hero-inner {
  width: min(840px, 100%);
}

.support-hero h1 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.support-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.support-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 36px;
  border-radius: 28px;
  background: var(--soft-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.support-card .icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(111, 143, 95, 0.16);
  font-size: 1.7rem;
}

.support-card h3 {
  margin: 24px 0 12px;
  font-size: 2rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.support-card ul {
  margin: 24px 0 30px;
  padding-left: 20px;
}

.support-card li + li {
  margin-top: 9px;
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.impact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.impact h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.impact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.impact-list {
  display: grid;
  gap: 18px;
}

.impact-item {
  padding: 24px;
  border-left: 5px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: white;
  box-shadow: 0 10px 30px rgba(31, 51, 38, 0.08);
}

.impact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

@media (max-width: 850px) {
  .support-grid,
  .impact {
    grid-template-columns: 1fr;
  }

  .support-hero {
    min-height: 62vh;
  }
}

@media (max-width: 560px) {
  .support-card {
    padding: 28px 24px;
  }

  .card-actions {
    flex-direction: column;
  }
}
