/* =========================
   ABOUT PAGE STYLES
   Page-specific styles only
   ========================= */

/* =========================
   STORY SECTION
   ========================= */
.about-story {
  text-align: center;
}

.about-story-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

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

/* =========================
   MISSION SECTION
   ========================= */
.about-mission {
  text-align: center;
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.about-mission p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone-100);
}

/* =========================
   VALUES GRID
   ========================= */
.values-grid {
  display: grid;
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.value-description {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 auto;
}

/* =========================
   RESPONSIVE - TABLET
   ========================= */
@media (min-width: 768px) {
  .about-story-text {
    font-size: 1.1875rem;
  }
  
  .about-mission p {
    font-size: 1.1875rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .value-card {
    padding: 2rem 1.5rem;
  }
}

/* =========================
   RESPONSIVE - DESKTOP
   ========================= */
@media (min-width: 1024px) {
  .about-story-text {
    font-size: 1.25rem;
  }
  
  .about-mission p {
    font-size: 1.25rem;
  }
  
  .values-grid {
    gap: 3rem;
  }
  
  .value-card {
    padding: 2.5rem 2rem;
  }
  
  .value-title {
    font-size: 1.375rem;
  }
}
