.donate-page {
  padding-top: 8.2rem;
  padding-bottom: 4rem;
}

.donate-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  min-height: 340px;
  padding: 2.6rem 1.6rem 2.4rem;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(14, 6, 10, 0.55), rgba(14, 6, 10, 0.78)),
    url("../assets/covers/donate-glow.jpg") center / cover;
}

@media (min-width: 800px) {
  .donate-hero {
    min-height: 400px;
    padding: 3.2rem 3rem;
  }
}

.donate-hero .eyebrow {
  margin-bottom: 0.8rem;
}

.donate-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 16ch;
}

.donate-hero .lead {
  margin-top: 0.9rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.9;
  font-size: 1.08rem;
}

.donate-layout {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

@media (min-width: 960px) {
  .donate-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.gift-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.7rem 1.5rem 1.5rem;
  color: #fff;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(255, 200, 160, 0.22), transparent 55%),
    linear-gradient(160deg, #9d174d 0%, #6d28d9 62%, #1e1030 100%);
  box-shadow: 0 28px 70px -28px rgba(157, 23, 77, 0.7);
}

.gift-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 240px;
  height: 240px;
  background: url("../assets/logo-mark.png") center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.gift-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.gift-who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gift-who img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px;
}

.gift-who strong {
  display: block;
  font-size: 1.05rem;
}

.gift-who span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.gift-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.gift-card h2 {
  font-size: 1.55rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

.gift-card .note {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  font-size: 0.98rem;
}

.amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin: 1.25rem 0 1rem;
}

@media (min-width: 520px) {
  .amounts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amounts a {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.amounts a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.gift-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  border-radius: 0.95rem;
  background: #fff;
  color: #9d174d;
  font-weight: 800;
  padding: 0.95rem 1rem;
  box-shadow: 0 14px 30px -16px #000;
}

.gift-cta:hover {
  background: #fff7fb;
}

.gift-fine {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.thanks-col h2 {
  font-size: 1.7rem;
  margin: 0.3rem 0 0.7rem;
}

.thanks-col .sub {
  color: var(--ink-subtle);
  line-height: 1.85;
}

.thanks-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.thanks-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-muted);
}

.thanks-item i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-subtle);
  color: var(--brand);
  font-style: normal;
  font-weight: 800;
}

.thanks-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.thanks-item p {
  color: var(--ink-subtle);
  font-size: 0.9rem;
  line-height: 1.7;
}

.letter {
  margin-top: 1.6rem;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  padding: 1.5rem 1.4rem;
}

.letter h2 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.letter p {
  color: var(--ink-muted);
  line-height: 1.95;
  margin-bottom: 0.85rem;
}

.letter .sign {
  font-weight: 700;
  color: var(--ink);
}

.faq-mini {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

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

.faq-mini article {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.1rem 1.1rem 1.15rem;
}

.faq-mini h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.faq-mini p {
  color: var(--ink-subtle);
  font-size: 0.9rem;
  line-height: 1.75;
}
