/* About Page Only */

.about-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
}

.about-story {
  padding: 5rem 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.about-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1rem;
}

.about-media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

.about-mission {
  background: #f8fafc;
  padding: 5rem 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.mission-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: .5rem;
  color: #0f172a;
}

.mission-card p {
  font-size: .95rem;
  color: #475569;
  line-height: 1.6;
}

.about-values {
  padding: 5rem 0;
  background: #ffffff;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: #f1f5f9;
}

.value-card h4 {
  margin-bottom: .3rem;
  color: #0f172a;
}

.value-card p {
  font-size: .9rem;
  color: #475569;
}

.about-cta {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  text-align: center;
}

/* ===========================
   MOBILE FIXES (SAFE)
=========================== */
@media (max-width: 768px) {
  .about-story,
  .about-mission,
  .about-values {
    padding: 3.5rem 0;
  }

  .about-copy h2 {
    font-size: 1.8rem;
  }

  .about-copy p {
    font-size: 0.95rem;
  }

  .mission-card {
    padding: 1.6rem;
  }
}

@media (max-width: 480px) {
  .about-copy h2 {
    font-size: 1.6rem;
  }

  .about-copy p {
    font-size: 0.92rem;
  }
}
