/* ===== OUR STORY PAGE — Redesign 2026 ===== */

.our-story-hero-content { position: relative; z-index: 1; max-width: 820px; }
.our-story-hero-content h1 {
  font-size: var(--fs-h1); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); margin-top: var(--space-sm);
}

/* Origin section */
.story-origin { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.story-origin-grid { display: grid; gap: var(--grid-gap-lg); align-items: center; }
@media (min-width: 1024px) { .story-origin-grid { grid-template-columns: 1fr 1fr; } }
.story-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--surface-2);
  transition: box-shadow 400ms var(--ease);
}
.story-visual:hover { box-shadow: 0 32px 80px rgba(0,0,0,0.16); }
.story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 600ms var(--ease);
}
.story-visual:hover img { transform: scale(1.03); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.story-float-card {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 20px;
  box-shadow: var(--shadow-md);
}
.story-float-card strong { display: block; font-size: 22px; font-weight: 900; color: var(--primary); letter-spacing: -0.02em; }
.story-float-card span { display: block; font-size: 12px; font-weight: 700; color: var(--ink-faint); margin-top: 2px; }
.story-copy h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.025em; margin-top: var(--space-sm); }
.story-copy p { font-size: 16px; color: var(--ink-muted); line-height: 1.78; margin-top: var(--space-md); }

/* Values section */
.story-values {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
  background: var(--surface-2);
}
.values-grid { display: grid; gap: var(--grid-gap-sm); margin-top: var(--heading-gap); }
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--card-pad);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms, box-shadow 180ms, border-color 180ms;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(91,71,224,0.2); }
.value-icon {
  display: flex; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: var(--r-md); background: var(--primary-light);
  font-size: 22px; margin-bottom: var(--space-sm);
}
.value-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: var(--space-xs); }
.value-card p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.7; margin: 0; }

/* Timeline */
.story-timeline { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.timeline-track {
  position: relative; display: grid; gap: 0; margin-top: var(--heading-gap);
  padding-left: 32px;
}
.timeline-track::before {
  content: ''; position: absolute; left: 11px; top: 16px; bottom: 16px;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  border-radius: 2px;
}
.timeline-item {
  position: relative; padding: 0 0 40px 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -21px; top: 4px;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--primary); border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year {
  font-size: 11.5px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary); margin-bottom: var(--space-xs);
}
.timeline-item h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: var(--space-xs); }
.timeline-item p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.72; margin: 0; }

/* Team section */
.story-team { padding-top: var(--section-py); padding-bottom: var(--section-py); background: var(--surface-2); }
.team-grid { display: grid; gap: var(--grid-gap); margin-top: var(--heading-gap); }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card-photo {
  height: 220px; background: var(--primary-light);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}
.team-card-body { padding: var(--card-pad); }
.team-card-body h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 3px; }
.team-card-body span {
  display: block; font-size: 12.5px; font-weight: 700;
  color: var(--primary); margin-bottom: var(--space-sm);
}
.team-card-body p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; margin: 0; }
