/* ==========================================================================
   about.css — styles for about.html only
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}

/* ---- ABOUT HERO ---- */
.about-hero { padding: 40px 20px 20px; }
.about-hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 30px;
  align-items: center;
}
.about-hero-text h1 {
  font-family: var(--font-head); font-size: 40px; font-weight: 800;
  color: var(--ink); margin-bottom: 16px; line-height: 1.2;
}
.about-hero-text p {
  font-size: 15.5px; color: #444; line-height: 1.8; margin-bottom: 26px;
  max-width: 480px;
}
.about-hero-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: var(--sage-2); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 900px) {
  .about-hero { padding: 60px 24px 30px; }
  .about-hero-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .about-hero-text h1 { font-size: 50px; }
}

/* ---- STORY ---- */
.about-story { padding: 60px 20px; }
.story-grid {
  display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center;
}
.story-img { border-radius: 20px; overflow: hidden; aspect-ratio: 5/6; background: var(--sage-2); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 {
  font-family: var(--font-head); font-size: 30px; font-weight: 700;
  color: var(--ink); margin-bottom: 16px; line-height: 1.3;
}
.story-text p { font-size: 15px; color: #444; line-height: 1.85; margin-bottom: 28px; }

.story-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--green);
}
.stat-label { font-size: 13px; color: var(--grey); margin-top: 4px; }

@media (min-width: 900px) {
  .about-story { padding: 80px 24px; }
  .story-grid { grid-template-columns: 1fr 1.1fr; gap: 60px; }
}

/* ---- MISSION & VISION ---- */
.mission-vision { background: var(--cream); padding: 60px 20px; }
.mv-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.mv-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 28px; text-align: left;
}
.mv-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--sage-2); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.mv-card h3 { font-family: var(--font-head); font-size: 21px; margin-bottom: 12px; color: var(--ink); }
.mv-card p { font-size: 14.5px; color: #444; line-height: 1.8; }

@media (min-width: 800px) {
  .mission-vision { padding: 80px 24px; }
  .mv-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ---- WHY AASMA / VALUES ---- */
.why-aasma { padding: 60px 20px; }
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 20px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(0,0,0,.08); }
.value-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 19px; margin: 0 auto 16px;
}
.value-card h4 { font-family: var(--font-head); font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.value-card p { font-size: 13px; color: var(--grey); line-height: 1.6; }

@media (min-width: 700px) {
  .why-aasma { padding: 80px 24px; }
  .values-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ---- CTA STRIP ---- */
.about-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 50px 20px;
}
.about-cta-inner {
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-start; text-align: left;
}
.about-cta-inner h2 {
  font-family: var(--font-head); font-size: 26px; color: #fff; margin-bottom: 6px;
}
.about-cta-inner p { color: #eafce4; font-size: 14.5px; }
.btn-white {
  background: #fff; color: var(--green);
}
.btn-white:hover { background: #f2f2f2; color: var(--green-dark); }

@media (min-width: 800px) {
  .about-cta { padding: 60px 24px; }
  .about-cta-inner {
    flex-direction: row; align-items: center; justify-content: space-between; text-align: left;
  }
}