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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- STORY SECTION ---- */
.story-section { padding: 5rem 0 3rem; }

.story-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.story-text { min-width: 0; }

.story-body {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.story-body p:last-child {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

/* ---- STORY PHOTO ---- */
.story-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.story-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.story-photo figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  background: var(--dark-2);
  text-align: center;
}

@media (max-width: 820px) {
  .story-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-photo { max-width: 480px; }
}

/* ---- FOUNDERS (FATHER & SON) ---- */
.founders-section {
  padding: 4rem 0 5rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.founders-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.founders-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.founders-text .section-title {
  margin: 0.5rem 0 1.5rem;
}

.founders-text p:not(.section-label) {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

@media (max-width: 820px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ---- FIRE MOMENT ---- */
.fire-moment {
  background: linear-gradient(135deg, rgba(192,57,43,0.12), rgba(230,126,34,0.06));
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 0;
}

.fire-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.fire-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.25rem;
}

.fire-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.fire-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.fire-content p:last-child { margin-bottom: 0; }

/* ---- FAMILY SECTION ---- */
.family-section { padding: 5rem 0; }

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

.family-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.family-card:hover {
  border-color: rgba(230,126,34,0.3);
  transform: translateY(-4px);
}

.member-avatar {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border: 2px solid var(--border);
}

.member-role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.member-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.member-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- VALUES ---- */
.values-section { padding: 5rem 0; }

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

.value-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  border-color: rgba(192,57,43,0.3);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- ABOUT CTA ---- */
.about-cta { padding: 5rem 0; }
.about-cta-inner { max-width: 560px; margin: 0 auto; text-align: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .fire-content { flex-direction: column; }
  .family-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .fire-moment { padding: 2rem 1.5rem; }
}
