:root {
  --color-bg: #FDFDF9; /* Clean, warm white */
  --color-blush: #F1F6F0; /* Very soft subtle green tint */
  --color-blush-dark: #DCE6D8;
  --color-dark: #203A25; /* Deep forest green for main text */
  --color-primary: #3A7D44; /* The ITENDO logo green */
  --color-accent: #E86B24; /* The ITENDO logo vibrant orange */
  --color-white: #FFFFFF;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'La Belle Aurore', cursive;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
  
  --radius-pill: 100px;
  --radius-lg: 40px;
}

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

html {
  scroll-behavior: smooth;
}

/* Reserve the viewport for JS-injected content so the footer doesn't flash
   into view before app.js renders the current route. */
#app-root {
  min-height: 100vh;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.script-text {
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 1.5em;
  font-weight: normal;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-5deg);
}

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

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(15px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

/* When in a dark section, navbar text becomes white */
.navbar.nav-light {
  color: var(--color-white);
}

.navbar.scrolled.nav-light {
  color: var(--color-dark);
}

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

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  opacity: 0.8;
  padding-bottom: 5px;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

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

.btn-donate {
  background-color: var(--color-dark);
  color: var(--color-white) !important;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  opacity: 1;
}

.navbar.nav-light .btn-donate {
  background-color: var(--color-white);
  color: var(--color-dark) !important;
}

.navbar.scrolled .btn-donate {
  background-color: var(--color-dark);
  color: var(--color-white) !important;
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition-fast);
}

/* Sections */
section {
  padding: 10rem 0;
  position: relative;
}

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

.section-blush {
  background-color: var(--color-blush);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #D35B1A;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(232, 107, 36, 0.3);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background-color: #1a1716;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-outline {
  border-color: var(--color-dark);
  color: var(--color-dark);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.hero-img-container {
  position: relative;
  width: 100%;
  height: 75vh;
  border-radius: 40px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: imgReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes imgReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}

.hero-title .script-text {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  transform: rotate(-6deg) translateY(-5px);
  margin-top: -10px;
  margin-bottom: 15px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.hero-desc {
  font-size: 1.25rem;
  max-width: 500px;
  margin-bottom: 3rem;
  color: rgba(42, 38, 36, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* What We Do - Circular Reveal */
.wwd-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.wwd-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.wwd-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(42,38,36,0.2), rgba(42,38,36,0.7));
  z-index: 2;
  transition: var(--transition-smooth);
}

.wwd-circle:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.wwd-circle-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-white);
  z-index: 3;
  transition: var(--transition-smooth);
  text-align: center;
  padding: 0 1.5rem;
}

.wwd-circle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  z-index: 1;
}

.wwd-circle:hover .wwd-circle-bg {
  transform: scale(1.08);
}

.wwd-circle:hover::before {
  background: linear-gradient(to bottom, rgba(42,38,36,0.4), rgba(42,38,36,0.85));
}

.wwd-circle:hover .wwd-circle-text {
  opacity: 0;
  transform: translateY(-20px);
}

.wwd-circle-script {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--color-accent);
  z-index: 4;
  opacity: 0;
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
  pointer-events: none;
  white-space: nowrap;
}

.wwd-circle:hover .wwd-circle-script {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-10deg);
}

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

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

/* Feature Layouts */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.feature-split:nth-child(even) .feature-text {
  order: 2;
}

.feature-split:nth-child(even) .feature-img-wrap {
  order: 1;
}

.feature-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.feature-text p {
  font-size: 1.15rem;
  color: rgba(42, 38, 36, 0.7);
  margin-bottom: 2rem;
}

.feature-img-wrap {
  position: relative;
  min-height: 400px;
  background-color: rgba(0,0,0,0.02);
  border-radius: var(--radius-lg);
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
}

/* Trips Gallery Hero */
.trips-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 1.5rem;
  margin-bottom: -150px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 992px) {
  .trips-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
    margin-bottom: -50px;
  }
}

.trips-content-card {
  background: var(--color-white);
  padding: 6rem;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0,0,0,0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.trips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 3rem;
}

.trip-detail h3 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trip-detail p {
  color: rgba(42,38,36,0.7);
}

/* Stats Banner */
.stats-banner {
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 100px;
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

/* Four Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 4rem 0 8rem;
}

.pillar-card {
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.pillar-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.pillar-card p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}

.contact-info h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: rgba(42,38,36,0.6);
}

.form-input {
  width: 100%;
  background: var(--color-white);
  border: 1px solid rgba(42,38,36,0.1);
  border-radius: 12px;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(232, 107, 36, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 150px;
}

/* Calculator Block */
.donate-block {
  background: var(--color-white);
  padding: 5rem 4rem;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.04);
  text-align: center;
}

