@font-face {
  font-family: "Obviously";
  src: url("assets/fonts/Obviously.otf") format("truetype");
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("assets/fonts/OpenSauceSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("assets/fonts/OpenSauceSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("assets/fonts/OpenSauceSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("assets/fonts/OpenSauceSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #2F5ADE;
  --blue-bright: #027FFF;
  --bg: #FAFDFF;
  --hero-bg: #DFEBF7;
  --text: #24201E;
  --text-soft: rgba(0, 0, 0, 0.6);
  --green-bg: #E8F7DF;
  --green-text: #416746;
  --olive-bg: rgba(220, 247, 99, 0.4);
  --olive-text: #6B8404;
  --olive-badge: #8EA604;
  --sage-badge: #86A57C;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Open Sauce Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

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

p { line-height: 1.6; margin: 0 0 16px; }

h1, h2, h3 {
  font-family: "Obviously", sans-serif;
  font-weight: 400;
  margin: 0;
  color: var(--blue);
  line-height: 1.05;
}

h1 { font-variation-settings: "wght" 850, "wdth" 150; }
h2 { font-variation-settings: "wght" 800, "wdth" 130; }
h3 { font-variation-settings: "wght" 700, "wdth" 120; }

.section-title { font-size: clamp(28px, 4vw, 38px); }
.center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: "Open Sauce Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-olive { background: var(--olive-badge); color: #fff; }
.btn-donate { background: var(--green-text); color: #fff; }
.btn-ghost-green {
  background: transparent;
  color: var(--green-text);
  border: 1.5px solid var(--green-text);
  padding: 13px 26px;
}
.btn-ghost-green:hover { background: var(--green-text); color: #fff; opacity: 1; }
.btn-ghost-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 13px 26px;
}
.btn-ghost-blue:hover { background: var(--blue); color: #fff; opacity: 1; }

/* ---------- Header / Hero ---------- */
.hero {
  background: var(--hero-bg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 12px 12px 0;
  padding: 20px 24px 64px;
}

.navbar {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img { height: 40px; width: auto; }

.nav-pill {
  display: none;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 500;
}

.lang-select {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-ctas { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  padding: 0;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: var(--container);
  margin: 16px auto 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  font-weight: 500;
}
.menu-mobile.open { display: flex; }
.menu-mobile .btn { width: 100%; text-align: center; }

.hero-content {
  max-width: 760px;
  margin: 72px auto 0;
  text-align: center;
  padding: 0 12px;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 52px);
}

.hero-text {
  color: var(--text-soft);
  font-size: 18px;
  max-width: 560px;
  margin: 24px auto 0;
}

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

/* ---------- Events ---------- */
.events {
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 20px 40px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.event-card {
  background: var(--card-bg, #EDF1EB);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.event-photo img { width: 100%; height: 100%; object-fit: cover; }

.event-list .event-card--compact { padding: 18px 22px; }
.event-list .event-card--compact .event-info { padding: 0; }

.event-list-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-list-more {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.event-list-more.open { display: flex; }

.events-toggle-wrap { text-align: center; margin-top: 4px; }

.event-info h3 {
  color: var(--card-title, var(--blue));
  font-size: 22px;
  margin-bottom: 8px;
}

.event-info .badge { margin-bottom: 10px; align-self: flex-start; }
.event-info .btn { align-self: flex-start; }

.event-meta {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 0;
}

.event-card--featured .event-meta { margin-bottom: 16px; }

.event-desc {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 20px;
}

/* ---------- Support ---------- */
.support, .partners {
  max-width: var(--container);
  margin: 20px auto 0;
  padding: 48px 28px;
  border-radius: var(--radius-lg);
}

.support { background: var(--green-bg); }
.partners { background: var(--olive-bg); margin-bottom: 20px; }

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.badge-green { background: var(--sage-badge); }
.badge-olive { background: var(--olive-badge); }
.badge-blue { background: var(--blue); }

.support-title { color: var(--green-text); margin-bottom: 20px; }
.partners-title { color: var(--olive-badge); margin-bottom: 20px; }

.support-grid, .partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.support-copy p, .partners-copy p { color: rgba(0,0,0,0.65); }

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 8px;
}

.stat {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: "Obviously", sans-serif;
  font-variation-settings: "wght" 800, "wdth" 130;
  font-size: 28px;
  color: var(--green-text);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  line-height: 1.3;
}

.stat-source {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  margin: 0 0 24px;
}

.testimonial {
  margin: 24px 0 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--green-text);
}

.testimonial p {
  font-style: italic;
  font-size: 16px;
  color: rgba(0,0,0,0.75);
  margin-bottom: 8px;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-text);
}

.recurring-donate {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 16px;
}

.recurring-donate h4 {
  font-family: "Open Sauce Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green-text);
  margin-bottom: 8px;
}

.recurring-donate p {
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  margin-bottom: 16px;
}

.recurring-amounts {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.chip-amount {
  flex: 1;
  text-align: center;
  background: #fff;
  border: 1.5px solid rgba(65, 103, 70, 0.25);
  border-radius: 100px;
  padding: 8px 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--green-text);
}

.chip-amount--featured {
  background: var(--green-text);
  border-color: var(--green-text);
  color: #fff;
}

.recurring-steps {
  margin: 0 0 16px;
  padding-left: 20px;
  color: rgba(0,0,0,0.65);
  font-size: 14px;
  line-height: 1.5;
}
.recurring-steps li { margin-bottom: 4px; }
.recurring-steps li:last-child { margin-bottom: 0; }

.support-donate h3 {
  font-size: 20px;
  color: var(--green-text);
  margin-bottom: 20px;
  line-height: 1.35;
}

.donate-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 6px 22px;
}

.donate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.donate-row:last-child { border-bottom: none; }

.donate-label { color: rgba(0,0,0,0.5); font-size: 15px; }

.donate-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-text);
  cursor: pointer;
  text-align: right;
  padding: 0;
}
.copy-icon { font-size: 14px; opacity: 0.6; }
.donate-value.copied .copy-icon::after { content: "✓"; }

.donate-note {
  margin: 18px 4px 0;
  color: rgba(0,0,0,0.55);
  font-size: 15px;
}

.donate-lead {
  color: rgba(0,0,0,0.6);
  font-size: 15px;
  margin-bottom: 20px;
}

.donate-tax-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.tax-note-icon { flex: none; }

.donate-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  border-radius: 20px;
  padding: 22px 10px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tier-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(47,90,222,0.28); }

.tier-card--featured { box-shadow: 0 0 0 3px rgba(47,90,222,0.3); }
.tier-card--featured:hover { box-shadow: 0 0 0 3px rgba(47,90,222,0.3), 0 10px 24px rgba(47,90,222,0.28); }

.tier-badge {
  position: absolute;
  top: -12px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tier-amount {
  font-family: "Obviously", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.tier-cta {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

.donate-alt summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-text);
  font-size: 15px;
  margin-bottom: 16px;
  list-style: none;
}
.donate-alt summary::-webkit-details-marker { display: none; }
.donate-alt summary::before { content: "+ "; }
.donate-alt[open] summary::before { content: "\2013\0020"; }

.partners-copy .btn-olive { margin-top: 8px; }

.partner-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 12px;
}

.ptier-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 18px 10px;
  text-align: center;
}

.ptier-card--featured { box-shadow: 0 0 0 2px var(--olive-badge); }

.ptier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive-badge);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ptier-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--olive-text);
  margin-bottom: 4px;
}

