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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #fffaf7;
  color: #211c19;
  line-height: 1.7;
}

/* HERO */

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.88)),
    url("./images/aandae.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 30px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.hero-content {
  max-width: 1000px;
  margin: 70px auto 0;
  text-align: center;
  padding: 0 20px;
}

.logo-wrapper {
  display: inline-block;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 30px 40px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  margin-bottom: 40px;
}

.hero-logo {
  width: 520px;
  max-width: 85vw;
  height: auto;
  display: block;
}

.eyebrow {
  color: #d6939d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: #b96a7c;
}

.hero-content h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-subtitle {
  max-width: 800px;
  margin: 0 auto 36px;
  font-size: 1.35rem;
  line-height: 1.6;
}

/* BUTTONS */

.main-button {
  display: inline-block;
  background: #d6939d;
  color: #211c19;
  padding: 18px 42px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.main-button:hover {
  transform: translateY(-3px);
}

/* STATS */

.stats {
  background: #111616;
  padding: 50px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.stat h3 {
  font-size: 2.3rem;
  color: #e8a3a8;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1rem;
  line-height: 1.5;
}

/* SECTIONS */

.section {
  max-width: 1100px;
  margin: auto;
  padding: 100px 30px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 25px;
}

.section p {
  font-size: 1.1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-img {
  width: 100%;
  max-width: 480px;
  border-radius: 26px;
  display: block;
  margin: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* DEMANDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.card {
  background: #f8f3ed;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
  color: #6f7e5a;
  margin-bottom: 14px;
}

/* EVIDENCE */

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  margin-top: 45px;
}

.evidence-card {
  background: #f8f3ed;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.evidence-card h3 {
  margin-bottom: 12px;
}

.featured-evidence {
  grid-row: span 2;
}

.evidence-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 16px;
}

/* SUPPORT */

.support-section {
  margin-top: 70px;
}

.support-section h2 {
  max-width: 800px;
  margin-bottom: 30px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.support-item {
  background: #ffffff;
  border: 1px solid #eadede;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.support-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.support-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* MEDIA */

.media-section {
  background: #f8f3ed;
  color: #211c19;
  padding: 100px 30px;
  text-align: center;
}

.media-section h2 {
  color: #211c19;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 20px;
}

.media-grid {
  max-width: 1100px;
  margin: 55px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.media-card {
  background: white;
  color: #211c19;
  text-decoration: none;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.media-card h3 {
  color: #6f7e5a;
  margin-bottom: 12px;
}

/* FINAL CALL */

.final-call {
  max-width: 850px;
  margin: 100px auto 55px;
  padding-top: 70px;
  border-top: 2px solid rgba(185,106,124,0.3);
}

.final-call h2 {
  color: #211c19;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 25px;
}

.final-call p {
  color: #211c19;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* CTA */

.cta-banner {
  background: #6f7e5a;
  color: white;
  text-align: center;
  padding: 100px 30px;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 900px;
  margin: 0 auto 22px;
}

.cta-banner p {
  max-width: 750px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

/* FOOTER */

footer {
  background: #000;
  color: #d4af37;
  text-align: center;
  padding: 85px 20px;
  border-top: 2px solid #d4af37;
}

.footer-logo {
  width: 430px;
  max-width: 90%;
  display: block;
  margin: 0 auto 28px;
}

footer p {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* MOBILE */

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-content {
    margin-top: 55px;
  }

  .logo-wrapper {
    padding: 22px 28px;
  }

  .hero-logo {
    width: 320px;
  }

  .split,
  .card-grid,
  .evidence-grid,
  .media-grid,
  .stats,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .media-section,
  .cta-banner {
    padding: 70px 22px;
  }

  .section-img {
    max-width: 340px;
  }

  .featured-evidence {
    grid-row: auto;
  }

  .footer-logo {
    width: 300px;
  }
}@media (max-width: 768px) {
  .projects {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding: 0 20px;
  }

  .project-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 28px 22px;
  }

  .project-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 25px;
    display: block;
  }

  .project-card h3 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .project-card p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .project-badge {
    max-width: 220px;
    margin: 0 auto 25px;
    display: block;
    text-align: center;
  }
}