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

:root {
  --green-900: #0f1e0f;
  --green-800: #1a2e1a;
  --green-700: #243d24;
  --green-600: #2d4a2d;
  --green-500: #3a5c3a;
  --green-400: #4d7a4d;
  --green-200: #a8c9a0;
  --green-100: #d4e8cf;
  --green-50: #eef5ec;
  /* --amber: #c8922a;
  --amber-lt: #f0c96e; */
  --amber: #BA8C3F; /*Harvest Gold*/
  --amber-lt: #BA8C3F; /*Harvest Gold*/
  --cream: #faf7f0;
  --cream-dk: #f0ebe0;
  --stone: #8c8678;
  /* --ink: #1a1a16;
  --ink-lt: #3a3a34; */
  --ink: #000000; /* Foundation Black */
  --ink-lt: #000000; /* Foundation Black */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Grain overlay ────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: rgba(15, 30, 15, 0.92); */
  background: var(--green-800);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--amber);
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--amber-lt) !important;
}

/* ── Mobile menu (hidden on desktop) ──────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

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

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  flex-direction: column;
  gap: 0.25rem;
  padding: 5.5rem 1.5rem 2rem;
  background: rgba(15, 30, 15, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s var(--ease-out), opacity 0.3s, visibility 0.35s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:hover {
  color: #fff;
  padding-left: 1rem;
}

.mobile-menu-cta {
  margin-top: 1rem;
  background: var(--amber);
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  border-bottom: none !important;
}

.mobile-menu-cta:hover {
  background: var(--amber-lt);
  padding-left: 0.5rem !important;
}

/* ── Shared Section Styles ────────────────────────────── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.section-headline em {
  font-style: italic;
  color: var(--green-600);
}

.btn-primary {
  background: var(--amber);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-1px);
}

/* ── Events ───────────────────────────────────────────── */
.events-section {
  background: var(--cream);
  padding: 10rem 4rem 7rem;
  min-height: 100vh;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.events-hint {
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 0.75rem;
}

/* Horizontal scroll viewport — upcoming first, past to the right */
.events-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  scrollbar-color: var(--green-400) var(--cream-dk);
}

.events-scroll::-webkit-scrollbar {
  height: 8px;
}

.events-scroll::-webkit-scrollbar-track {
  background: var(--cream-dk);
  border-radius: 4px;
}

.events-scroll::-webkit-scrollbar-thumb {
  background: var(--green-400);
  border-radius: 4px;
}

.events-track {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  width: max-content;
}

.event-group {
  scroll-snap-align: start;
}

.event-group-label {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.event-group-label::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.event-group-label--past {
  color: var(--stone);
}

.event-group-label--past::before {
  background: var(--stone);
}

.event-group-label--upcoming {
  color: var(--green-600);
}

.event-group-label--upcoming::before {
  background: var(--amber);
}

.event-row {
  display: flex;
  gap: 1.25rem;
}

.event-card {
  flex: 0 0 300px;
  width: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cream-dk);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  scroll-snap-align: start;
}

.event-card .event-body {
  flex: 1;
}

.event-card.is-past {
  opacity: 0.78;
}

.event-card.is-past:hover {
  opacity: 1;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.event-date-strip {
  background: var(--green-800);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-date-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-lt);
  line-height: 1;
}

.event-month {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.event-day {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

.event-body {
  padding: 1.25rem;
}

.event-type {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-location {
  font-size: 0.78rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-rsvp {
  display: block;
  margin: 1.25rem;
  text-align: center;
  padding: 0.65rem;
  border: 1.5px solid var(--green-600);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  transition: background 0.2s, color 0.2s;
}

.event-rsvp:hover {
  background: var(--green-600);
  color: #fff;
}

.event-rsvp--past {
  border-color: var(--cream-dk);
  color: var(--stone);
  cursor: default;
}

.event-rsvp--past:hover {
  background: transparent;
  color: var(--stone);
}
/* ── View event button (past event cards) ─────────────── */
.event-view {
  display: block;
  margin: 0 1.25rem 1.25rem;
  text-align: center;
  padding: 0.65rem;
  border: 1.5px solid var(--green-600);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  transition: background 0.2s, color 0.2s;
}

.event-view:hover {
  background: var(--green-600);
  color: #fff;
}

/* ── Event Detail Page ────────────────────────────────── */
.event-detail {
  background: var(--cream);
  padding: 9rem 4rem 5rem;
  min-height: 100vh;
}

.event-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3.5rem;
  transition: color 0.2s, gap 0.2s;
}

.event-detail-back:hover {
  color: var(--green-600);
  gap: 12px;
}

.event-detail-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.event-detail-type {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.event-detail-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.event-detail-title em {
  font-style: italic;
  color: var(--green-600);
}

.event-detail-meta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-detail-meta-item {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-lt);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.event-detail-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-lt);
  align-self: center;
}

.event-detail-body p + p {
  margin-top: 1.5rem;
}

.event-detail-figure {
  width: min(100%, clamp(20rem, 32vw, 30rem));
  margin: 1.5rem auto 0;
}

.event-detail-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--cream-dk);
  box-shadow: 0 18px 40px -24px rgba(26, 26, 22, 0.35);
}