.input-huge {
  font-size: 5rem;
  font-family: var(--font-main);
  font-weight: 300;
  border: none;
  border-bottom: 2px solid var(--color-blush);
  width: 150px;
  text-align: center;
  color: var(--color-dark);
  background: transparent;
  outline: none;
  transition: var(--transition-fast);
  margin: 2rem 0;
}

.input-huge:focus {
  border-color: var(--color-accent);
}

.total-amount {
  font-family: var(--font-script);
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: 3rem;
}

/* Pill Stats */
.stats-pill {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-item h3 {
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

.pill-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
}

/* Lookbook & Fashion */
.fashion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
}

.lookbook-category {
  margin-bottom: 8rem;
}

.lookbook-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.lookbook-title {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--color-accent);
  line-height: 1;
}

.lookbook-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lookbook-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.lookbook-images img:hover {
  transform: translateY(-10px);
}

.coming-soon-banner {
  background: var(--color-blush);
  padding: 4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 6rem;
}

@media (max-width: 768px) {
  .lookbook-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .lookbook-images {
    grid-template-columns: 1fr;
  }
}

/* Internal Page Headers */
.page-header {
  padding: 15rem 0 5rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: 1.5rem;
  color: rgba(42, 38, 36, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form */
.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.form-control {
  width: 100%;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid transparent;
  border-radius: 20px;
  font-family: var(--font-main);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 5rem 0 2rem;
  border-top: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.footer-script {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.footer-col a {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1rem;
}

.newsletter-form input {
  background: transparent;
  border: none;
  flex-grow: 1;
  font-size: 1.1rem;
  font-family: var(--font-main);
  outline: none;
  color: var(--color-white);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-accent);
}

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

/* PayPal Button specific */
.paypal-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

#donate-button {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#donate-button:hover {
  transform: scale(1.08);
}

#donate-button img {
  height: 52px !important; /* Forces a much larger, crisp, highly touchable size */
  width: auto !important;
  box-shadow: 0 8px 24px rgba(32, 58, 37, 0.08);
  border-radius: 10px;
}

/* Image Carousel */
.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(32, 58, 37, 0.18);
}

.carousel-track {
  display: flex;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 600px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 58, 37, 0.75) 0%, rgba(32, 58, 37, 0.1) 45%, rgba(32, 58, 37, 0) 70%);
}

.carousel-caption {
  position: absolute;
  left: 3rem;
  bottom: 2.75rem;
  z-index: 2;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  max-width: 70%;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: var(--transition-fast);
}

.carousel-arrow:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev { left: 1.5rem; }
.carousel-arrow.next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.75rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .carousel-slide { height: 420px; }
  .carousel-caption { left: 1.5rem; bottom: 2.25rem; font-size: 1.2rem; max-width: 80%; }
  .carousel-dots { right: 1.5rem; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 1.4rem; }
  .carousel-arrow.prev { left: 1rem; }
  .carousel-arrow.next { right: 1rem; }
}

/* Parallax Impact Banner */
.impact-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  padding: 12rem 0;
}

.impact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(32, 58, 37, 0.78), rgba(32, 58, 37, 0.88));
}

.impact-banner .container {
  position: relative;
  z-index: 2;
}

.impact-banner-script {
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 2.5rem;
  display: inline-block;
  transform: rotate(-4deg);
  margin-bottom: 1rem;
}

.impact-banner-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.impact-banner-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (min-width: 993px) {
  .impact-banner { background-attachment: fixed; }
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 3rem;
  }
  .feature-split {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 6rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-img-container {
    width: 100%;
    height: 50vh;
    border-radius: 40px;
    margin-top: 2rem;
  }
  .hero-title .script-text {
    margin: 0 auto 15px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .wwd-circles {
    gap: 1.5rem;
  }
  .wwd-circle {
    width: 100%;
    height: 350px;
    border-radius: 40px;
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .feature-split:nth-child(even) .feature-text { order: 1; }
  .feature-split:nth-child(even) .feature-img-wrap { order: 2; }
  
  .trips-hero-img {
    height: 40vh;
    margin-bottom: -50px;
  }
  .trips-content-card {
    padding: 3rem 2rem;
  }
  .trips-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-banner {
    flex-direction: column;
    border-radius: 40px;
    gap: 2rem;
    text-align: center;
    padding: 3rem 2rem;
  }
  .stat-divider {
    width: 80px;
    height: 1px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .stats-pill {
    flex-direction: column;
    padding: 3rem;
    gap: 3rem;
    border-radius: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu.active .nav-link {
    color: var(--color-dark);
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .navbar.nav-light .mobile-toggle span {
    background-color: var(--color-white);
  }
  .navbar.scrolled .mobile-toggle span {
    background-color: var(--color-dark);
  }
  .wwd-circle {
    width: 100%;
    height: 300px;
    border-radius: 40px;
  }
  .donate-block {
    padding: 3rem 1.5rem;
  }
}
