@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --white: #FFFFFF;
  --off-white: #F7F7F2;
  --cream: #F2F0E8;
  --yellow: #E8C840;
  --yellow-light: #FFF4C2;
  --green-dark: #2D5016;
  --green-mid: #4A7C2F;
  --green-light: #C8E6A0;
  --charcoal: #1A1A1A;
  --mid-gray: #6B6B6B;
  --border: #E0DDD4;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Source Serif 4', serif;
  --font-ui: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--green-dark);
}

.chain-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.logo-elephants {
  color: var(--yellow);
}

.logo-tagline {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  color: var(--mid-gray);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0 auto;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.btn-report {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  background: var(--yellow);
  color: var(--green-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-report:hover {
  background: #d4b535;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 200, 64, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: all 0.3s ease;
}

.hero {
  background: var(--off-white);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 247, 242, 0.75);
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-headline .line-1 {
  color: var(--charcoal);
}

.hero-headline .line-2 {
  color: var(--green-dark);
  font-style: italic;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-ca-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-ca-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-ca-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid var(--yellow);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(232, 200, 64, 0.35), 0 0 40px rgba(232, 200, 64, 0.12);
  animation: ca-pulse 3s ease-in-out infinite;
}

@keyframes ca-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(232, 200, 64, 0.35), 0 0 40px rgba(232, 200, 64, 0.12); }
  50% { box-shadow: 0 0 28px rgba(232, 200, 64, 0.6), 0 0 60px rgba(232, 200, 64, 0.22); }
}

.hero-ca-address {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yellow);
  padding: 0.6rem 1.1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
}

.hero-ca-copy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: var(--yellow);
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, transform 0.1s ease;
  flex-shrink: 0;
}

.hero-ca-copy:hover {
  background: #f5d94a;
  transform: scale(1.03);
}

.hero-ca-copy.copied {
  background: var(--green-mid);
  color: var(--white);
}

@media (max-width: 600px) {
  .hero-ca-address {
    font-size: 0.68rem;
    max-width: 200px;
    padding: 0.6rem 0.7rem;
  }
}

.btn-primary {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 1rem 2rem;
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 2px solid var(--green-dark);
}

.btn-primary:hover {
  background: #1f3a0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.2);
}

.btn-secondary {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--green-dark);
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--green-dark);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--yellow);
  margin: 0 auto;
}

.hero-watermark {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  color: var(--green-dark);
  pointer-events: none;
}

.mission-band {
  background: var(--cream);
  padding: 5rem 2rem;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  align-items: start;
}

.mission-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.mission-heading {
  font-family: var(--font-display);
  font-size: 2.375rem;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.mission-paragraph {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-quote-box {
  background: var(--green-dark);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
}

.quote-attribution {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--green-light);
}

.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--green-light);
  border-bottom: 1px solid var(--green-light);
  padding: 3rem 2rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--mid-gray);
  line-height: 1.4;
}

.stat-source {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-top: 0.25rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--mid-gray);
  max-width: 700px;
  margin: 0 auto;
}

.investigations-section {
  background: var(--white);
}

.investigation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.investigation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.investigation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.12);
}

.status-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.status-red {
  background: #FEE2E2;
  color: #DC2626;
}

.status-amber {
  background: #FEF3C7;
  color: #D97706;
}

.status-green {
  background: #DCFCE7;
  color: #16A34A;
}

.facility-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.facility-location {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.facility-location svg {
  color: var(--green-mid);
}

.facility-summary {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.facility-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.metric {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--mid-gray);
}

.view-dossier {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--green-dark);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.view-dossier:hover {
  color: var(--green-mid);
  border-color: var(--green-mid);
}

.testimony-section {
  background: var(--white);
}

.testimony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimony-card-image {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.testimony-card-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.testimony-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.testimony-card {
  background: var(--cream);
  border-left: 4px solid var(--yellow);
  padding: 1.75rem;
  border-radius: 4px;
}

.testimony-rating {
  font-size: 1.125rem;
  color: var(--yellow);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimony-quote {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimony-author {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--mid-gray);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.author-name {
  font-weight: 600;
  color: var(--charcoal);
}

.author-date::before {
  content: '•';
  margin-right: 0.5rem;
}

.testimony-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 12px;
  letter-spacing: 0.05em;
}

.process-section {
  background: var(--white);
  padding: 5rem 2rem;
}

.process-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 1rem;
}

.process-heading {
  font-family: var(--font-display);
  font-size: 2.375rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 1.5rem;
}

.process-subtext {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--mid-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.process-step {
  flex: 1;
  text-align: center;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.step-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.process-connector {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, var(--green-mid) 50%, transparent 50%);
  background-size: 10px 2px;
  margin-top: 5rem;
  flex-shrink: 0;
}

.action-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.action-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 3rem;
}

.action-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.action-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.12);
}

.action-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.action-card-title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.action-card-description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.action-link {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--green-dark);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.action-link:hover {
  color: var(--green-mid);
  border-color: var(--green-mid);
}

.petition-section {
  background: var(--green-dark);
  color: var(--white);
  padding: 5rem 2rem;
}

.petition-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.petition-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.petition-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-petition {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 1rem 2rem;
  background: var(--yellow);
  color: var(--green-dark);
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-petition:hover {
  background: #d4b535;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 200, 64, 0.3);
}

.petition-progress {
  position: relative;
  width: 200px;
  height: 200px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
}

.progress-ring-circle {
  fill: none;
  stroke: var(--yellow);
  transition: stroke-dashoffset 1s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.progress-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.newsletter-section {
  background: var(--off-white);
  padding: 4rem 2rem;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.newsletter-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74, 124, 47, 0.1);
}

.newsletter-button {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  background: var(--yellow);
  color: var(--green-dark);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: #d4b535;
  transform: translateY(-2px);
}

.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.625rem;
}

.footer-column a {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-elephants {
  color: var(--yellow);
}

.footer-tagline {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-founding {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--green-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.8125rem !important;
  font-style: italic;
}

@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3.5rem;
  }
  
  .stats-container {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .stat-item {
    flex: 1 1 45%;
    min-width: 200px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 3rem;
  }
  
  .process-connector {
    display: none;
  }
  
  .petition-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .petition-progress {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .hero {
    padding: 4rem 1.5rem;
  }
  
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-subheadline {
    font-size: 1.125rem;
  }
  
  .hero-watermark {
    display: none;
  }
  
  .section-container {
    padding: 3rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .mission-band {
    padding: 3rem 1.5rem;
  }
  
  .mission-heading {
    font-size: 1.875rem;
  }
  
  .mission-paragraph {
    font-size: 1rem;
  }
  
  .quote-mark {
    font-size: 3.5rem;
  }
  
  .quote-text {
    font-size: 1.125rem;
  }
  
  .process-heading {
    font-size: 1.875rem;
  }
  
  .process-subtext {
    font-size: 1rem;
  }
  
  .step-number {
    font-size: 3rem;
  }
  
  .investigation-grid,
  .testimony-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