.ptier-price {
  display: block;
  font-family: "Obviously", sans-serif;
  font-variation-settings: "wght" 700, "wdth" 120;
  font-size: 18px;
  color: var(--olive-badge);
  margin-bottom: 10px;
}

.ptier-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 12px;
  color: rgba(0,0,0,0.65);
  line-height: 1.5;
}
.ptier-benefits li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.ptier-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive-badge);
  font-weight: 700;
}
.ptier-benefits li:last-child { margin-bottom: 0; }

.partners-copy .tiers-note {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  margin: 0 0 20px;
}

.partners-label {
  font-weight: 700;
  color: var(--olive-badge);
  margin-bottom: 16px;
  font-size: 15px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}
.logo-row img { height: 32px; width: auto; object-fit: contain; }

.text-logo {
  font-family: "Open Sauce Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
  background: #fff;
  border-radius: 100px;
  padding: 8px 18px;
}

/* ---------- Buyout ---------- */
.buyout {
  max-width: var(--container);
  margin: 20px auto 0;
  padding: 48px 28px;
  border-radius: var(--radius-lg);
  background: var(--hero-bg);
  margin-bottom: 20px;
}

.buyout-copy { max-width: 640px; }

.buyout-title { color: var(--blue); margin-bottom: 20px; }

.buyout-copy p { color: var(--text-soft); font-size: 16px; }

.buyout-features {
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}
.buyout-features li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text);
}
.buyout-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.buyout-features li:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  max-width: var(--container);
  margin: 0 auto 20px;
  background: var(--hero-bg);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo { height: 44px; width: auto; }

.footer-address p {
  margin: 0 0 8px;
  color: rgba(0,0,0,0.6);
  font-size: 15px;
}
.footer-address a { color: rgba(0,0,0,0.6); }

.footer-copy {
  text-align: center;
  color: rgba(0,0,0,0.35);
  font-size: 14px;
  margin: 40px 0 0;
}

/* ---------- Responsive ---------- */
@media (min-width: 810px) {
  .nav-pill { display: flex; }
  .nav-ctas { display: flex; align-items: center; gap: 12px; }
  .hamburger { display: none; }
  .menu-mobile { display: none !important; }

  .event-card { flex-direction: row; align-items: stretch; padding: 16px; }
  .event-card .event-photo { flex: 0 0 42%; aspect-ratio: auto; }
  .event-card .event-info { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
  .event-card--featured .event-info { justify-content: center; }

  .support-grid, .partners-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .partners-copy .btn-olive { margin-top: 12px; }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

@media (max-width: 809.98px) {
  .event-card--featured { flex-direction: column; }
}