.event-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dk);
}

.event-nav-link {
  display: block;
  transition: transform 0.2s;
}

.event-nav-link--next {
  text-align: right;
}

.event-nav-link:hover {
  transform: translateY(-2px);
}

.event-nav-dir {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.event-nav-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.event-nav-link:hover .event-nav-title {
  color: var(--green-600);
}

.event-detail-cta {
  text-align: center;
  padding: 4rem 4rem 5rem;
  background: var(--cream);
}

/* ── About / Team ─────────────────────────────────────── */
.about-hero {
  background: var(--green-800);
  padding: 6.5rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
}

.about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-hero .section-label {
  color: var(--amber);
  justify-content: center;
}

.about-hero .section-label::before {
  background: var(--amber);
}

.about-hero-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-top: 1.25rem;
}

.about-hero-headline em {
  font-style: italic;
  color: var(--amber-lt);
}

.about-hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Mission strip ────────────────────────────────────── */
.about-mission {
  background: var(--cream);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-mission-pull {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  border-left: 3px solid var(--amber);
  padding-left: 1.5rem;
}

.about-mission-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-lt);
}

.about-mission-body p + p {
  margin-top: 1.25rem;
}

/* ── Team ─────────────────────────────────────────────── */
.team-section {
  background: var(--cream-dk);
  padding: 4.5rem 4rem 7rem;
}

.team-header {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.team-header .section-label {
  justify-content: center;
}

.team-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-lt);
  margin-top: 1.25rem;
  /* text-align: center; */
}

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

.team-card {
  background: #fff;
  border: 1px solid var(--cream-dk);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.team-photo {
  display: block;
  /* Matched on height, width left to each photo's own proportions: the two
     source portraits differ slightly in shape, so a shared fixed frame would
     leave blank bars beside them. This way both render at the same size with
     no padding and nothing cropped. */
  height: clamp(320px, 38vw, 460px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 auto 1.5rem;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber-lt);
  /* margin-bottom: 1.25rem; */
  margin: 0 auto 1.25rem;
}

.team-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--stone);
  max-width: 46ch;
  margin: 0 auto;
}

/* ── Join CTA ─────────────────────────────────────────── */
.team-cta {
  background: var(--green-900);
  padding: 5rem 4rem;
  text-align: center;
}

.team-cta .section-headline {
  color: #fff;
}

.team-cta .section-headline em {
  color: var(--amber-lt);
}

.team-cta p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 1.25rem auto 2rem;
}

/* ── Join CTA email capture ───────────────────────────── */
.cta-join-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}

.cta-join-hp {
  display: none;
}

.cta-join-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0.9rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: #fff;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
}

.cta-join-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.cta-join-input:focus {
  background: rgba(255,255,255,0.18);
  border-color: var(--amber);
}

.cta-join-form .btn-primary {
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
}

/* The button sits flush against the input — lifting it on hover breaks the seam */
.cta-join-form .btn-primary:hover {
  transform: none;
}

.cta-join-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
}

.team-cta .cta-join-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin: 0.85rem auto 0;
}

.team-cta .cta-join-success {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #fff;
  margin: 0 auto;
}

.cta-join-success a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.cta-join-success a:hover {
  border-bottom-color: var(--amber);
}

@media (max-width: 640px) {
  .cta-join-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-join-input {
    border-right: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
  }

  .cta-join-form .btn-primary {
    border-radius: 4px;
    justify-content: center;
  }
}

