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

.page-hero h1 { max-width: 760px; }

/* ---- Story section ---- */
.story-section { padding-top: 64px; }
.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.photo-placeholder {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-faint);
}
.photo-icon { font-size: 32px; }
.photo-placeholder p { font-size: 13px; color: var(--text-faint); }

.story-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 24px;
  text-transform: none;
}
.story-copy p {
  font-size: 15.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}
.story-intro {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--blue-light) !important;
  font-size: 14px !important;
  font-weight: 600;
}
.story-signoff {
  color: var(--text) !important;
  font-weight: 500;
  font-style: italic;
}
.story-signature {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--blue-light) !important;
  font-style: normal !important;
  font-weight: 700;
  margin-top: -8px;
}

/* ---- Trust philosophy ---- */
.trust-philosophy { padding-top: 24px; }
.philosophy-card {
  background: linear-gradient(160deg, rgba(36,54,232,0.14), var(--bg-elevated) 65%);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}
.philosophy-card p {
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
  .photo-placeholder { position: static; aspect-ratio: 16/10; max-width: 400px; margin: 0 auto; }
  .philosophy-card { padding: 28px; }
}
