.sustainability-page {
  overflow-x: hidden;
}

.hero-section {
  background: linear-gradient(135deg, var(--color-powder-blue) 0%, var(--color-ivory) 100%);
  padding: var(--space-12) 0;
  text-align: center;
}

.hero-section h1 {
  font-size: var(--text-5xl);
  color: var(--color-taupe-dark);
  margin-bottom: var(--space-4);
}

.hero-section .lead {
  font-size: var(--text-xl);
  color: var(--color-taupe);
  font-family: var(--font-serif);
  max-width: 60ch;
  margin: 0 auto;
  line-height: var(--line-snug);
}

.content-section {
  padding: var(--space-12) 0;
}

.content-section.bg-cream {
  background-color: var(--color-cream);
}

.content-section.bg-blush-soft {
  background-color: rgba(232, 213, 208, 0.3);
}

.content-section.bg-mint-soft {
  background-color: rgba(200, 230, 217, 0.4);
}

.grid-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .grid-two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
  
  .grid-two-col.reverse > :first-child {
    order: 2;
  }
  
  .grid-two-col.reverse > :last-child {
    order: 1;
  }
}

.text-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-5);
  color: var(--color-taupe-dark);
}

.text-content p {
  font-size: var(--text-lg);
  line-height: var(--line-relaxed);
  color: var(--color-text);
  margin-bottom: 0;
}

.text-content.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.text-content.max-width-lg {
  max-width: 900px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .hero-section {
    padding: var(--space-8) var(--space-4);
  }
  
  .hero-section h1 {
    font-size: var(--text-4xl);
  }
  
  .content-section {
    padding: var(--space-8) 0;
  }
  
  .text-content h2 {
    font-size: var(--text-2xl);
  }
  
  .grid-two-col.reverse > :first-child,
  .grid-two-col.reverse > :last-child {
    order: unset;
  }
  
  .image-content {
    margin-top: var(--space-6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}