/* ── History page ── */
/* Feature section — photo + founding text */
.history-feature-section {
  padding: 5rem 0 2.5rem;
  background: #ffffff;
}

.history-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.history-feature-image {
  position: relative;
}

.history-feature-img {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.history-feature:first-of-type {
  grid-template-columns: 1fr;
}

.history-feature:first-of-type .history-feature-img {
  aspect-ratio: auto;
}

.history-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.history-body {
  margin: 0 0 1rem;
  font-size: 0.97rem;
  color: #44403c;
  line-height: 1.75;
}

.history-body:last-child {
  margin-bottom: 0;
}

/* Orchestra section */
.history-orchestra-section {
  padding: 2.5rem 0 5rem;
  background: #f8fafc;
}

.history-orchestra-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

.history-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
}

.history-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  min-width: 200px;
  text-align: center;
}

.history-stat-year {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a2744;
  line-height: 1;
}

.history-stat-label {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

/* Open to all cards */
.history-open-section {
  padding: 5rem 0;
  background: #1a2744;
}

.history-open-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.history-open-card {
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #ffffff;
}

.history-open-icon {
  color: #93afd8;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.history-open-icon svg.ion-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.history-open-card-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.history-open-card-body {
  margin: 0;
  font-size: 0.92rem;
  color: #b8cde8;
  line-height: 1.7;
}

/* Vision / grassroots section */
.history-vision-section {
  padding: 5rem 0;
  background: #ffffff;
}

.history-vision-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.history-body--wide {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .history-feature-section {
    padding-top: 2rem;
  }

  .history-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .history-feature:first-of-type .history-feature-img {
    width: calc(100% + 40px);
    max-width: none;
    margin: 0 -20px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .history-orchestra-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .history-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .history-open-grid {
    grid-template-columns: 1fr;
  }

  .history-stats {
    flex-direction: column;
  }

  .history-stat {
    min-width: unset;
    width: 100%;
  }
}
