/* ============================================
   NURAYA — about.css
   About page-specific sections.
   Loaded only on about.html.
   ============================================ */

/* ============================================
   ABOUT HERO (light strip)
   ============================================ */
.about-hero {
  background: var(--offwhite);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

.about-hero__content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-hero__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-hero__lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   BRAND NARRATIVE
   ============================================ */
.about-narrative {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.about-narrative__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-narrative__text h2 {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-narrative__text h2 em {
  font-weight: 300;
}

.about-narrative__text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-narrative__text p em {
  font-style: italic;
}

.about-narrative__image {
  aspect-ratio: 3/4;
  background: var(--dew);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: var(--fs-caption);
  text-align: center;
  padding: 2rem;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-section {
  background: var(--dew);
  padding: var(--space-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* Value cards reuse .pillar chrome (hover, border-top) but suppress the forest
   circle behind the icon — values get a clean 48×48 image above the name. */
.value-card .pillar__icon { display: none; }

.value-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.value-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================
   FOUNDERS GRID
   ============================================ */
.founders-section {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

/* ============================================
   CAPABILITIES PREVIEW
   ============================================ */
.capabilities-section {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

.capabilities-section__link {
  display: block;
  margin-top: var(--space-md);
  font-size: var(--fs-body);
  color: var(--forest);
  font-weight: 400;
}

.capabilities-section__link a {
  font-weight: 500;
  color: var(--amber);
  transition: color 0.3s ease;
}

.capabilities-section__link a:hover {
  color: var(--amber-light);
}

/* ============================================
   RESPONSIVE — ABOUT
   ============================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .founders-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .about-hero { min-height: 45vh; padding: 7rem 0 var(--space-lg); }

  .about-narrative__grid {
    grid-template-columns: 1fr;
  }
  .about-narrative__image {
    order: 2;
  }

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

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