/* ===== ABOUT PAGE ===== */

.about-hero {
  background: var(--gradient-hero);
  color: white;
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  font-size: 18rem;
  right: -3rem;
  bottom: -3rem;
  opacity: 0.05;
  pointer-events: none;
}

.about-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--weight-black);
  margin-bottom: var(--space-4);
}

.about-hero p {
  font-size: var(--text-xl);
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-loose);
}

/* ===== STORY SECTION ===== */
.story-section {
  padding: var(--space-16) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
}

.story-grid:nth-child(even) .story-text {
  order: 2;
}

.story-grid:nth-child(even) .story-image {
  order: 1;
}

.story-text h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.story-text p {
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
}

.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid:nth-child(even) .story-text,
  .story-grid:nth-child(even) .story-image {
    order: unset;
  }
}

/* ===== MEMBERS SECTION ===== */
.members-section {
  background: var(--color-primary);
  color: white;
  padding: var(--space-16) 0;
}

.members-section h2 {
  color: white;
  text-align: center;
  margin-bottom: var(--space-4);
}

.members-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.member-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition);
}

.member-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.member-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-3);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: var(--weight-black);
  color: #1A5A5C;
  overflow: hidden;
}

.member-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card__name {
  font-weight: var(--weight-bold);
  color: white;
  margin-bottom: var(--space-1);
}

.member-card__role {
  font-size: var(--text-xs);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--weight-bold);
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.value-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.value-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.value-card__text {
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}
