/* ── Storia hero ── */
.storia-hero .page-hero-title {
  clip-path: inset(0 100% 0 0);
}
.storia-hero .page-hero-title.revealed {
  animation: clip-reveal 900ms var(--ease-out) forwards;
}

/* ── Timeline ── */
.timeline-section {
  padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.timeline-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
  height: 100%;
}
.timeline-line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--gold);
  height: 0;
  transition: height 0.3s linear;
}

.timeline-entries {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: start;
  gap: 0;
  position: relative;
}
.timeline-entry:nth-child(odd) .timeline-content { grid-column: 1; padding-right: 48px; text-align: right; }
.timeline-entry:nth-child(odd) .timeline-dot-wrap { grid-column: 2; }
.timeline-entry:nth-child(odd) .timeline-placeholder { grid-column: 3; padding-left: 48px; }

.timeline-entry:nth-child(even) .timeline-content { grid-column: 3; padding-left: 48px; }
.timeline-entry:nth-child(even) .timeline-dot-wrap { grid-column: 2; }
.timeline-entry:nth-child(even) .timeline-placeholder { grid-column: 1; grid-row: 1; padding-right: 48px; }

.timeline-dot-wrap {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}
.timeline-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 400ms var(--ease-snap);
  position: relative;
  z-index: 2;
}
.timeline-dot.revealed { transform: scale(1); }

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 56px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--white);
  margin-bottom: 12px;
}
.timeline-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.timeline-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-placeholder-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Pull quote ── */
.pull-quote {
  background: var(--gold);
  padding: clamp(60px, 10vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.pull-quote-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.pull-quote-attr {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(8,8,8,0.55);
  letter-spacing: 0.1em;
}

/* ── Stats strip ── */
.stats-strip {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 48px);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 48px);
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .timeline-line { left: 20px; }
  .timeline-entry {
    grid-template-columns: 40px 1fr;
  }
  .timeline-entry:nth-child(odd) .timeline-content,
  .timeline-entry:nth-child(even) .timeline-content {
    grid-column: 2;
    grid-row: 1;
    padding-left: 20px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-entry:nth-child(odd) .timeline-dot-wrap,
  .timeline-entry:nth-child(even) .timeline-dot-wrap {
    grid-column: 1;
    grid-row: 1;
  }
  .timeline-entry:nth-child(odd) .timeline-placeholder,
  .timeline-entry:nth-child(even) .timeline-placeholder {
    grid-column: 2;
    grid-row: 2;
    padding-left: 20px;
    padding-right: 0;
  }
  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .pull-quote-text { font-size: 36px; }
}
