/* ===== ABOUT STORY ===== */
.story-section { background: var(--off-white); padding: 5rem 2rem; }
.story-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.story-img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white; text-align: center; padding: 2rem;
}
.story-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.55) 0%, rgba(13,49,84,0.35) 100%);
}
.story-img img { height: 32px; width: auto; position: relative; z-index: 1; filter: brightness(0) invert(1); opacity: 0.5; }
.story-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 1.25rem; line-height: 1.25;
}
.story-text p {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--gray-600); margin-bottom: 1.25rem;
}

/* ===== FACTORY ===== */
.factory-section { background: white; padding: 5rem 2rem; }
.factory-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.factory-details h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 1.25rem; line-height: 1.25;
}
.factory-details p {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--gray-600); margin-bottom: 1.25rem;
}
.factory-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1.5rem;
}
.factory-highlight {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--off-white); border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.85rem; color: var(--navy);
  border: 1px solid var(--gray-100);
}
.factory-highlight .icon {
  width: 24px; height: 24px;
  background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.factory-img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: var(--navy) url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=800&q=80') center/cover no-repeat;
  position: relative;
}

/* ===== VALUES / MISSION ===== */
.values-section { background: var(--off-white); padding: 5rem 2rem; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--gray-100);
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.value-icon {
  width: 56px; height: 56px;
  background: rgba(29,184,160,0.08);
  border: 1px solid rgba(29,184,160,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--teal);
}
.value-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.85rem; color: var(--gray-600); line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline-section { background: white; padding: 5rem 2rem; }
.timeline {
  max-width: 800px; margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: ''; position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-100);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2rem; top: 4px;
  width: 16px; height: 16px;
  background: var(--teal);
  border: 3px solid white;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item .year {
  font-size: 0.75rem; font-weight: 700;
  color: var(--teal); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 0.25rem;
}
.timeline-item h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.25rem;
}
.timeline-item p {
  font-size: 0.85rem; color: var(--gray-600);
  line-height: 1.7;
}

/* ===== SECTION RHYTHM OVERRIDES ===== */
/* story(off-white)→factory(white)→values(off-white)→why(white)→certs(off-white)→timeline(white)→stats(navy) */
.values-section + .why-section { background: white; }
.why-section + .certs-section { background: var(--off-white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .factory-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}
