/* ===== ABOUT PAGE STYLES ===== */
.about-container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* Navbar always white on about page */
.navbar.scrolled { background: rgba(255,255,255,.97); }

/* ===== PAGE HERO ===== */
.about-hero {
  background: linear-gradient(135deg, #f5f2eb 0%, #e8f5e9 100%);
  padding: 7rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid #ddd8cc;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: .6rem;
}
.about-hero p {
  font-size: 1rem;
  color: #4a5e52;
}

/* ===== OUR STORY ===== */
.story-section { padding: 5rem 0; background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: 1.2rem;
}
.about-section-title.center { text-align: center; }
.about-section-sub {
  font-size: .93rem;
  color: #4a5e52;
  max-width: 560px;
  margin: 0 auto .5rem;
  line-height: 1.7;
  text-align: center;
}

.story-text p {
  font-size: .93rem;
  color: #4a5e52;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story-text strong { color: #1a3c2e; }

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}
.story-tags span {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #f0faf4;
  border: 1px solid rgba(45,106,79,.2);
  color: #2d6a4f;
  padding: .4rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}
.story-tags span i { font-size: .8rem; }

/* Story image */
.story-visual { position: relative; }
.story-img-wrap { position: relative; display: inline-block; width: 100%; }
.story-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30,60,40,.15);
}
.story-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #1a3c2e;
  color: white;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.sb-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.sb-label {
  display: block;
  font-size: .68rem;
  opacity: .8;
  margin-top: .3rem;
}

/* ===== STATS BAR ===== */
.about-stats-bar {
  background: #f5f2eb;
  border-top: 1px solid #ddd8cc;
  border-bottom: 1px solid #ddd8cc;
  padding: 2.5rem 2rem;
}
.about-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.about-stat { text-align: center; flex: 1; }
.as-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2e1f;
  line-height: 1;
}
.as-num sup { font-size: 1.1rem; color: #2d6a4f; }
.as-label {
  display: block;
  font-size: .8rem;
  color: #7a8e80;
  margin-top: .4rem;
  font-weight: 500;
}
.about-stat-div { width: 1px; height: 50px; background: #ddd8cc; }

/* ===== WHAT DRIVES US ===== */
.drives-section { padding: 5rem 0; background: #fff; }
.drives-header { text-align: center; margin-bottom: 3rem; }
.drives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.drive-card {
  border: 1px solid #e8e4da;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  background: #fdfcfa;
  transition: all .3s;
}
.drive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(30,60,40,.1);
  border-color: #2d6a4f;
}
.drive-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d6a4f;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
  transition: all .3s;
}
.drive-card:hover .drive-icon { background: #2d6a4f; color: white; }
.drive-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: .6rem;
}
.drive-card p { font-size: .88rem; color: #4a5e52; line-height: 1.7; }

/* ===== MEET OUR TEAM ===== */
.team-section {
  padding: 5rem 0;
  background: #f5f2eb;
}
.team-img-wrap {
  margin: 2rem auto;
  max-width: 780px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,60,40,.15);
}
.team-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.team-desc {
  max-width: 720px;
  margin: 1.5rem auto 0;
  font-size: .92rem;
  color: #4a5e52;
  line-height: 1.8;
  text-align: center;
}

/* ===== CTA SECTION ===== */
.about-cta {
  background: linear-gradient(135deg, #1a3c2e, #2d6a4f);
  padding: 4.5rem 2rem;
  text-align: center;
}
.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: .75rem;
}
.about-cta p { font-size: .95rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.cta-btn {
  display: inline-block;
  background: white;
  color: #1a3c2e;
  padding: .75rem 2.2rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.cta-btn:hover { background: #a7f3d0; transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px) {
  .drives-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 2.5rem; }
}
@media(max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .drives-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-stats-grid { gap: 1rem; flex-wrap: wrap; }
  .about-stat-div { display: none; }
  .about-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .story-badge { right: 0; bottom: -.8rem; }
  .team-img { height: 280px; }
  .about-hero { padding: 6rem 1.5rem 3rem; }
  .story-section, .drives-section, .team-section { padding: 3.5rem 0; }
  .about-container { padding: 0 1.25rem; }
}
@media(max-width: 480px) {
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .as-num { font-size: 1.6rem; }
  .drives-grid { grid-template-columns: 1fr; }
  .team-img { height: 220px; }
  .story-img { height: 250px; }
  .story-tags span { font-size: .75rem; }
}
