/* ===== GLOBAL RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --ivory: #faf8f5;
  --cream: #f5f0e8;
  --saffron-light: #fff5e6;
  --saffron: #f4a636;
  --gold-light: #d4a853;
  --gold: #c9973b;
  --earth: #8b7355;
  --earth-dark: #5c4a32;
  --text-primary: #3a3226;
  --text-secondary: #6b5e4f;
  --text-light: #9a8d7e;
  --border-light: rgba(196, 175, 145, 0.25);
  --shadow-soft: 0 2px 20px rgba(92, 74, 50, 0.06);
  --shadow-medium: 0 4px 30px rgba(92, 74, 50, 0.1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-medium: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: 0.3s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--ivory);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-medium);
  background: transparent;
}

/* Default state: white text over dark hero image */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  transition: color var(--transition-medium);
}

.nav-logo span {
  color: var(--saffron);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-medium);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--saffron);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* Scrolled state: light background, dark text */
.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 15px rgba(92, 74, 50, 0.06);
  padding: 0.8rem 3rem;
}

.nav.scrolled .nav-logo {
  color: var(--earth-dark);
}

.nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: var(--earth-dark);
}

.nav.scrolled .nav-hamburger span {
  background: var(--text-primary);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #ffffff;
  transition: var(--transition-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-mobile a:hover {
  color: var(--saffron);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--cream);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-bg {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 50, 38, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.3s;
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0;
  letter-spacing: 0.04em;
  animation: fadeUp 1.2s ease forwards 0.6s;
}

.hero-divider {
  width: 50px;
  height: 1px;
  background: var(--saffron);
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--cream);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-hero .hero-content h1 {
  font-size: 2.6rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 3rem;
}

.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-title {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--saffron);
  margin: 0 auto 2rem;
}

/* ===== CONTENT STYLES ===== */
.content-text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.content-text:last-child {
  margin-bottom: 0;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  background: linear-gradient(135deg, var(--cream), var(--saffron-light));
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
}

.quote-block::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--saffron);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--earth-dark);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--saffron);
  color: var(--earth-dark);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
  margin-top: 1.5rem;
}

.cta-btn:hover {
  background: var(--saffron);
  color: var(--white);
}

.cta-btn-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cta-btn-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-medium);
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 1.5rem;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--border-light);
}

.timeline-item {
  position: relative;
  padding: 0 0 3rem 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  transform: translateX(-3px);
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.timeline-item .year {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.3rem;
  display: block;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(58,50,38,0.6), transparent);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Gallery filter */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: none;
  border: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
  font-family: inherit;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--earth-dark);
  border-bottom-color: var(--saffron);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  letter-spacing: 0.1em;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.contact-info-item .icon {
  color: var(--saffron);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-info-item a {
  color: var(--text-secondary);
}

.contact-info-item a:hover {
  color: var(--saffron);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--earth-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 3rem 2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

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

.footer-links a {
  display: block;
  margin-bottom: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--saffron);
}

.footer .social-links a {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}

.footer .social-links a:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

/* ===== IMAGE WITH TEXT ===== */
.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.image-text-block.reverse {
  direction: rtl;
}

.image-text-block.reverse > * {
  direction: ltr;
}

.image-text-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* ===== HIGHLIGHTS STRIP ===== */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.highlight-item {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border-light);
  transition: var(--transition-medium);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item:hover {
  background: var(--saffron-light);
}

.highlight-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .image-text-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-text-block.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .quote-block {
    padding: 3rem 1.5rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav.scrolled {
    padding: 0.7rem 1.5rem;
  }
}

/* ===== PASSWORD PAGE ===== */
.password-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.mandala-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(244, 166, 54, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: mandalaPulse 6s ease-in-out infinite;
}

.mandala-bg::before,
.mandala-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244, 166, 54, 0.06);
}

.mandala-bg::before {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mandala-bg::after {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes mandalaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}

.password-container {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.password-container h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--earth-dark);
  letter-spacing: 0.02em;
}

.password-container .subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.password-input-wrap {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.password-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: 0.15em;
  outline: none;
  transition: border-color var(--transition-fast);
}

.password-input:focus {
  border-color: var(--saffron);
}

.password-input.error {
  animation: shake 0.4s ease;
  border-color: #c9735a;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.password-enter-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 1.2rem auto 0;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid var(--saffron);
  color: var(--earth-dark);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-fast);
}

.password-enter-btn:hover {
  background: var(--saffron);
  color: var(--white);
}

/* Page transition overlay */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ivory);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== DISCOURSE CARDS ===== */
.discourse-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
  transition: var(--transition-medium);
}

.discourse-card:hover {
  box-shadow: var(--shadow-soft);
}

.discourse-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.discourse-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.discourse-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid rgba(244,166,54,0.3);
  padding: 0.2rem 0.6rem;
  margin-top: 0.8rem;
}

/* ===== IMPACT STATS ===== */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.impact-stat h3 {
  font-size: 2.2rem;
  color: var(--saffron);
  margin-bottom: 0.3rem;
}

.impact-stat p {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .impact-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
