/* ============================================================
   Benjamin Runga Foundation — Impact Page Styles (impact.css)
   ============================================================ */

/* INTRO BAND */
.intro-band { background: var(--off-white); padding: 4rem 2rem; text-align: center; }
.intro-band-inner { max-width: 720px; margin: 0 auto; }
.intro-band p { font-size: 1.05rem; color: #444; }

/* BIG STATS */
.stats-section { padding: 3rem 2rem; background: var(--off-white); }
.stats-section-inner {
  max-width: 1200px; margin: 0 auto;
  background: var(--white); border-radius: 14px; padding: 3.5rem;
  box-shadow: 0 4px 40px rgba(27,52,92,0.09), 0 1px 4px rgba(27,52,92,0.04);
  border: 1px solid rgba(27,52,92,0.07);
}
.stats-section-header { text-align: center; margin-bottom: 3rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: rgba(27,52,92,0.05);
  padding: 2rem 1.5rem; text-align: center;
  border-radius: 12px;
  border-top: 4px solid var(--accent);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,52,92,0.12); }
.stat-card.stat-accent {
  background: var(--accent);
  border-top-color: rgba(255,255,255,0.3);
}
.stat-card.stat-accent:hover { background: #e8860e; }
.stat-icon {
  font-size: 2rem; margin-bottom: 0.85rem;
  color: var(--accent); display: block;
}
.stat-card.stat-accent .stat-icon { color: var(--white); }
.stat-number {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--accent); line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat-card.stat-accent .stat-number { color: var(--white); }
.stat-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--navy); letter-spacing: 0.08em;
  text-transform: uppercase; line-height: 1.4;
}
.stat-card.stat-accent .stat-label { color: rgba(255,255,255,0.9); }
.stat-desc {
  font-size: 0.8rem; color: #555; margin-top: 0.85rem; line-height: 1.55;
  border-top: 1px solid rgba(27,52,92,0.1); padding-top: 0.75rem;
}
.stat-card.stat-accent .stat-desc { color: rgba(255,255,255,0.82); border-top-color: rgba(255,255,255,0.22); }

/* PULL QUOTE */
.pull-quote-strip { background: var(--navy); padding: 5rem 2rem; text-align: center; }
.pull-quote-strip-inner { max-width: 760px; margin: 0 auto; position: relative; }
.pull-quote-strip-inner::before {
  content: '\201C'; font-family: var(--serif); font-size: 8rem; line-height: 1;
  color: var(--accent); opacity: 0.2; position: absolute; top: -2rem; left: -1rem;
  pointer-events: none;
}
.pull-quote-text {
  font-family: var(--serif); font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic; color: var(--white); line-height: 1.7;
  margin-bottom: 1.75rem; position: relative;
}
.pull-quote-author {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
}
.pull-quote-context { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ANNUAL REPORTS */
.reports-section { padding: 6rem 2rem; background: var(--off-white); }
.reports-inner { max-width: 900px; margin: 0 auto; }
.reports-header { text-align: center; margin-bottom: 3.5rem; }
.reports-list { display: flex; flex-direction: column; gap: 1rem; }
.report-item {
  background: var(--white); border-radius: 8px; padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  box-shadow: 0 2px 12px rgba(27,52,92,0.06);
  border-left: 4px solid var(--accent); transition: all 0.2s;
}
.report-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(27,52,92,0.12); }
.report-info { display: flex; align-items: center; gap: 1.5rem; }
.report-year {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--accent); line-height: 1; min-width: 80px;
}
.report-title { font-weight: 600; color: var(--navy); font-size: 1rem; }
.report-sub { font-size: 0.85rem; color: #666; margin-top: 0.2rem; }
.report-link {
  white-space: nowrap; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); background: var(--navy);
  padding: 0.65rem 1.25rem; border-radius: 4px;
  text-decoration: none; transition: background 0.2s;
  min-height: 44px; display: flex; align-items: center; gap: 0.4rem;
}
.report-link:hover { background: var(--accent); }
.report-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.report-link--pdf { background: rgba(27,52,92,0.55); }
.report-link--pdf:hover { background: var(--accent); }
@media (max-width: 600px) {
  .report-item { flex-direction: column; align-items: flex-start; }
  .report-info { flex-direction: column; gap: 0.5rem; }
  .report-links { flex-direction: column; }
}
