/* ── ABOUT US PAGE STYLES ── */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 52vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 100px 24px 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.6; pointer-events: none;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1; letter-spacing: -1.2px;
  color: var(--dark); max-width: 680px;
  margin-bottom: 20px; padding-top: 16px;
  animation: fadeUp .6s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--sage-dk); }
.page-hero-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 520px; font-weight: 300; line-height: 1.75;
  animation: fadeUp .6s .1s ease both;
}

/* ── SECTIONS ── */
section { padding: 80px 48px; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-dk);
  font-weight: 500; margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15; color: var(--dark); margin-bottom: 40px;
}

/* ── MISSION SECTION ── */
.mission-section { background: var(--sand); }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1100px;
}
.mission-text .section-title { margin-bottom: 24px; }
.body-text {
  font-size: 0.925rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 16px;
}
.mission-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; border-radius: var(--radius); overflow: hidden;
}
.stat-block {
  background: var(--white); padding: 36px 28px;
  transition: background .2s;
}
.stat-block:hover { background: var(--sage); }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; color: var(--dark); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.8rem; color: var(--muted); }

/* ── VALUES SECTION ── */
.values-section { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; max-width: 1100px;
}
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(13,27,75,.09); }
.value-icon { font-size: 2rem; margin-bottom: 18px; }
.value-card h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; color: var(--dark); }
.value-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── TEAM SECTION ── */
.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px; max-width: 1100px;
}
.team-card {
  background: var(--sand); border-radius: var(--radius);
  padding: 36px 24px; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(13,27,75,.08); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--dark);
  margin: 0 auto 18px;
}
.team-name { font-size: 0.95rem; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band { background: var(--sage); text-align: center; padding: 72px 24px; }
.cta-band .section-label { color: var(--sage-dk); }
.cta-band .section-title { margin-bottom: 28px; max-width: 520px; margin-inline: auto; }
.cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 60px 28px; }
  .mission-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  section { padding: 52px 20px; }
  .mission-card { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
