/* =============================================
   PathRoamer — About Page Styles
   ============================================= */

/* ── ABOUT HERO ── */
.about-hero {
  padding: 10rem 5% 6rem;
  background: linear-gradient(135deg, #FAF7F2 0%, #F0E8D8 100%);
  text-align: center;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--midnight); margin-bottom: 1.2rem;
}
.about-hero p {
  color: var(--text-mid); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto;
  line-height: 1.75; font-weight: 300;
}

/* ── ABOUT STORY ── */
.about-story {
  padding: 6rem 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-story img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.about-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--midnight);
  margin-bottom: 1.2rem;
}
.about-story-text p {
  color: var(--text-mid); font-size: 0.97rem;
  line-height: 1.8; font-weight: 300;
  margin-bottom: 1.2rem;
}
.about-story-text .btn-primary { margin-top: 0.5rem; }

/* ── VALUES ── */
.about-values { background: var(--sand); padding: 6rem 5%; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.value-card {
  background: var(--warm-white);
  padding: 2.5rem; border-radius: 18px;
  border-top: 3px solid var(--terracotta);
  transition: all 0.3s;
}
.value-card:nth-child(2) { border-color: var(--forest); }
.value-card:nth-child(3) { border-color: var(--gold); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--midnight); margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ── TEAM ── */
.team-section { padding: 6rem 5%; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: 16px; margin-bottom: 1rem;
  filter: saturate(0.9);
  transition: all 0.3s;
}
.team-card:hover img { filter: saturate(1.1); transform: scale(1.02); }
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--midnight);
}
.team-card p { font-size: 0.82rem; color: var(--terracotta); margin-top: 0.2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .values-grid, .team-grid { grid-template-columns: 1fr; }
}