/* ── Fade-in Animation ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

@media (max-width: 900px) {
  .about-hero {
    padding: 5.25rem 1.5rem 3rem;
  }

  .about-mission {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }

  .team-section {
    padding: 2.5rem 1.5rem 4rem;
  }

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

  .team-cta {
    padding: 4rem 1.5rem;
  }
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── Donation ─────────────────────────────────────────── */
.donation-section { background: var(--cream-dk); padding: 7rem 4rem; }
.donation-hero { padding: 9rem 4rem 0; background: var(--cream-dk); }
.donation-hero-inner { max-width: 720px; }
.donation-section .section-headline { color: var(--ink); }
/* Tighten the gap between the donation hero headline and the tiers below it. */
.donation-hero + .donation-section { padding-top: 3.5rem; }
/* Match the about page hero headline's weight. */
.donation-hero .section-headline { font-weight: 900; line-height: 1.05; }
.donation-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; margin-bottom: 3.5rem;
}
.donation-desc {
  font-size: 0.95rem; line-height: 1.85; color: var(--ink-lt); margin-top: 1.25rem;
}
.donation-toggle {
  display: flex; align-items: center; gap: 0; margin-top: 1.25rem;
  background: var(--cream); border: 1px solid var(--cream-dk); border-radius: 6px;
  padding: 4px; width: fit-content;
}
.toggle-btn {
  padding: 0.5rem 1.25rem; border-radius: 4px;
  font-size: 0.8rem; font-weight: 500; cursor: pointer; border: none;
  background: transparent; color: var(--stone);
  transition: background 0.2s, color 0.2s;
}
.toggle-btn.active { background: var(--green-700); color: #fff; }
.custom-amount { margin-top: 1.25rem; }
.custom-amount-label {
  display: block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 0.5rem;
}
.custom-amount-field {
  display: flex; align-items: center; gap: 0.35rem;
  background: #fff; border: 1.5px solid var(--cream-dk); border-radius: 6px;
  padding: 0.5rem 0.9rem; width: fit-content;
  transition: border-color 0.2s;
}
.custom-amount-field:focus-within { border-color: var(--green-500); }
.custom-amount-currency {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink);
}
.custom-amount-field input {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink);
  border: none; outline: none; background: transparent; width: 5.5rem;
}
.custom-amount-field input::-webkit-outer-spin-button,
.custom-amount-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.custom-amount-field input { -moz-appearance: textfield; appearance: textfield; }
.custom-amount-submit {
  margin-left: 0.5rem; padding: 0.5rem 1.25rem; border-radius: 4px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; cursor: pointer;
  border: none; background: var(--green-700); color: #fff;
  transition: background 0.2s;
}
.custom-amount-submit:hover { background: var(--green-600); }
.custom-amount-hint {
  font-size: 0.75rem; line-height: 1.6; color: var(--stone); margin-top: 0.6rem;
  max-width: 24rem;
}
.custom-amount-error {
  font-size: 0.75rem; color: #b3261e; margin-top: 0.5rem;
}
.donation-notice {
  font-size: 0.8rem; line-height: 1.7; color: var(--ink-lt);
  background: var(--cream); border: 1px solid var(--cream-dk);
  border-left: 3px solid var(--amber);
  border-radius: 6px; padding: 0.75rem 1rem; margin-bottom: 1.75rem;
}
.donation-notice a { color: var(--green-600); text-decoration: underline; }
.tiers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.tier-card {
  background: #fff; border-radius: 12px; padding: 1.75rem 1.25rem;
  border: 1.5px solid var(--cream-dk); text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer; position: relative;
}
.tier-card:hover, .tier-card.selected {
  border-color: var(--green-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,46,26,0.1);
}
.tier-card.featured {
  border-color: var(--amber); background: var(--green-900);
}
.tier-featured-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--green-900);
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 12px; border-radius: 99px;
  white-space: nowrap;
}
.tier-amount {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 0.25rem;
}
.tier-card.featured .tier-amount { color: var(--amber-lt); }
.tier-freq { font-size: 0.7rem; color: var(--stone); margin-bottom: 1rem; }
.tier-card.featured .tier-freq { color: rgba(255,255,255,0.4); }
.tier-name {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 0.875rem;
}
.tier-card.featured .tier-name { color: var(--amber); }
.tier-impact { font-size: 0.825rem; line-height: 1.6; color: var(--stone); }
.tier-card.featured .tier-impact { color: rgba(255,255,255,0.6); }
.tier-btn {
  display: block; width: 100%; margin-top: 1.25rem;
  padding: 0.65rem; border-radius: 4px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  text-align: center; text-decoration: none;
  cursor: pointer; border: 1.5px solid var(--green-600);
  background: transparent; color: var(--green-600);
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.tier-btn:hover { background: var(--green-600); color: #fff; }
.tier-btn.unavailable {
  opacity: 0.4; cursor: default; pointer-events: none;
}
.tier-card.featured .tier-btn {
  background: var(--amber); border-color: var(--amber); color: var(--green-900);
}
.tier-card.featured .tier-btn:hover { background: var(--amber-lt); }
.donation-secure {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  margin-top: 2.25rem; font-size: 0.75rem; line-height: 1.6; color: var(--stone);
  text-align: center;
}
.donation-secure svg { flex-shrink: 0; }

/* ── Why give? ────────────────────────────────────────── */
.why-give {
  background: var(--cream); padding: 4.25rem 4rem 7rem;
}
.why-give-header {
  max-width: 720px; margin: 0 auto 4rem; text-align: center;
}
.why-give-header .section-label { justify-content: center; }
.why-give-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  max-width: 1080px; margin: 0 auto;
}
.why-give-item { text-align: center; }
.why-give-icon {
  width: 84px; height: 84px; margin: 0 auto 1.75rem;
  color: var(--green-600);
}
.why-give-icon svg { width: 100%; height: 100%; display: block; }
.why-give-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.75rem;
}
.why-give-text {
  font-size: 0.925rem; line-height: 1.75; color: var(--ink-lt);
  max-width: 300px; margin: 0 auto;
}

