/* =========================================
   CRAFTY MAMMIES — About Page
   ========================================= */

/* ── STORY HERO ── */
.about-hero {
  padding: 96px 80px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}

.about-hero-text .section-eyebrow {
  display: block;
  margin-bottom: 12px;
}

.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 28px;
}

.about-hero-text p {
  font-size: 15.5px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-hero-text p:last-child { margin-bottom: 0; }

/* Q&A blocks */
.about-qa {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.about-qa-item {
  padding: 20px 24px;
  background: var(--pink-pale);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-qa-item h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--pink-dark);
  margin-bottom: 6px;
}

.about-qa-item p {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 0 !important;
}

.about-qa-item strong {
  color: var(--black);
  font-weight: 500;
}

.about-hero-img {
  position: relative;
}

.about-team-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 60% center;
  border-radius: 20px;
  display: block;
  border: 5px solid var(--pink);
  box-sizing: border-box;
}

.about-hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

.about-hero-badge-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.about-hero-badge-label {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 400;
}

/* ── VALUES ── */
.values-section {
  padding: var(--space-2xl) 80px;
  background: var(--grey-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--pink-light);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}

/* ── STATS ── */
.stats-section {
  background: var(--pink);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 48px;
}

/* ── CTA ── */
.about-cta {
  background: var(--black);
  padding: var(--space-xl) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: 'CM';
  position: absolute;
  font-family: var(--serif);
  font-size: 500px;
  font-weight: 600;
  color: rgba(234, 114, 164, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -20px;
  line-height: 1;
}

.about-cta-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.about-cta > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.about-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 80px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-hero,
  .values-section { padding: var(--space-xl) 48px; }

  .about-hero { gap: 48px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-section { padding: 40px 48px; }

  .about-cta { padding: var(--space-xl) 48px; }
}

@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 56px 20px;
    gap: 48px;
  }

  .about-hero-badge {
    left: 12px;
    bottom: -12px;
  }

  .values-section { padding: 56px 20px; }
  .values-grid { grid-template-columns: 1fr; }

  .stats-section {
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider { display: none; }

  .stat { min-width: 40%; }

  .about-cta { padding: 56px 24px; }

  .about-cta-btns { flex-direction: column; align-items: center; }
  .about-cta-btns .btn { width: 100%; max-width: 320px; text-align: center; }
}