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

/* About Hero Section */
.about-hero {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 40px;
  animation: fadeUp 0.6s ease both;
}

.about-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

.about-hero .hero-subtitle {
  font-size: 18px;
  max-width: 100%;
}

/* Mission Section */
.mission {
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.mission-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.mission-card:hover {
  border-color: var(--sage-light);
  box-shadow: 0 12px 40px rgba(90, 128, 104, 0.12);
}

.mission-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.mission-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.mission-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Story Section */
.story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.story-content h2 {
  margin-bottom: 24px;
}

.story-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, var(--sage-pale) 0%, rgba(138, 171, 150, 0.15) 100%);
  border: 2px solid var(--sage-light);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(90, 128, 104, 0.1);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Values Section */
.values {
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.value-item {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-item:hover {
  border-color: var(--sage-light);
  box-shadow: 0 12px 36px rgba(90, 128, 104, 0.1);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 920px) {
  .story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .mission-content,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero {
    margin-bottom: 40px;
    padding: 24px 0;
  }

  .about-hero .hero-title {
    font-size: 2rem;
  }
}
