/* ============ FAQ ============ */
.faq { background: var(--paper); position: relative; overflow: hidden; }
.faq-blob {
  width: 200px; height: 200px;
  background: var(--ice);
  bottom: 8%; left: -80px;
  opacity: 0.7;
  animation: morph 16s ease-in-out infinite;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
  position: relative; z-index: 2;
}
.faq-head h2 { margin-top: 16px; }
.faq-head h2 .ital { color: var(--royal); font-family: inherit; font-style: normal; font-weight: inherit; }
.faq-head p { margin-top: 16px; font-size: 17px; max-width: 32ch; }

.faq-list {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--royal); }
.faq-q .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ice);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s;
}
.faq-q .plus svg { transition: transform 0.3s; }
.faq-item.open .faq-q .plus { background: var(--royal); color: white; }
.faq-item.open .faq-q .plus svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 24px;
}
.faq-a p { font-size: 16px; line-height: 1.6; max-width: 60ch; }

@media (max-width: 800px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============ DONATE ============ */
.donate {
  background: linear-gradient(160deg, var(--royal) 0%, var(--navy) 100%);
  color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.donate-blob-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; right: -200px;
  opacity: 0.5;
  animation: morph 14s ease-in-out infinite, drift 20s ease-in-out infinite;
}
.donate-blob-2 {
  width: 320px; height: 320px;
  background: var(--sky);
  bottom: -100px; left: 10%;
  opacity: 0.55;
  animation: morph 11s ease-in-out infinite reverse;
  mix-blend-mode: screen;
}
.donate-blob-3 {
  width: 180px; height: 180px;
  background: #6e9eff;
  top: 30%; left: 4%;
  animation: morph 9s ease-in-out infinite;
  opacity: 0.6;
  mix-blend-mode: screen;
}
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  position: relative; z-index: 2;
  align-items: center;
}
.donate .eyebrow { color: var(--sky); }
.donate h2 { color: white; max-width: 12ch; }
.donate h2 .ital { color: var(--sky); font-family: inherit; font-style: normal; font-weight: inherit; }
.donate-lead {
  margin-top: 24px;
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  line-height: 1.55;
}
.donate-where {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.donate-where div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 16px;
}
.donate-where strong {
  font-family: var(--display);
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}
.donate-where span { font-size: 14px; color: rgba(255,255,255,0.7); }

.donate-card {
  background: white;
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.donate-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.donate-card p { font-size: 15px; }
.amounts {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.amount {
  padding: 18px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: white;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.amount:hover { border-color: var(--royal); color: var(--royal); }
.amount.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: scale(1.04);
}
.amount .sub { display: block; font-size: 11px; font-weight: 500; opacity: 0.6; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.amount-custom {
  margin-top: 10px;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.amount-custom:focus { border-color: var(--royal); }

.donate-btn {
  margin-top: 18px;
  width: 100%;
  padding: 20px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-md);
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.donate-btn:hover { background: var(--royal); transform: translateY(-2px); }
.donate-fine {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; }
  .donate-where { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 48px 0;
  text-align: center;
  font-size: 14px;
}
.foot a { color: var(--sky); }
.foot .ital { font-family: inherit; font-style: normal; color: var(--sky); }