@media (max-width: 900px) {
  .why-give { padding: 2.5rem 1.5rem 4rem; }
  .why-give-grid { grid-template-columns: 1fr; gap: 3rem; max-width: 400px; }
  .why-give-header { margin-bottom: 3rem; }
}

/* ── Thank you (post-donation) ────────────────────────── */
.thanks-section {
  background: var(--cream-dk);
  padding: 11rem 4rem 7rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.thanks-inner { max-width: 640px; }

.thanks-seal {
  width: 76px; height: 76px; margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber); color: #fff;
  box-shadow: 0 0 0 10px rgba(186, 140, 63, 0.14);
}
.thanks-seal svg { width: 34px; height: 34px; }

.thanks-section .section-headline { margin-bottom: 1.5rem; }

.thanks-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: var(--ink-lt);
}

.thanks-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-top: 2.75rem;
}
.thanks-ghost {
  background: transparent; color: var(--ink);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.04em; padding: 0.9rem 2rem;
  border-radius: 4px; border: 1px solid rgba(0, 0, 0, 0.16); cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.thanks-ghost:hover {
  border-color: var(--green-600); background: var(--cream);
  transform: translateY(-1px);
}

/* ── Your gift at work ────────────────────────────────── */
.gift-at-work { background: var(--cream); padding: 6rem 4rem; }
.gift-at-work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  max-width: 1080px; margin: 0 auto;
}
.gift-at-work-item { text-align: center; }
.gift-at-work-num {
  font-family: var(--serif); font-size: 2.25rem; font-weight: 700;
  color: var(--green-600); line-height: 1; margin-bottom: 0.75rem;
}
.gift-at-work-title {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem;
}
.gift-at-work-text {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--ink-lt);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .events-section {
    padding: 8rem 1.5rem 4rem;
  }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .events-track {
    gap: 2rem;
  }

  .event-card {
    flex: 0 0 78vw;
    width: 78vw;
  }

  .event-detail {
    padding: 8rem 1.5rem 4rem;
  }

  .event-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .event-detail-figure {
    width: min(100%, 28rem);
  }

  .event-detail-cta {
    padding: 3rem 1.5rem 4rem;
  }

  .donation-hero { padding: 7rem 1.5rem 0; }
  .donation-section { padding: 4rem 1.5rem; }
  .donation-hero + .donation-section { padding-top: 2.5rem; }
  .donation-intro { grid-template-columns: 1fr; gap: 2rem; }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }

  .thanks-section { padding: 8rem 1.5rem 4rem; }
  .gift-at-work { padding: 4rem 1.5rem; }
  .gift-at-work-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 540px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn-primary,
  .thanks-actions .thanks-ghost { justify-content: center; }
}

/* ── Footer (shared) ──────────────────────────────────── */
.footer {
  background: var(--green-900); padding: 4rem 4rem 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.4);
  margin-top: 1rem; max-width: 280px;
}
.footer-socials {
  display: flex; justify-content: center; gap: 10px;
}
.social-icon {
  width: 36px; height: 36px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--amber); color: var(--amber); }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

@media (max-width: 900px) {
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}
