/**
 * History & Manifesto Styles (historia.html)
 * Rotissoire & Co. | French Rotisserie & Volailles de Ferme
 */

.manifesto-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--spacing-3xl);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}

.story-split.is-reversed {
  direction: rtl;
}

.story-split.is-reversed > * {
  direction: ltr;
}

.story-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.story-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.story-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: 1.25rem;
}

/* Timeline 2020-2026 */
.timeline-section {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: var(--spacing-2xl) auto 0;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background-color: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  border: 3px solid var(--color-surface);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

/* Sello de Garantía de Ave de Pastoreo */
.quality-seal-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-primary-light) 100%);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.seal-icon-badge {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
  color: hsl(218, 45%, 14%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-gold);
}

.seal-icon-badge svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .story-split,
  .story-split.is-reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .story-media img {
    height: 320px;
  }
}
