/* === Our Story Page === */

/* --- Hero --- */
.story-hero-img {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
}
.story-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.story-hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.story-hero-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.story-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}

/* --- Intro --- */
.story-intro {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.story-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-intro-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.story-intro-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.story-intro-detail {
  font-size: .88rem;
  color: var(--muted);
}
.story-intro-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

/* --- Timeline --- */
.story-timeline {
  padding: 100px 0;
  background: var(--bg2);
}

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-bottom: 56px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.timeline-marker::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -0.5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dark);
  transform: translateX(-4px);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  padding-top: 2px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.timeline-content p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.timeline-content p:last-child { margin-bottom: 0; }
.timeline-content p strong { color: var(--text); }

/* --- Values --- */
.story-values {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.story-values-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 56px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.value-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease);
}
.value-card:hover { background: var(--bg2); }

.value-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(0,0,0,.05);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .3s var(--ease);
}
.value-card:hover .value-num { color: rgba(137,207,240,.3); }

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Pull Quote --- */
.story-pullquote {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}
.story-pullquote blockquote {
  max-width: 640px;
  margin: 0 auto;
}
.pq-mark {
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: .4;
  display: block;
  color: rgba(0,0,0,.04);
  font-family: Georgia, serif;
  margin-bottom: 24px;
  user-select: none;
}
.story-pullquote p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}
.story-pullquote cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .story-hero-img { height: 50vh; min-height: 300px; }
  .story-hero-content { bottom: 28px; padding: 0 16px; }
  .story-hero-title { font-size: 1.8rem; }
  .story-hero-label { font-size: .65rem; }

  .story-intro { padding: 48px 0; }
  .story-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-intro-name { font-size: 2rem; }
  .story-intro-quote { padding-left: 16px; font-size: 1rem; }

  .story-timeline { padding: 56px 0; }
  .timeline::before { left: 8px; }
  .timeline { padding-left: 8px; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .timeline-marker::before { left: 7.5px; }
  .timeline-year { font-size: .72rem; }
  .timeline-content h3 { font-size: 1.05rem; }
  .timeline-content p { font-size: .85rem; }

  .story-values { padding: 56px 0; }
  .story-values-title { font-size: 1.6rem; margin-bottom: 36px; }
  .values-grid { grid-template-columns: 1fr; border-left: none; }
  .value-card { border-left: none; border-right: none; padding: 32px 0; }
  .value-card:last-child { border-bottom: none; }
  .value-card h3 { font-size: .95rem; }
  .value-card p { font-size: .82rem; }

  .story-pullquote { padding: 48px 0; }
  .pq-mark { font-size: 5rem; }
}

@media (max-width: 480px) {
  .story-hero-img { height: 40vh; min-height: 260px; }
  .story-hero-title { font-size: 1.5rem; }
  .story-intro-name { font-size: 1.6rem; }
}
