/* ========================================
   ARCHE — Giving Page Styles
   ======================================== */

/* ---- HERO ---- */

.giving-hero {
  position: relative;
  overflow: hidden;
}

.giving-hero-deco {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.08), transparent 60%);
  pointer-events: none;
}

/* ---- GIVING GRID ---- */

.giving-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ---- MAIN GIVING CARD ---- */

.giving-card-main {
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 24px;
  padding: 40px 36px;
}

.giving-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.giving-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.giving-card-main h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.giving-card-main > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ---- AMOUNT BUTTONS ---- */

.giving-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-btn {
  padding: 12px 8px;
  border: 1.5px solid var(--border-dark);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.amount-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.amount-btn-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ---- FREQUENCY TOGGLE ---- */

.giving-type {
  display: flex;
  gap: 16px;
}

.giving-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.giving-radio input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

/* ---- GIVING METHODS ---- */

.giving-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.giving-method {
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all 0.3s var(--ease-out);
}

.giving-method:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.giving-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.giving-method h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.giving-method p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- IMPACT ---- */

.impact-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.impact-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: center;
}

.impact-item:last-child { border-bottom: none; }

.impact-bar {
  height: 8px;
  background: var(--cream);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.impact-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--pct);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  transition: width 1s var(--ease-out);
}

.impact-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.impact-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- SCRIPTURE ---- */

.giving-scripture {
  position: relative;
  overflow: hidden;
}

.giving-scripture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.05), transparent 70%);
}

.scripture-box {
  position: relative;
  z-index: 1;
}

.scripture-deco {
  font-family: var(--font-serif);
  font-size: 120px;
  color: rgba(201,169,110,0.15);
  line-height: 0.5;
  margin-bottom: 32px;
}

.scripture-box blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--white);
  line-height: 1.5;
  font-weight: 400;
}

.scripture-box cite {
  display: block;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
}

/* ---- RESPONSIVE ---- */

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

  .giving-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
