/* ===== REPORTS PAGE ===== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
#reports-hero {
  min-height: 50vh;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
}
.reports-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(207,159,74,0.08), transparent 70%);
  pointer-events: none;
}
.reports-hero-headline {
  font-family: var(--font-serif), serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 1rem 0;
}
.reports-hero-headline em {
  font-style: italic;
  color: var(--amber-glow);
}
.reports-hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
}

/* Metrics grid */
#impact-snapshot {
  padding: 5rem 0;
  background: var(--bg-forest);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-label {
  justify-content: center;
}
.section-title {
  font-family: var(--font-serif), serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.metric-card {
  background: rgba(10,15,12,0.6);
  border: 1px solid var(--border);
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s;
}
.metric-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}
.metric-value {
  font-family: var(--font-serif), serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1.2;
}
.metric-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-top: 0.5rem;
}
.skeleton .metric-value {
  background: rgba(255,255,255,0.1);
  width: 80px;
  height: 48px;
  margin: 0 auto;
  border-radius: 4px;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

/* Reports section */
.alt-bg {
  background: var(--bg-canopy);
}
#reports-section {
  padding: 5rem 0;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(207,159,74,0.05);
}
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.report-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s;
}
.report-card:hover {
  border-color: var(--amber-shadow);
}
.report-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.report-card .report-type {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.report-card .report-date {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 1rem;
}
.report-card .report-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--amber);
  text-decoration: none;
  font-size: 0.8rem;
}
.skeleton {
  min-height: 150px;
}

/* Stories */
#impact-stories {
  padding: 5rem 0;
  background: var(--bg-deep);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.story-card {
  background: rgba(13,31,19,0.6);
  border-left: 3px solid var(--amber);
  padding: 1.8rem;
}
.story-card i {
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.story-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.story-card .story-author {
  font-size: 0.8rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.story-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* Transparency */
#transparency {
  padding: 5rem 0;
}
.transparency-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 3rem 2rem;
  border: 1px solid var(--border);
}
.transparency-card i {
  font-size: 2.5rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.transparency-card h3 {
  font-family: var(--font-serif), serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.transparency-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.transparency-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    padding: 0 1.5rem;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reports-grid, .stories-grid {
    grid-template-columns: 1fr;
  }
  .category-filters {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }
}